:root {
  color-scheme: light dark;
  --paper: #f3f4ee;
  --surface: #fbfcf7;
  --canvas: #e6e8df;
  --ink: #1b1e19;
  --muted: #5e655b;
  --line: #d4d8cc;
  --primary: #59683e;
  --primary-pressed: #45522d;
  --primary-soft: #e4ead2;
  --pill-bg: rgba(228, 234, 210, 0.82);
  --pill-border: rgba(89, 104, 62, 0.28);
  --focus: #879c45;
  --warning: #8a541c;
  --notice-bg: #fbf2e5;
  --notice-text: #5b4832;
  --on-primary: #ffffff;
  --trust-bg: #1d2319;
  --trust-ink: #f2f5e9;
  --trust-muted: #bac3ad;
  --shadow: rgba(27, 30, 25, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 7%, rgba(146, 166, 91, 0.2), transparent 31rem),
    var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: var(--primary-pressed);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--primary);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 5px;
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  padding: 22px 0;
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 760;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.45em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
  min-height: 620px;
  padding: 56px 0 76px;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--pill-border);
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--primary-pressed);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  padding: 7px 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.07;
  letter-spacing: -0.038em;
}

h1 {
  max-width: 720px;
  margin: 22px 0 24px;
  font-size: clamp(3.35rem, 6vw, 4.8rem);
  font-weight: 780;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 750;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  font-weight: 740;
  letter-spacing: -0.022em;
}

.lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.1vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 999px;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 0.9rem;
  font-weight: 740;
  line-height: 1.2;
  padding: 13px 21px;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.button:hover {
  background: var(--primary-pressed);
  color: var(--on-primary);
}

.button:active {
  transform: translateY(1px);
}

.button.secondary {
  background: transparent;
  color: var(--primary-pressed);
}

.button.secondary:hover {
  background: var(--primary-soft);
}

.hero-proof {
  margin: 0;
}

.proof-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 28px 80px var(--shadow);
  padding: clamp(20px, 3vw, 30px);
}

.proof-status,
.proof-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.proof-status {
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
  padding-bottom: 16px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.proof-status strong {
  color: var(--primary-pressed);
}

.proof-label {
  margin-bottom: 9px;
  font-size: 0.76rem;
}

.proof-label strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.proof-label span {
  color: var(--muted);
}

.support-example {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  padding: 16px 17px;
}

.support-example > strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
}

.support-example > p {
  margin: 2px 0 13px;
  color: var(--muted);
  font-size: 0.76rem;
}

.support-example dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.support-example dl div {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.support-example dt {
  color: var(--muted);
  font-size: 0.7rem;
}

.support-example dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 0.74rem;
}

.support-example mark {
  display: inline-block;
  max-width: 100%;
  border: 1px solid var(--focus);
  border-radius: 5px;
  background: var(--primary-soft);
  color: var(--ink);
  line-height: 1.25;
  overflow-wrap: anywhere;
  padding: 4px 7px;
}

.support-example code {
  color: inherit;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.7rem;
}

.proof-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 13px 0;
  color: var(--primary-pressed);
  font-size: 0.68rem;
  font-weight: 790;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.proof-flow span {
  width: 24px;
  height: 1px;
  background: var(--primary);
}

.protected .support-example {
  border-color: var(--pill-border);
  background: var(--primary-soft);
}

.redaction {
  display: inline-flex;
  min-width: 124px;
  height: 24px;
  align-items: center;
  border-radius: 5px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.58rem;
  font-weight: 760;
  justify-content: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.redaction.wide {
  min-width: 170px;
}

.hero-proof figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.78rem;
}

.trust-strip {
  background: var(--trust-bg);
  color: var(--trust-ink);
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  margin-bottom: 0;
}

.trust-facts div {
  min-width: 0;
  padding: 34px clamp(22px, 4vw, 54px);
}

.trust-facts div:first-child {
  padding-left: 0;
}

.trust-facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-facts dt {
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.trust-facts dd {
  margin: 4px 0 0;
  color: var(--trust-muted);
  font-size: 0.86rem;
}

.section {
  padding: 82px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading p,
.section-copy,
.copy p,
.copy li {
  color: var(--muted);
}

.section-heading p,
.section-copy {
  margin: 0;
  font-size: 1.04rem;
}

.section-kicker,
.feature-number {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-pressed);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.product-section {
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.story-gallery {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 42px 24px;
}

.story-card {
  grid-column: span 2;
  min-width: 0;
  margin: 0;
}

.story-card:nth-child(5) {
  grid-column: 2 / span 2;
}

.story-card:nth-child(6) {
  grid-column: 4 / span 2;
}

.story-card:nth-child(7) {
  grid-column: 6 / span 2;
}

.story-visual {
  position: relative;
  aspect-ratio: 4 / 5.25;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: var(--canvas);
  box-shadow: 0 24px 64px var(--shadow);
}

.story-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.story-card figcaption {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 4px 8px;
  margin-top: 17px;
  font-size: 0.88rem;
}

.story-card figcaption > span {
  grid-row: 1 / span 2;
  color: var(--primary-pressed);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  line-height: 1.7;
}

.story-card figcaption strong {
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: -0.018em;
  line-height: 1.25;
}

.story-card figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

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

.feature-list {
  border-bottom: 1px solid var(--line);
}

.feature-list article {
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(280px, 1fr);
  gap: clamp(30px, 8vw, 110px);
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding: 29px 0;
}

.feature-list article > div {
  min-width: 0;
}

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

.feature-list h3,
.feature-list p {
  margin: 0;
}

.feature-list p {
  color: var(--muted);
}

.access-section {
  background: var(--primary-soft);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 42px clamp(50px, 9vw, 120px);
  align-items: start;
}

.access-layout > div:first-child h2 {
  font-size: clamp(2.2rem, 4.7vw, 3.75rem);
}

.access-details article {
  border-top: 1px solid rgba(89, 104, 62, 0.28);
  padding: 23px 0;
}

.access-details article:first-child {
  padding-top: 6px;
}

.access-details p {
  margin-bottom: 0;
  color: var(--muted);
}

.notice {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(150px, 0.25fr) minmax(260px, 1fr);
  gap: 34px;
  border: 1px solid rgba(138, 84, 28, 0.28);
  border-radius: 22px;
  background: var(--notice-bg);
  padding: 28px 30px;
}

.notice strong {
  color: var(--warning);
}

.notice p {
  margin: 0;
  color: var(--notice-text);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 24px;
  margin-bottom: 0;
}

.faq-list {
  border-bottom: 1px solid var(--line);
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 23px 0;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 730;
  letter-spacing: -0.015em;
}

.faq-list details[open] summary {
  color: var(--primary-pressed);
}

.faq-list p {
  margin: 13px 28px 0 0;
  color: var(--muted);
}

.final-cta {
  background: var(--trust-bg);
  color: var(--trust-ink);
  padding: 66px 0;
}

.final-cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.final-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}

.final-cta p {
  margin: 0;
  color: var(--trust-muted);
}

.final-cta .actions {
  flex: 0 0 auto;
  margin: 0;
}

.final-cta .button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--trust-ink);
}

