:root {
  --canvas: #ffffff;
  --surface-soft: #f7f7f7;
  --ink: #222222;
  --muted: #5f5f5f;
  --secondary: #384b59;
  --primary: #a6d4a9;
  --primary-active: #8db490;
  --hairline: #dddddd;
  --hairline-soft: #ebebeb;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--surface-soft);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header.site {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
header.site a.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
header.site img.logo {
  height: 30px;
  width: auto;
  display: block;
}
header.site .wordmark {
  font-weight: 700;
  color: var(--secondary);
  font-size: 18px;
  letter-spacing: 0.2px;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

article {
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: 12px;
  padding: 40px clamp(20px, 4vw, 48px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

h1 {
  margin: 0 0 6px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0;
  line-height: 1.15;
}

.effective {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 28px;
}

.lede {
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 8px;
}

h2 {
  margin: 32px 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
}

h3 {
  margin: 22px 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

p, li {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
}

ol, ul { padding-left: 22px; margin: 12px 0; }
li + li { margin-top: 8px; }

a {
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
a:hover { color: var(--primary-active); }

.callout {
  background: var(--surface-soft);
  padding: 14px 18px;
  margin: 22px 0;
  border-radius: 6px;
}

.rule {
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.rule:last-child { border-bottom: 0; }
.rule .rule-title {
  display: block;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}
.rule p { margin: 0; }

footer.site {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 24px 16px 40px;
}
footer.site a { color: var(--muted); margin: 0 8px; }

body.landing {
  background: var(--canvas);
}

.landing-header {
  justify-content: space-between;
}

.header-cta,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #3f6242;
  font-weight: 700;
  text-decoration: none;
}

.header-cta:hover,
.button-link:hover {
  background: var(--primary-active);
  color: #3f6242;
}

.landing-main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.landing-hero {
  min-height: calc(100svh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 7vw, 88px) clamp(24px, 6vw, 88px) clamp(36px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.78) 100%),
    url("bg-topo-green-wht-horiz.jpg") center / cover;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--secondary);
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.phone-showcase {
  position: relative;
  min-height: 710px;
}

.phone {
  position: absolute;
  width: min(285px, 54vw);
  border-radius: 34px;
  box-shadow: 0 18px 48px rgba(34, 34, 34, 0.2);
}

.phone-primary {
  top: 0;
  right: 110px;
  z-index: 2;
}

.phone-secondary {
  top: 96px;
  right: 0;
  opacity: 0.94;
}

.landing-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 86px clamp(24px, 6vw, 88px);
}

.landing h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
  margin-top: 44px;
}

.benefit-grid h3 {
  margin: 0 0 8px;
  color: var(--secondary);
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
}

.landing-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 clamp(24px, 6vw, 88px) 72px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  background: var(--surface-soft);
}

.landing-band > div {
  min-width: 0;
}

.landing-band .button-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

.landing-next-step {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 88px) 86px;
}

.landing-next-step p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
}

.landing-band p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
}

.landing-footer {
  border-top: 1px solid var(--hairline-soft);
}

@media (max-width: 600px) {
  header.site { padding: 14px 18px; }
  main { padding: 24px 16px 56px; }
  article { padding: 26px 20px; border-radius: 10px; }
  h2 { font-size: 18px; }
}

@media (max-width: 960px) {
  .landing-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .phone-showcase {
    min-height: 620px;
    max-width: 420px;
  }

  .phone-primary {
    right: 86px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .landing-header {
    align-items: center;
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .landing-main {
    padding: 0;
  }

  .landing-hero {
    padding: 36px 18px 28px;
  }

  .landing h1 {
    font-size: 44px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-link {
    width: 100%;
  }

  .phone-showcase {
    min-height: 518px;
    margin-top: 8px;
  }

  .phone {
    width: 205px;
    border-radius: 26px;
  }

  .phone-primary {
    right: 88px;
  }

  .phone-secondary {
    top: 74px;
  }

  .landing-section {
    padding: 58px 18px;
  }

  .landing-next-step {
    padding: 0 18px 58px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .landing-band {
    align-items: stretch;
    flex-direction: column;
    margin: 0 18px 52px;
    padding: 26px 20px;
  }
}
