:root {
  color-scheme: dark;
  --bg: #0b0b10;
  --bg-deep: #07080c;
  --surface: #14151d;
  --surface-raised: #1a1b25;
  --surface-blue: #111c31;
  --text: #f7f7f9;
  --text-dim: #b6b7c2;
  --text-muted: #858792;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --blue: #147df5;
  --blue-bright: #62adff;
  --blue-soft: rgba(20, 125, 245, 0.16);
  --green: #44d58a;
  --sans: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wrap {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  color: #08090d;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  width: 55vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  animation: drift 18s ease-in-out infinite alternate;
}

.ambient__orb--one { top: -28vw; left: -12vw; background: #006dff; }
.ambient__orb--two { right: -24vw; top: 28vh; background: #128cff; animation-delay: -8s; }

@keyframes drift {
  to { transform: translate3d(5%, 7%, 0) scale(1.12); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 16, .78);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 16, .92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.04em;
  text-decoration: none;
}

.logo__mark {
  width: 33px;
  height: 33px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
}

.logo__mark img { width: 100%; height: 100%; object-fit: cover; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__links a,
.footer__links a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav__links a:hover,
.footer__links a:hover { color: var(--text); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(20, 125, 245, .28);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: #278cfb;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(20, 125, 245, .38);
}

.button:active { transform: translateY(0); }
.button:disabled { opacity: .62; cursor: wait; transform: none; }
.button svg { width: 18px; height: 18px; }

.button--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.button--ghost {
  background: rgba(255, 255, 255, .035);
  border-color: var(--line-strong);
  color: var(--text);
  box-shadow: none;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, .075);
  border-color: rgba(255,255,255,.28);
  box-shadow: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: 54px 0 64px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 62% at 70% 28%, rgba(18, 112, 255, .19), transparent 70%),
    linear-gradient(to bottom, transparent 78%, var(--bg));
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
}

.hero__copy { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue-bright);
}

.hero h1,
.section-heading h2,
.security h2,
.download h2,
.connect h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -.055em;
}

.hero h1 {
  max-width: 770px;
  margin-top: 22px;
  font-size: clamp(60px, 7.4vw, 112px);
  line-height: .9;
}

h1 em,
h2 em {
  color: var(--blue-bright);
  font-family: var(--serif);
  font-weight: 400;
}

.hero__lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--text-dim);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__actions .button--ghost {
  min-height: 58px;
  padding-inline: 26px;
  border-radius: 999px;
}

.store-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 8px 18px 8px 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: #020204;
  color: white;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0,0,0,.34);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.36);
  box-shadow: 0 18px 40px rgba(0,0,0,.42);
}

.store-button svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
}

.store-button span {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.store-button small {
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .01em;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 11px;
}

.hero__trust li { display: inline-flex; align-items: center; gap: 6px; }
.hero__trust svg { width: 15px; height: 15px; color: var(--green); }

.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  min-height: min(70vh, 650px);
}

.phone {
  position: relative;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 44px;
  background: linear-gradient(145deg, #30313a, #12131a 28%, #050509);
  box-shadow: var(--shadow), 0 0 0 1px rgba(20,125,245,.12);
}

.phone::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: 2;
  width: 31%;
  height: 21px;
  border-radius: 999px;
  background: #020205;
  transform: translateX(-50%);
}

.phone__screen {
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: #050509;
}

.phone__screen img { width: 100%; height: 100%; object-fit: cover; }

.phone--hero {
  height: min(69vh, 620px);
  aspect-ratio: 1260 / 2736;
  transform: rotate(2deg);
}

.float-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(18, 19, 27, .82);
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 11px;
  white-space: nowrap;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 32px rgba(0,0,0,.34);
}

.float-chip span { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.float-chip--left { left: -12px; top: 24%; }
.float-chip--right { right: -26px; top: 62%; }

.proof-bar {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--line);
  background: rgba(8, 9, 14, .72);
}

.proof-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-bar__grid > div {
  min-height: 126px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  border-right: 1px solid var(--line);
}

.proof-bar__grid > div:first-child { padding-left: 0; }
.proof-bar__grid > div:last-child { border-right: 0; padding-right: 0; }

.proof-bar strong {
  color: var(--blue-bright);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.06em;
}

