/* ============================================================
   FOOTURA — Homepage Styles
   Brand palette: #050A14 bg · #00D4FF cyan · #7BFFC4 mint
   Fonts: Space Grotesk (display) + Inter (body)
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --bg:    #050A14;
  --panel: #0A1628;
  --cyan:  #00D4FF;
  --mint:  #7BFFC4;
  --white: #FFFFFF;
  --muted: #A9B6C7;
  --hair:  rgba(0,212,255,0.18);
  --scrim: #050E1A;
  --maxw:  1200px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
img, svg, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  line-height: 1.02;
  letter-spacing: -.02em;
}
p { margin: 0 0 1rem; }

/* === LAYOUT HELPERS === */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--mint);
  color: var(--bg);
  padding: .6rem 1rem;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  font-size: .95rem;
  min-height: 46px;
  text-align: center;
}
.btn-mint {
  background: var(--mint);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(123,255,196,.18);
}
.btn-mint:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(123,255,196,.38);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--hair);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(0,212,255,.22);
  color: var(--cyan);
}
.btn-lg   { padding: 1.05rem 2rem; font-size: 1.02rem; }
.full-w   { width: 100%; }

/* Waitlist CTA — subtle persistent glow */
.wl-btn {
  animation: wl-pulse 3.5s ease-in-out infinite;
}
@keyframes wl-pulse {
  0%, 100% { box-shadow: 0 0 22px rgba(123,255,196,.25); }
  50%       { box-shadow: 0 0 44px rgba(123,255,196,.48); }
}

/* === HEADER === */
.hdr {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5,10,20,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.hdr.scrolled {
  border-bottom-color: var(--hair);
  background: rgba(5,10,20,.94);
}
.hdr-in {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 72px;
}
.logo img { height: 34px; width: auto; }

/* Desktop nav */
.nav-desktop { margin-left: auto; }
.nav-desktop ul {
  list-style: none;
  display: flex;
  gap: 1.3rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-desktop a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
  position: relative;
  padding: .4rem 0;
  white-space: nowrap;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--white); }
.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* Dropdown */
.has-sub { position: relative; }
.has-sub .sub {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  list-style: none;
  margin: 0;
  padding: .5rem 0;
  background: var(--panel);
  border: 1px solid var(--hair);
  border-radius: 10px;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 10;
}
.has-sub:hover .sub,
.has-sub:focus-within .sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-sub .sub a { display: block; padding: .5rem 1rem; }

.hdr-cta { flex-shrink: 0; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.burger span { width: 26px; height: 2px; background: var(--white); transition: .3s; display: block; }

/* === MOBILE DRAWER === */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,10,20,.75);
  z-index: 95;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(82%, 320px);
  background: var(--panel);
  z-index: 96;
  border-left: 1px solid var(--hair);
  transform: translateX(100%);
  transition: transform .35s ease;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.drawer-logo { height: 28px; width: auto; }
.drawer-close {
  background: none;
  border: 0;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  min-height: 44px;
}
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  padding: .9rem .4rem;
  border-bottom: 1px solid var(--hair);
  color: var(--muted);
  font-weight: 500;
  font-size: .97rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.drawer nav a.active { color: var(--white); }
.drawer nav a.indent { padding-left: 1.5rem; font-size: .9rem; color: #7a8fa8; }
.drawer-cta { margin-top: 1.5rem; flex-shrink: 0; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 5vh;
}

/* Layer 0 — background image + ambient video */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  mix-blend-mode: screen;
  z-index: 1;
}
/* Dark scrim with dual radial accents for depth */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(5,14,26,.62) 0%,
      rgba(5,14,26,.22) 28%,
      rgba(5,10,20,.9)  82%,
      var(--bg)         100%
    ),
    radial-gradient(60% 55% at 16% 82%, rgba(0,212,255,.22), transparent 70%),
    radial-gradient(38% 35% at 78% 18%, rgba(0,212,255,.1),  transparent 65%);
}

/* Layer 1 — sci-fi grid overlay (above scrim, below content) */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(0,212,255,.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.048) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse 88% 68% at 50% 42%, rgba(0,0,0,.8) 0%, transparent 100%);
  mask-image:         radial-gradient(ellipse 88% 68% at 50% 42%, rgba(0,0,0,.8) 0%, transparent 100%);
}

/* Layer 2 — side label */
.side-label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: rotate(180deg) translateY(50%);
  writing-mode: vertical-rl;
  font-family: "Space Grotesk", sans-serif;
  font-size: .7rem;
  letter-spacing: .34em;
  color: var(--cyan);
  opacity: .75;
  z-index: 4;
}

/* Layer 3 — hero text content */
.hero-content {
  position: relative;
  z-index: 4;
  padding-bottom: 1rem;
}

