:root {
  color-scheme: light;
  --bg: #f4f5f3;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #686a70;
  --line: #e2e4df;
  --green: #46734d;
  --green-strong: #284f30;
  --green-soft: #e7f1e9;
  --green-wash: #dfece1;
  --gold: #e0bd39;
  --clay: #d9744f;
  --blue: #4c7ea1;
  --shadow: 0 18px 55px rgba(22, 24, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family:
    Manrope,
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(223, 236, 225, 0.95), rgba(244, 245, 243, 0) 460px),
    var(--bg);
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(22, 24, 20, 0.06);
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(22, 24, 20, 0.1);
}

.wordmark {
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0;
}

.nav-links {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  display: grid;
  gap: 24px;
  padding: 72px 0 54px;
}

.landing-page .nav {
  padding-top: 22px;
  padding-bottom: 16px;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  padding: 44px 0 68px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 3vw, 23px);
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
}

.button.primary {
  background: var(--ink);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.button:hover,
.text-link:hover,
.nav-links a:hover,
.card a:hover {
  opacity: 0.78;
}

.microcopy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.microcopy a,
.text-link {
  color: var(--green-strong);
  font-weight: 850;
  text-decoration: none;
}

.hero-visual {
  min-height: min(620px, calc(100vh - 112px));
  display: grid;
  align-items: center;
}

.phone-stack {
  position: relative;
  height: min(650px, 74vh);
  min-height: min(520px, calc(100vh - 112px));
}

.phone-stack::before {
  position: absolute;
  inset: 11% 3% 8% 18%;
  content: "";
  border: 1px solid rgba(70, 115, 77, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 26px 70px rgba(22, 24, 20, 0.11);
}

.phone-shot {
  position: absolute;
  display: block;
  height: min(620px, 72vh);
  width: auto;
  max-width: 62%;
  border-radius: 34px;
  box-shadow: 0 28px 72px rgba(22, 24, 20, 0.24);
  background: var(--paper);
  object-fit: cover;
}

.phone-shot-primary {
  right: 1%;
  top: 0;
  z-index: 2;
}

.phone-shot-secondary {
  left: 0;
  bottom: 2%;
  z-index: 1;
  opacity: 0.92;
  transform: rotate(-4deg);
}

.landing-band {
  border-top: 1px solid rgba(226, 228, 223, 0.9);
  border-bottom: 1px solid rgba(226, 228, 223, 0.9);
  background: rgba(255, 255, 255, 0.58);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  padding: 82px 0;
}

.split-section h2,
.feature-copy h2,
.legal-content h2 {
  margin-top: 12px;
  max-width: 560px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step-card,
.feature-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(226, 228, 223, 0.82);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(22, 24, 20, 0.06);
}

.step-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-strong);
  font-size: 14px;
  font-weight: 900;
}

.step-card h3,
.feature-card h3,
.preview-strip h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 1.08;
}

.step-card p,
.feature-card p,
.feature-copy p,
.legal-content p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.feature-section {
  padding: 90px 0 84px;
}

.feature-copy {
  max-width: 720px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.feature-card:nth-child(2) {
  border-color: rgba(217, 116, 79, 0.26);
}

.feature-card:nth-child(3) {
  border-color: rgba(76, 126, 161, 0.25);
}

.preview-strip {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(70, 115, 77, 0.16);
  border-radius: 28px;
  background: var(--green-soft);
}

.preview-strip img {
  width: 170px;
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(22, 24, 20, 0.15);
}

.preview-strip h3 {
  max-width: 560px;
  margin-top: 10px;
  font-size: clamp(28px, 4vw, 42px);
}

.legal-strip {
  padding: 70px 0;
  background: var(--ink);
  color: white;
}

.legal-strip .eyebrow {
  color: #a8d3ae;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 36px;
}

.legal-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.legal-actions {
  display: grid;
  gap: 12px;
}

.legal-actions .button.primary {
  background: white;
  color: var(--ink);
}

.legal-actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.legal-actions .text-link {
  justify-content: center;
  color: #a8d3ae;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 72px;
}

.card {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(226, 228, 223, 0.78);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card h2 {
  font-size: 23px;
  line-height: 1.1;
}

.card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  padding: 24px 0 72px;
}

.toc {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.toc a {
  display: block;
  text-decoration: none;
}

.document {
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(226, 228, 223, 0.78);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.document-header {
  display: grid;
  gap: 14px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.document h1 {
  font-size: clamp(34px, 6vw, 54px);
}

.document h2 {
  margin-top: 34px;
  font-size: 24px;
  line-height: 1.2;
}

.document h3 {
  margin-top: 24px;
  font-size: 18px;
}

.document p,
.document li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.document p {
  margin-top: 14px;
}

.document ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.callout {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(70, 115, 77, 0.2);
  border-radius: 20px;
  background: var(--green-soft);
  color: #2e5034;
}

.footer {
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

.footer-links {
  flex-wrap: wrap;
  display: flex;
  gap: 16px;
}

@media (max-width: 980px) {
  .landing-hero,
  .split-section,
  .legal-content {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    padding-top: 40px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .phone-stack {
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .step-list,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 981px) and (max-height: 620px) {
  .landing-page .nav {
    padding-top: 18px;
    padding-bottom: 10px;
  }

  .landing-hero {
    align-items: start;
    padding-top: 22px;
    padding-bottom: 42px;
  }

  .hero-copy {
    gap: 15px;
  }

  h1 {
    font-size: 50px;
  }

  .lead {
    font-size: 17px;
    line-height: 1.38;
  }

  .microcopy {
    display: none;
  }

  .hero-visual {
    min-height: 370px;
  }

  .phone-stack {
    height: 370px;
    min-height: 370px;
  }

  .phone-shot {
    height: 360px;
  }
}

@media (max-width: 800px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 620px) {
  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .lead {
    font-size: 18px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .phone-stack {
    height: 420px;
    min-height: 420px;
  }

  .phone-shot {
    height: 410px;
    max-width: 68%;
    border-radius: 26px;
  }

  .phone-shot-secondary {
    left: -3%;
  }

  .phone-shot-primary {
    right: -2%;
  }

  .split-section,
  .feature-section {
    padding: 58px 0;
  }

  .preview-strip {
    grid-template-columns: 1fr;
  }

  .preview-strip img {
    width: min(210px, 100%);
  }

  .legal-strip {
    padding: 56px 0;
  }
}