.proof-bar span { max-width: 220px; color: var(--text-dim); font-size: 13px; line-height: 1.45; }

.section { padding: clamp(92px, 11vw, 150px) 0; }
.section--compact { padding-top: 60px; }

.section-heading { max-width: 780px; }
.section-heading--center { margin-inline: auto; text-align: center; }

.section-heading h2,
.security h2,
.download h2,
.connect h2 {
  margin-top: 18px;
  font-size: clamp(44px, 6vw, 80px);
  line-height: .98;
}

.section-heading p,
.security__copy > p,
.download__copy > p,
.connect__inner > div > p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--text-dim);
  font-size: 18px;
}

.feature-explorer {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  margin-top: 64px;
}

.feature-tabs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.feature-tab {
  width: 100%;
  min-height: 74px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: start;
  padding: 12px 15px;
  border: 1px solid transparent;
  border-radius: 17px;
  background: transparent;
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.feature-tab:hover {
  color: var(--text-dim);
  background: rgba(255,255,255,.025);
}

.feature-tab.is-active {
  border-color: rgba(20,125,245,.35);
  background: linear-gradient(100deg, rgba(20,125,245,.14), rgba(20,125,245,.035));
  color: var(--text);
  transform: translateX(6px);
}

.feature-tab__number {
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
}

.feature-tab strong { display: block; font-size: 17px; line-height: 1.3; letter-spacing: -.02em; }
.feature-tab small { display: block; margin-top: 3px; color: var(--text-muted); font-size: 13px; line-height: 1.35; }

.feature-preview {
  position: relative;
  min-height: 690px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(19,32,55,.74), rgba(12,13,19,.75) 60%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.feature-preview__glow {
  position: absolute;
  width: 370px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(20,125,245,.25);
  filter: blur(70px);
}

.phone--feature {
  z-index: 1;
  height: 570px;
  aspect-ratio: 1260 / 2736;
}

.phone--feature img { transition: opacity 150ms ease; }
.phone--feature img.is-loading { opacity: .15; }

.feature-preview__hint {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step {
  position: relative;
  min-height: 310px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(19, 20, 28, .66);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
}

.step__number {
  position: absolute;
  right: 26px;
  top: 22px;
  color: rgba(255,255,255,.22);
  font-family: var(--mono);
  font-size: 12px;
}

.step > svg {
  width: 52px;
  height: 52px;
  padding: 13px;
  border: 1px solid rgba(20,125,245,.32);
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue-bright);
}

.step h3 { margin: 54px 0 12px; font-size: 24px; line-height: 1.1; letter-spacing: -.035em; }
.step p { margin: 0; color: var(--text-dim); font-size: 15px; }

.security {
  position: relative;
  border-block: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(15,28,50,.72), rgba(10,11,16,.86) 62%);
}

.security__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.security__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.security-card:last-child { grid-column: 1 / -1; }

.security-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(11,12,18,.72);
}

.security-card svg { width: 32px; height: 32px; color: var(--blue-bright); }
.security-card h3 { margin: 26px 0 9px; font-size: 19px; letter-spacing: -.025em; }
.security-card p { margin: 0; color: var(--text-dim); font-size: 14px; }

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--blue-bright);
  font-weight: 600;
  text-underline-offset: 5px;
}

.pricing {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 28%, rgba(20,125,245,.13), transparent 34%),
    rgba(8,9,14,.5);
}

.pricing__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
}

.pricing-toggle {
  flex: 0 0 auto;
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(19,20,28,.82);
}

.pricing-toggle button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pricing-toggle button:hover { color: var(--text); }

.pricing-toggle button.is-active {
  background: var(--blue);
  color: white;
  box-shadow: 0 8px 24px rgba(20,125,245,.28);
}

.pricing-toggle button span {
  display: inline-block;
  margin-left: 4px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .02em;
}

