:root {
  --bg: #070a08;
  --bg-2: #0a0f0b;
  --ink: #f2f7f1;
  --ink-soft: rgba(230, 240, 228, .70);
  --ink-muted: rgba(230, 240, 228, .42);
  --accent: #166534;
  --accent-bright: #7eed22;
  --accent-mid: #22c55e;
  --accent-rgb: 126, 237, 34;
  --bg-rgb: 7, 10, 8;
  --grad: linear-gradient(100deg, #a6f75a 0%, #7eed22 50%, #35c65a 100%);
  --grad-line: linear-gradient(90deg, #a6f75a, #35c65a);
  --grad-soft: linear-gradient(90deg, transparent, #a6f75a 22%, #35c65a 78%, transparent);
  --grad-btn: linear-gradient(180deg, #8bf03a, #56c81f);
  --btn-ink: #0a1a05;
  --field-a: #0e1712;
  --field-b: #0a130b;
  --field-vignette: rgba(0, 0, 0, .55);
  --line: rgba(var(--accent-rgb), .16);
  --line-soft: rgba(230, 240, 228, .09);
  --radius: 14px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Honeycomb tile (Hero Patterns "hexagons", recoloured lime) */
  --hex: url("data:image/svg+xml,%3Csvg width='28' height='49' viewBox='0 0 28 49' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%237eed22' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/svg%3E");
  /* Flowing topographic wave lines */
  --wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='600' viewBox='0 0 1600 600' fill='none'%3E%3Cg stroke='%237eed22' stroke-width='1.3' fill='none'%3E%3Cpath d='M-40 130 C 400 40 820 250 1650 110'/%3E%3Cpath d='M-40 210 C 400 120 820 330 1650 190'/%3E%3Cpath d='M-40 300 C 400 210 820 420 1650 280'/%3E%3Cpath d='M-40 400 C 400 310 820 520 1650 380'/%3E%3Cpath d='M-40 490 C 400 400 820 610 1650 470'/%3E%3C/g%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html { background: var(--bg); overflow-x: hidden; scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; }

/* ============ Ambient honeycomb field ============ */
.field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(140% 90% at 50% -8%, var(--field-a) 0%, transparent 56%),
    radial-gradient(120% 70% at 50% 120%, var(--field-b) 0%, transparent 55%),
    var(--bg);
}

.field__hex {
  position: absolute;
  inset: -25%;
  background-image: var(--hex);
  background-size: 66px 115px;
  background-repeat: repeat;
  will-change: transform;
}

.field__hex--base {
  opacity: .11;
  -webkit-mask-image: radial-gradient(125% 105% at 50% 26%, #000 0%, #000 42%, transparent 80%);
  mask-image: radial-gradient(125% 105% at 50% 26%, #000 0%, #000 42%, transparent 80%);
  animation: hexDrift 120s linear infinite;
}

.field__hex--bright {
  opacity: .46;
  -webkit-mask-image: radial-gradient(46% 42% at 54% 40%, #000 0%, rgba(0,0,0,.5) 38%, transparent 72%);
  mask-image: radial-gradient(46% 42% at 54% 40%, #000 0%, rgba(0,0,0,.5) 38%, transparent 72%);
  animation: hexDrift 120s linear infinite, hexPulse 10s ease-in-out infinite;
}

.field__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(96px);
  pointer-events: none;
}

.field__glow--core {
  width: 70vw; height: 70vw; max-width: 820px; max-height: 820px;
  top: -16%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(var(--accent-rgb), .24), rgba(34, 197, 94, .09) 44%, transparent 68%);
  animation: breathe 12s var(--ease) infinite;
}

.field__glow--low {
  width: 80vw; height: 46vw;
  bottom: -26%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(22, 101, 52, .34), transparent 66%);
  opacity: .7;
}

/* Subtle cursor spotlight — driven by --mx / --my (JS), calm by default */
.field__spot {
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 320px at var(--mx, 50%) var(--my, 22%), rgba(var(--accent-rgb), .09), transparent 70%);
  opacity: 0;
  transition: opacity .6s ease;
}
body.has-pointer .field__spot { opacity: 1; }

.field__grain {
  position: absolute; inset: 0; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.field__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(130% 120% at 50% 40%, transparent 55%, var(--field-vignette) 100%);
}

/* ============ Nav ============ */
.nav {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  width: min(1160px, 100%); margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 44px);
}

.nav__brand { display: inline-flex; align-items: center; text-decoration: none; background: var(--bg); isolation: isolate; border-radius: 8px; }
.nav__logo { height: 56px; width: auto; display: block; mix-blend-mode: screen; }

.nav__cta {
  display: inline-flex; align-items: center; height: 38px; padding: 0 18px;
  border: 1px solid rgba(var(--accent-rgb), .34); border-radius: var(--radius-pill);
  color: #eafff0; background: rgba(var(--accent-rgb), .08);
  font-size: 13.5px; font-weight: 600; text-decoration: none;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.nav__cta:hover, .nav__cta:focus-visible {
  color: #fff; border-color: rgba(var(--accent-rgb), .62); background: rgba(var(--accent-rgb), .16); outline: none;
}

/* ============ Layout ============ */
main { position: relative; z-index: 1; flex: 1; }

.hero {
  position: relative; width: 100%; max-width: 100%; margin: 0; padding: 0; overflow: hidden;
}
.hero--split { position: relative; min-height: calc(100svh - 98px); }
.hero__col {
  position: relative; z-index: 2;
  width: min(1160px, 100%); margin: 0 auto; min-height: inherit;
  padding: clamp(28px, 4vh, 52px) clamp(20px, 4vw, 44px);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; text-align: left;
}
.hero__col > * { max-width: 540px; opacity: 0; transform: translateY(12px); animation: rise .75s var(--ease) forwards; }
.hero__col > *:nth-child(1) { animation-delay: .06s; }
.hero__col > *:nth-child(2) { animation-delay: .16s; }
.hero__col > *:nth-child(3) { animation-delay: .26s; }
.hero__col > *:nth-child(4) { animation-delay: .36s; }

/* Hero media — full-bleed to the right edge, faded into the dark on the left */
.hero__media {
  position: absolute; top: 0; right: 0; bottom: 0; z-index: 1;
  width: clamp(440px, 54vw, 1020px);
  opacity: 0; animation: heroFade 1s var(--ease) .25s forwards;
  /* dissolve only the far-left edge into the dark — clears the phone/subject */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 26%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 26%);
}
.hero__media-img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: 62% 26%;
  filter: brightness(1.08) contrast(1.06) saturate(1.12);
}
.hero__media-glow {
  position: absolute; top: 0; bottom: 0; left: 6%; width: 46%; z-index: 2; pointer-events: none;
  background: radial-gradient(60% 66% at 40% 52%, rgba(var(--accent-rgb), .26), transparent 72%);
  filter: blur(60px);
}
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb),.5) 0%, rgba(var(--bg-rgb),0) 5%),
    linear-gradient(0deg, var(--bg) 0%, rgba(var(--bg-rgb),0) 10%);
}
@keyframes heroFade { to { opacity: 1; } }

