﻿:root {
  --ink: #0f1d3a;
  --ink-deep: #042c53;
  --ink-soft: #1a3358;
  --green: #12b76a;
  --green-bright: #10c86a;
  --mint: #5fe6a4;
  --canvas: #f4f7fa;
  --canvas-warm: #eef3f7;
  --paper: #ffffff;
  --text: #152033;
  --muted: #5b6678;
  --line: rgba(15, 29, 58, 0.1);
  --shadow: 0 28px 60px rgba(4, 44, 83, 0.18);
  --radius: 22px;
  --font-display: "Syne", "Avenir Next", sans-serif;
  --font-body: "Manrope", "Avenir Next", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(95, 230, 164, 0.22), transparent 55%),
    radial-gradient(900px 600px at -10% 20%, rgba(24, 95, 165, 0.16), transparent 50%),
    linear-gradient(180deg, #e8eef5 0%, var(--canvas) 28%, #f7f8f6 70%, #eaf3ef 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 50;
  background: var(--paper);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* вЂ”вЂ” Header вЂ”вЂ” */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding: 1.35rem 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(4, 44, 83, 0.2);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

/* вЂ”вЂ” Hero вЂ”вЂ” */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  align-items: stretch;
  padding-top: 5.5rem;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 78% 18%, rgba(95, 230, 164, 0.28), transparent 58%),
    radial-gradient(700px 480px at 12% 70%, rgba(4, 44, 83, 0.1), transparent 55%),
    linear-gradient(120deg, rgba(232, 238, 245, 0.2), transparent 55%);
  z-index: -1;
  animation: heroDrift 16s var(--ease) infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 8%;
  width: min(52vw, 640px);
  height: min(88vh, 820px);
  background:
    linear-gradient(160deg, rgba(18, 183, 106, 0.12), transparent 45%),
    radial-gradient(closest-side, rgba(15, 29, 58, 0.08), transparent 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(min(100vh, 920px) - 5.5rem);
  padding-bottom: 3rem;
}

.hero-copy {
  max-width: 34rem;
  animation: riseIn 0.9s var(--ease) both;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-deep);
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.55rem, 5.4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--ink);
}

.hero-support {
  margin: 1.15rem 0 0;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 30rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 0.9rem;
  margin-top: 1.85rem;
}

.store-btn {
  display: inline-flex;
  transition: transform 0.25s var(--ease), opacity 0.25s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
}

.store-btn:active {
  transform: translateY(0);
}

