@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --bg: #000000;
  --surface: #080808;
  --surface-raised: #111111;
  --card: rgba(255,255,255,0.02);
  --cyan: #00f0ff;
  --pink: #ff2d95;
  --purple: #bd00ff;
  --text: #ffffff;
  --text-bright: #f5f5f5;
  --text-dim: #bbbbbb;
  --text-faint: #555555;
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.14);
  --shadow-clay: 
    6px 6px 12px rgba(0,0,0,0.9),
    -3px -3px 8px rgba(255,255,255,0.04),
    inset 1px 1px 1px rgba(255,255,255,0.06);
  --shadow-clay-hover:
    10px 10px 20px rgba(0,0,0,0.95),
    -5px -5px 12px rgba(255,255,255,0.05),
    inset 2px 2px 2px rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  font-weight: 400;
}

::selection {
  background: var(--cyan);
  color: #000;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text-faint); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* Noise */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.3'/%3E%3C/svg%3E");
  opacity: 0.02;
  z-index: 9999;
  pointer-events: none;
}

/* Font classes */
.font-logo {
  font-family: 'Fredoka One', cursive;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.font-body {
  font-family: 'Nunito', sans-serif;
}

/* 3D Matte Pipe Text */
.pipe-text {
  font-family: 'Fredoka One', cursive;
  font-weight: 400;
  color: #ffffff;
  text-shadow:
    0 1px 0 #e8e8e8,
    0 2px 0 #d8d8d8,
    0 3px 0 #c8c8c8,
    0 4px 0 #b8b8b8,
    0 5px 0 #a8a8a8,
    0 6px 1px rgba(0,0,0,0.15),
    0 0 8px rgba(0,0,0,0.15),
    0 2px 4px rgba(0,0,0,0.25),
    0 4px 8px rgba(0,0,0,0.2),
    0 8px 16px rgba(0,0,0,0.25),
    0 16px 32px rgba(0,0,0,0.15);
  letter-spacing: 0.04em;
}

.pipe-text-cyan {
  font-family: 'Fredoka One', cursive;
  color: var(--cyan);
  text-shadow:
    0 1px 0 rgba(0,240,255,0.4),
    0 2px 0 rgba(0,240,255,0.3),
    0 3px 0 rgba(0,240,255,0.2),
    0 4px 0 rgba(0,240,255,0.15),
    0 5px 0 rgba(0,240,255,0.1),
    0 6px 1px rgba(0,0,0,0.2),
    0 0 10px rgba(0,240,255,0.3),
    0 4px 12px rgba(0,0,0,0.3),
    0 8px 24px rgba(0,0,0,0.2);
}

.pipe-text-pink {
  font-family: 'Fredoka One', cursive;
  color: var(--pink);
  text-shadow:
    0 1px 0 rgba(255,45,149,0.4),
    0 2px 0 rgba(255,45,149,0.3),
    0 3px 0 rgba(255,45,149,0.2),
    0 4px 0 rgba(255,45,149,0.15),
    0 5px 0 rgba(255,45,149,0.1),
    0 6px 1px rgba(0,0,0,0.2),
    0 0 10px rgba(255,45,149,0.3),
    0 4px 12px rgba(0,0,0,0.3),
    0 8px 24px rgba(0,0,0,0.2);
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 90px 0; position: relative; }

/* Glitch */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--cyan);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-1 5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 var(--pink);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
  0% { clip: rect(30px, 9999px, 10px, 0); }
  10% { clip: rect(80px, 9999px, 90px, 0); }
  20% { clip: rect(10px, 9999px, 40px, 0); }
  30% { clip: rect(60px, 9999px, 20px, 0); }
  40% { clip: rect(20px, 9999px, 70px, 0); }
  50% { clip: rect(90px, 9999px, 30px, 0); }
  60% { clip: rect(40px, 9999px, 80px, 0); }
  70% { clip: rect(70px, 9999px, 50px, 0); }
  80% { clip: rect(50px, 9999px, 10px, 0); }
  90% { clip: rect(10px, 9999px, 60px, 0); }
  100% { clip: rect(80px, 9999px, 40px, 0); }
}

@keyframes glitch-2 {
  0% { clip: rect(60px, 9999px, 80px, 0); }
  10% { clip: rect(20px, 9999px, 40px, 0); }
  20% { clip: rect(90px, 9999px, 10px, 0); }
  30% { clip: rect(40px, 9999px, 60px, 0); }
  40% { clip: rect(70px, 9999px, 30px, 0); }
  50% { clip: rect(10px, 9999px, 90px, 0); }
  60% { clip: rect(50px, 9999px, 20px, 0); }
  70% { clip: rect(80px, 9999px, 50px, 0); }
  80% { clip: rect(30px, 9999px, 70px, 0); }
  90% { clip: rect(60px, 9999px, 40px, 0); }
  100% { clip: rect(20px, 9999px, 80px, 0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 14px;
  outline: none;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  background: var(--cyan);
  color: #000;
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 0 rgba(0,240,255,0.4),
    0 4px 8px rgba(0,240,255,0.2);
}

.btn-primary-j {
  background: rgb(255, 0, 140);
  color: cyan;
}

.btn-primary-j:hover {
  background: var(--cyan);
  color: #000;
  transform: translateY(-3px);
}

.btn-primary-j:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 0 rgba(0,240,255,0.4),
    0 4px 8px rgba(0,240,255,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border-strong);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,45,149,0.15);
}

