:root {
  --ink: #eaf7f3;
  --muted: #a5bbb7;
  --deep: #031012;
  --deep-2: #06191b;
  --panel: rgba(9, 34, 35, 0.72);
  --panel-solid: #0a2526;
  --line: rgba(190, 255, 227, 0.14);
  --green: #a8e500;
  --green-2: #69bf12;
  --aqua: #6ee7db;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(29, 135, 128, 0.16), transparent 32rem),
    linear-gradient(180deg, #031012 0%, #061719 44%, #020b0c 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 10px;
  color: #051212;
  background: var(--green);
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.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;
}

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(3, 16, 18, 0.42);
  backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(3, 16, 18, 0.9);
  border-color: var(--line);
}
.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.brand img { border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.brand strong { color: white; }
.brand span { color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  color: #c8dad7;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: white; }
.main-nav .nav-cta {
  padding: 10px 16px;
  color: #071414;
  background: var(--green);
  border-radius: 999px;
}
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 920px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 90px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(2, 13, 15, .98) 0%, rgba(3, 18, 19, .78) 42%, rgba(3, 16, 18, .45) 72%, rgba(2, 11, 12, .86) 100%),
    radial-gradient(circle at 77% 25%, rgba(82, 236, 215, .18), transparent 26rem),
    linear-gradient(180deg, #073337, #031618 58%, #020d0e);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .22;
  background-image:
    linear-gradient(rgba(126, 255, 231, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 255, 231, .08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.hero-water {
  position: absolute;
  inset: -18% 8% auto;
  height: 520px;
  z-index: -2;
  filter: blur(10px);
  opacity: .48;
  background:
    repeating-linear-gradient(102deg, transparent 0 7%, rgba(142, 255, 238, .08) 8% 9%, transparent 10% 14%);
  clip-path: polygon(3% 0, 97% 0, 78% 100%, 20% 100%);
}
.hero-bottom-fade {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, #061719);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 58px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 8px 12px;
  border: 1px solid rgba(168, 229, 0, .28);
  border-radius: 999px;
  color: #d4ebba;
  background: rgba(88, 127, 11, .11);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}
.hero h1, h2, h3, p { text-wrap: pretty; }
.hero h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(3.6rem, 6.4vw, 6.7rem);
  line-height: .94;
  letter-spacing: -.065em;
}
.hero h1 span {
  color: var(--green);
  text-shadow: 0 0 34px rgba(168,229,0,.12);
}
.hero-lede {
  max-width: 680px;
  margin: 30px 0 0;
  color: #bad0cc;
  font-size: clamp(1.07rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-size: .94rem;
  font-weight: 850;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: #061111; background: linear-gradient(135deg, #c6f52c, #85d400); box-shadow: 0 14px 34px rgba(130, 204, 0, .18); }
.button-secondary { color: #e3f3ef; background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.14); }
.button-secondary:hover { border-color: rgba(168,229,0,.42); background: rgba(168,229,0,.06); }
.proof-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 34px; color: #89aaa4; font-size: .82rem; font-weight: 700; }
.proof-row span::before { content: "•"; margin-right: 8px; color: var(--green); }

.hero-art {
  position: relative;
  margin: 0;
  padding: clamp(6px, 1.4vw, 18px);
  filter: drop-shadow(0 38px 90px rgba(0,0,0,.56));
}
.hero-art picture { display: block; width: 100%; }
.hero-art img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}
.logo-glow {
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  inset: 10%;
  border-radius: 50%;
  background: rgba(74, 214, 185, .22);
  filter: blur(72px);
}

.kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-heading h2, .buddy-copy h2, .status-card h2, .cta-card h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.3vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -.05em;
}
.section-heading.centered { max-width: 850px; margin: 0 auto 58px; text-align: center; }
.section-heading.centered > p:last-child { max-width: 710px; margin: 22px auto 0; color: var(--muted); }

.mission { background: #061719; }
.mission-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: start; }
.mission-copy { padding-top: 8px; }
.mission-copy p { margin: 0 0 22px; color: #b5c8c4; font-size: 1.13rem; line-height: 1.85; }

.experience {
  background:
    radial-gradient(circle at 50% 0%, rgba(44, 151, 139, .13), transparent 38rem),
    #041315;
}
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(13, 46, 47, .78), rgba(5, 23, 25, .82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: transform .25s ease, border-color .25s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(168,229,0,.32); }
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(168,229,0,.26);
  border-radius: 15px;
  color: var(--green);
  background: rgba(168,229,0,.07);
  font-size: 1.15rem;
  font-weight: 900;
}
.feature-card h3 { margin: 0 0 12px; font-size: 1.22rem; }
.feature-card p { margin: 0; color: var(--muted); }

.buddy { overflow: hidden; background: #061719; }
.buddy::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  left: -260px;
  top: 10%;
  border-radius: 50%;
  background: rgba(34, 179, 158, .13);
  filter: blur(90px);
}
.buddy-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 76px; align-items: center; }
.buddy-art {
  position: relative;
  margin: 0;
  padding: clamp(6px, 1.4vw, 18px);
}
.buddy-art picture { display: block; width: 100%; }
.buddy-art img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 34px 70px rgba(0,0,0,.48));
}
.buddy-copy > p:not(.kicker):not(.fine-print) { margin: 25px 0; color: #b6cbc7; font-size: 1.08rem; }
.check-list { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 16px; }
.check-list li { position: relative; padding-left: 34px; color: #d8e7e4; font-weight: 700; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #061212;
  background: var(--green);
  font-size: .72rem;
}
.fine-print { color: #789a94; font-size: .82rem; }

.principles { background: #041315; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.principle { padding: 32px 8px 8px 0; border-top: 1px solid var(--line); }
.principle > span { color: var(--green); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; font-weight: 900; }
.principle h3 { margin: 18px 0 10px; font-size: 1.28rem; }
.principle p { margin: 0; color: var(--muted); }

.status { background: #041315; padding-top: 28px; }
.status-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 54px;
  border: 1px solid rgba(168,229,0,.18);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(21, 73, 69, .48), rgba(8, 31, 32, .82)),
    var(--panel-solid);
  box-shadow: var(--shadow);
}
.status-card > div:first-child > p:last-child { color: #aec3bf; margin: 22px 0 0; }
.status-steps { display: grid; gap: 0; }
.status-step {
  position: relative;
  min-height: 64px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  color: #76928e;
}
.status-step::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 36px;
  left: 9px;
  top: 46px;
  background: rgba(255,255,255,.13);
}
.status-step:last-child::after { display: none; }
.status-step > span { width: 19px; height: 19px; border: 2px solid #506762; border-radius: 50%; background: #0a2526; }
.status-step.active { color: #e5f1ef; }
.status-step.active > span { border-color: var(--green); box-shadow: inset 0 0 0 4px #0a2526; background: var(--green); }
.status-step strong { font-size: .94rem; }
.status-step small { color: #91aaa5; }


.platforms {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(168, 229, 0, .09), transparent 28rem),
    radial-gradient(circle at 16% 88%, rgba(53, 202, 184, .11), transparent 30rem),
    #061719;
}
.platforms-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 68px;
  align-items: center;
}
.platforms .section-heading { margin: 0; }
.platforms .section-heading > p:last-child {
  margin: 24px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 1.03rem;
}
.store-grid { display: grid; gap: 16px; }
.store-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(13,46,47,.9), rgba(5,23,25,.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 18px 45px rgba(0,0,0,.18);
}
.store-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168,229,0,.2);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.store-icon svg { width: 37px; height: 37px; display: block; }
.apple-icon svg { fill: #fff; }
.play-icon svg { width: 42px; height: 42px; }
.store-copy { display: grid; line-height: 1.08; }
.store-copy small { color: #8ca6a1; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.store-copy strong { margin-top: 6px; color: white; font-size: 1.42rem; letter-spacing: -.025em; }
.store-copy span { margin-top: 7px; color: #8fa8a3; font-size: .78rem; }
.coming-pill {
  justify-self: end;
  padding: 8px 11px;
  border: 1px solid rgba(168,229,0,.22);
  border-radius: 999px;
  color: #d9f59d;
  background: rgba(168,229,0,.07);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.platform-note {
  grid-column: 2;
  margin: -38px 0 0;
  color: #6f8c87;
  font-size: .77rem;
}

.cta { background: #041315; }
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-card h2 { max-width: 760px; }
.cta-card p:last-child { margin: 18px 0 0; color: var(--muted); }
.cta-card .button { flex: 0 0 auto; }

.site-footer { padding: 42px 0 28px; background: #020b0c; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { border-radius: 14px; }
.footer-brand div { display: grid; }
.footer-brand span { color: #78918d; font-size: .78rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a { color: #93aaa6; text-decoration: none; font-size: .86rem; font-weight: 700; }
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #607a75;
  font-size: .76rem;
}
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid rgba(168,229,0,.65); outline-offset: 4px; }

@media (max-width: 980px) {
  .main-nav { gap: 16px; }
  .main-nav a { font-size: .82rem; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero h1 { font-size: clamp(3.1rem, 7vw, 5.4rem); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid, .buddy-grid, .status-card, .platforms-grid { gap: 44px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 28px, 680px); }
  .section { padding: 82px 0; }
  .site-header { background: rgba(3, 16, 18, .9); }
  .nav-shell { min-height: 68px; }
  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: white;
    background: rgba(255,255,255,.03);
  }
  .menu-button span:not(.sr-only) { width: 19px; height: 2px; background: currentColor; }
  .main-nav {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(5, 24, 25, .98);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 12px; font-size: .94rem; }
  .main-nav .nav-cta { margin-top: 8px; text-align: center; }
  .hero { padding: 118px 0 74px; }
  .hero-grid, .mission-grid, .buddy-grid, .status-card, .platforms-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { margin-inline: auto; }
  .hero-lede { margin-inline: auto; }
  .hero-actions, .proof-row { justify-content: center; }
  .hero-art { width: min(620px, 92vw); margin-inline: auto; order: -1; }
  .mission-grid { gap: 30px; }
  .buddy-art { width: min(590px, 90vw); margin-inline: auto; }
  .platform-note { grid-column: 1; margin: 0; }
  .principle-grid { grid-template-columns: 1fr; }
  .status-card { padding: 38px 28px; }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .footer-grid, .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .brand span { font-size: .92rem; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4.2rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .proof-row { display: grid; justify-items: start; width: fit-content; margin-inline: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .section-heading.centered { text-align: left; }
  .section-heading.centered > p:last-child { margin-left: 0; }
  .status-step { grid-template-columns: 28px 1fr; }
  .status-step small { grid-column: 2; margin-top: -14px; }
  .store-card { grid-template-columns: 56px 1fr; padding: 18px; }
  .store-icon { width: 56px; height: 56px; border-radius: 15px; }
  .store-icon svg { width: 31px; height: 31px; }
  .play-icon svg { width: 35px; height: 35px; }
  .coming-pill { grid-column: 2; justify-self: start; margin-top: 2px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
}

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