/* Overline (shared) */
.overline {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .28em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* H1 */
.hero h1 {
  font-weight: 700;
  font-size: clamp(2.8rem, 9vw, 6.8rem);
  text-transform: uppercase;
  letter-spacing: -.03em;
}
.hero h1 .glow {
  color: var(--cyan);
  text-shadow:
    0 0 32px rgba(0,212,255,.7),
    0 0 80px rgba(0,212,255,.28);
}

.hero-sub {
  color: var(--muted);
  max-width: 46ch;
  margin-top: 1.2rem;
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

/* Stat chips */
.stat-chips {
  list-style: none;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin: 2rem 0 0;
  padding: 0;
}
.stat-chips li {
  background: rgba(10,22,40,.65);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: .72rem 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 0;
}
.stat-chips strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  color: var(--cyan);
  line-height: 1.1;
}
.stat-chips span {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* === MARQUEE TICKER === */
.marquee {
  background: var(--mint);
  overflow: hidden;
  white-space: nowrap;
  padding: .9rem 0;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: inline-flex;
  animation: mq-scroll 28s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .05em;
  color: var(--bg);
  text-transform: uppercase;
}
@keyframes mq-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === SECTIONS === */
.sect {
  padding: clamp(72px,10vw,128px) 0;
  position: relative;
}

/* Alternate sections: slightly lighter bg + subtle dot grid */
.sect.alt {
  background: linear-gradient(180deg, var(--bg) 0%, #07111f 50%, var(--bg) 100%);
  isolation: isolate;
}
.sect.alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,212,255,.055) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.65) 18%, rgba(0,0,0,.65) 82%, transparent 100%);
  mask-image:         linear-gradient(180deg, transparent 0%, rgba(0,0,0,.65) 18%, rgba(0,0,0,.65) 82%, transparent 100%);
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,6vw,80px);
  align-items: center;
}
.split-text h2 {
  font-weight: 700;
  font-size: clamp(2rem,5.2vw,3.6rem);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.split-text p   { color: var(--muted); max-width: 52ch; }
.split-text .btn { margin-top: .8rem; }

.split-media {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.split-media img {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  max-height: 560px;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.65));
}
.split-media.narrow img { max-height: 520px; }

/* Glow halo — used behind phone/shoe images */
.glow-halo {
  position: absolute;
  width: 78%;
  height: 78%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(0,212,255,.46), transparent 68%);
  filter: blur(58px);
  z-index: 0;
  pointer-events: none;
}
.glow-halo.big { width: 92%; height: 92%; }

/* Trust row (LLM badges) */
.trust-row {
  list-style: none;
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 1.5rem;
  align-items: center;
}
.trust-row li {
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--cyan);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: .35rem .85rem;
}
.trust-row li:first-child {
  border: 0;
  color: var(--muted);
  padding-left: 0;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .7rem;
}

/* === CUSTOMIZE SECTION === */
.center-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}
.center-head h2 {
  font-weight: 700;
  font-size: clamp(2.2rem,6vw,4rem);
  text-transform: uppercase;
  margin: .4rem 0 1.2rem;
}
.center-head .lead { color: var(--muted); font-size: 1.08rem; }
.lead { color: var(--muted); }
.center-cta { text-align: center; margin-top: 3.2rem; }

/* Phone trio */
.trio {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(20px,4vw,48px);
  align-items: end;
}
.phone { margin: 0; text-align: center; position: relative; }
.phone img {
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.65));
  border-radius: 24px;
  border: 1px solid var(--hair);
  transition: transform .3s ease, filter .3s ease;
}
.phone:hover img {
  filter: drop-shadow(0 28px 56px rgba(0,0,0,.7)) drop-shadow(0 0 20px rgba(0,212,255,.2));
}
.phone.up { transform: translateY(-28px); }
.phone figcaption {
  margin-top: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* === FEATURE GRID === */
.feat-layout {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(32px,5vw,64px);
  align-items: center;
}

/* Anchor panel — AI shoe with pulsing glow */
.feat-anchor {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--hair);
  background: #060d18;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: anchor-glow 4s ease-in-out infinite;
}
@keyframes anchor-glow {
  0%,  100% { box-shadow: 0 0 40px rgba(0,212,255,.08),  inset 0 0 50px rgba(0,212,255,.04);  }
  50%       { box-shadow: 0 0 90px rgba(0,212,255,.18),  inset 0 0 80px rgba(0,212,255,.08);  }
}

/* Static glow on shoe image (no duplicate animation — one per view) */
.feat-anchor img {
  position: relative;
  z-index: 2;
  width: 90%;
  filter: drop-shadow(0 0 28px rgba(0,212,255,.5));
}
/* Suppress halo pulse inside feat-anchor (shoe image has its own glow) */
.feat-anchor .glow-halo { animation: none; }

.feat-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  z-index: 1;
}
.feat-anchor-cap {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 3;
  max-width: 80%;
}
.feat-anchor-cap .overline { margin-bottom: .5rem; }
.feat-anchor-cap h2 {
  font-weight: 700;
  font-size: clamp(1.55rem,2.8vw,2.1rem);
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0,0,0,.85);
}