/* ============ Eyebrow ============ */
.eyebrow {
  display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center;
  max-width: 100%; gap: 9px; margin: 0 0 34px; padding: 6px 15px 6px 12px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: rgba(var(--accent-rgb), .05); color: rgba(190, 240, 150, .92);
  font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright);
  box-shadow: 0 0 10px var(--accent-bright); animation: pulse 2.4s ease-in-out infinite;
}

/* ============ Stacked lockup ============ */
.lockup {
  position: relative; display: flex; flex-direction: column; align-items: center;
  margin-bottom: 30px;
}
.lockup__halo {
  position: absolute; top: -22%; left: 50%; width: 300px; height: 300px;
  transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), .26), rgba(34, 197, 94, .08) 44%, transparent 68%);
  filter: blur(20px); animation: breathe 7s var(--ease) infinite; pointer-events: none;
}
.lockup__icon {
  position: relative; width: clamp(74px, 12vw, 92px); height: auto;
  filter: drop-shadow(0 0 22px rgba(var(--accent-rgb), .34)) drop-shadow(0 16px 36px rgba(0, 0, 0, .5));
  animation: float 7s var(--ease) infinite;
}
.lockup__word {
  position: relative; width: clamp(188px, 42vw, 246px); height: auto;
  margin-top: 16px; opacity: .96;
}