.store-note {
  flex-basis: 100%;
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.store-btn.is-soon {
  opacity: 0.72;
  cursor: default;
}

.store-btn.is-soon:hover {
  transform: none;
}

.inline-link {
  color: var(--ink-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.inline-link:hover {
  color: var(--ink);
}

.hero-visual {
  justify-self: end;
  align-self: end;
  width: min(100%, 360px);
  margin-right: -0.5rem;
  animation: phoneIn 1.1s var(--ease) 0.15s both;
}

.phone {
  position: relative;
  border-radius: 36px;
  background: #0a1220;
  padding: 11px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.phone::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 18px;
  border-radius: 12px;
  background: #050a12;
  z-index: 2;
}

.phone-screen {
  border-radius: 27px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 9 / 19.2;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* вЂ”вЂ” Sections вЂ”вЂ” */
.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.4rem;
}

.section-head h2 {
  margin: 0.45rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.section-head p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Benefit bands вЂ” no cards by default; split layouts */
.band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.band + .band {
  margin-top: 4.5rem;
}

.band.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.band.reverse .band-copy {
  order: 2;
}

.band.reverse .band-media {
  order: 1;
}

.band-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.7rem;
}

.band h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.band p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.band-media {
  position: relative;
}

.frame {
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(15, 29, 58, 0.06), rgba(18, 183, 106, 0.08)),
    var(--paper);
  box-shadow: 0 18px 40px rgba(4, 44, 83, 0.1);
  border: 1px solid var(--line);
}

.frame img {
  width: 100%;
  height: auto;
}

.frame.tall img {
  max-height: 560px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-inline {
  width: min(280px, 100%);
  margin-inline: auto;
}

/* Atmosphere strip */
.atmosphere {
  position: relative;
  padding: 4.5rem 0;
  background:
    radial-gradient(800px 300px at 20% 0%, rgba(95, 230, 164, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(15, 29, 58, 0.96), #0a1730 100%);
  color: #f4f7fa;
  overflow: hidden;
}

.atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cpath fill='none' stroke='rgba(95,230,164,0.08)' stroke-width='1' d='M0 80h160M80 0v160'/%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}

.atmosphere .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.atmosphere h2 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.atmosphere p {
  margin: 0.9rem 0 0;
  color: rgba(244, 247, 250, 0.72);
  max-width: 28rem;
}

.atmosphere .eyebrow {
  color: var(--mint);
}

.shot-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.shot-row img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

/* Mid-page CTA */
.mid-cta {
  margin-top: 4.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.mid-cta.compact {
  margin-top: 2.75rem;
}

.mid-cta-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.mid-cta-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  max-width: 28rem;
}

.mid-cta .cta-row {
  margin-top: 0;
}

/* Recover / audience splits */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.25rem;
}

.split-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.7rem;
}

.split-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
}

.split-item p:not(.split-label) {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.audience {
  padding-top: 1rem;
}

.audience-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.audience-list li {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  max-width: 42rem;
}

.audience-list strong {
  color: var(--ink);
  font-weight: 600;
}

/* Privacy trust */
.trust {
  padding: 5rem 0 4rem;
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}

.trust h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.trust p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

/* FAQ */
.faq {
  padding-top: 2rem;
}

.faq-list {
  max-width: 42rem;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 1.15rem 2rem 1.15rem 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 38rem;
}

.faq-item a {
  color: var(--ink-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Final CTA */
.final-cta {
  padding: 1rem 0 5.5rem;
}

.final-panel {
  border-radius: 28px;
  padding: clamp(1.8rem, 4vw, 3rem);
  background:
    radial-gradient(600px 240px at 90% 10%, rgba(95, 230, 164, 0.25), transparent 55%),
    linear-gradient(135deg, #0f1d3a 0%, #042c53 55%, #123a5f 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1.5rem;
  align-items: center;
}

.final-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.final-panel p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
}

.final-panel .cta-row {
  margin-top: 0;
  justify-content: flex-end;
}

.final-panel .store-note {
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.75rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a:hover {
  color: var(--ink);
}

/* Legal pages */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 6.5rem 1.25rem 4rem;
}

.legal h1 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0.35rem 0 1rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.15;
}

.legal-meta {
  margin-bottom: 1.75rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 1.55;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 2rem 0 0.65rem;
}

.legal h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 1.25rem 0 0.4rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  padding-left: 1.2rem;
  margin: 0.4rem 0 1rem;
}

.legal li + li {
  margin-top: 0.35rem;
}

.legal a {
  color: var(--ink-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover {
  color: var(--green);
}

.legal code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: rgba(15, 29, 58, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.legal-back {
  margin-top: 2.5rem;
}

.legal-back a {
  text-decoration: none;
  font-weight: 600;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes phoneIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0.85;
    transform: translate3d(-12px, 10px, 0);
  }
}

/* In-phone UI mock (Scan Complete) */
.ui-scan {
  height: 100%;
  background: #fff;
  padding: 2.4rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: #17170f;
}

.ui-scan .label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #8a8880;
  margin: 0;
}

.ui-scan .amount {
  margin: 0.35rem 0 0;
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #17170f;
}

.ui-scan .found {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: #5f5d55;
}

.ui-scan .honesty {
  margin: 0.55rem 0 0.9rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #8a8880;
}

.ui-scan .sec {
  margin: 0.35rem 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #17170f;
}

.ui-card {
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  margin-bottom: 0.45rem;
}

.ui-card.sky {
  background: #e6f1fb;
}

.ui-card.mint {
  background: #e1f5ee;
}

.ui-card.amber {
  background: #faeeda;
}

.ui-card .t {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #042c53;
}

.ui-card.mint .t {
  color: #04342c;
}

.ui-card.amber .t {
  color: #412402;
}

.ui-card .r {
  margin: 0.15rem 0 0;
  font-size: 0.68rem;
  color: #185fa5;
}

.ui-card.mint .r {
  color: #0f6e56;
}

.ui-card.amber .r {
  color: #854f0b;
}

.ui-card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.45rem;
  gap: 0.4rem;
}

.ui-card .chip {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 10px;
  background: #b5d4f4;
  color: #042c53;
}

.ui-card.mint .chip {
  background: #9fe1cb;
  color: #04342c;
}

.ui-card.amber .chip {
  background: #f2d6a4;
  color: #412402;
}

.ui-card .pay {
  font-size: 0.72rem;
  font-weight: 600;
  color: #185fa5;
}

.ui-card.mint .pay {
  color: #0f6e56;
}

.ui-card.amber .pay {
  color: #854f0b;
}

.ui-cta {
  margin-top: auto;
  background: #042c53;
  color: #fff;
  border: 0;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
}

@media (max-width: 920px) {
  .hero::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero-visual {
    justify-self: center;
    width: min(280px, 78vw);
    margin: 0.5rem 0 0;
  }

  .band,
  .band.reverse,
  .atmosphere .wrap,
  .trust-inner,
  .final-panel,
  .split {
    grid-template-columns: 1fr;
  }

  .band.reverse .band-copy,
  .band.reverse .band-media {
    order: initial;
  }

  .final-panel .cta-row {
    justify-content: flex-start;
  }

  .final-panel .store-note {
    text-align: left;
  }

  .nav-links .hide-sm {
    display: none;
  }

  .sticky-cta:not([hidden]) {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(244, 247, 250, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: stickyUp 0.35s var(--ease) both;
  }

  .sticky-cta-inner {
    width: min(var(--max), 100%);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .sticky-cta-copy {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    color: var(--ink);
  }

  .sticky-cta-btn {
    flex-shrink: 0;
    background: var(--ink);
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.7rem 1rem;
    border-radius: 12px;
  }

  body.has-sticky-cta {
    padding-bottom: 4.75rem;
  }
}

@keyframes stickyUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
