@import url("https://fonts.googleapis.com/css2?family=Della+Respira&display=swap");

:root {
  --green-950: #06251d;
  --green-900: #082f25;
  --green-800: #0d3e31;
  --green-700: #145341;
  --gold: #b77a1d;
  --gold-soft: #e9cf90;
  --cream: #fffaf0;
  --cream-2: #f6eedc;
  --paper: rgba(255, 250, 239, 0.84);
  --paper-strong: rgba(255, 252, 244, 0.94);
  --ink: #08251d;
  --muted: #5d6c62;
  --line: rgba(183, 122, 29, 0.24);
  --shadow: 0 26px 80px rgba(6, 37, 29, 0.18);
  font-family: "Della Respira";
  color: var(--ink);
  background: var(--cream-2);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: "Della Respira";
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255,255,255,0.8), rgba(246,238,220,0.86)),
    radial-gradient(circle at 12% 0%, rgba(183,122,29,0.18), transparent 34%),
    radial-gradient(circle at 96% 20%, rgba(8,47,37,0.14), transparent 28%),
    var(--cream-2);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8,47,37,0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8,47,37,0.05) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 82%);
  z-index: -2;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 28px));
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 999px;
  background: rgba(255, 250, 239, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 42px rgba(6,37,29,0.11);
  transition: background .25s ease, transform .25s ease;
}
.site-header.is-scrolled { background: rgba(255,250,239,0.92); }
.brand { display:flex; align-items:center; gap:10px; font-size:23px; color:var(--green-950); }
.brand img { width: 38px; height: 38px; border-radius: 12px; box-shadow: 0 8px 18px rgba(6,37,29,0.18); }
.site-header nav { display:flex; gap: 22px; align-items:center; color:rgba(8,37,29,0.78); font-size:17px; }
.site-header nav a { position:relative; }
.site-header nav a::after { content:""; position:absolute; left:0; right:0; bottom:-6px; height:1px; background:var(--gold); transform:scaleX(0); transition:transform .2s ease; }
.site-header nav a:hover::after { transform:scaleX(1); }
.header-cta, .button {
  border:0;
  border-radius: 18px;
  padding: 14px 22px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height: 48px;
  font-family: "Della Respira";
  font-size: 18px;
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-cta, .button.primary { background: var(--green-950); color: var(--cream); box-shadow: 0 16px 34px rgba(6,37,29,.22); }
.button.secondary { color: var(--green-950); background: rgba(255,250,239,0.78); border:1px solid rgba(183,122,29,.34); }
.button:hover, .header-cta:hover { transform: translateY(-2px); }
.button.full { width: 100%; margin-top: auto; }

.hero {
  min-height: 100svh;
  position: relative;
  isolation:isolate;
  display:grid;
  place-items:center;
  padding: 124px 24px 72px;
  overflow:hidden;
}
.hero-slides, .hero-slide, .hero-veil { position:absolute; inset:0; }
.hero-slide {
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity:0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
  filter: saturate(0.96) contrast(1.02);
}
.hero-slide:nth-child(n+2) { background-size: min(56vw, 720px) auto; background-repeat:no-repeat; background-position: 82% center; filter: blur(0.1px) saturate(0.95); }
.hero-slide.is-active { opacity:.92; transform: scale(1); }
.hero-veil {
  background:
    linear-gradient(90deg, rgba(246,238,220,.96) 0%, rgba(246,238,220,.83) 38%, rgba(246,238,220,.42) 68%, rgba(6,37,29,.10) 100%),
    radial-gradient(circle at 32% 50%, rgba(255,250,239,.62), transparent 34%),
    linear-gradient(180deg, rgba(6,37,29,.22), transparent 28%, rgba(6,37,29,.18));
  z-index:1;
}
.hero-inner {
  position:relative;
  z-index:2;
  width:min(1120px, 100%);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  color:var(--green-950);
}
.logo-lockup { width:min(340px, 76vw); margin:0 0 26px -4px; filter: drop-shadow(0 24px 46px rgba(6,37,29,.15)); }
.eyebrow { margin:0 0 14px; color:var(--gold); font-size:18px; letter-spacing:0; }
.eyebrow.dark { color: var(--gold); }
h1, h2, h3, p { margin-top:0; }
h1 { max-width: 760px; font-size: clamp(38px, 5.6vw, 74px); line-height:.94; margin-bottom:22px; letter-spacing:0; }
h2 { font-size: clamp(31px, 3.8vw, 54px); line-height:1.02; margin-bottom:18px; letter-spacing:0; }
h3 { font-size: clamp(22px, 2.2vw, 30px); line-height:1.08; margin-bottom:10px; }
p { font-size: 21px; line-height:1.45; color: var(--muted); }
.hero-copy { max-width: 690px; font-size: clamp(22px, 2.8vw, 34px); color:#334b40; line-height:1.22; margin-bottom:30px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:22px; }
.hero-pills { display:flex; flex-wrap:wrap; gap:10px; }
.hero-pills span { padding:10px 14px; border-radius:999px; background:rgba(255,250,239,.75); border:1px solid rgba(183,122,29,.24); color:#22453a; font-size:17px; box-shadow:0 10px 28px rgba(6,37,29,.08); }

.intro-band, .section, .savings-stage, .plans, .final-cta, footer {
  width:min(1120px, calc(100% - 32px));
  margin: 28px auto;
}
.intro-band {
  display:grid;
  grid-template-columns: 1fr .9fr;
  align-items:center;
  gap: 36px;
  min-height: 680px;
  padding: clamp(28px, 5vw, 64px);
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(255,252,244,.9), rgba(246,238,220,.64));
  border:1px solid rgba(255,255,255,.74);
  box-shadow: var(--shadow);
}
.intro-copy p { max-width:620px; }
.phone-showcase { position:relative; min-height: 560px; display:grid; place-items:center; }
.phone-frame {
  width:min(290px, 70vw);
  aspect-ratio: 9/18.5;
  padding:10px;
  border-radius: 42px;
  background: var(--green-950);
  box-shadow: 0 28px 80px rgba(6,37,29,.28);
  overflow:hidden;
}
.phone-frame img { width:100%; height:100%; object-fit:cover; border-radius:32px; }
.floating-card {
  position:absolute;
  width: 230px;
  padding:18px;
  border-radius:24px;
  background:rgba(255,250,239,.9);
  border:1px solid var(--line);
  box-shadow:0 18px 46px rgba(6,37,29,.15);
}
.floating-card strong { display:block; color:var(--green-950); font-size:27px; }
.floating-card span { color:var(--muted); font-size:18px; }
.card-top { top: 54px; right: 0; }
.card-bottom { left: 0; bottom: 58px; }

.section { padding: 74px 0; }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head.centered { text-align:center; margin-inline:auto; }
.feature-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.feature-grid article, .price-card, .proof-grid article, .security, .large-screen-card {
  background: var(--paper-strong);
  border:1px solid rgba(255,255,255,.78);
  box-shadow: 0 18px 56px rgba(6,37,29,.10);
}
.feature-grid article {
  min-height: 260px;
  padding: 28px;
  border-radius: 28px;
  display:flex;
  flex-direction:column;
}
.feature-grid article span { color:var(--gold); font-size: 22px; margin-bottom:28px; }
.feature-grid article p { font-size:19px; margin-bottom:0; }

.savings-stage {
  display:grid;
  grid-template-columns: 1fr .85fr;
  gap:26px;
  align-items:center;
  padding: clamp(30px, 6vw, 70px);
  border-radius: 48px;
  color:var(--cream);
  background:
    radial-gradient(circle at 18% 0%, rgba(233,207,144,.28), transparent 30%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.savings-stage p { color:rgba(255,250,239,.78); }
.savings-stage h2 { color:var(--cream); }
.savings-grid { display:grid; gap:12px; margin-top:24px; }
.savings-grid div { padding:18px; border-radius:22px; background:rgba(255,250,239,.10); border:1px solid rgba(233,207,144,.22); }
.savings-grid strong { display:block; font-size:28px; color:var(--gold-soft); }
.savings-grid span { color:rgba(255,250,239,.74); font-size:18px; }
.large-screen-card { padding:10px; border-radius:34px; background:rgba(255,250,239,.12); border-color:rgba(233,207,144,.28); }
.large-screen-card img { border-radius:26px; width:100%; aspect-ratio: 9/14; object-fit:cover; object-position:top; }

.proof-grid { display:grid; grid-template-columns: 1fr 1fr; gap:20px; }
.proof-grid article { border-radius:34px; padding:18px; overflow:hidden; }
.proof-grid img { width:100%; height:420px; object-fit:cover; object-position: top; border-radius:24px; margin-bottom:18px; }
.proof-grid h3, .proof-grid p { padding-inline:8px; }

.plans { padding:76px 0; }
.pricing-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; align-items:stretch; }
.price-card { border-radius:34px; padding:28px; display:flex; flex-direction:column; min-height:610px; }
.price-card.highlight { background: linear-gradient(180deg, #fffaf0, #f6ead0); border-color:rgba(183,122,29,.36); transform: translateY(-10px); }
.plan-kicker { color:var(--gold); font-size:18px; margin-bottom:8px; }
.price { color:var(--green-950); font-size:48px; line-height:1; margin:12px 0 16px; }
.price span { font-size:22px; color:var(--muted); }
ul { padding-left:20px; margin:18px 0 28px; color:var(--muted); font-size:19px; line-height:1.6; }
li::marker { color:var(--gold); }

.security { display:grid; grid-template-columns: .9fr 1fr; gap:22px; align-items:center; border-radius:40px; padding:42px; }
.security-list { display:flex; flex-wrap:wrap; gap:12px; justify-content:flex-end; }
.security-list span { border-radius:999px; padding:12px 16px; background:rgba(183,122,29,.12); border:1px solid var(--line); color:var(--green-950); font-size:18px; }

.final-cta { text-align:center; padding:80px 28px; border-radius:48px; background:linear-gradient(135deg, rgba(255,250,239,.92), rgba(233,207,144,.24)); border:1px solid rgba(255,255,255,.76); box-shadow:var(--shadow); }
.final-cta p { max-width:680px; margin-inline:auto; }
footer { padding:34px 0 48px; text-align:center; color:var(--muted); }
footer img { width:54px; height:54px; border-radius:16px; margin:0 auto 12px; }
footer p { margin:4px 0; font-size:18px; }
footer nav { margin-top:16px; display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
footer a { color:var(--green-950); text-decoration:underline; text-underline-offset:4px; }

@media (max-width: 940px) {
  .site-header nav { display:none; }
  .hero { padding-top:110px; }
  .hero-inner { align-items:center; text-align:center; }
  .logo-lockup { margin-left:0; }
  .intro-band, .savings-stage, .security { grid-template-columns:1fr; }
  .phone-showcase { min-height:480px; }
  .feature-grid, .pricing-grid { grid-template-columns:1fr; }
  .price-card.highlight { transform:none; }
  .proof-grid { grid-template-columns:1fr; }
  .security-list { justify-content:flex-start; }
}
@media (max-width: 540px) {
  .site-header { top:10px; width:calc(100% - 18px); }
  .brand span { display:none; }
  .header-cta { padding:11px 16px; min-height:42px; font-size:16px; }
  .hero { padding-inline:16px; }
  .hero-slide:nth-child(n+2) { background-size: 76vw auto; background-position: center 58%; opacity:0; }
  .hero-slide:nth-child(n+2).is-active { opacity:.18; }
  .hero-copy { font-size:23px; }
  .intro-band, .savings-stage, .final-cta { width:calc(100% - 20px); border-radius:34px; }
  .section, .plans { width:calc(100% - 20px); }
  .floating-card { position:relative; inset:auto; width:100%; margin-top:12px; }
  .phone-showcase { display:block; min-height:auto; }
  .phone-frame { margin:0 auto 14px; }
  .proof-grid img { height:340px; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
}

/* Keeply light mode guard */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
    --ink: #08251d;
    --muted: #5d6c62;
    --cream: #fffaf0;
    --cream-2: #f6eedc;
    --paper: rgba(255, 250, 239, 0.86);
    --paper-strong: rgba(255, 252, 244, 0.96);
  }

  html, body {
    background: #f6eedc !important;
    color: #08251d !important;
  }

  h1, h2, h3, .brand, .price, .security-list span, .site-header nav a, footer a {
    color: #08251d !important;
  }

  p, li, footer, .price span, .floating-card span {
    color: #5d6c62 !important;
  }

  .hero-copy {
    color: #334b40 !important;
  }

  .savings-stage, .savings-stage h2 {
    color: #fffaf0 !important;
  }

  .savings-stage p, .savings-grid span {
    color: rgba(255, 250, 239, 0.78) !important;
  }

  .button.primary, .header-cta {
    background: #06251d !important;
    color: #fffaf0 !important;
  }

  .button.secondary, .hero-pills span, .feature-grid article, .price-card, .proof-grid article, .intro-band, .final-cta, .security {
    background-color: rgba(255, 252, 244, 0.94) !important;
    color: #08251d !important;
  }
}
