:root {
  color-scheme: light;
  --ink: #111416;
  --muted: #5f676f;
  --paper: #f8f5ee;
  --warm: #efe7d7;
  --ivory: #fffdf7;
  --dark: #0b1117;
  --dark-2: #121b22;
  --line: rgba(17, 20, 22, 0.13);
  --line-dark: rgba(255, 253, 247, 0.16);
  --green: #75d69d;
  --blue: #7eb6ff;
  --copper: #d89b65;
  --rose: #d87575;
  --shadow: 0 24px 80px rgba(11, 17, 23, 0.14);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

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

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
}

main {
  overflow: hidden;
}

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

p {
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 48px);
  color: #fffdf7;
  border-bottom: 1px solid rgba(255, 253, 247, 0.09);
  background: rgba(11, 17, 23, 0.58);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(11, 17, 23, 0.94);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--dark);
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #e4f6c8 52%, var(--copper));
  font-size: 12px;
  font-weight: 900;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand-text small {
  margin-top: 3px;
  color: rgba(255, 253, 247, 0.66);
  font-size: 12px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  color: rgba(255, 253, 247, 0.73);
  font-size: 14px;
}

.nav-links a,
.header-link,
.footer-links a {
  transition: color 180ms ease;
}

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

.header-link {
  min-width: max-content;
  color: #fffdf7;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(780px, 84vh);
  align-items: center;
  overflow: hidden;
  color: #fffdf7;
  background: var(--dark);
}

#identityCanvas,
.hero-shade {
  position: absolute;
  inset: 0;
}

#identityCanvas {
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 17, 23, 0.94), rgba(11, 17, 23, 0.66) 50%, rgba(11, 17, 23, 0.28)),
    linear-gradient(0deg, rgba(11, 17, 23, 0.14), rgba(11, 17, 23, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  max-width: calc(100vw - 48px);
  margin: 0 auto;
  padding: 124px 0 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(58px, 12vw, 132px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 253, 247, 0.84);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--dark);
  background: var(--green);
}

.button.secondary {
  color: #fffdf7;
  border: 1px solid rgba(255, 253, 247, 0.24);
  background: rgba(255, 253, 247, 0.08);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 58px;
}

.signal-row span {
  max-width: 100%;
  padding: 8px 12px;
  color: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.06);
  font-size: 13px;
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.hero + .section {
  padding-top: clamp(52px, 6vw, 74px);
}

.light-section {
  background: var(--ivory);
}

.paper-section {
  background: var(--paper);
}

.dark-section {
  color: #fffdf7;
  background:
    linear-gradient(180deg, rgba(117, 214, 157, 0.08), transparent 38%),
    var(--dark);
}

.access-section {
  color: #fffdf7;
  background:
    linear-gradient(135deg, rgba(117, 214, 157, 0.16), rgba(126, 182, 255, 0.08)),
    var(--dark-2);
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  max-width: calc(100vw - 48px);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(36px, 7vw, 76px);
  align-items: start;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 4.7vw, 56px);
  line-height: 1.07;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.28;
}

.lead-stack {
  display: grid;
  gap: 18px;
}

.lead-stack p,
.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.86;
}

.section-copy {
  max-width: 700px;
  margin-top: 22px;
}

.dark-section .section-copy,
.access-section .section-copy {
  color: rgba(255, 253, 247, 0.72);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 800px;
}

.feature-grid,
.audience-grid {
  display: grid;
  gap: 16px;
}

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

.feature-grid article,
.audience-grid article {
  min-height: 248px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
}

.feature-number {
  display: block;
  margin-bottom: 64px;
  color: #397e58;
  font-size: 13px;
  font-weight: 900;
}

.feature-grid p,
.audience-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
  align-items: center;
  margin-top: 42px;
}

.flow-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.06);
}

.flow-grid strong,
.flow-grid span {
  display: block;
}

.flow-grid strong {
  font-size: 21px;
}

.flow-grid span {
  margin-top: 12px;
  color: rgba(255, 253, 247, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.flow-line {
  height: 1px;
  background: var(--line-dark);
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: clamp(36px, 7vw, 76px);
  align-items: start;
}

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

.trust-list a {
  display: block;
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.trust-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(57, 126, 88, 0.38);
  box-shadow: var(--shadow);
}

.trust-list span {
  display: block;
  margin-bottom: 12px;
  color: #397e58;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-list strong {
  display: block;
  font-size: 20px;
  line-height: 1.35;
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.access-panel {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 390px);
  gap: clamp(32px, 7vw, 76px);
  align-items: center;
}

.contact-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.08);
}

.contact-card span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a {
  display: block;
  margin-top: 20px;
  color: #fffdf7;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 900;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin: 24px 0 0;
  color: rgba(255, 253, 247, 0.68);
  line-height: 1.72;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(20px, 4vw, 48px);
  color: rgba(255, 253, 247, 0.72);
  background: var(--dark);
}

.site-footer strong {
  display: block;
  color: #fffdf7;
}

.site-footer p {
  margin: 6px 0 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 253, 247, 0.72);
  font-size: 14px;
}

.site-footer small {
  font-size: 13px;
}

.site-footer.compact {
  grid-template-columns: 1fr auto;
}

.policy-page {
  background: var(--ivory);
}

.policy-main {
  padding: 140px 0 80px;
}

.policy-content {
  width: min(820px, calc(100% - 48px));
  max-width: calc(100vw - 48px);
  margin: 0 auto;
}

.policy-content h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
}

.policy-updated {
  margin: 18px 0 50px;
  color: var(--muted);
}

.policy-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  max-width: none;
  font-size: 28px;
}

.policy-content p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.policy-content a {
  color: #397e58;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .split,
  .trust-layout,
  .access-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-line {
    width: 1px;
    height: 24px;
    margin-left: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand-text small {
    display: none;
  }

  .header-link {
    display: none;
  }

  .hero-content,
  .section-inner,
  .policy-content {
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
  }

  .hero-copy {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .signal-row {
    width: 100%;
  }

  .signal-row span {
    white-space: normal;
  }

  .hero-content {
    padding-top: 112px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 17, 23, 0.96), rgba(11, 17, 23, 0.72)),
      linear-gradient(0deg, rgba(11, 17, 23, 0.14), rgba(11, 17, 23, 0));
  }

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

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

  .feature-grid article,
  .audience-grid article,
  .flow-grid article,
  .trust-list a,
  .contact-card {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 36px;
  }

  .policy-main {
    padding-top: 116px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .trust-list a,
  .nav-links a,
  .header-link,
  .footer-links a {
    transition: none;
  }
}
