:root {
  --olive: #6F7D42;
  --deep-olive: #2F3B24;
  --night: #101010;
  --charcoal: #1A1718;
  --graphite: #343032;
  --porcelain: #F6F1EB;
  --paper: #FFFCF8;
  --stone: #CFC4BA;
  --gold: #A98755;
  --ink: #181516;
  --muted: #746C66;
  --line-dark: rgba(246, 241, 235, 0.16);
  --line-light: rgba(24, 21, 22, 0.13);
  --shadow: 0 24px 70px rgba(16, 16, 16, 0.12);
  color-scheme: light;
  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;
  background: var(--porcelain);
  color: var(--ink);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 16, 16, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--night);
  padding: 0.65rem 0.9rem;
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  background: rgba(16, 16, 16, 0.92);
  border-bottom: 1px solid var(--line-dark);
  color: var(--porcelain);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 34px;
  height: 18px;
  position: relative;
  border-top: 2px solid var(--olive);
  border-bottom: 2px solid var(--olive);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 7px;
  height: 2px;
  background: var(--olive);
}

.brand-mark::before {
  left: 0;
  width: 16px;
}

.brand-mark::after {
  right: -10px;
  width: 20px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.4rem);
  color: rgba(246, 241, 235, 0.76);
  font-size: 0.9rem;
}

nav a,
.text-link {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

nav a:hover,
nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--olive);
}

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7.2rem) 0;
}

.hero {
  width: 100%;
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: var(--night);
  color: var(--porcelain);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 68px);
  padding: clamp(3rem, 7vw, 7.5rem) clamp(1rem, 7vw, 7.5rem);
}

.hero-copy .eyebrow {
  color: var(--gold);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.95rem;
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  color: var(--porcelain);
  font-size: 7.2rem;
  font-weight: 700;
}

h2 {
  color: var(--night);
  font-size: 4.2rem;
  font-weight: 700;
}

h3 {
  color: var(--night);
  font-size: 1.32rem;
  font-weight: 700;
}

p {
  margin: 0;
}

.hero-promise {
  margin-top: 1.7rem;
  max-width: 720px;
  color: rgba(246, 241, 235, 0.82);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.88rem 1.2rem;
  border: 1px solid var(--olive);
  border-radius: 2px;
  background: var(--olive);
  color: white;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #586532;
  border-color: #586532;
  transform: translateY(-1px);
}

.button-light {
  background: var(--porcelain);
  color: var(--night);
  border-color: var(--porcelain);
}

.hero .text-link {
  color: rgba(246, 241, 235, 0.82);
}

.hero-visual {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(111, 125, 66, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 58%),
    var(--charcoal);
}

.hero-visual::before {
  content: "SEE / ALLOW / DECODE / RECLAIM / DISCERN / COMMIT / EMBODY";
  position: absolute;
  left: 2rem;
  top: 2rem;
  max-width: 220px;
  color: rgba(246, 241, 235, 0.4);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.7;
}

.choice-field {
  width: min(430px, 76vw);
  aspect-ratio: 0.72;
  position: relative;
}

.choice-field::before,
.choice-field::after,
.choice-field span {
  content: "";
  position: absolute;
  display: block;
}

.choice-field::before {
  inset: 6% 22% 10% 16%;
  border: 1px solid rgba(246, 241, 235, 0.48);
  border-right-color: transparent;
}

.choice-field::after {
  width: 76%;
  height: 2px;
  left: 12%;
  top: 50%;
  background: var(--olive);
}

.choice-field span:nth-child(1) {
  width: 2px;
  height: 88%;
  left: 50%;
  top: 6%;
  background: rgba(246, 241, 235, 0.28);
}

.choice-field span:nth-child(2) {
  width: 42%;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: rotate(-32deg);
  transform-origin: left center;
  background: var(--gold);
}

.choice-field span:nth-child(3) {
  width: 28%;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: rotate(34deg);
  transform-origin: left center;
  background: rgba(246, 241, 235, 0.36);
}

.choice-field span:nth-child(4) {
  width: 12px;
  height: 12px;
  left: calc(50% - 6px);
  top: calc(50% - 5px);
  background: var(--porcelain);
  outline: 8px solid rgba(111, 125, 66, 0.24);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.3rem, 7vw, 6rem);
  align-items: start;
  border-top: 1px solid var(--line-light);
}

