:root {
  color-scheme: dark;
  --bg: #060a0c;
  --surface: #0c1316;
  --surface-strong: #121d21;
  --line: #25343a;
  --line-soft: rgba(130, 163, 174, 0.18);
  --text: #f4fbf8;
  --muted: #a9b9b5;
  --accent: #49efad;
  --accent-strong: #17c884;
  --accent-dark: #062d22;
  --warm: #ff705f;
  --max: 1180px;
  --radius: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 8%, rgba(73, 239, 173, 0.09), transparent 28rem),
    radial-gradient(circle at 0% 35%, rgba(255, 112, 95, 0.06), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--accent);
  color: #03120d;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(130, 163, 174, 0.12);
  background: rgba(6, 10, 12, 0.82);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 820;
  letter-spacing: -0.025em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  box-shadow: 0 0 28px rgba(73, 239, 173, 0.22);
}
.brand-name { color: var(--text); }
.brand-name span { color: var(--accent); }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 1.2rem; flex-wrap: wrap; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 680;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-block: clamp(4.5rem, 9vw, 8rem) 4.5rem;
}
.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -0.045em; }
h1 { margin-bottom: 1.5rem; font-size: clamp(3.3rem, 7vw, 6.7rem); max-width: 9ch; }
h2 { margin-bottom: 1rem; font-size: clamp(2.2rem, 4.3vw, 4.4rem); }
h3 { margin-bottom: 0.7rem; font-size: 1.35rem; }
.hero-copy > p:not(.eyebrow) { max-width: 39rem; color: #c0d0cc; font-size: clamp(1.06rem, 1.8vw, 1.28rem); }
.hero-actions { display: flex; align-items: stretch; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.store-download {
  display: grid;
  justify-items: stretch;
  gap: 0.75rem;
  min-width: 250px;
  padding: 0.9rem 1rem 1rem;
  border: 1px solid rgba(216, 255, 100, 0.22);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(216, 255, 100, 0.08), rgba(73, 239, 173, 0.035) 60%, rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 14px 35px rgba(0, 0, 0, 0.18);
}
.store-app-ref {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
}
.store-app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.store-app-copy { display: grid; gap: 0.24rem; min-width: 0; }
.store-app-copy strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.store-app-copy span {
  color: #dcff6b;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.play-badge-link {
  display: inline-block;
  justify-self: center;
  line-height: 0;
  border-radius: 10px;
  transition: transform 160ms ease, filter 160ms ease;
}
.play-badge-link:hover { transform: translateY(-2px); filter: brightness(1.08); }
.play-badge-link:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.play-badge { width: 190px; height: auto; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}
.button.primary { border-color: var(--accent); background: var(--accent); color: #04130e; }
.button:hover, .button:focus-visible { transform: translateY(-1px); border-color: var(--accent); }
.button small { display: block; font-size: 0.7rem; font-weight: 700; opacity: 0.68; }

.hero-visual { position: relative; }
.hero-frame {
  overflow: hidden;
  border: 1px solid #26363c;
  border-radius: 30px;
  background: #091014;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.46), 0 0 80px rgba(73, 239, 173, 0.07);
}
.hero-frame img { width: 100%; aspect-ratio: 1024 / 500; object-fit: cover; }
.app-chip {
  position: absolute;
  left: clamp(1rem, 4vw, 2rem);
  bottom: -1.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.9rem;
  min-width: min(82%, 360px);
  padding: 0.85rem 1rem;
  border: 1px solid #2b4248;
  border-radius: 18px;
  background: rgba(8, 15, 18, 0.95);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
}
.app-chip img { width: 52px; height: 52px; border-radius: 14px; }
.app-chip strong, .app-chip span { display: block; }
.app-chip span { color: var(--muted); font-size: 0.86rem; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 1rem auto 7rem;
  border-block: 1px solid var(--line-soft);
}
.principle { padding: 1.5rem clamp(1rem, 3vw, 2rem); border-right: 1px solid var(--line-soft); }
.principle:last-child { border-right: 0; }
.principle strong { display: block; margin-bottom: 0.35rem; font-size: 1.05rem; }
.principle span { color: var(--muted); font-size: 0.92rem; }

.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
.section-heading p { color: var(--muted); font-size: 1.12rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18, 29, 33, 0.95), rgba(8, 14, 17, 0.95));
}
.feature-card::after {
  content: "";
  position: absolute;
  width: 8rem;
  height: 8rem;
  right: -3rem;
  bottom: -3rem;
  border: 1px solid rgba(73, 239, 173, 0.18);
  border-radius: 50%;
}
.feature-number { margin-bottom: 3rem; color: var(--accent); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 0.78rem; }
.feature-card p { color: var(--muted); }

.showcase { display: grid; gap: clamp(4rem, 8vw, 7rem); }
.showcase-row { display: grid; grid-template-columns: 0.75fr 1.25fr; align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.showcase-row:nth-child(even) { grid-template-columns: 1.25fr 0.75fr; }
.showcase-row:nth-child(even) .showcase-copy { order: 2; }
.showcase-copy p { color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.35rem; }
.tag { padding: 0.42rem 0.7rem; border: 1px solid #2c4147; border-radius: 999px; color: #cfddd9; font-size: 0.82rem; }
.screen {
  overflow: hidden;
  border: 1px solid #2a3b40;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.38);
}
.screen img { width: 100%; }

.trust-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(73, 239, 173, 0.28);
  border-radius: 32px;
  background: linear-gradient(130deg, rgba(6, 45, 34, 0.92), rgba(10, 18, 21, 0.98) 62%);
}
.trust-panel p { color: #c2d6cf; }
.trust-list { display: grid; gap: 0.85rem; align-content: center; }
.trust-item { padding: 1rem 1.1rem; border-left: 3px solid var(--accent); background: rgba(255, 255, 255, 0.035); }
.trust-item strong { display: block; }
.trust-item span { color: var(--muted); font-size: 0.9rem; }

.companion {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-block: 1px solid var(--line-soft);
}
.companion p { max-width: 690px; color: var(--muted); }
.beta-badge { padding: 0.45rem 0.7rem; border-radius: 999px; background: rgba(255, 112, 95, 0.13); color: #ff9488; font-weight: 800; font-size: 0.8rem; }

.availability { padding-block: 5rem 7rem; text-align: center; }
.availability h2 { max-width: 850px; margin-inline: auto; }
.availability p { max-width: 630px; margin: 0 auto 2rem; color: var(--muted); }

.products-hero { padding-block: clamp(4.5rem, 9vw, 8rem) 2.5rem; }
.products-hero h1 { max-width: 12ch; }
.products-hero > p:not(.eyebrow) { max-width: 690px; color: var(--muted); font-size: 1.15rem; }
.product-list { display: grid; gap: 1.25rem; padding-bottom: 7rem; }
.product-entry {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  padding: clamp(1.4rem, 4vw, 2.3rem);
  border: 1px solid rgba(73, 239, 173, 0.2);
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(73, 239, 173, 0.075), rgba(255, 255, 255, 0.025) 55%, rgba(216, 255, 100, 0.04));
  color: inherit;
  text-decoration: none;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.product-entry:hover { transform: translateY(-3px); border-color: rgba(216, 255, 100, 0.5); background: linear-gradient(140deg, rgba(73, 239, 173, 0.11), rgba(255, 255, 255, 0.035) 55%, rgba(216, 255, 100, 0.065)); }
.product-entry:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; }
.product-entry-icon { width: 104px; aspect-ratio: 1; border-radius: 25%; box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3); }
.product-entry-copy { min-width: 0; }
.product-entry-copy h2 { margin: 0.35rem 0 0.7rem; font-size: clamp(1.9rem, 4vw, 3.25rem); }
.product-entry-copy > p { max-width: 710px; margin: 0; color: var(--muted); }
.product-status { color: #dcff6b; font-size: 0.75rem; font-weight: 850; letter-spacing: 0.085em; text-transform: uppercase; }
.product-entry-action { color: var(--accent); font-size: 0.9rem; font-weight: 850; white-space: nowrap; }
.product-entry-action::after { content: "  →"; }

.site-footer { border-top: 1px solid var(--line-soft); padding-block: 2rem; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-links a { text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--text); }

.legal-hero { padding-block: clamp(4rem, 8vw, 7rem) 2rem; }
.legal-hero h1 { max-width: 14ch; font-size: clamp(2.7rem, 6vw, 5rem); }
.legal-hero p { max-width: 700px; color: var(--muted); }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: clamp(2rem, 6vw, 5rem); padding-bottom: 7rem; }
.legal-aside { position: sticky; top: 110px; align-self: start; }
.legal-aside a { display: block; padding: 0.5rem 0; color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.legal-aside a:hover, .legal-aside a:focus-visible { color: var(--accent); }
.legal-content { min-width: 0; }
.legal-content h2 { margin-top: 3.2rem; margin-bottom: 0.8rem; font-size: 1.65rem; letter-spacing: -0.025em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #becbc8; }
.legal-content a { color: var(--accent); }
.legal-content ul { padding-left: 1.25rem; }
.legal-note { padding: 1rem 1.1rem; border-left: 3px solid var(--accent); background: var(--surface); color: var(--muted); }

@media (max-width: 900px) {
  .hero, .trust-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 5rem; }
  h1 { max-width: 11ch; }
  .hero-visual { margin-bottom: 2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .feature-number { margin-bottom: 1.5rem; }
  .showcase-row, .showcase-row:nth-child(even) { grid-template-columns: 1fr; }
  .showcase-row:nth-child(even) .showcase-copy { order: initial; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-aside { display: none; }
}

@media (max-width: 650px) {
  .nav { align-items: flex-start; padding-block: 1rem; }
  .nav-links { gap: 0.6rem 0.9rem; }
  .nav-links a { font-size: 0.84rem; }
  .nav-links a:first-child { display: none; }
  h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .principles { grid-template-columns: 1fr; }
  .principle { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .principle:last-child { border-bottom: 0; }
  .hero-actions { display: grid; }
  .store-download { min-width: 0; }
  .product-entry { grid-template-columns: 72px minmax(0, 1fr); }
  .product-entry-icon { width: 72px; }
  .product-entry-action { grid-column: 1 / -1; }
  .companion { grid-template-columns: 1fr; }
  .app-chip { position: relative; left: auto; bottom: auto; width: calc(100% - 1rem); margin: -1rem auto 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
