:root {
  color-scheme: light;
  --ink: #08261f;
  --muted: #58736b;
  --bg: #edf8f4;
  --surface: #ffffff;
  --surface-soft: #f4fbf8;
  --green-950: #002c25;
  --green-900: #003d32;
  --green-700: #007d64;
  --green-500: #009687;
  --aqua: #00c6b8;
  --yellow: #ffc629;
  --line: rgba(0, 61, 50, 0.14);
  --shadow: 0 24px 80px rgba(0, 61, 50, 0.18);
  --shadow-deep: 0 34px 100px rgba(0, 36, 31, 0.30);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 86% 4%, rgba(255, 198, 41, 0.18), transparent 24rem),
    radial-gradient(circle at 8% 18%, rgba(0, 198, 184, 0.20), transparent 28rem),
    linear-gradient(180deg, #f7fffc 0%, var(--bg) 100%);
}

a { color: var(--green-700); font-weight: 800; }
img { max-width: 100%; height: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand,
.topnav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  color: var(--green-950);
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow), #fff6be);
  color: var(--green-950);
  box-shadow: 0 10px 24px rgba(0, 61, 50, 0.18);
}

.topnav { flex-wrap: wrap; justify-content: flex-end; }
.topnav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--green-950);
  text-decoration: none;
}
.topnav a:hover { background: rgba(0, 150, 135, 0.10); }
.topnav .nav-cta { background: var(--green-950); color: #fff; }

main,
.footer {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 32px;
  min-height: 720px;
  padding: 54px;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 198, 41, 0.20), transparent 18rem),
    radial-gradient(circle at 44% 88%, rgba(0, 198, 184, 0.22), transparent 28rem),
    linear-gradient(135deg, rgba(0, 44, 37, 0.98), rgba(0, 150, 135, 0.88));
  box-shadow: var(--shadow-deep);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255,255,255,0.08), transparent 32%, rgba(255,255,255,0.05));
}

.hero-copy,
.hero-art { position: relative; z-index: 1; }
.hero-copy { color: #fff; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 { margin-top: 0; line-height: 1.08; }
h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 6vw, 6.25rem);
  letter-spacing: -0.065em;
}
h2 {
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
}
h3 { color: var(--green-950); font-size: 1.28rem; }

.hero-lede {
  max-width: 610px;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: linear-gradient(135deg, var(--yellow), #ffe371);
  color: var(--green-950);
  box-shadow: 0 14px 34px rgba(255, 198, 41, 0.24);
}
.button.secondary { border: 1px solid rgba(255,255,255,0.40); color: #fff; }

.trust-row { margin-top: 28px; color: rgba(255,255,255,0.84); font-weight: 800; }
.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.hero-art {
  justify-self: end;
  width: min(100%, 680px);
}
.hero-art img {
  display: block;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: -42px auto 76px;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
.quick-stats div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 40px rgba(0, 61, 50, 0.10);
}
.quick-stats strong,
.quick-stats span { display: block; }
.quick-stats strong { margin-bottom: 6px; color: var(--green-950); font-size: 1.06rem; }
.quick-stats span { color: var(--muted); }

.section { margin: 76px 0; }
.section-heading { max-width: 850px; margin-bottom: 28px; }
.section-heading.centered { max-width: 860px; margin-left: auto; margin-right: auto; text-align: center; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.13rem; }
.section-heading.narrow { max-width: 720px; }

.showcase-card,
.legal-hero {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.showcase-card img,
.legal-hero img { display: block; width: 100%; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 42px rgba(0, 61, 50, 0.08);
}
.feature-card { padding: 26px; }
.feature-card p { color: var(--muted); }
.icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--surface-soft);
  font-size: 1.45rem;
}

.watch-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 32px;
  margin: 76px 0;
  padding: 40px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 198, 41, 0.14), transparent 22rem),
    linear-gradient(135deg, #003d32, #007d64);
  box-shadow: var(--shadow-deep);
  color: #fff;
}
.watch-section h2 { color: #fff; }
.watch-section p { color: rgba(255,255,255,0.80); }
.watch-art img {
  display: block;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}
.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255,255,255,0.92);
  font-weight: 800;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.privacy-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 76px 0;
  padding: 34px;
  border-radius: 30px;
  background: var(--green-950);
  color: #fff;
  box-shadow: var(--shadow);
}
.privacy-banner h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 3.4rem); }
.privacy-banner p:not(.eyebrow) { color: rgba(255,255,255,0.78); }

.legal-hero { margin: 76px 0 24px; }
.legal-section { margin-bottom: 40px; }
.legal-card {
  margin: 18px 0;
  padding: 30px;
}
.legal-card p,
.legal-card ul { color: #24433b; }
.legal-card ul { padding-left: 1.3rem; }
.legal-card li + li { margin-top: 6px; }
.section-label {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 150, 135, 0.12);
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 48px;
  color: var(--muted);
}
.footer strong,
.footer-store-link { color: var(--green-950); font-weight: 900; }

@media (max-width: 1040px) {
  .hero-shell,
  .watch-section { grid-template-columns: 1fr; min-height: auto; padding: 34px; }
  .hero-art { justify-self: start; width: 100%; }
  .quick-stats,
  .feature-grid { grid-template-columns: 1fr; }
  .quick-stats { margin-top: 18px; padding: 0; }
  .privacy-banner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .topbar { position: static; align-items: flex-start; flex-direction: column; }
  .topnav { justify-content: flex-start; }
  .topnav a { padding-left: 10px; padding-right: 10px; }
  .hero-shell,
  .watch-section { padding: 24px; border-radius: 24px; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.4rem); }
  .hero-actions .button,
  .privacy-banner .button,
  .watch-section .button { width: 100%; }
  .legal-card,
  .feature-card,
  .privacy-banner { padding: 22px; border-radius: 22px; }
}
