: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;
  --line: rgba(126, 237, 34, .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%, #0e1712 0%, transparent 56%),
    radial-gradient(120% 70% at 50% 120%, #0a130b 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: .07;
  -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: .34;
  -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(126, 237, 34, .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(126, 237, 34, .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%, rgba(0, 0, 0, .55) 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(126, 237, 34, .34); border-radius: var(--radius-pill);
  color: #eafff0; background: rgba(126, 237, 34, .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(126, 237, 34, .62); background: rgba(126, 237, 34, .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 the left (and a touch of top/bottom) into the dark — no hard edge */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 52%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 52%);
}
.hero__media-img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: 62% 26%;
}
.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(126, 237, 34, .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(7,10,8,.5) 0%, rgba(7,10,8,0) 5%),
    linear-gradient(0deg, var(--bg) 0%, rgba(7,10,8,0) 10%),
    linear-gradient(180deg, rgba(7,10,8,.14), rgba(10,20,12,.2));
}
@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(126, 237, 34, .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(126, 237, 34, .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(126, 237, 34, .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: linear-gradient(100deg, #a6f75a 0%, #7eed22 45%, #35c65a 100%);
  -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(126,237,34,.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: linear-gradient(180deg, #8bf03a, #56c81f); color: #0a1a05;
  font-family: inherit; font-size: 14.5px; font-weight: 600; white-space: nowrap; cursor: pointer;
  box-shadow: 0 0 0 1px rgba(126, 237, 34, .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(126,237,34,.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 {
  width: min(1240px, 100%); margin: clamp(68px, 10.5vh, 126px) auto 0;
  padding: 0 clamp(20px, 4vw, 44px) clamp(78px, 10vh, 108px); text-align: center;
}
.glimpse__kicker {
  margin: 0 0 12px; font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent-bright); opacity: .8;
}
.glimpse__title {
  max-width: 1180px; margin: 0 auto 52px; font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 500; line-height: 1.24; letter-spacing: -.01em; color: var(--ink);
}
.glimpse__title-a { display: block; color: var(--ink); opacity: .92; }
.glimpse__title-b {
  display: block; margin-top: 10px; font-size: 1.26em; font-weight: 600; letter-spacing: -.02em;
  line-height: 1.16; white-space: nowrap;
  background: linear-gradient(100deg, #a6f75a 0%, #7eed22 46%, #35c65a 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* 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(126, 237, 34, .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(126, 237, 34, .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(126, 237, 34, .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(7,10,8,.24) 0%, transparent 24%, transparent 62%, rgba(7,10,8,.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(126, 237, 34, .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(7,10,8,.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(48px, 7vh, 92px) clamp(20px, 4vw, 44px) clamp(56px, 8vh, 104px);
  overflow: hidden;
}
.experts__cta {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.experts__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.experts__hex {
  position: absolute; inset: -12%;
  background-image: var(--hex); background-size: 66px 115px; background-repeat: repeat;
  opacity: .05;
  -webkit-mask-image: radial-gradient(78% 78% at 50% 50%, #000 0%, transparent 74%);
  mask-image: radial-gradient(78% 78% at 50% 50%, #000 0%, transparent 74%);
  animation: hexDrift 140s linear infinite;
}
.experts__waves {
  position: absolute; inset: -6%;
  background-image: var(--wave); background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: .07;
  -webkit-mask-image: radial-gradient(86% 82% at 50% 50%, #000 0%, transparent 82%);
  mask-image: radial-gradient(86% 82% at 50% 50%, #000 0%, transparent 82%);
}
.experts__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(42% 54% at 33% 48%, rgba(126, 237, 34, .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(900px, 100%); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(14px, 2vh, 26px);
}
.experts__mark { width: clamp(250px, 31vw, 384px); }
.experts__mark img {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, .5)) drop-shadow(0 0 26px rgba(126, 237, 34, .22));
}
.experts__title {
  margin: 0 0 clamp(22px, 3vh, 32px); font-size: clamp(28px, 3.7vw, 46px); font-weight: 700;
  line-height: 1.05; letter-spacing: -.03em; color: var(--ink);
}
@media (min-width: 1180px) { .experts__title { white-space: nowrap; } }
.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: linear-gradient(90deg, #a6f75a, #35c65a);
  box-shadow: 0 0 12px rgba(126, 237, 34, .5);
}
.experts__title span {
  background: linear-gradient(100deg, #a6f75a 0%, #7eed22 50%, #35c65a 100%);
  -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: linear-gradient(90deg, transparent, #a6f75a 22%, #35c65a 78%, transparent);
  box-shadow: 0 0 14px rgba(126, 237, 34, .45);
}
.experts__body {
  max-width: 500px; margin: 0 auto; font-size: clamp(15px, 1.7vw, 18.5px);
  line-height: 1.62; color: var(--ink-soft);
}
@media (max-width: 720px) {
  .experts__mark { width: clamp(180px, 52vw, 240px); }
  .experts__title { font-size: clamp(27px, 8vw, 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: linear-gradient(180deg, #8bf03a, #56c81f); color: #0a1a05;
  font-size: 16px; font-weight: 600; letter-spacing: .01em; text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(126, 237, 34, .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(126, 237, 34, .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; }
  .hero__media-img { object-position: center 26%; }
  .hero__media-glow { display: none; }
  .hero__media::after {
    background:
      linear-gradient(0deg, var(--bg) 0%, rgba(7,10,8,0) 24%),
      linear-gradient(180deg, rgba(7,10,8,.45) 0%, rgba(7,10,8,0) 5%),
      linear-gradient(180deg, rgba(7,10,8,.12), rgba(10,20,12,.16));
  }
  .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 {
    height: 52px; text-align: center; font-size: 16px; border-radius: 14px;
    background: rgba(255,255,255,.055); border: 1px solid var(--line-soft);
    transition: border-color .18s ease, background .18s ease;
  }
  .signup input:focus-visible { border-color: rgba(126,237,34,.45); background: rgba(255,255,255,.07); }
  .signup button {
    width: 100%; height: 52px; border-radius: 14px;
    box-shadow: 0 6px 20px rgba(86, 200, 31, .26);
  }
  .glimpse__title { font-size: 16px; margin-bottom: 38px; }
  .glimpse__title-b { font-size: 1.12em; line-height: 1.22; text-wrap: balance; }
  /* 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; }
}