/* Clay Cards */
.clay-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: var(--shadow-clay);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.clay-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.clay-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-clay-hover);
  border-color: rgba(255,255,255,0.1);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s;
}

nav.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 24px;
  font-size: 0.85rem;
  border-radius: 12px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.98);
  backdrop-filter: blur(30px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 24px;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--cyan);
}

.mobile-nav .btn {
  margin-top: 16px;
  font-size: 1.1rem;
  padding: 18px 48px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 24px 100px;
  position: relative;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(255, 45, 149, 0.05) 50%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.hero-logo-img {
  width: 600px;
  max-width: 90vw;
  height: auto;
  margin-bottom: 32px;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero-sub {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 40px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Headers */
.section-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Nunito', cursive;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.7;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.feature-card {
  composes: clay-card;
  padding: 36px 28px;
  text-align: left;
  border-radius: 24px;
}

.feature-card .feature-num {
  font-family: 'Fredoka One', cursive;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.feature-card p {
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.95rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

.feature-card .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--surface-raised);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

/* Showcase */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-clay);
}

.showcase-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.7) contrast(1.1);
  transition: filter 0.5s;
}

.showcase-visual:hover img {
  filter: saturate(0.9) contrast(1.1);
}

.showcase-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.showcase-content .section-label { margin-bottom: 16px; }
.showcase-content .section-title { margin-bottom: 20px; }
.showcase-content p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

/* Investor */
.investor-cta {
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.investor-cta h2 {
  font-family: 'Nunito', cursive;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.investor-cta > p {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.7;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

.investor-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.investor-stat h4 {
  font-size: 2.8rem;
  font-family: 'Fredoka One', cursive;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.investor-stat span {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

/* Waitlist */
.waitlist-box {
  max-width: 500px;
  margin: 0 auto;
  padding: 44px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-clay);
  color: black;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-field {
  width: 100%;
  padding: 18px 22px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  transition: all 0.3s;
}

.input-field:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.08);
}

.input-field::placeholder {
  color: var(--text-faint);
  font-weight: 600;
}

.form-success {
  display: none;
  padding: 20px;
  background: rgba(0, 255, 136, 0.06);
  border: 2px solid rgba(0, 255, 136, 0.25);
  border-radius: 16px;
  color: #00ff88;
  text-align: center;
  margin-top: 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
  box-shadow: var(--shadow-clay);
}

.contact-item:hover {
  border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.03);
  transform: translateX(5px);
  box-shadow: var(--shadow-clay-hover);
}

.contact-item .c-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--surface-raised);
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.contact-item .c-info h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.contact-item .c-info span {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

/* Social */
.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Fredoka One', cursive;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: all 0.3s;
  box-shadow: var(--shadow-clay);
}

.social-chip:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-clay-hover);
}

.social-chip svg {
  width: 18px;
  height: 18px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

.footer-col h5 {
  font-family: 'Fredoka One', cursive;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom span,
.footer-bottom a {
  font-size: 0.82rem;
  color: var(--text-faint);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

.footer-bottom a {
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--text);
}

/* Image strip */
.img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.img-strip-item {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-clay);
}

.img-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) saturate(0.7) contrast(1.1);
  transition: all 0.5s;
}

.img-strip-item:hover img {
  filter: grayscale(0) saturate(1) contrast(1.1);
  transform: scale(1.05);
}

.img-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages */
.legal-page {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-page h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.legal-page .legal-date {
  color: var(--text-faint);
  font-size: 0.9rem;
  margin-bottom: 40px;
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  margin: 36px 0 14px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.legal-content h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  margin: 24px 0 10px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.legal-content p, .legal-content li {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 700;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.95rem;
  color: var(--text-dim);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  line-height: 1.7;
  box-shadow: var(--shadow-clay);
}

.legal-notice strong {
  color: var(--text);
  font-family: 'Fredoka One', cursive;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .img-strip { grid-template-columns: 1fr; }
  .investor-stats { gap: 28px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 640px) {
  .hero { padding: 120px 20px 80px; }
  .hero-logo-img { width: 260px; }
  .hero h1 { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .investor-stats { flex-direction: column; gap: 20px; }
  .waitlist-box { padding: 32px 20px; }
  section { padding: 70px 0; }
  .mobile-nav a { font-size: 1.6rem; }
  .mobile-nav .btn { width: 80%; }
  .showcase-visual { border-radius: 16px; }
  .clay-card { border-radius: 20px; padding: 28px 22px; }
  .img-strip-item { border-radius: 16px; }
  .investor-stat h4 { font-size: 2.2rem; }
}