/* ============ Headline ============ */
.headline {
  margin: 0 0 22px; font-size: clamp(34px, 5.9vw, 68px); line-height: 1.03;
  font-weight: 600; letter-spacing: -.025em; color: var(--ink);
}
.headline__accent {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.subline {
  max-width: 600px; margin: 0 0 42px; font-size: clamp(15px, 1.55vw, 19px);
  line-height: 1.5; font-weight: 400; color: var(--ink-soft); text-wrap: balance;
}

/* ============ Access form ============ */
.access { width: 100%; max-width: 486px; }
.signup {
  display: flex; gap: 8px; padding: 7px;
  border: 1px solid var(--line-soft); border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 22px 52px rgba(0, 0, 0, .45);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.signup:focus-within {
  border-color: var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 0 0 4px rgba(var(--accent-rgb),.1), 0 22px 52px rgba(0,0,0,.45);
}
.signup input {
  flex: 1; min-width: 0; height: 46px; padding: 0 18px; border: 0; border-radius: var(--radius-pill);
  background: transparent; color: var(--ink); font-family: inherit; font-size: 15px;
}
.signup input::placeholder { color: var(--ink-muted); }
.signup input:focus { outline: none; }
.signup button {
  flex-shrink: 0; height: 46px; padding: 0 24px; border: 0; border-radius: var(--radius-pill);
  background: var(--grad-btn); color: var(--btn-ink);
  font-family: inherit; font-size: 14.5px; font-weight: 600; white-space: nowrap; cursor: pointer;
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), .5), 0 8px 22px rgba(86, 200, 31, .3);
  transition: transform .16s var(--ease), box-shadow .2s ease, filter .2s ease;
}
.signup button:hover:not(:disabled) {
  transform: translateY(-1px); filter: brightness(1.06);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb),.7), 0 12px 30px rgba(86,200,31,.42);
}
.signup button:active:not(:disabled) { transform: translateY(0) scale(.99); }
.signup button:disabled { opacity: .6; cursor: default; }
.signup.is-done { justify-content: center; }
.signup__success { margin: 0; padding: 12px 8px; font-size: 15px; color: rgba(190, 240, 150, .95); }
.signup__success strong { color: var(--ink); font-weight: 600; }
.signup__note {
  margin: 14px 2px 0; font-size: 12.5px; line-height: 1.5; color: var(--ink-muted); transition: color .2s ease;
}
.signup__note[data-tone="ok"] { color: rgba(190, 240, 150, .92); }
.signup__note[data-tone="err"] { color: #f9a8b4; }

/* ============ Product glimpse — device duo ============ */
.glimpse {
  position: relative;
  width: min(1240px, 100%); margin: clamp(96px, 15vh, 176px) auto 0;
  padding: 0 clamp(20px, 4vw, 44px); text-align: center;
}
/* Shared honeycomb backdrop — identical treatment in the glimpse & experts
   sections: full-bleed width, faded top & bottom for a seamless blend, and a
   soft opacity that never fights the text on top. */
.glimpse__bg, .experts__bg {
  position: absolute; top: -12%; bottom: -12%; left: 50%; width: 100vw; transform: translateX(-50%);
  z-index: 0; pointer-events: none; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
}
.glimpse__hex, .experts__hex {
  position: absolute; inset: -12%;
  background-image: var(--hex); background-size: 66px 115px; background-repeat: repeat;
  opacity: .06;
  -webkit-mask-image: radial-gradient(72% 78% at 50% 50%, #000 0%, transparent 80%);
  mask-image: radial-gradient(72% 78% at 50% 50%, #000 0%, transparent 80%);
  animation: hexDrift 150s linear infinite;
}
.glimpse__glow {
  position: absolute; inset: 0;
  background: radial-gradient(46% 42% at 50% 30%, rgba(var(--accent-rgb), .07), transparent 72%);
}
.glimpse__head, .glimpse .duo { position: relative; z-index: 1; }
.glimpse__head { margin: 0 auto clamp(96px, 13.5vh, 150px); }
.glimpse__kicker {
  margin: 0 0 clamp(16px, 2.2vh, 22px); font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent-bright); opacity: .85;
}
.glimpse__title {
  max-width: 900px; margin: 0 auto; letter-spacing: -.01em; color: var(--ink);
}
/* Lead-in: an editorial opening clause that flows into the bold payoff */
.glimpse__title-a {
  display: block; margin-bottom: clamp(14px, 1.9vh, 22px);
  font-size: clamp(16px, 1.9vw, 21px); font-weight: 500; font-style: italic;
  letter-spacing: 0; color: var(--ink-soft);
}
/* Payoff: the promise, in full weight */
.glimpse__title-b {
  display: block; font-size: clamp(26px, 3.5vw, 44px); font-weight: 700;
  line-height: 1.12; letter-spacing: -.025em; color: var(--ink); text-wrap: balance;
}
.glimpse__title-b em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* Claim-lifecycle breadcrumb with small hex nodes */
.lifecycle {
  list-style: none; margin: clamp(24px, 3.4vh, 38px) 0 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-muted);
}
.lifecycle li { display: inline-flex; align-items: center; gap: 18px; }
.lifecycle li + li::before {
  content: ""; flex: none; width: 6px; height: 6px; border-radius: 1.5px; transform: rotate(45deg);
  background: var(--accent-bright); box-shadow: 0 0 8px rgba(var(--accent-rgb), .6);
}

/* ---- Pre-launch status — its own section, bold and consistent with Experts ---- */
.prelaunch {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(20px, 2.8vh, 32px);
  width: min(760px, 100%); margin: 0 auto;
  padding: clamp(80px, 12vh, 148px) clamp(20px, 4vw, 44px) clamp(84px, 12vh, 152px);
}
.prelaunch__pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 15px 6px 12px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: rgba(var(--accent-rgb), .05); color: rgba(190, 240, 150, .92);
  font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.prelaunch__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright);
  box-shadow: 0 0 10px var(--accent-bright); animation: pulse 2.4s ease-in-out infinite;
}
.prelaunch__title {
  margin: 0; font-size: clamp(28px, 3.7vw, 46px); font-weight: 700;
  line-height: 1.05; letter-spacing: -.03em; color: var(--ink);
}
.prelaunch__title span {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.prelaunch__note {
  margin: 0; font-size: clamp(15px, 1.7vw, 18.5px); line-height: 1.6;
  color: var(--ink-soft); text-wrap: balance;
}

/* Stage holds the laptop with the phone overlapping in front */
.duo {
  position: relative; margin: 0 auto; max-width: 900px;
  perspective: 1800px;
}
.duo__glow {
  position: absolute; inset: 34% 8% -10%; z-index: 0; pointer-events: none;
  background: radial-gradient(56% 60% at 50% 84%, rgba(var(--accent-rgb), .22), transparent 72%);
  filter: blur(58px);
  animation: duoGlowPulse 9s var(--ease) infinite;
}
@keyframes duoGlowPulse { 0%, 100% { opacity: .82; } 50% { opacity: 1; } }

/* Browser / desktop frame */
.browser {
  position: relative; z-index: 1; width: 100%;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), .16);
  background: #0d120e;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 0 46px rgba(var(--accent-rgb), .32),
    0 26px 58px rgba(86, 200, 31, .18);
  transform: rotateX(4deg);
}
.browser__bar {
  display: flex; align-items: center; gap: 7px; height: 34px; padding: 0 14px;
  background: rgba(255,255,255,.04); border-bottom: 1px solid var(--line-soft);
}
.browser__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.16); }
.browser__url {
  margin-left: 12px; padding: 3px 12px; border-radius: 999px;
  background: rgba(255,255,255,.05); color: var(--ink-muted);
  font-size: 11px; letter-spacing: .02em;
}
.browser__screen {
  position: relative; aspect-ratio: 960 / 560; overflow: hidden; background: #0a0f0b;
}
.browser__img {
  display: block; width: 100%; height: auto;
  filter: saturate(.9) brightness(.8) contrast(1.02) blur(5px);
  transform: scale(1.05);
}
.browser__veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb),.24) 0%, transparent 24%, transparent 62%, rgba(var(--bg-rgb),.5) 100%),
    linear-gradient(180deg, rgba(22,101,52,.12), rgba(10,20,12,.14));
}

