:root {
  color-scheme: light;
  --paper: #f7f2ea;
  --paper-strong: #efe4d4;
  --surface: #fffdf8;
  --surface-cool: #eef4f2;
  --ink: #17211e;
  --ink-soft: #4f5d58;
  --muted: #6f7a75;
  --line: #dbd1bf;
  --line-cool: #cddbd7;
  --green: #1f7357;
  --green-dark: #123e31;
  --blue: #315e7a;
  --orange: #c8551c;
  --gold: #d4a24a;
  --danger: #b8453c;
  --shadow: 0 16px 50px rgba(30, 38, 34, 0.12);
  --shadow-soft: 0 8px 28px rgba(30, 38, 34, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(219, 209, 191, 0.86);
  background: rgba(247, 242, 234, 0.92);
  padding: 14px clamp(18px, 5vw, 64px);
  backdrop-filter: blur(14px);
}

.brand,
.nav nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand,
.nav nav,
.hero-copy,
.lede,
.section-heading,
.article-hero,
.article-section {
  min-width: 0;
}

.brand span {
  font-size: 16px;
  font-weight: 750;
}

.nav nav {
  justify-content: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.nav nav a,
.footer a {
  text-underline-offset: 4px;
}

.nav nav a:hover,
.footer a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.nav-action,
.primary-action,
.secondary-action,
.signup-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 750;
  transition: transform 140ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-action,
.primary-action,
.signup-form button {
  border: 1px solid var(--green);
  background: var(--green);
  color: #fffaf2;
}

.nav-action {
  justify-self: end;
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
  white-space: nowrap;
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.88);
  color: var(--green-dark);
}

.nav-action:hover,
.primary-action:hover,
.signup-form button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.secondary-action:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 66px));
  align-items: center;
  overflow: hidden;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 242, 234, 0.12), rgba(247, 242, 234, 0.72) 46%, rgba(247, 242, 234, 0.96) 76%),
    linear-gradient(180deg, rgba(247, 242, 234, 0), rgba(247, 242, 234, 0.92));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(660px, 100%);
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  font-size: clamp(48px, 7.6vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.lede {
  max-width: 590px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
  overflow-wrap: break-word;
}

.lede strong {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.trust-pills li {
  border: 1px solid rgba(31, 115, 87, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--green-dark);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.problem-band,
.workflow,
.content-hub,
.faq,
.forms,
.policy,
.content-page {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.problem-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.problem-copy {
  display: grid;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
}

.section-heading {
  max-width: 820px;
}

.section-heading p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.steps,
.hub-grid,
.faq-grid,
.proof-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

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

.hub-grid,
.faq-grid,
.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps article,
.hub-card,
.faq article,
.proof-grid article,
.signup-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.steps article,
.hub-card,
.faq article,
.proof-grid article {
  padding: 22px;
}

.steps span,
.hub-card span {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface-cool);
  color: var(--green-dark);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
}

.steps h3,
.hub-card h3,
.faq h3,
.proof-grid h3 {
  margin-top: 18px;
}

.steps p,
.hub-card p,
.faq p,
.proof-grid p,
.article-section p,
.policy p {
  color: var(--muted);
  line-height: 1.58;
}

.steps p,
.hub-card p,
.faq p,
.proof-grid p {
  margin-top: 10px;
}

.hub-card {
  min-height: 230px;
  border-color: var(--line-cool);
  background: linear-gradient(180deg, var(--surface), #f7fbf9);
}

.hub-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(54px, 7vw, 96px);
  border: 1px solid var(--line-cool);
  border-radius: 8px;
  background: var(--surface-cool);
  padding: 28px;
}

.privacy-band ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.privacy-band li {
  color: var(--ink-soft);
  line-height: 1.55;
}

code {
  border-radius: 5px;
  background: #fffdf8;
  padding: 2px 5px;
}

.faq {
  background: var(--surface);
}

.forms {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 32px;
  align-items: start;
}

.signup-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
}

.signup-form input[type="email"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  font: inherit;
}

.signup-form input:focus {
  outline: 2px solid rgba(31, 115, 87, 0.22);
  outline-offset: 2px;
}

.checkbox {
  grid-template-columns: 18px 1fr;
  align-items: center;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 22px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
}

.policy,
.content-page {
  max-width: 1120px;
  margin: 0 auto;
}

.policy h1,
.article-hero h1 {
  font-size: clamp(40px, 6vw, 70px);
}

.policy section,
.article-section {
  margin-top: 38px;
}

.policy h2,
.article-section h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.policy p + p,
.article-section p + p {
  margin-top: 12px;
}

.article-hero {
  display: grid;
  max-width: 860px;
}

.article-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-grid,
  .faq-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 12px;
  }

  .nav nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: visible;
    padding-bottom: 2px;
  }

  .nav-action {
    display: none;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(247, 242, 234, 0.1), rgba(247, 242, 234, 0.96) 58%),
      linear-gradient(90deg, rgba(247, 242, 234, 0.18), rgba(247, 242, 234, 0.72));
  }

  .problem-band,
  .forms,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .privacy-band {
    margin-right: 18px;
    margin-left: 18px;
  }
}

@media (max-width: 560px) {
  .hero,
  .problem-band,
  .workflow,
  .content-hub,
  .faq,
  .forms,
  .policy,
  .content-page {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-copy,
  .problem-band > *,
  .section-heading,
  .forms > *,
  .privacy-band > *,
  .article-hero,
  .article-section {
    width: 100%;
    max-width: 342px;
  }

  h1 {
    font-size: 44px;
  }

  .policy h1,
  .article-hero h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .lede {
    font-size: 18px;
  }

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

  .hero-actions,
  .primary-action,
  .secondary-action,
  .signup-form button {
    width: 100%;
  }

  .trust-pills li {
    width: 100%;
  }

  .nav nav a:nth-child(n+4) {
    display: none;
  }
}
