:root {
  --green-950: #01251a;
  --green-900: #003321;
  --green-800: #064b32;
  --green-700: #0a6a45;
  --cream: #fbf7ed;
  --paper: #fffdf8;
  --muted: #6f7d72;
  --line: rgba(0, 51, 33, .12);
  --gold: #e5b13a;
  --red: #ce513c;
  --shadow: 0 26px 80px rgba(0, 24, 15, .25);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--green-950);
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  background: rgba(1, 37, 26, .86);
  color: #fffdf8;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.site-header.compact { position: static; }

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.wordmark span {
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
}
.wordmark strong {
  font-size: 36px;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 253, 248, .78);
  font-weight: 600;
  font-size: 14px;
}
.nav-links a:hover { color: #fffdf8; }
.header-cta {
  border: 1px solid rgba(229, 177, 58, .65);
  color: var(--gold);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(300px, 430px);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px) 80px;
  background:
    radial-gradient(900px 540px at 78% 28%, rgba(13, 117, 76, .65), transparent 62%),
    linear-gradient(160deg, var(--green-950), var(--green-900) 48%, #154733);
  color: #fffdf8;
  overflow: hidden;
}
.hero-copy { max-width: 760px; min-width: 0; align-self: center; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 { font-size: clamp(46px, 5.8vw, 72px); max-width: 720px; }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: 24px; }
.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, .78);
  font-size: clamp(18px, 2vw, 23px);
}
.hero-actions, .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}
.button.primary { background: var(--gold); color: var(--green-950); }
.button.secondary { border: 1px solid rgba(255,255,255,.24); color: #fffdf8; }
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 44px 0 0;
}
.hero-metrics div {
  min-width: 138px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}
.hero-metrics dt { font-size: 28px; font-weight: 800; color: #fffdf8; }
.hero-metrics dd { margin: 2px 0 0; color: rgba(255,253,248,.68); }

.hero-visual {
  position: relative;
  min-height: 710px;
  display: grid;
  place-items: end center;
}
.phone {
  position: relative;
  width: min(100%, 420px);
  border: 12px solid #080a09;
  border-radius: 62px;
  overflow: visible;
  box-shadow:
    0 42px 100px rgba(0, 17, 11, .34),
    0 0 0 1px #858b87,
    0 0 0 4px #272c2a,
    0 0 0 7px #070908,
    inset 0 0 0 2px rgba(255,255,255,.12);
  background: #080a09;
}
.phone::before,
.phone::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #a3aaa5 0%, #303635 48%, #111413 100%);
}
.phone::before {
  left: -21px;
  top: 124px;
  height: 82px;
  box-shadow: 0 112px 0 #303635;
}
.phone::after {
  right: -21px;
  top: 226px;
  height: 150px;
}
.phone img {
  display: block;
  width: 100%;
  border-radius: 46px;
  overflow: hidden;
}
.main-phone { width: min(100%, 430px); }
.floating-card {
  position: absolute;
  width: 220px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,253,248,.94);
  color: var(--green-950);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  font-weight: 800;
}
.card-a { top: 132px; left: -70px; }
.card-b { right: -16px; bottom: 180px; color: var(--green-800); }

.section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
}
.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  margin: 16px auto 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.feature, .plan-card, .support-card, details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(0, 42, 27, .06);
}
.feature { padding: 28px; }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(10, 106, 69, .1);
  color: var(--green-800);
  font-weight: 900;
  margin-bottom: 22px;
}
.feature p, .split-copy p, .plan-card li, .legal p, .legal li {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 560px);
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 8vw, 110px);
}
.split.reverse .split-media { order: 2; }
.split-media {
  display: grid;
  place-items: center;
}
.split-copy p { font-size: 18px; margin: 20px 0 0; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--green-950);
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.plans-section { background: #f5efe3; }
.plans {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  max-width: 620px;
  margin: 0 auto;
}
.plan-card {
  position: relative;
  padding: 30px;
}
.plan-card.featured {
  border-color: rgba(229, 177, 58, .75);
  box-shadow: 0 24px 70px rgba(0, 42, 27, .14);
}
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.price {
  margin: 28px 0 0;
  font-size: 36px;
  font-weight: 900;
  color: var(--green-950);
}
.price span { font-size: 17px; color: var(--muted); }
.annual { margin: 4px 0 24px; color: var(--green-800); font-weight: 800; }
.plan-card ul { padding-left: 20px; margin: 0; }

.cta-panel {
  margin: clamp(30px, 5vw, 70px) clamp(20px, 5vw, 72px);
  padding: clamp(36px, 6vw, 70px);
  border-radius: 36px;
  background:
    radial-gradient(500px 320px at 80% 20%, rgba(229,177,58,.2), transparent 60%),
    var(--green-900);
  color: #fffdf8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-panel p:not(.eyebrow) { color: rgba(255,253,248,.72); font-size: 18px; }

.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 22px;
}
.legal h1 { color: var(--green-950); font-size: clamp(44px, 7vw, 78px); }
.legal h2 {
  margin-top: 38px;
  font-size: 28px;
  letter-spacing: -.03em;
}
.legal a { color: var(--green-800); font-weight: 800; }
.updated {
  margin-top: 14px;
  font-weight: 700;
}
.support-card {
  padding: 28px;
  margin: 36px 0;
}
.faq-list { display: grid; gap: 12px; margin-top: 42px; }
details { padding: 20px 22px; }
summary { cursor: pointer; font-weight: 900; }
details p { margin-bottom: 0; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--green-950);
  color: rgba(255,253,248,.7);
  flex-wrap: wrap;
}
.footer nav { display: flex; gap: 18px; font-weight: 700; }
.footer .wordmark strong { font-size: 28px; }
.footer .wordmark span { font-size: 18px; }
.footer p { margin: 0; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: 40px;
    overflow: hidden;
  }
  .hero > * { min-width: 0; }
  h1 {
    font-size: 38px;
    letter-spacing: -.035em;
  }
  .lead {
    font-size: 17px;
    line-height: 1.45;
  }
  .hero-visual { min-height: 0; }
  .floating-card { display: none; }
  .feature-grid, .plans { grid-template-columns: 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 1280px) {
  .hero .floating-card { display: none; }
}

@media (max-width: 560px) {
  .site-header { padding-inline: 18px; }
  .header-cta { display: none; }
  .wordmark strong { font-size: 30px; }
  .wordmark span { font-size: 20px; }
  .hero {
    padding-inline: 24px;
    width: 100vw;
    max-width: 100vw;
  }
  h1 {
    font-size: 38px;
    letter-spacing: -.035em;
  }
  .lead {
    font-size: 17px;
    line-height: 1.45;
  }
  .hero-actions .button { width: 100%; }
  .hero-metrics { display: grid; grid-template-columns: 1fr; }
  .phone {
    border-width: 9px;
    border-radius: 46px;
    width: min(100%, 350px);
  }
  .phone img { border-radius: 35px; }
  .footer { align-items: flex-start; flex-direction: column; }
}