/* Phone frame — overlaps the browser, front-right */
.phone {
  position: absolute; z-index: 6; right: -2%; bottom: -12%; width: 20%; min-width: 132px;
  border-radius: 26px; padding: 7px;
  background: linear-gradient(160deg, #20281f, #0c110d);
  border: 1px solid rgba(var(--accent-rgb), .22);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, .64),
    0 24px 44px rgba(86, 200, 31, .22);
  transform: rotateX(3deg) rotateY(-8deg);
}
.phone__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 32%; height: 5px; border-radius: 999px; background: rgba(0,0,0,.5); z-index: 2;
}
.phone__screen {
  position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 296 / 640; background: #0a0f0b;
}
.phone__img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(.94) brightness(.88) contrast(1.02) blur(3.5px); transform: scale(1.07); }
.phone__veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(var(--bg-rgb),.4) 100%), linear-gradient(180deg, rgba(22,101,52,.1), rgba(10,20,12,.12));
}

.glimpse__tag {
  display: inline-block; margin-top: 40px;
  padding: 7px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: rgba(9, 14, 10, .72);
  font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(190, 240, 150, .95);
}

/* ============ Built by Experts ============ */
.experts {
  position: relative; width: 100%; max-width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(34px, 5vh, 64px);
  margin: 0;
  padding: clamp(72px, 10vh, 120px) clamp(20px, 4vw, 44px) clamp(64px, 9vh, 112px);
  overflow: hidden;
}
.experts__cta {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
/* .experts__bg + .experts__hex share the unified backdrop defined above. */
.experts__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(42% 54% at 33% 48%, rgba(var(--accent-rgb), .12), transparent 70%),
    radial-gradient(40% 50% at 70% 52%, rgba(34, 197, 94, .06), transparent 72%);
}
.experts__inner {
  position: relative; z-index: 1;
  width: min(1120px, 100%); margin: 0 auto;
  display: flex; flex-direction: row; align-items: center;
  gap: clamp(28px, 5vw, 76px); text-align: left;
}
.experts__portrait { flex: 0 0 auto; width: clamp(280px, 40%, 460px); align-self: stretch; display: flex; align-items: flex-end; }
.experts__portrait img {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, .38));
}
.experts__copy { flex: 1 1 auto; min-width: 0; }
.experts__title {
  margin: 0 0 clamp(18px, 2.4vh, 26px); font-size: clamp(28px, 3.5vw, 46px); font-weight: 700;
  line-height: 1.05; letter-spacing: -.03em; color: var(--ink);
}
.experts__copy .foot__cta { margin-top: clamp(22px, 3vh, 32px); }
.experts__underline { position: relative; display: inline-block; }
.experts__underline::after {
  content: ""; position: absolute; left: 3%; right: 3%; bottom: -.18em; height: 3px; border-radius: 3px;
  background: var(--grad-line);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), .5);
}
.experts__title span {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.experts__rule {
  display: block; width: 92px; height: 3px; margin: 14px auto 18px; border-radius: 3px;
  background: var(--grad-soft);
  box-shadow: 0 0 14px rgba(var(--accent-rgb), .45);
}
.experts__body {
  max-width: 560px; margin: 0; font-size: clamp(15px, 1.7vw, 18.5px);
  line-height: 1.62; color: var(--ink-soft); text-wrap: pretty;
}
.experts__foot { position: relative; z-index: 1; text-align: center; }

/* Stack the portrait above the copy on narrow screens */
@media (max-width: 820px) {
  .experts__inner { flex-direction: column; align-items: center; text-align: center; gap: clamp(20px, 3vh, 34px); }
  .experts__portrait { width: clamp(240px, 62vw, 340px); align-self: center; }
  /* iOS Safari boxes drop-shadow on transparent PNGs — drop it on mobile */
  .experts__portrait img { filter: none; }
  .experts__copy { display: flex; flex-direction: column; align-items: center; }
  .experts__body { margin: 0 auto; }
  .experts__title { font-size: clamp(27px, 7vw, 40px); }
}

/* ============ "Necturizing" brewing overlay ============ */
.brewing {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  display: grid; place-items: center;
}
.brewing__scrim {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 54% 60% at 50% 46%, rgba(6,9,7,.72), rgba(6,9,7,.5) 62%, rgba(6,9,7,0) 100%);
}
.brewing__inner {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 20px;
  transform: translateY(-4%);
}