.split p,
.section-heading p,
.fit-columns li,
.outcomes li,
.check-list li {
  color: var(--graphite);
  font-size: 1.04rem;
}

.check-list,
.fit-columns ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.fit-columns li {
  position: relative;
  padding-left: 1.2rem;
}

.check-list li::before,
.fit-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--olive);
}

.statement-band {
  background: var(--paper);
  border-block: 1px solid var(--line-light);
}

.statement-band .section-shell {
  padding-top: clamp(3.2rem, 6vw, 5.8rem);
  padding-bottom: clamp(3.2rem, 6vw, 5.8rem);
}

.statement-band p {
  max-width: 1030px;
  color: var(--night);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.3rem;
  line-height: 1.02;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 2.2rem;
}

.section-heading p:last-child {
  margin-top: 1rem;
}

.sequence-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  gap: 0;
  overflow-x: auto;
  border-block: 1px solid var(--line-light);
}

.sequence-card {
  min-width: 155px;
  min-height: 250px;
  padding: 1.05rem;
  background: transparent;
  border-right: 1px solid var(--line-light);
}

.sequence-card:last-child {
  border-right: 0;
}

.sequence-number {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 1.1rem;
  border: 1px solid var(--olive);
  color: var(--olive);
  font-weight: 850;
}

.sequence-card p {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.outcomes {
  background: var(--night);
  color: var(--porcelain);
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - 1180px) / 2));
}

.outcomes h2,
.outcomes .section-kicker {
  color: var(--porcelain);
}

.outcomes .section-kicker {
  color: var(--gold);
}

.outcomes .section-heading p {
  color: rgba(246, 241, 235, 0.72);
}

.outcomes ol {
  counter-reset: outcome;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--line-dark);
}

.outcomes li {
  counter-increment: outcome;
  min-height: 104px;
  padding: 1.2rem;
  background: var(--charcoal);
  color: rgba(246, 241, 235, 0.86);
}

.outcomes li::before {
  content: "0" counter(outcome);
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.fit-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.fit-columns section {
  min-height: 92px;
  padding: 1.2rem;
  background: var(--paper);
}

.boundary-note {
  margin-top: 1rem;
  color: var(--deep-olive);
  font-weight: 700;
}

.founder {
  background: var(--paper);
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - 1180px) / 2));
}

.circle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: stretch;
}

.circle aside {
  padding: 1.35rem;
  background: var(--paper);
  color: var(--night);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow);
}

dl {
  margin: 0 0 1rem;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-light);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 850;
  text-align: right;
}

dd small {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.faq [data-faq] {
  display: grid;
}

details {
  border-top: 1px solid var(--line-light);
  padding: 1.15rem 0;
}

details:last-child {
  border-bottom: 1px solid var(--line-light);
}

summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--night);
}

details p {
  margin-top: 0.85rem;
  max-width: 780px;
  color: var(--graphite);
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  border-top: 1px solid var(--line-light);
}

form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  background: var(--paper);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 0.4rem;
  font-weight: 850;
}

input {
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(24, 21, 22, 0.24);
  border-radius: 2px;
  padding: 0.8rem 0.9rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus {
  outline: 3px solid rgba(111, 125, 66, 0.22);
  border-color: var(--olive);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--graphite);
  font-size: 0.95rem;
}

.consent input {
  min-height: auto;
  margin-top: 0.25rem;
}

.error {
  min-height: 1.1rem;
  color: #56632F;
  font-weight: 750;
}

.form-status {
  min-height: 1.4rem;
  font-weight: 850;
}

.privacy-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  background: var(--night);
  color: rgba(246, 241, 235, 0.78);
  font-size: 0.92rem;
}

.simple-page {
  min-height: 100vh;
  background: var(--porcelain);
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero,
  .split,
  .circle,
  .signup {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual,
  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 360px;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .outcomes ol,
  .fit-columns {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .statement-band p {
    font-size: 3.2rem;
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: min(100% - 1.2rem, 1180px);
  }

  .hero-copy {
    padding: 3rem 1rem;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .statement-band p {
    font-size: 2.45rem;
  }

  nav {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
