:root {
  color-scheme: light;
  --ink: #153424;
  --ink-strong: #0a2318;
  --muted: #59645f;
  --paper: #fffdf8;
  --paper-soft: #f7f3ea;
  --line: #dfe8de;
  --leaf: #0d5b3d;
  --leaf-bright: #1d8b58;
  --violet: #6f56f5;
  --sky: #19aee0;
  --rose: #ef6f87;
  --amber: #f0ac45;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14px 14px, rgba(21, 52, 36, 0.055) 1px, transparent 1.4px) 0 0 / 24px 24px,
    var(--paper);
  overflow-x: hidden;
}

body.locked-page {
  background: var(--paper-soft);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(223, 232, 222, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink-strong);
  font-size: 1.12rem;
  font-weight: 820;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 720;
}

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

.nav-links a:hover,
.footer-links a:hover,
.legal-link:hover {
  color: var(--leaf);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 820;
  white-space: nowrap;
}

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

.button.primary:hover {
  background: var(--ink-strong);
}

.button.secondary {
  color: var(--leaf);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(13, 91, 61, 0.22);
}

.button.light {
  color: var(--leaf);
  background: var(--white);
}

.hero {
  min-height: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14px 14px, rgba(13, 91, 61, 0.08) 1px, transparent 1.4px) 0 0 / 26px 26px,
    #f6f1e8;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(246, 241, 232, 0) 0%, var(--paper) 100%);
  z-index: -1;
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 86px;
  color: var(--ink-strong);
}

.kicker {
  margin: 0 0 16px;
  color: #bce7ce;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: var(--leaf);
}

.hero h1,
.page-title,
.section h2,
.band-title {
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}

.hero h1 {
  max-width: 720px;
  font-size: 5.8rem;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.26rem;
  line-height: 1.56;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.panel-actions {
  margin-top: 22px;
}

.contact-actions {
  margin-top: 16px;
}

.hero-meta {
  width: min(1180px, calc(100% - 40px));
  margin: -46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 2;
}

.proof {
  min-height: 92px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line);
}

.proof strong {
  display: block;
  color: var(--ink-strong);
  font-size: 1.08rem;
}

.proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.46;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section h2,
.band-title {
  max-width: 780px;
  color: var(--ink-strong);
  font-size: 3.25rem;
}

.section-lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.66;
}

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

.feature-card {
  min-height: 270px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.feature-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  background: var(--violet);
}

.feature-card:nth-child(2) .feature-mark {
  background: var(--sky);
}

.feature-card:nth-child(3) .feature-mark {
  background: var(--rose);
}

.feature-card:nth-child(4) .feature-mark {
  background: var(--amber);
  color: var(--ink-strong);
}

.feature-card:nth-child(5) .feature-mark {
  background: var(--leaf-bright);
}

.feature-card:nth-child(6) .feature-mark {
  background: var(--ink-strong);
}

.feature-card h3 {
  margin: 18px 0 10px;
  color: var(--ink-strong);
  font-size: 1.28rem;
  letter-spacing: 0;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.story-band {
  padding: 82px 0;
  background: #102a1e;
  color: var(--white);
}

.story-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.story-band .kicker {
  color: #a9dfbf;
}

.story-band .band-title,
.story-band .section-lead {
  color: var(--white);
}

.flow-list {
  display: grid;
  gap: 12px;
}

.flow-step {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.flow-step span {
  color: #bce7ce;
  font-weight: 900;
}

.flow-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.flow-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.54;
}

.access-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.access-panel {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.access-panel.highlight {
  color: var(--white);
  border-color: transparent;
  background: var(--violet);
}

.access-panel h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.access-panel p {
  margin: 0;
  line-height: 1.62;
}

.access-panel:not(.highlight) p {
  color: var(--muted);
}

.access-panel.highlight p {
  color: rgba(255, 255, 255, 0.84);
}

.trust-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.trust-item {
  display: flex;
  gap: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.trust-item::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--leaf-bright);
}

.cta-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 74px;
  padding: 36px;
  border-radius: 8px;
  background: var(--ink-strong);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.9);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

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

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

.page-shell {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 86px;
}

.page-kicker {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-title {
  color: var(--ink-strong);
  font-size: 3.3rem;
}

.page-lead {
  margin: 18px 0 32px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.64;
}

.legal-panel {
  padding: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.legal-panel h2 {
  margin: 32px 0 10px;
  color: var(--ink-strong);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
  line-height: 1.64;
}

.legal-panel ul {
  padding-left: 1.25rem;
}

.legal-link {
  color: var(--leaf);
  font-weight: 760;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-method {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.contact-method strong {
  display: block;
  color: var(--ink-strong);
  margin-bottom: 6px;
}

.contact-method p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

@media (max-width: 980px) {
  .nav {
    width: min(100% - 28px, 720px);
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero-inner,
  .hero-meta,
  .section,
  .story-inner,
  .cta-band,
  .footer-inner,
  .page-shell {
    width: min(100% - 28px, 720px);
  }

  .hero-inner {
    padding: 38px 0 76px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-meta,
  .feature-grid,
  .story-inner,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    margin-top: -32px;
  }

  .section {
    padding: 66px 0;
  }

  .section h2,
  .band-title,
  .page-title {
    font-size: 2.35rem;
  }

  .story-band {
    padding: 64px 0;
  }

  .cta-band,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }

  .nav-links .button {
    min-height: 42px;
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: 2.78rem;
  }

  .hero-copy,
  .section-lead,
  .page-lead {
    font-size: 1.02rem;
  }

  .hero-actions .button,
  .inline-actions .button,
  .cta-band .button {
    width: 100%;
  }

  .proof,
  .feature-card,
  .access-panel,
  .legal-panel,
  .contact-method {
    padding: 18px;
  }

  .flow-step {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}