/* NecturAI platform orb — replicated from the app, in "thinking / working" state */
@property --orb-size { syntax: '<length>'; inherits: true; initial-value: 116px; }
.nectur-orb {
  position: relative; width: var(--orb-size, 116px); height: var(--orb-size, 116px);
  display: grid; place-items: center; flex-shrink: 0; pointer-events: none;
}
.nectur-orb .no-body {
  position: relative; width: calc(var(--orb-size) * .895); height: calc(var(--orb-size) * .895);
  border-radius: 9999px; overflow: hidden; isolation: isolate;
  background: radial-gradient(circle at 35% 34%, rgba(255,255,245,.96), rgba(228,248,205,.9) 31%, rgba(126,205,88,.78) 58%, rgba(65,172,55,.94) 82%, rgba(31,126,38,.98) 100%);
  box-shadow:
    0 0 calc(var(--orb-size) * .154) rgba(48,160,55,.42),
    0 0 calc(var(--orb-size) * .368) rgba(48,160,55,.2),
    inset 0 0 calc(var(--orb-size) * .091) rgba(255,255,255,.92),
    inset 0 calc(var(--orb-size) * -.098) calc(var(--orb-size) * .147) rgba(22,101,52,.34),
    inset calc(var(--orb-size) * .049) calc(var(--orb-size) * .035) calc(var(--orb-size) * .119) rgba(255,255,255,.58);
  transform-origin: center;
}
.nectur-orb .no-core {
  position: absolute; inset: 12%; border-radius: 9999px;
  background: radial-gradient(circle at 42% 38%, rgba(255,255,255,.93), rgba(245,255,232,.52) 42%, transparent 72%);
  mix-blend-mode: screen; filter: blur(calc(var(--orb-size) * .028)); z-index: 6;
}
.nectur-orb .no-edge {
  position: absolute; inset: 4px; border-radius: 9999px; border: 2px solid rgba(255,255,255,.46);
  box-shadow: inset 0 0 calc(var(--orb-size) * .063) rgba(255,255,255,.74),
    inset 0 0 calc(var(--orb-size) * .147) rgba(73,190,70,.32),
    0 0 calc(var(--orb-size) * .098) rgba(48,160,55,.45);
  z-index: 8;
}
.nectur-orb .no-glass {
  position: absolute; top: 8%; right: 13%; width: 35%; height: 63%; border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.06));
  filter: blur(calc(var(--orb-size) * .021)); transform: rotate(-22deg); opacity: .82; z-index: 10;
}
.nectur-orb .no-rim {
  position: absolute; inset: 1px; border-radius: 9999px;
  background: conic-gradient(from 230deg, transparent 0deg, rgba(255,255,255,.86) 28deg, transparent 70deg, transparent 190deg, rgba(106,196,80,.82) 240deg, transparent 300deg);
  -webkit-mask: radial-gradient(circle, transparent 62%, #000 64%); mask: radial-gradient(circle, transparent 62%, #000 64%);
  opacity: .9; z-index: 11;
}
.nectur-orb .no-sheet {
  position: absolute; inset: -12%; border-radius: 48% 52% 47% 53% / 42% 48% 52% 58%;
  filter: blur(calc(var(--orb-size) * .042)); opacity: .74; mix-blend-mode: multiply; z-index: 2;
}
.nectur-orb .no-sheet--a { background: radial-gradient(circle at 72% 28%, rgba(34,132,36,.72), transparent 36%); animation: no-sheetA 8s cubic-bezier(.45,.05,.25,.95) infinite alternate; }
.nectur-orb .no-sheet--b { background: radial-gradient(circle at 30% 78%, rgba(31,126,38,.5), transparent 42%); animation: no-sheetB 10s cubic-bezier(.45,.05,.25,.95) infinite alternate; }
.nectur-orb .no-sheet--c { background: radial-gradient(circle at 62% 62%, rgba(88,185,72,.44), transparent 48%); animation: no-sheetC 12s cubic-bezier(.45,.05,.25,.95) infinite alternate; }
.nectur-orb .no-band {
  position: absolute; width: 150%; height: 56%; left: -25%; top: 24%; border-radius: 50%;
  filter: blur(calc(var(--orb-size) * .017)); opacity: .36; z-index: 5; mix-blend-mode: soft-light;
}
.nectur-orb .no-band--a { background: radial-gradient(ellipse at center, transparent 42%, rgba(255,255,255,.8) 48%, transparent 54%); animation: no-bandFlowA 7s ease-in-out infinite; }
.nectur-orb .no-band--b { background: radial-gradient(ellipse at center, transparent 40%, rgba(34,132,36,.86) 47%, transparent 56%); animation: no-bandFlowB 9s ease-in-out infinite reverse; }

/* working / responding state */
.nectur-orb.thinking .no-body { animation: no-thinkingBody 4s ease-in-out infinite; }
.nectur-orb.thinking .no-sheet--a, .nectur-orb.thinking .no-sheet--b, .nectur-orb.thinking .no-sheet--c,
.nectur-orb.thinking .no-band--a, .nectur-orb.thinking .no-band--b { animation-duration: 4.2s; }
.nectur-orb.cr-orb-generating .no-body { filter: saturate(1.3) brightness(.95); }
.nectur-orb.cr-orb-generating::after {
  content: ''; position: absolute; inset: -16%; border-radius: 50%;
  border: 1px solid rgba(74,222,128,.32); animation: cr-gen-ring 3.2s ease-out infinite; pointer-events: none;
}

.brewing__label {
  margin: 0; display: inline-flex; align-items: center;
  font-size: 15px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
}
.brewing__word {
  background: linear-gradient(100deg, #bff58f 0%, #7eed22 38%, #f2fff0 50%, #7eed22 62%, #bff58f 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: brewShimmer 3.2s linear infinite;
}
.brewing__dots { display: inline-flex; align-items: baseline; margin-left: 3px; }
.brewing__dots i {
  width: 3px; height: 3px; margin-left: 3px; border-radius: 50%; background: var(--accent-bright);
  opacity: .25; animation: brewDot 1.4s ease-in-out infinite;
}
.brewing__dots i:nth-child(2) { animation-delay: .2s; }
.brewing__dots i:nth-child(3) { animation-delay: .4s; }

@keyframes no-thinkingBody {
  0%, 100% { transform: scale(.99) rotate(0deg);   border-radius: 51% 49% 50% 50% / 48% 52% 48% 52%; }
  50%       { transform: scale(1.035) rotate(1deg); border-radius: 46% 54% 53% 47% / 54% 46% 52% 48%; }
}
@keyframes no-sheetA { 0% { transform: translate(0,0) rotate(0) scale(1); } 100% { transform: translate(-6%,8%) rotate(22deg) scale(1.12); } }
@keyframes no-sheetB { 0% { transform: translate(0,0) rotate(0) scale(1); } 100% { transform: translate(8%,-5%) rotate(-18deg) scale(1.08); } }
@keyframes no-sheetC { 0% { transform: translate(5%,-4%) rotate(0) scale(1); } 100% { transform: translate(-3%,7%) rotate(18deg) scale(1.15); } }
@keyframes no-bandFlowA { 0% { transform: rotate(-28deg) translateY(-22px) scale(.92); } 50% { transform: rotate(-15deg) translateY(10px) scale(1.04); } 100% { transform: rotate(-33deg) translateY(24px) scale(1); } }
@keyframes no-bandFlowB { 0% { transform: rotate(28deg) translateY(18px) scale(.96); } 50% { transform: rotate(12deg) translateY(-14px) scale(1.06); } 100% { transform: rotate(34deg) translateY(-24px) scale(1); } }
@keyframes cr-gen-ring { 0% { transform: scale(.85); opacity: .5; } 100% { transform: scale(1.55); opacity: 0; } }
@keyframes brewShimmer { 0% { background-position: 120% 0; } 100% { background-position: -120% 0; } }
@keyframes brewDot { 0%,100% { opacity: .25; } 50% { opacity: 1; } }

/* ============ Footer ============ */
.foot {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  width: min(1160px, 100%); margin: 0 auto;
  padding: 8px clamp(20px, 4vw, 44px) 54px; text-align: center;
}
.foot__cta {
  display: inline-flex; align-items: center; height: 54px; padding: 0 40px;
  border-radius: var(--radius-pill);
  background: var(--grad-btn); color: var(--btn-ink);
  font-size: 16px; font-weight: 600; letter-spacing: .01em; text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), .5), 0 12px 30px rgba(86, 200, 31, .32);
  transition: transform .16s var(--ease), box-shadow .2s ease, filter .2s ease;
}
.foot__cta:hover, .foot__cta:focus-visible {
  transform: translateY(-1px); filter: brightness(1.06);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), .7), 0 14px 32px rgba(86, 200, 31, .42); outline: none;
}
.foot__meta { font-size: 12.5px; color: var(--ink-muted); }