/* Bento card grid */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 1.4rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  min-width: 0;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,.55);
  box-shadow:
    0 22px 52px rgba(0,0,0,.55),
    0 0 32px rgba(0,212,255,.13);
}
.card .ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,212,255,.12);
  color: var(--cyan);
  font-size: 1.1rem;
  margin-bottom: .95rem;
  flex-shrink: 0;
}
.card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--white);
}
.card p { color: var(--muted); font-size: .88rem; margin: 0; line-height: 1.58; }

/* === EMPOWERMENT SECTION === */
.emp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-top: .6rem;
}
/* Each block is now a subtle card panel */
.emp {
  background: rgba(0,212,255,.034);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 1.4rem;
  transition: border-color .3s ease, background .3s ease;
}
.emp:hover {
  border-color: rgba(0,212,255,.3);
  background: rgba(0,212,255,.07);
}
.emp.full { grid-column: 1 / -1; }
.emp h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--white);
}
.emp p  { color: var(--muted); font-size: .93rem; margin: 0; line-height: 1.6; }
.emp em { color: var(--cyan); font-style: normal; font-weight: 600; }

/* === WAITLIST SECTION === */
.waitlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: linear-gradient(135deg, #060f1e 0%, #040912 100%);
  border-top: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
}
/* Radial depth glow behind the form side */
.waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 85% at 25% 50%, rgba(0,212,255,.07), transparent 70%),
    radial-gradient(ellipse 45% 60% at 78% 30%, rgba(0,212,255,.04), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.waitlist-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #03070f;
  z-index: 1;
}
.waitlist-media img {
  position: relative;
  z-index: 2;
  max-height: 560px;
}
.wl-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  z-index: 1;
}

.waitlist-form {
  padding: clamp(40px,7vw,90px) clamp(22px,5vw,64px);
  max-width: 640px;
  position: relative;
  z-index: 1;
}
.waitlist-form h2 {
  font-weight: 700;
  font-size: clamp(1.9rem,5vw,3.2rem);
  text-transform: uppercase;
  margin: .3rem 0 1rem;
}
.waitlist-form .lead { margin-bottom: 1.8rem; }

/* Form fields */
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}
.field input {
  width: 100%;
  background: rgba(10,22,40,.72);
  border: 1px solid var(--hair);
  border-radius: 10px;
  padding: .9rem 1rem;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  min-height: 48px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder { color: #5d6b7e; }
.field input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,.18);
}
.field input[aria-invalid="true"] { border-color: #ff6b6b; }
.err {
  display: block;
  color: #ff8888;
  font-size: .8rem;
  margin-top: .35rem;
  min-height: 1em;
}
.form-note {
  margin-top: 1rem;
  font-size: .92rem;
  color: var(--mint);
  min-height: 1.2em;
}

/* === FOOTER === */
.ftr {
  background: #03070f;
  border-top: 1px solid var(--hair);
  padding: 52px 0 30px;
}
.ftr-in {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.ftr-brand img { height: 30px; width: auto; }
.ftr-tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: .73rem;
  letter-spacing: .26em;
  color: var(--cyan);
  margin-top: .8rem;
}
.ftr-mid { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
.socials { display: flex; gap: 1.2rem; font-size: 1.3rem; }
.socials a { color: var(--muted); transition: color .2s, transform .2s; }
.socials a:hover { color: var(--cyan); transform: translateY(-3px); }
.ftr-inv { padding: .6rem 1.4rem; font-size: .82rem; letter-spacing: .1em; }
.ftr-nav { display: flex; flex-direction: column; gap: .6rem; }
.ftr-nav a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.ftr-nav a:hover { color: var(--cyan); }
.ftr-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem;
  justify-content: space-between;
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hair);
  color: #67768a;
  font-size: .82rem;
}
.ftr-legal a { color: var(--cyan); }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* === RESPONSIVE === */

/* Tablet nav collapse */
@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .hdr-cta    { display: none; }
  .burger     { display: flex; }
  .feat-layout { grid-template-columns: 1fr; }
  .feat-anchor { min-height: 320px; }
}

/* Mobile full collapse */
@media (max-width: 760px) {
  .split,
  .split.rev           { grid-template-columns: 1fr; }
  .split.rev .split-media { order: -1; }
  .trio                { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; gap: 34px; }
  .phone.up            { transform: none; }
  .bento               { grid-template-columns: 1fr; }
  .emp-grid            { grid-template-columns: 1fr; }
  .waitlist            { grid-template-columns: 1fr; }
  .waitlist-media      { min-height: 340px; }
  .side-label          { display: none; }
  .hero                { min-height: auto; padding: 120px 0 64px; }
  .ftr-in              { flex-direction: column; gap: 1.6rem; }
  /* Hide hero grid on smallest screens (perf + layout simplicity) */
  .hero-grid           { display: none; }
}

/* Very small phones */
@media (max-width: 380px) {
  .stat-chips           { gap: .45rem; }
  .stat-chips li        { padding: .55rem .75rem; }
  .stat-chips strong    { font-size: 1.25rem; }
  .hero h1              { font-size: 2.4rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}