.pricing-toggle button.is-active span { color: white; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.price-card {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(19,20,28,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.price-card--pro {
  border-color: rgba(20,125,245,.45);
  background: linear-gradient(145deg, rgba(20,125,245,.16), rgba(19,20,28,.82) 48%);
  box-shadow: 0 26px 70px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.08);
}

.price-card__badge {
  position: absolute;
  top: 20px;
  right: 22px;
  padding: 6px 10px;
  border: 1px solid rgba(98,173,255,.3);
  border-radius: 999px;
  background: rgba(20,125,245,.14);
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card__topline { display: flex; flex-direction: column; gap: 3px; }
.price-card__topline > span { font-size: 24px; font-weight: 700; letter-spacing: -.04em; }
.price-card__topline small { color: var(--text-muted); font-size: 13px; }

.price-card__price {
  min-height: 84px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 20px;
}

.price-card__price strong {
  font-size: clamp(52px, 6vw, 76px);
  line-height: .95;
  letter-spacing: -.07em;
}

.price-card__price span { padding-bottom: 7px; color: var(--text-muted); font-size: 14px; }
.price-card > p { min-height: 48px; margin: 15px 0 0; color: var(--text-dim); font-size: 14px; }
.price-card__cta { width: 100%; margin-top: 26px; }

.price-card__features {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 27px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--text-dim);
  font-size: 14px;
}

.price-card__features li { display: flex; align-items: flex-start; gap: 10px; }
.price-card__features li::before { content: "✓"; flex: 0 0 auto; color: var(--green); font-weight: 700; }

.pricing__note {
  max-width: 700px;
  margin: 26px auto 0;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(19,20,28,.64);
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(20,125,245,.34);
  background: rgba(20,125,245,.07);
}

.faq-list summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.025em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--blue-bright);
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 400;
}

.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -4px 22px 0; padding: 0 46px 22px 0; color: var(--text-dim); font-size: 15px; }

.download { padding: 40px 0 120px; }

.download__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid rgba(20,125,245,.3);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 22%, rgba(40,142,255,.25), transparent 34%),
    linear-gradient(125deg, rgba(19,34,59,.9), rgba(13,14,20,.96) 65%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
}

.download__copy { max-width: 720px; }
.download__copy .store-button { margin-top: 30px; }

.download__qr {
  flex: 0 0 auto;
  padding: 17px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(9,10,15,.8);
  text-align: center;
}

.download__qr img {
  width: 184px;
  height: 184px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 15px;
}
.download__qr span { display: block; margin-top: 12px; color: var(--text-muted); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.connect {
  padding: clamp(80px, 10vw, 130px) 0;
  border-top: 1px solid var(--line);
  background: rgba(8,9,14,.74);
}

.connect__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.connect h2 { font-size: clamp(42px, 5.6vw, 72px); }
.connect__action { min-width: 0; }

.waitlist__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.waitlist__input {
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.waitlist__input::placeholder { color: var(--text-muted); }
.waitlist__input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.waitlist__input[aria-invalid="true"] { border-color: #ff6b63; box-shadow: 0 0 0 4px rgba(255,59,48,.12); }

.waitlist__button { min-height: 56px; }

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 25px;
  margin: 12px 0 0;
  color: var(--text-dim);
  font-size: 14px;
}

.form-status.is-success { color: var(--green); }
.form-status.is-error { color: #ff8b84; }

.connect__action.is-complete .waitlist { display: none; }

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 12px;
  text-decoration: none;
  transition: color 180ms ease;
}

.instagram-link:hover { color: var(--text); }
.instagram-link svg { width: 19px; height: 19px; }

footer { padding: 36px 0; border-top: 1px solid var(--line); }

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer__links { display: flex; gap: 22px; }
.footer__grid > p { justify-self: end; margin: 0; color: var(--text-muted); font-family: var(--mono); font-size: 11px; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(.22,.75,.25,1);
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) 320px; gap: 36px; }
  .hero h1 { font-size: clamp(58px, 8vw, 84px); }
  .phone--hero { height: 540px; }
  .float-chip--left { left: -30px; }
  .float-chip--right { right: -8px; }

  .feature-explorer { grid-template-columns: minmax(0, .9fr) minmax(330px, 1fr); gap: 32px; }
  .feature-preview { min-height: 620px; }
  .phone--feature { height: 510px; }
  .security__grid { grid-template-columns: 1fr; }
  .pricing__intro { align-items: start; flex-direction: column; }
}

