:root {
  --ink: #11110f;
  --ink-soft: #1a1a17;
  --paper: #f1efe8;
  --paper-bright: #faf9f5;
  --muted: #9a998f;
  --muted-dark: #626158;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(17, 17, 15, 0.14);
  --red: #c82232;
  --red-dark: #941623;
  --blue: #1d5fd1;
  --blue-dark: #11469e;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1280px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
::selection { background: rgba(200, 34, 50, 0.28); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  background: var(--paper);
  color: var(--ink);
  padding: .75rem 1rem;
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  background: rgba(16, 16, 15, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(16, 16, 15, 0.94);
  border-color: var(--line-dark);
}
.brand, .footer-brand {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -.04em;
}
.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.3rem);
}
.primary-navigation a {
  color: rgba(241, 239, 232, .72);
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease;
}
.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation a.active { color: var(--paper); }
.primary-navigation .nav-cta {
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  padding: .7rem 1.05rem;
}
.primary-navigation .nav-cta:hover { background: var(--blue-dark); }
.language-switch {
  justify-self: end;
  display: flex;
  gap: .45rem;
  align-items: center;
  color: rgba(241, 239, 232, .46);
  font-size: .78rem;
}
.language-switch button {
  border: 0;
  background: none;
  padding: .35rem .1rem;
  cursor: pointer;
  color: rgba(241, 239, 232, .44);
}
.language-switch button[aria-pressed="true"] { color: var(--paper); }
.menu-toggle { display: none; }