.final-cta .button.secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

.page-main {
  padding: 72px 0 112px;
}

.page-title {
  max-width: 900px;
  margin-bottom: 62px;
}

.page-title h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7vw, 5.7rem);
}

.copy {
  max-width: 820px;
}

.copy section {
  border-top: 1px solid var(--line);
  padding: 35px 0 23px;
}

.copy h2,
.support-callout h2 {
  font-size: clamp(1.55rem, 4vw, 2.25rem);
}

.copy ul,
.copy ol {
  padding-left: 1.25rem;
}

.copy li + li {
  margin-top: 6px;
}

.meta {
  color: var(--muted);
  font-size: 0.84rem;
}

.support-callout {
  border: 1px solid rgba(89, 104, 62, 0.3);
  border-radius: 22px;
  background: var(--primary-soft);
  padding: clamp(24px, 5vw, 36px);
}

.support-callout p {
  max-width: 660px;
}

.contact-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 22px;
}

.contact-options .button {
  flex: 0 0 auto;
}

.email-fallback {
  margin: 0;
  font-size: 0.84rem;
}

.email-address {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-weight: 720;
  user-select: all;
}

.not-found {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 175px);
  padding: 70px 0 100px;
  text-align: center;
}

.not-found-content {
  max-width: 700px;
}

.not-found-code {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.not-found h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.2rem);
}

.not-found .lede {
  margin-inline: auto;
}

.not-found .actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 32px 0 42px;
}

.site-footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.skip-link {
  position: absolute;
  top: -90px;
  left: 20px;
  z-index: 20;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 12px;
  color: var(--paper);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.8fr);
    gap: 38px;
  }

  .final-cta-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .story-card,
  .story-card:nth-child(5),
  .story-card:nth-child(6),
  .story-card:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .hero,
  .feature-list article,
  .access-layout,
  .notice,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 66px;
  }

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

  .hero-proof {
    width: min(100%, 620px);
  }

  .trust-facts div {
    padding: 27px 22px;
  }

  .story-gallery {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .story-visual {
    width: 100%;
  }

  .feature-list article {
    gap: 9px;
  }

  .access-layout {
    gap: 30px;
  }

  .notice {
    grid-column: auto;
    gap: 10px;
  }

  .faq-layout {
    gap: 12px;
  }

  .faq-layout .section-heading {
    position: static;
    margin-bottom: 24px;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    padding: 16px 0;
  }

  .site-header .shell {
    gap: 12px;
  }

  .brand {
    gap: 8px;
    font-size: 0.88rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

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

  .actions .button {
    width: 100%;
  }

  .trust-facts {
    grid-template-columns: 1fr;
    padding: 11px 0;
  }

  .trust-facts div,
  .trust-facts div:first-child {
    padding: 17px 0;
  }

  .trust-facts div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .section {
    padding: 60px 0;
  }

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

  .proof-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .support-example dl div {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .redaction {
    min-width: 104px;
  }

  .redaction.wide {
    min-width: 138px;
  }

  .notice,
  .support-callout {
    border-radius: 18px;
  }

  .notice {
    padding: 23px;
  }

  .final-cta {
    padding: 56px 0;
  }

  .final-cta-layout {
    gap: 28px;
  }

  .final-cta .actions {
    width: 100%;
  }

  .page-main {
    padding: 50px 0 80px;
  }

  .page-title {
    margin-bottom: 44px;
  }

  .page-title h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .contact-options {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-options .button {
    width: 100%;
  }

  .site-footer .shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #151813;
    --surface: #1c211a;
    --canvas: #252b22;
    --ink: #f2f4ec;
    --muted: #b6beb0;
    --line: #384033;
    --primary: #aec47f;
    --primary-pressed: #cedda9;
    --primary-soft: #29331f;
    --pill-bg: #29331f;
    --pill-border: #566845;
    --focus: #c5d986;
    --warning: #e5b475;
    --notice-bg: #2b241a;
    --notice-text: #e4d0b4;
    --on-primary: #172011;
    --trust-bg: #0f120e;
    --trust-ink: #f2f5e9;
    --trust-muted: #aeb9a1;
    --shadow: rgba(0, 0, 0, 0.34);
  }
}

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

  .button {
    transition: none;
  }
}