@media (max-width: 820px) {
  .wrap { width: min(100% - 36px, 720px); }
  .nav { min-height: 66px; }
  .nav__links { display: none; }
  .button--small { min-height: 42px; }

  .hero {
    min-height: auto;
    padding: 46px 0 76px;
  }

  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__copy { text-align: center; }
  .hero h1 { max-width: 650px; margin-inline: auto; font-size: clamp(52px, 13.4vw, 82px); }
  .hero__lede { margin-inline: auto; font-size: 17px; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__visual { min-height: 520px; }
  .phone--hero { height: 520px; }
  .float-chip--left { left: calc(50% - 210px); }
  .float-chip--right { right: calc(50% - 220px); }

  .proof-bar__grid { grid-template-columns: 1fr; }
  .proof-bar__grid > div,
  .proof-bar__grid > div:first-child,
  .proof-bar__grid > div:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-bar__grid > div:last-child { border-bottom: 0; }

  .feature-explorer { grid-template-columns: 1fr; }
  .feature-tabs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 78vw);
    gap: 10px;
    overflow-x: auto;
    padding: 4px 4px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .feature-tabs::-webkit-scrollbar { display: none; }
  .feature-tab { scroll-snap-align: center; border-color: var(--line); background: rgba(19,20,28,.6); }
  .feature-tab.is-active { transform: none; }
  .feature-preview { min-height: 590px; }
  .phone--feature { height: 490px; }

  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; }
  .step h3 { margin-top: 36px; }

  .faq-layout { grid-template-columns: 1fr; }
  .security__cards { grid-template-columns: 1fr; }
  .security-card:last-child { grid-column: auto; }

  .pricing-grid { grid-template-columns: 1fr; }

  .connect__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer__grid > p { justify-self: center; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 32px, 520px); }
  .logo { font-size: 17px; }
  .logo__mark { width: 31px; height: 31px; }
  .button--small { padding: 0 16px; }
  .button--small svg { display: none; }

  .hero { padding-top: 38px; }
  .hero h1 { margin-top: 18px; font-size: clamp(48px, 15vw, 68px); }
  .hero__lede { margin-top: 22px; }
  .hero__actions { margin-top: 24px; }
  .hero__actions .button--ghost { min-height: 54px; }
  .store-button { min-height: 54px; }
  .store-button span { font-size: 18px; }
  .hero__trust { gap: 9px 13px; }
  .hero__visual { min-height: 450px; }
  .phone--hero { height: 450px; }
  .float-chip { font-size: 9px; padding: 8px 10px; }
  .float-chip--left { left: 0; top: 22%; }
  .float-chip--right { right: 0; top: 67%; }

  .proof-bar__grid > div { grid-template-columns: 74px 1fr; }
  .proof-bar strong { font-size: 38px; }

  .section { padding: 90px 0; }
  .section--compact { padding-top: 30px; }
  .section-heading h2,
  .security h2,
  .download h2,
  .connect h2 { font-size: 43px; }
  .section-heading p,
  .security__copy > p,
  .download__copy > p,
  .connect__inner > div > p { font-size: 16px; }

  .feature-explorer { margin-top: 38px; }
  .feature-tab { min-height: 92px; }
  .feature-preview { min-height: 510px; border-radius: 26px; }
  .phone--feature { height: 420px; }
  .phone { border-radius: 36px; padding: 6px; }
  .phone__screen { border-radius: 30px; }

  .step { padding: 26px; border-radius: 22px; }
  .step h3 { font-size: 22px; }
  .security-card { padding: 23px; }

  .pricing__intro { gap: 28px; }
  .pricing-toggle { width: 100%; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pricing-toggle button { padding-inline: 8px; font-size: 12px; }
  .pricing-toggle button span { display: block; margin: -2px 0 0; font-size: 8px; }
  .pricing-grid { margin-top: 38px; }
  .price-card { padding: 28px 24px; border-radius: 24px; }
  .price-card__price strong { font-size: 54px; }

  .faq-list summary { padding: 18px; font-size: 16px; }
  .faq-list details p { margin-inline: 18px; padding-right: 20px; }

  .download { padding-bottom: 88px; }
  .download__card { grid-template-columns: 1fr; padding: 38px 24px; border-radius: 26px; text-align: center; }
  .download__copy .eyebrow { justify-content: center; }
  .download__copy .store-button { margin-inline: auto; }
  .download__qr { display: none; }

  .waitlist__row { grid-template-columns: 1fr; }
  .waitlist__button { width: 100%; }
  .connect__inner { text-align: center; }
  .connect__inner .eyebrow { justify-content: center; }
  .instagram-link { justify-content: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
}

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