.dark-section { background: var(--ink); color: var(--paper); }
.light-section { background: var(--paper); color: var(--ink); }
.section-shell {
  width: min(var(--max), calc(100% - clamp(2.5rem, 8vw, 9rem)));
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) 0;
}
.section-shell.narrow { max-width: 920px; }
.section-index {
  margin: 0 0 2.4rem;
  color: rgba(241, 239, 232, .4);
  font-size: .72rem;
  letter-spacing: .2em;
  font-weight: 700;
}
.dark-index { color: rgba(17, 17, 15, .42); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02;
}
h2 { font-size: clamp(2.8rem, 6vw, 6.4rem); }
h3 { font-size: clamp(1.6rem, 2.4vw, 2.45rem); }
.body-copy p, .body-large p { max-width: 720px; }
.statement {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -.025em;
}
.light-statement { color: var(--paper); }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}
.hero-glow {
  position: absolute;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .10;
  pointer-events: none;
}
.hero-glow-red { background: var(--red); left: -25vw; bottom: -12vw; }
.hero-glow-blue { background: var(--blue); right: -25vw; bottom: -12vw; }
.hero-content { position: relative; padding-top: calc(var(--header-height) + 6rem); padding-bottom: 5rem; text-align: center; }
.eyebrow {
  color: rgba(241,239,232,.5);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero h1 {
  max-width: 1140px;
  margin: 0 auto;
  font-size: clamp(3.4rem, 8.2vw, 8.3rem);
}
.hero h1 span { display: block; }
.hero h1 span:first-child { color: rgba(241,239,232,.58); font-size: .55em; margin-bottom: .25em; }
.hero-copy {
  max-width: 770px;
  margin: 2.5rem auto 0;
  color: rgba(241,239,232,.64);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
}
.hero-actions {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.choice-button {
  min-width: 270px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.05rem 1.55rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: .01em;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.choice-button:hover { transform: translateY(-3px); filter: brightness(1.08); }
.red-pill { background: linear-gradient(145deg, #dd3344, var(--red-dark)); box-shadow: 0 18px 45px rgba(200,34,50,.22); }
.blue-pill { background: linear-gradient(145deg, #2f70de, var(--blue-dark)); box-shadow: 0 18px 45px rgba(29,95,209,.22); }
.pill-dot { width: 9px; height: 9px; background: rgba(255,255,255,.88); border-radius: 50%; box-shadow: 0 0 16px rgba(255,255,255,.78); }
.scroll-cue {
  display: inline-flex;
  gap: .6rem;
  margin-top: 4.5rem;
  color: rgba(241,239,232,.42);
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.quote-section { border-top: 1px solid var(--line-dark); }
.quote-section blockquote { margin: 0; }
.quote-section blockquote p {
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4.5vw, 4.8rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  color: rgba(241,239,232,.92);
}
.quote-section blockquote footer {
  margin-top: 2.5rem;
  color: rgba(241,239,232,.44);
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.split-layout,
.editorial-grid,
.contact-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}
.wrong-way { background: var(--paper-bright); }
.wrong-way h2 { max-width: 730px; }
.body-large { font-size: clamp(1.12rem, 1.65vw, 1.4rem); color: var(--muted-dark); }
.body-large p { margin-bottom: 1.6rem; }

.origins { border-top: 1px solid var(--line-light); }
.origins h2, .social-tech h2 { max-width: 760px; }
.body-copy { color: var(--muted-dark); font-size: 1.08rem; }
.body-copy p { margin-bottom: 1.45rem; }
.collective-card {
  margin-top: 5rem;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 2rem;
  align-items: baseline;
}
.collective-kicker { font-size: .72rem; letter-spacing: .16em; font-weight: 800; color: var(--muted-dark); }
.collective-card p { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 3.2rem); line-height: 1.16; margin: 0; }

.social-tech { border-top: 1px solid var(--line-dark); }
.muted-copy { color: rgba(241,239,232,.57); }

.before-after h2 { max-width: 950px; }
.section-intro { max-width: 860px; color: var(--muted-dark); font-size: 1.12rem; margin: 2rem 0 4rem; }
.comparison-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.comparison-card { padding: clamp(1.8rem, 4vw, 3.5rem); min-height: 560px; border: 1px solid var(--line-light); }
.today-card { background: #dedbd1; }
.tomorrow-card { background: var(--ink); color: var(--paper); }
.card-label { font-size: .72rem; letter-spacing: .2em; font-weight: 800; margin-bottom: 3rem; }
.comparison-card ul { list-style: none; margin: 0; padding: 0; }
.comparison-card li { padding: 1.2rem 0; border-bottom: 1px solid currentColor; border-color: rgba(17,17,15,.14); font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.3; }
.tomorrow-card li { border-color: rgba(255,255,255,.15); }
.bridge-statement { margin: 4rem 0 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4.4rem); letter-spacing: -.04em; }

.method { border-top: 1px solid var(--line-dark); }
.method-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 7vw, 7rem); align-items: end; }
.method-intro p { color: rgba(241,239,232,.56); font-size: 1.08rem; }
.method-steps { list-style: none; margin: 5rem 0 0; padding: 0; border-top: 1px solid var(--line-dark); }
.method-steps li { display: grid; grid-template-columns: 80px .65fr 1.35fr; gap: 2rem; align-items: baseline; padding: 2.2rem 0; border-bottom: 1px solid var(--line-dark); }
.step-number, .application-number { color: rgba(241,239,232,.36); font-size: .72rem; letter-spacing: .18em; }
.method-steps h3 { margin: 0; }
.method-steps p { margin: 0; color: rgba(241,239,232,.55); max-width: 720px; }
.method-close { margin: 5rem 0 0 auto; max-width: 720px; font-family: var(--serif); font-size: clamp(2rem, 3.7vw, 4rem); line-height: 1.12; }

.applications h2 { max-width: 950px; }
.application-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.application-grid article { min-height: 310px; padding: 2rem; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); display: flex; flex-direction: column; }
.application-number { color: rgba(17,17,15,.35); margin-bottom: 3rem; }
.application-grid h3 { font-size: clamp(1.55rem, 2.2vw, 2.25rem); margin-bottom: 1.2rem; }
.application-grid article p:last-child { color: var(--muted-dark); margin-top: auto; }
.applications-close { margin-top: 5rem; display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; border-top: 1px solid var(--line-light); padding-top: 3rem; }
.applications-close h3 { font-size: clamp(2rem, 4vw, 4.2rem); }
.applications-close p { color: var(--muted-dark); font-size: 1.12rem; }

.application-form-section { border-top: 1px solid var(--line-dark); }
.form-layout > div > p:not(.section-index) { color: rgba(241,239,232,.56); }
.form-intro { font-family: var(--serif); font-size: clamp(1.4rem, 2.3vw, 2.2rem); line-height: 1.25; color: var(--paper) !important; }
.application-form { display: grid; gap: 1.35rem; background: rgba(255,255,255,.035); border: 1px solid var(--line-dark); padding: clamp(1.6rem, 4vw, 3rem); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.application-form label { display: grid; gap: .55rem; font-size: .78rem; letter-spacing: .05em; color: rgba(241,239,232,.62); }
.application-form input,
.application-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.035);
  color: var(--paper);
  padding: .95rem 1rem;
  border-radius: 0;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.application-form textarea { resize: vertical; }
.application-form input:focus,
.application-form textarea:focus { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.055); }
.consent-label { display: grid !important; grid-template-columns: auto 1fr; align-items: start; gap: .8rem !important; line-height: 1.4; }
.consent-label input { width: 18px; height: 18px; margin-top: .1rem; accent-color: var(--blue); }
.submit-button {
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  padding: 1.05rem 1.4rem;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.submit-button:hover { transform: translateY(-2px); background: var(--blue-dark); }
.hidden-field { display: none; }

.final-choice { border-top: 1px solid var(--line-dark); }
.final-choice-inner { text-align: center; max-width: 1050px; }
.final-choice h2 span { display: block; }
.final-choice h2 span:first-child { color: rgba(241,239,232,.48); }
.final-choice p:not(.section-index) { max-width: 800px; margin: 2rem auto 0; color: rgba(241,239,232,.58); }
.final-actions { margin-top: 3rem; }

.contact { border-top: 1px solid var(--line-light); }
.contact h2 { max-width: 680px; }
.contact-layout > div:last-child { padding-top: 5rem; }
.contact-layout p { color: var(--muted-dark); max-width: 600px; }
.text-link { display: inline-block; margin: 2rem 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3.2rem); text-decoration: none; border-bottom: 1px solid var(--line-light); }
.contact address { font-style: normal; color: var(--muted-dark); }

.site-footer {
  background: var(--ink-soft);
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 1.2fr 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem clamp(1.25rem, 4vw, 4rem);
  color: rgba(241,239,232,.45);
  font-size: .78rem;
}
.site-footer p { margin: 0; }
.site-footer nav { display: flex; gap: 1rem; }
.site-footer nav a { text-decoration: none; }
.site-footer nav a:hover { color: var(--paper); }
.footer-brand { color: var(--paper); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.legal-page { background: var(--paper); color: var(--ink); min-height: 100vh; }
.legal-header { position: static; background: var(--ink); }
.legal-content { width: min(800px, calc(100% - 2.5rem)); margin: 0 auto; padding: 6rem 0; }
.legal-content h1 { font-size: clamp(3rem, 7vw, 6rem); }
.legal-content h2 { font-size: 2rem; margin-top: 3rem; }
.legal-note { border-left: 4px solid var(--red); padding: 1rem 1.2rem; background: #e9e6dd; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 22px; height: 1px; background: var(--paper); transition: transform .25s ease; }
  .primary-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    height: calc(100svh - var(--header-height));
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.35rem;
    overflow-y: auto;
    background: rgba(16,16,15,.995);
    border-top: 1px solid var(--line-dark);
  }
  .primary-navigation.open { display: flex; }
  .primary-navigation a { font-family: var(--serif); font-size: clamp(1.8rem, 5vw, 3rem); text-transform: none; letter-spacing: -.03em; }
  .primary-navigation .nav-cta { font-family: var(--sans); font-size: 1rem; letter-spacing: 0; }
  .language-switch { margin-left: 1rem; }
  .application-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --header-height: 68px; }
  body { font-size: 16px; }
  .site-header { padding: 0 1.15rem; }
  .brand { font-size: 1.35rem; }
  .section-shell { width: min(100% - 2.4rem, var(--max)); padding: 5rem 0; }
  .hero-content { padding-top: calc(var(--header-height) + 4rem); }
  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero h1 span:first-child {
    font-size: .46em;
    line-height: 1.2;
    margin-bottom: .7rem;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .choice-button { min-width: 0; width: 100%; }
  .scroll-cue { margin-top: 3rem; }
  .split-layout, .editorial-grid, .contact-layout, .form-layout, .method-intro, .applications-close { grid-template-columns: 1fr; gap: 2rem; }
  .collective-card { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-card { min-height: auto; }
  .method-steps li { grid-template-columns: 48px 1fr; gap: 1rem; }
  .method-steps p { grid-column: 2; }
  .application-grid { grid-template-columns: 1fr; }
  .application-grid article { min-height: 260px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-layout > div:last-child { padding-top: 0; }
  .site-footer { grid-template-columns: 1fr; text-align: left; }
  .site-footer nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