/* ============ Motion ============ */
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes breathe { 0%,100% { opacity: .66; transform: translateX(-50%) scale(.97); } 50% { opacity: 1; transform: translateX(-50%) scale(1.05); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes hexDrift { to { transform: translate(-66px, -115px); } }
@keyframes hexPulse { 0%,100% { opacity: .26; } 50% { opacity: .4; } }

/* lockup halo uses translateX in its own keyframe */
.lockup__halo { animation-name: haloBreathe; }
@keyframes haloBreathe { 0%,100% { opacity: .62; transform: translateX(-50%) scale(.94); } 50% { opacity: 1; transform: translateX(-50%) scale(1.06); } }

/* Let the green line wrap again once it can't fit on one line */
@media (max-width: 1240px) {
  .glimpse__title-b { white-space: normal; font-size: 1.22em; }
}

/* ============ Tablet / split → stack ============ */
@media (max-width: 900px) {
  .hero--split { display: flex; flex-direction: column-reverse; min-height: 0; }
  .hero__col { width: 100%; align-items: center; text-align: center; justify-content: flex-start;
    padding: 26px clamp(20px, 5vw, 34px) 34px; }
  .hero__col > * { max-width: 520px; }
  .hero__media { position: relative; width: 100%; height: clamp(230px, 42vh, 360px); opacity: 1; animation: none; -webkit-mask-image: none; mask-image: none; }
  .hero__media-img { object-position: center 26%; }
  .hero__media-glow {
    display: block; left: 4%; width: 62%; filter: blur(46px);
    background: radial-gradient(56% 58% at 44% 54%, rgba(var(--accent-rgb), .32), transparent 70%);
  }
  .hero__media::after {
    background:
      linear-gradient(0deg, var(--bg) 0%, rgba(var(--bg-rgb),0) 18%),
      linear-gradient(180deg, rgba(var(--bg-rgb),.42) 0%, rgba(var(--bg-rgb),0) 5%);
  }
  .access { align-self: stretch; }
}

/* ============ Mobile ============ */
@media (max-width: 620px) {
  .nav { padding: 14px 18px; }
  .nav__logo { height: 44px; }
  .nav__cta { padding: 0 14px; font-size: 13px; }
  .eyebrow { font-size: 10px; letter-spacing: .08em; margin-bottom: 28px; }
  .signup {
    flex-direction: column; gap: 10px; padding: 0;
    border: 0; background: transparent; box-shadow: none; border-radius: 0;
  }
  .signup:focus-within { border: 0; box-shadow: none; }
  .signup input {
    flex: none; width: 100%; height: 56px; padding: 0 18px; text-align: center; font-size: 16px; border-radius: 15px;
    background: rgba(255,255,255,.06); border: 1px solid var(--line);
    transition: border-color .18s ease, background .18s ease;
  }
  .signup input:focus-visible { border-color: rgba(var(--accent-rgb),.45); background: rgba(255,255,255,.08); }
  .signup button {
    width: 100%; height: 56px; border-radius: 15px;
    box-shadow: 0 6px 20px rgba(86, 200, 31, .26);
  }
  .glimpse__head { margin-bottom: clamp(70px, 11vh, 104px); }
  .glimpse__title-a { font-size: 15px; }
  .glimpse__title-b { font-size: 23px; line-height: 1.2; }
  .lifecycle { font-size: 9.5px; letter-spacing: .12em; gap: 9px 13px; }
  .lifecycle li { gap: 13px; }
  /* Keep "Built by Experts for Experts." on one line — scale to viewport width */
  .experts__title { white-space: nowrap; font-size: min(6.3vw, 29px); letter-spacing: -.02em; }
  .experts__underline::after { bottom: -.14em; height: 2px; }
  /* More breathing room above the pre-launch block (the preview crowds it),
     balanced with the space below into the Experts section. */
  .prelaunch { padding-top: clamp(150px, 22vh, 190px); padding-bottom: clamp(96px, 13vh, 132px); }
  /* Clean the orb on mobile: iOS Safari fails to clip blurred/blend-mode
     children to the round body, leaking a square halo. Drop those layers,
     keep the clean self-lit body + rim, shrink ~18%, and slow the pulse. */
  .nectur-orb { --orb-size: 96px; }
  .nectur-orb .no-sheet, .nectur-orb .no-band, .nectur-orb .no-core { display: none; }
  .nectur-orb.thinking .no-body { animation: no-thinkingBody 5.6s ease-in-out infinite; }
  .browser { transform: none; }
  .browser__url { display: none; }
  .phone { width: 30%; min-width: 96px; right: -3%; bottom: -8%; }
  .foot { padding: 34px 20px 44px; }
}

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

/* ==================================================================
   LIGHT THEME — deeper greens, soft light surfaces, easier on the eyes
   Toggled via the sun/moon control in the nav (html.light).
   ================================================================== */
html.light {
  --bg: #eef1ea;
  --bg-2: #e5ebdf;
  --bg-rgb: 238, 241, 234;
  --ink: #14271b;
  --ink-soft: rgba(20, 39, 27, .74);
  --ink-muted: rgba(20, 39, 27, .5);
  --accent: #15803d;
  --accent-bright: #1f9d47;
  --accent-mid: #178a3c;
  --accent-rgb: 30, 138, 64;
  --line: rgba(21, 128, 61, .30);
  --line-soft: rgba(20, 39, 27, .12);
  --grad: linear-gradient(100deg, #2fa24a 0%, #178a3c 50%, #0f6e30 100%);
  --grad-line: linear-gradient(90deg, #2fa24a, #0f6e30);
  --grad-soft: linear-gradient(90deg, transparent, #2fa24a 22%, #0f6e30 78%, transparent);
  --grad-btn: linear-gradient(180deg, #22a34a, #147a37);
  --btn-ink: #ffffff;
  --field-a: #e9f0e3;
  --field-b: #e3ecdc;
  --field-vignette: rgba(20, 45, 28, .08);
  --hex: url("data:image/svg+xml,%3Csvg width='28' height='49' viewBox='0 0 28 49' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23178a3c' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/svg%3E");
  --wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='600' viewBox='0 0 1600 600' fill='none'%3E%3Cg stroke='%23178a3c' stroke-width='1.3' fill='none'%3E%3Cpath d='M-40 130 C 400 40 820 250 1650 110'/%3E%3Cpath d='M-40 210 C 400 120 820 330 1650 190'/%3E%3Cpath d='M-40 300 C 400 210 820 420 1650 280'/%3E%3Cpath d='M-40 400 C 400 310 820 520 1650 380'/%3E%3Cpath d='M-40 490 C 400 400 820 610 1650 470'/%3E%3C/g%3E%3C/svg%3E");
}
/* Tone the ambient field down on light so it reads as texture, not noise */
html.light .field__hex--base { opacity: .09; }
html.light .field__hex--bright { opacity: .22; }
html.light .glimpse__hex, html.light .experts__hex { opacity: .10; }
html.light .field__glow--core { opacity: .45; }
html.light .field__glow--low { opacity: .3; }
html.light .field__grain { opacity: .02; }
/* Nav: dark-wordmark logo, deep-green CTA text */
html.light .nav__brand { background: transparent; }
html.light .nav__logo { content: url('assets/nectur-inline-logo.png'); mix-blend-mode: normal; height: 40px; }
html.light .nav__cta { color: var(--accent); }
html.light .nav__cta:hover, html.light .nav__cta:focus-visible { color: #0f6e30; }
/* Pale-green pill text needs a deep-green on light */
html.light .eyebrow,
html.light .prelaunch__pill { color: var(--accent); background: rgba(var(--accent-rgb), .09); }
/* Sign-up card becomes a real white card */
html.light .signup {
  background: #ffffff; border-color: rgba(20, 39, 27, .10);
  box-shadow: 0 1px 2px rgba(20, 39, 27, .05), 0 18px 44px rgba(21, 128, 61, .12);
}
html.light .signup:focus-within { border-color: var(--line); box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .12), 0 18px 44px rgba(21,128,61,.14); }
html.light .signup input { color: var(--ink); background: rgba(20, 39, 27, .03); }
html.light .signup input::placeholder { color: var(--ink-muted); }

/* ---- Sun / Moon theme toggle ---- */
.nav__actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  display: inline-grid; place-items: center; width: 38px; height: 38px; padding: 0;
  border: 1px solid rgba(var(--accent-rgb), .34); border-radius: var(--radius-pill);
  background: rgba(var(--accent-rgb), .08); color: var(--accent-bright); cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .16s var(--ease);
}
.theme-toggle:hover, .theme-toggle:focus-visible { border-color: rgba(var(--accent-rgb), .62); background: rgba(var(--accent-rgb), .16); outline: none; transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle svg.theme-toggle__sun { display: block; }
.theme-toggle svg.theme-toggle__moon { display: none; }
html.light .theme-toggle { color: var(--accent); }
html.light .theme-toggle svg.theme-toggle__sun { display: none; }
html.light .theme-toggle svg.theme-toggle__moon { display: block; }

/* Light theme, mobile: the signup stacks — drop the desktop white "card"
   wrapper and make each stacked input a clean white field instead. */
@media (max-width: 620px) {
  html.light .signup { background: transparent; border: 0; box-shadow: none; }
  html.light .signup:focus-within { border: 0; box-shadow: none; }
  html.light .signup input {
    background: #ffffff; border: 1px solid rgba(20, 39, 27, .14);
    box-shadow: 0 1px 2px rgba(20, 39, 27, .05);
  }
  html.light .signup input:focus-visible { border-color: rgba(21, 128, 61, .5); background: #ffffff; }
}
