:root {
  --paper: #f4efe5;
  --paper-2: #e9e0d0;
  --ink: #101318;
  --muted: #555d68;
  --line: rgba(16, 19, 24, 0.18);
  --white: #fffdf7;
  --blue: #3155ff;
  --blue-deep: #1c35b8;
  --orange: #ff6848;
  --yellow: #ffd84d;
  --cyan: #66d4d7;
  --pink: #f4a4cf;
  --green: #9ad783;
  --shadow: 10px 10px 0 var(--ink);
  --shadow-small: 5px 5px 0 var(--ink);
  --container: 1240px;
  --font-display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --font-mono: "Courier New", Courier, monospace;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--blue); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(16,19,24,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,19,24,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

.cursor-orbit {
  position: fixed;
  top: -13px;
  left: -13px;
  z-index: 5000;
  width: 26px;
  height: 26px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  transition: width 160ms ease, height 160ms ease, margin 160ms ease, background 160ms ease;
  will-change: transform;
}
.cursor-orbit.is-active {
  width: 54px;
  height: 54px;
  margin: -14px 0 0 -14px;
  background: rgba(255,216,77,.48);
  mix-blend-mode: multiply;
}

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

.micro-label,
.eyebrow {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.button {
  min-height: 58px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible { transform: translate(-3px,-3px); box-shadow: var(--shadow-small); }
.button-dark { color: var(--white); background: var(--ink); }
.button-send { background: var(--yellow); color: var(--ink); }

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 1px;
  font-family: var(--font-mono);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  background: var(--orange);
  transform-origin: left;
  transition: transform 180ms ease;
}
.text-link:hover::after { transform: scaleX(.55); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 17px 24px;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}
.site-header.is-scrolled {
  padding: 8px 24px;
  background: rgba(244,239,229,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(var(--container),100%);
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  width: 50px;
  height: 50px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 3px 3px 0 var(--yellow);
}
.brand-copy { display: grid; line-height: .95; }
.brand-copy b {
  font-family: var(--font-display);
  font-size: .84rem;
  letter-spacing: -.03em;
}
.brand-copy small {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a:focus-visible { border-color: var(--ink); background: var(--white); }
.nav-links .nav-contact {
  margin-left: 8px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}
.nav-links .nav-contact:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  cursor: pointer;
}
.nav-toggle i {
  display: block;
  width: 23px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}
.nav-toggle.is-open i:first-of-type { transform: translateY(4px) rotate(45deg); }
.nav-toggle.is-open i:last-of-type { transform: translateY(-4px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 78px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  left: -10vw;
  top: 18%;
  width: 35vw;
  height: 35vw;
  min-width: 340px;
  min-height: 340px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .14;
  filter: blur(2px);
}
.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: 95px;
  width: 260px;
  height: 520px;
  background: var(--orange);
  opacity: .12;
  transform: rotate(14deg);
}
.hero-shell {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(470px,1.08fr);
  gap: clamp(38px,6vw,92px);
  align-items: center;
}
.hero-copy-block { position: relative; z-index: 10; }
.eyebrow { width: fit-content; margin-bottom: 20px; padding: 7px 10px; border: 1px solid var(--ink); background: var(--white); box-shadow: 4px 4px 0 var(--cyan); }
.hero-title {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(4rem,7.6vw,7.9rem);
  line-height: .84;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.hero-title span { display: block; width: fit-content; }
.hero-title em { position: relative; z-index: 1; color: var(--blue); font-style: normal; }
.hero-title em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -3%;
  bottom: 7%;
  height: 12%;
  z-index: -1;
  background: var(--yellow);
  transform: rotate(-1deg);
}
.hero-lead {
  max-width: 650px;
  margin-top: 30px;
  font-size: clamp(1.15rem,1.7vw,1.48rem);
  font-weight: 700;
  line-height: 1.45;
}
.hero-support { max-width: 620px; margin-top: 14px; color: var(--muted); font-size: 1.02rem; }
.hero-actions { margin-top: 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  min-height: 620px;
  perspective: 1200px;
}
.hero-shot {
  position: absolute;
  margin: 0;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: visible;
  transform: rotate(var(--base-rotate)) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.hero-shot:hover { z-index: 20; box-shadow: 15px 15px 0 var(--ink); }
.hero-shot img { width: 100%; height: 100%; object-fit: cover; }
.hero-shot figcaption {
  position: absolute;
  max-width: 260px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  background: var(--white);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 4px 4px 0 var(--ink);
}
.hero-shot figcaption span { display: block; margin-bottom: 3px; color: var(--blue); font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; }
.hero-shot-main { --base-rotate: -3deg; width: 500px; height: 320px; left: 0; top: 70px; z-index: 5; }
.hero-shot-main figcaption { left: -22px; bottom: -37px; }
.hero-shot-small { --base-rotate: 4deg; width: 325px; height: 235px; right: -5px; top: 5px; z-index: 7; }
.hero-shot-small figcaption { right: -12px; top: -28px; background: var(--yellow); }
.hero-shot-system { --base-rotate: 1.5deg; width: 450px; height: 285px; right: 20px; bottom: 14px; z-index: 6; }
.hero-shot-system figcaption { right: -20px; bottom: -33px; color: var(--white); background: var(--blue); }
.hero-shot-system figcaption span { color: var(--yellow); }
.hero-note {
  position: absolute;
  left: 5px;
  bottom: 4px;
  z-index: 12;
  width: 140px;
  height: 140px;
  padding: 18px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 6px 6px 0 var(--ink);
}
.hero-note span { font-family: var(--font-mono); font-size: .59rem; font-weight: 700; letter-spacing: .1em; }
.hero-note strong { margin-top: 4px; font-family: var(--font-display); font-size: 1.02rem; line-height: .95; }

.ticker { overflow: hidden; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); background: var(--blue); transform: rotate(-.6deg) scale(1.01); }
.ticker-track { width: max-content; padding: 15px 0; display: flex; gap: 26px; align-items: center; color: var(--white); font-family: var(--font-display); font-size: clamp(1.35rem,2.6vw,2.2rem); letter-spacing: -.04em; white-space: nowrap; animation: tickerMove 26s linear infinite; }
.ticker-track i { color: var(--yellow); font-style: normal; }

/* Problem */
.problem-section { padding: 150px 0 130px; }
.problem-layout { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(50px,8vw,115px); align-items: start; }
.problem-heading { position: sticky; top: 125px; }
.problem-heading .micro-label { margin-bottom: 18px; }
.problem-heading h2,
.services-heading h2,
.proof-heading h2,
.evidence-heading h2,
.fit-heading h2,
.contact-copy h2,
.sam-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem,5.5vw,5.4rem);
  line-height: .92;
  letter-spacing: -.065em;
}
.problem-heading > p:last-child { max-width: 570px; margin-top: 24px; color: var(--muted); font-size: 1.06rem; }
.problem-list { border-top: 3px solid var(--ink); }
.problem-row { padding: 30px 0 34px; display: grid; grid-template-columns: 70px 1fr; gap: 16px; border-bottom: 1px solid var(--ink); }
.problem-row > span { color: var(--blue); font-family: var(--font-display); font-size: 2.4rem; line-height: 1; }
.problem-row h3 { font-family: var(--font-display); font-size: clamp(1.5rem,2.4vw,2.35rem); line-height: 1; letter-spacing: -.045em; }
.problem-row p { max-width: 670px; margin-top: 10px; color: var(--muted); }

/* Sam */
.sam-section { position: relative; padding: 150px 0; background: var(--ink); color: var(--white); overflow: hidden; }
.sam-section::after { content: "SAM"; position: absolute; right: -2vw; bottom: -7vw; color: rgba(255,255,255,.035); font-family: var(--font-display); font-size: 26vw; line-height: .7; letter-spacing: -.08em; pointer-events: none; }
.sam-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(350px,.85fr) minmax(0,1.15fr); gap: clamp(55px,9vw,125px); align-items: center; }
.sam-portrait { position: relative; min-height: 620px; }
.sam-photo-frame { position: absolute; inset: 20px 36px 70px 0; border: 3px solid var(--white); overflow: hidden; transform: rotate(-2deg); box-shadow: 15px 15px 0 var(--yellow); }
.sam-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.sam-stamp { position: absolute; left: 18px; bottom: 28px; z-index: 4; padding: 10px 13px; border: 2px solid var(--white); background: var(--blue); font-family: var(--font-mono); font-size: .72rem; font-weight: 700; box-shadow: 5px 5px 0 var(--yellow); transform: rotate(2deg); }
.sam-stamp span { color: var(--yellow); }
.sam-tag { position: absolute; right: 0; top: 65px; z-index: 4; max-width: 195px; padding: 17px; border: 3px solid var(--ink); background: var(--orange); font-family: var(--font-mono); font-size: .72rem; font-weight: 700; line-height: 1.35; transform: rotate(5deg); box-shadow: 7px 7px 0 var(--yellow); }
.sam-copy .micro-label { margin-bottom: 18px; color: var(--yellow); }
.sam-copy h2 { max-width: 830px; }
.sam-copy > p { max-width: 790px; margin-top: 20px; color: rgba(255,255,255,.78); }
.sam-copy .sam-lead { color: var(--white); font-size: 1.16rem; font-weight: 700; }


/* Services */
.services-section { padding: 150px 0; }
.services-heading { margin-bottom: 58px; display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.55fr); gap: 50px; align-items: end; }
.services-heading .micro-label { margin-bottom: 16px; }
.services-heading > p { color: var(--muted); font-size: 1.05rem; }
.service-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}
.service-card {
  min-width: 0;
  border: 3px solid var(--ink);
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.service-side {
  min-height: 118px;
  padding: 22px 24px;
  border-bottom: 3px solid var(--ink);
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  grid-template-rows: auto auto;
  gap: 4px 18px;
  align-items: end;
}
.service-card-blue .service-side { background: var(--blue); color: var(--white); }
.service-card-orange .service-side { background: var(--orange); color: var(--ink); }
.service-card-yellow .service-side { background: var(--yellow); color: var(--ink); }
.service-card-dark .service-side { background: var(--ink); color: var(--white); }
.service-number { grid-row: 1 / 3; font-family: var(--font-display); font-size: 4rem; line-height: .82; letter-spacing: -.08em; }
.service-side p { align-self: center; margin: 0; font-family: var(--font-mono); font-size: .68rem; font-weight: 700; letter-spacing: .08em; }
.service-side strong { grid-column: 3; grid-row: 1; margin: 0; padding: 0; font-family: var(--font-display); font-size: clamp(1.9rem,2.9vw,3rem); line-height: .9; letter-spacing: -.06em; text-align: right; }
.service-side small { grid-column: 3; grid-row: 2; margin: 0; font-family: var(--font-mono); font-size: .62rem; font-weight: 700; text-align: right; text-transform: uppercase; }
.service-main { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.service-copy { padding: clamp(28px,3.6vw,44px); }
.service-kicker { margin-bottom: 12px; color: var(--blue); font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .08em; }
.service-copy h3 { max-width: 690px; font-family: var(--font-display); font-size: clamp(1.9rem,3vw,3.15rem); line-height: .96; letter-spacing: -.05em; }
.service-copy > p:not(.service-kicker) { max-width: 720px; margin-top: 16px; color: var(--muted); }
.check-list { margin-top: 22px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px 18px; list-style: none; }
.check-list li { position: relative; padding-left: 22px; font-size: .9rem; font-weight: 700; }
.check-list li::before { content: "↳"; position: absolute; left: 0; color: var(--orange); font-family: var(--font-mono); }
.price-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(3,1fr); border: 2px solid var(--ink); }
.price-option { min-height: 142px; padding: 15px; border-right: 1px solid var(--ink); display: flex; flex-direction: column; background: var(--paper); }
.price-option:last-child { border-right: 0; }
.price-option.is-featured { background: var(--yellow); }
.price-option span { font-family: var(--font-mono); font-size: .62rem; font-weight: 700; letter-spacing: .06em; }
.price-option strong { margin-top: 9px; font-family: var(--font-display); font-size: clamp(1.55rem,2.5vw,2.05rem); line-height: 1; letter-spacing: -.05em; }
.price-option small { margin-top: auto; padding-top: 10px; font-size: .76rem; line-height: 1.35; }
.service-bottom { margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 16px; align-items: start; }
.service-bottom p { max-width: 650px; color: var(--muted); font-size: .87rem; }
.service-cta { width: fit-content; display: inline-flex; align-items: center; gap: 10px; padding: 8px 0; font-family: var(--font-mono); font-size: .75rem; font-weight: 700; text-decoration: none; text-transform: uppercase; border-bottom: 3px solid var(--orange); }
.service-cta:hover { color: var(--blue); }
.service-image { position: relative; width: 100%; min-height: 300px; margin-top: auto; padding: 0; border: 0; border-top: 3px solid var(--ink); overflow: hidden; background: var(--ink); cursor: zoom-in; }
.service-image img { width: 100%; height: 300px; object-fit: cover; transition: transform 450ms var(--ease), filter 450ms var(--ease); }
.service-image:hover img { transform: scale(1.035); filter: saturate(1.08); }
.service-image > span { position: absolute; right: 14px; bottom: 14px; padding: 7px 9px; border: 2px solid var(--ink); background: var(--white); font-family: var(--font-mono); font-size: .65rem; font-weight: 700; box-shadow: 3px 3px 0 var(--ink); }

/* Proof */
.proof-section { padding: 145px 0; background: var(--paper-2); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.proof-heading { max-width: 930px; margin-bottom: 48px; }
.proof-heading .micro-label { margin-bottom: 16px; }
.proof-heading > p:last-child { max-width: 650px; margin-top: 18px; color: var(--muted); }
.proof-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
.proof-card { border: 3px solid var(--ink); background: var(--white); box-shadow: var(--shadow-small); }
.proof-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(0,.92fr); }
.proof-image { width: 100%; height: 300px; padding: 0; border: 0; overflow: hidden; background: var(--ink); cursor: zoom-in; }
.proof-card-wide .proof-image { height: 100%; min-height: 430px; }
.proof-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms var(--ease); }
.proof-image:hover img { transform: scale(1.035); }
.proof-copy { padding: 30px; }
.proof-copy > span { color: var(--blue); font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .08em; }
.proof-copy h3 { margin-top: 9px; font-family: var(--font-display); font-size: clamp(1.7rem,3vw,3rem); line-height: .97; letter-spacing: -.05em; }
.proof-copy p { margin-top: 16px; color: var(--muted); }
.proof-copy b { color: var(--ink); }

/* Evidence */
.evidence-section { padding: 145px 0; }
.evidence-layout { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(50px,8vw,110px); align-items: start; }
.evidence-heading .micro-label { margin-bottom: 16px; }
.evidence-heading > p:last-child { margin-top: 22px; color: var(--muted); }
.evidence-cards { display: grid; grid-template-columns: repeat(3,1fr); border: 3px solid var(--ink); box-shadow: var(--shadow); }
.evidence-cards article { min-height: 320px; padding: 25px; border-right: 2px solid var(--ink); display: flex; flex-direction: column; }
.evidence-cards article:nth-child(1) { background: var(--yellow); }
.evidence-cards article:nth-child(2) { background: var(--blue); color: var(--white); }
.evidence-cards article:nth-child(3) { background: var(--orange); }
.evidence-cards article:last-child { border-right: 0; }
.evidence-cards strong { font-family: var(--font-display); font-size: clamp(3.2rem,5.4vw,5.8rem); line-height: .9; letter-spacing: -.08em; }
.evidence-cards p { margin-top: 16px; font-weight: 700; line-height: 1.4; }
.evidence-cards a { margin-top: auto; padding-top: 24px; font-family: var(--font-mono); font-size: .68rem; font-weight: 700; }
.evidence-note { width: min(var(--container), calc(100% - 48px)); margin: 28px auto 0; color: var(--muted); font-size: .78rem; }

/* Contact */
.contact-section { position: relative; padding: 155px 0 145px; overflow: hidden; }
.contact-backdrop { position: absolute; left: -1vw; top: 20px; color: rgba(49,85,255,.06); font-family: var(--font-display); font-size: 13vw; line-height: .75; letter-spacing: -.08em; pointer-events: none; }
.contact-layout { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr); gap: clamp(50px,8vw,110px); align-items: start; }
.contact-copy { position: sticky; top: 125px; }
.contact-copy .micro-label { margin-bottom: 16px; }
.contact-copy > p { margin-top: 20px; color: var(--muted); }
.contact-promise { margin-top: 30px; padding: 20px; border: 2px solid var(--ink); background: var(--yellow); box-shadow: var(--shadow-small); transform: rotate(-1deg); }
.contact-promise span { display: block; font-family: var(--font-mono); font-size: .67rem; font-weight: 700; letter-spacing: .08em; }
.contact-promise strong { display: block; margin-top: 5px; font-size: 1rem; }
.contact-direct { margin-top: 30px; display: grid; gap: 3px; }
.contact-direct span { color: var(--muted); font-family: var(--font-mono); font-size: .72rem; font-weight: 700; }
.contact-direct a { width: fit-content; font-family: var(--font-display); font-size: 1.45rem; text-decoration-thickness: 3px; text-underline-offset: 5px; }
.story-form { padding: clamp(26px,4vw,46px); border: 3px solid var(--ink); background: var(--white); box-shadow: var(--shadow); }
.form-row { display: grid; gap: 8px; margin-bottom: 22px; }
.form-row label, .choice-fieldset legend { font-family: var(--font-mono); font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.form-row label small { color: var(--muted); font-size: .65rem; }
.form-row input, .form-row textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  padding: 13px 2px;
  background: transparent;
  color: var(--ink);
  outline: none;
}
.form-row textarea { min-height: 150px; resize: vertical; border: 2px solid var(--ink); padding: 14px; background: var(--paper); }
.form-row input:focus, .form-row textarea:focus { border-color: var(--blue); }
.field-help { color: var(--muted); font-size: .74rem; }
.choice-fieldset { margin-bottom: 24px; padding: 0; border: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.choice-fieldset legend { width: 100%; margin-bottom: 9px; }
.choice-chip { cursor: pointer; }
.choice-chip input { position: absolute; opacity: 0; pointer-events: none; }
.choice-chip span { display: inline-flex; min-height: 40px; align-items: center; padding: 0 12px; border: 2px solid var(--ink); background: var(--paper); font-family: var(--font-mono); font-size: .72rem; font-weight: 700; transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease; }
.choice-chip:hover span { transform: translate(-2px,-2px); box-shadow: 3px 3px 0 var(--ink); }
.choice-chip input:checked + span { background: var(--yellow); box-shadow: 3px 3px 0 var(--ink); }
.choice-chip input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 3px; }
.form-bottom { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 18px; align-items: end; }
.email-field { margin-bottom: 0; }
.consent-line { margin-top: 24px; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: .75rem; cursor: pointer; }
.consent-line input { margin-top: 4px; accent-color: var(--blue); }
.form-status { min-height: 24px; margin-top: 14px; color: var(--blue); font-family: var(--font-mono); font-size: .75rem; font-weight: 700; }
.bot-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Footer */
.site-footer { padding: 28px max(24px, calc((100vw - var(--container))/2)); border-top: 3px solid var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--ink); color: var(--white); }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand span { display: grid; }
.footer-brand strong { font-family: var(--font-display); font-size: .9rem; }
.footer-brand small { color: rgba(255,255,255,.6); font-family: var(--font-mono); font-size: .62rem; }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; color: rgba(255,255,255,.7); font-family: var(--font-mono); font-size: .65rem; }
.footer-meta a { color: var(--white); }

.back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 900; width: 48px; height: 48px; border: 2px solid var(--ink); background: var(--yellow); font-family: var(--font-display); font-size: 1.2rem; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; box-shadow: 4px 4px 0 var(--ink); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Lightbox */
.lightbox[hidden] { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 4000; padding: 70px 30px 30px; display: grid; place-items: center; background: rgba(16,19,24,.92); backdrop-filter: blur(8px); }
.lightbox img { max-width: min(1200px,94vw); max-height: 84vh; border: 3px solid var(--white); box-shadow: 12px 12px 0 var(--yellow); object-fit: contain; }
.lightbox-close { position: fixed; right: 25px; top: 22px; width: 50px; height: 50px; border: 2px solid var(--ink); background: var(--yellow); font-size: 2rem; line-height: 1; cursor: pointer; }

/* Animation */
.js .intro-item, .js .intro-card { opacity: 0; }
.js .intro-item { transform: translateY(24px); }
.js .intro-card { transform: translateY(36px) rotate(var(--base-rotate,0deg)); }
body.is-loaded .intro-item { animation: introUp .78s var(--ease) forwards; }
body.is-loaded .intro-card { animation: introCard .9s var(--ease) forwards; }
body.is-loaded .hero-title .intro-item:nth-child(1) { animation-delay: .12s; }
body.is-loaded .hero-title .intro-item:nth-child(2) { animation-delay: .2s; }
body.is-loaded .hero-title .intro-item:nth-child(3) { animation-delay: .28s; }
body.is-loaded .hero-lead { animation-delay: .36s; }
body.is-loaded .hero-support { animation-delay: .44s; }
body.is-loaded .hero-actions { animation-delay: .52s; }
body.is-loaded .hero-shot-main { animation-delay: .28s; }
body.is-loaded .hero-shot-small { animation-delay: .42s; }
body.is-loaded .hero-shot-system { animation-delay: .56s; }
body.is-loaded .hero-note { animation-delay: .7s; }
.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-up { transform: translateY(38px); }
.reveal-left { transform: translateX(-38px); }
.reveal-right { transform: translateX(38px); }
.reveal-up.is-visible, .reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: translate(0,0); }

@keyframes introUp { to { opacity: 1; transform: translateY(0); } }
@keyframes introCard { to { opacity: 1; transform: translateY(0) rotate(var(--base-rotate,0deg)); } }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Responsive */
@media (max-width: 1120px) {
  .hero-shell { grid-template-columns: 1fr; }
  .hero-copy-block { max-width: 880px; }
  .hero-visual { width: min(800px,100%); min-height: 580px; margin: 10px auto 0; }
  .problem-layout, .sam-layout, .evidence-layout, .contact-layout { grid-template-columns: 1fr; }
  .problem-heading, .contact-copy { position: static; }
  .sam-portrait { width: min(620px,100%); margin: 0 auto; }
  .service-stack { gap: 26px; }
  .service-copy { padding: 30px; }
  .service-image, .service-image img { min-height: 270px; height: 270px; }
  .evidence-cards { max-width: 850px; }
}

@media (max-width: 820px) {
  .site-header { padding: 10px 16px; }
  .site-header.is-scrolled { padding: 7px 16px; }
  .brand-mark { width: 44px; height: 44px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    border: 2px solid var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow-small);
  }
  .nav-links.is-open { display: grid; }
  .nav-links a { width: 100%; justify-content: space-between; border-bottom: 1px solid var(--line); }
  .nav-links .nav-contact { margin: 8px 0 0; }

  .hero { padding-top: 120px; }
  .hero-title { font-size: clamp(3.4rem,14vw,6.2rem); }
  .hero-visual { min-height: 520px; }
  .hero-shot-main { width: 72%; height: 270px; top: 70px; }
  .hero-shot-small { width: 47%; height: 190px; }
  .hero-shot-system { width: 65%; height: 235px; }
  .hero-note { width: 116px; height: 116px; }
  .problem-section, .sam-section, .services-section, .proof-section, .evidence-section, .contact-section { padding-top: 105px; padding-bottom: 105px; }
  .services-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-stack { grid-template-columns: 1fr; }
  .service-side { min-height: auto; }
  .service-side strong { font-size: 2.4rem; }
  .price-grid { grid-template-columns: 1fr; }
  .price-option { min-height: 120px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .price-option:last-child { border-bottom: 0; }
  .service-bottom { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card-wide { grid-column: auto; grid-template-columns: 1fr; }
  .proof-card-wide .proof-image { min-height: 320px; }
  .evidence-cards { grid-template-columns: 1fr; }
  .evidence-cards article { min-height: 220px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .evidence-cards article:last-child { border-bottom: 0; }
  .form-bottom { grid-template-columns: 1fr; }
  .button-send { width: 100%; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-meta { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .section-shell, .hero-shell, .evidence-note { width: min(100% - 28px,var(--container)); }
  .hero { padding-top: 110px; padding-bottom: 54px; }
  .eyebrow { font-size: .65rem; }
  .hero-title { font-size: clamp(3.1rem,16vw,4.8rem); letter-spacing: -.07em; }
  .hero-lead { font-size: 1.08rem; }
  .hero-support { font-size: .93rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-visual { min-height: 430px; margin-top: 8px; }
  .hero-shot-main { width: 78%; height: 210px; top: 62px; left: 0; }
  .hero-shot-small { width: 46%; height: 145px; top: 5px; right: 0; }
  .hero-shot-system { width: 68%; height: 175px; right: 2px; bottom: 24px; }
  .hero-shot figcaption { max-width: 180px; font-size: .72rem; padding: 7px 8px; }
  .hero-shot-small figcaption { top: -18px; }
  .hero-shot-main figcaption { bottom: -28px; left: -5px; }
  .hero-shot-system figcaption { right: -5px; bottom: -25px; }
  .hero-note { left: 0; bottom: 8px; width: 88px; height: 88px; padding: 10px; }
  .hero-note span { font-size: .47rem; }
  .hero-note strong { font-size: .74rem; }
  .problem-heading h2, .services-heading h2, .proof-heading h2, .evidence-heading h2, .contact-copy h2, .sam-copy h2 { font-size: clamp(2.35rem,12vw,3.65rem); }
  .problem-row { grid-template-columns: 50px 1fr; }
  .problem-row > span { font-size: 1.8rem; }
  .sam-portrait { min-height: 470px; }
  .sam-photo-frame { inset: 14px 20px 62px 0; }
  .sam-tag { right: -2px; top: 48px; max-width: 145px; padding: 11px; font-size: .58rem; }
  .sam-stamp { left: 7px; bottom: 18px; font-size: .59rem; }
  .service-stack { gap: 24px; }
  .service-card { box-shadow: 6px 6px 0 var(--ink); }
  .service-side { grid-template-columns: auto minmax(0,1fr); grid-template-rows: auto auto auto; }
  .service-number { grid-row: 1 / 4; font-size: 3.4rem; }
  .service-side p { grid-column: 2; grid-row: 1; }
  .service-side strong { grid-column: 2; grid-row: 2; text-align: left; margin-top: 5px; }
  .service-side small { grid-column: 2; grid-row: 3; text-align: left; }
  .service-copy { padding: 25px 20px 28px; }
  .service-copy h3 { font-size: clamp(1.85rem,10vw,2.7rem); }
  .service-image img { min-height: 260px; }
  .proof-copy { padding: 23px 20px; }
  .proof-image, .proof-card-wide .proof-image { min-height: 240px; height: 240px; }
  .story-form { padding: 24px 18px; box-shadow: 6px 6px 0 var(--ink); }
  .choice-chip span { font-size: .66rem; }
  .contact-promise { transform: none; }
  .contact-direct a { font-size: 1.14rem; }
  .cursor-orbit { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .intro-item, .js .intro-card, .reveal-up, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
  .ticker-track { animation: none; }
}
/* =========================================================
   INNER PAGES
   Thanks + Privacy
========================================================= */

.inner-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.inner-page main {
  flex: 1;
}

.inner-header {
  position: relative;
  z-index: 50;
  width: min(var(--container), calc(100% - 48px));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 2px solid var(--ink);
}

.inner-brand .brand-copy {
  display: grid;
}

.inner-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inner-nav a {
  min-height: 42px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.inner-nav a:hover,
.inner-nav a:focus-visible {
  border-color: var(--ink);
  background: var(--white);
}

.inner-nav .inner-nav-home {
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

.inner-nav .inner-nav-home:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

/* Thanks page */

.thanks-main {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0 clamp(90px, 10vw, 145px);
  overflow: hidden;
}

.thanks-main::before {
  content: "";
  position: absolute;
  left: -110px;
  top: 80px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .14;
}

.thanks-main::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: 70px;
  width: 250px;
  height: 420px;
  background: var(--orange);
  opacity: .1;
  transform: rotate(14deg);
}

.thanks-shell {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: clamp(50px, 8vw, 115px);
  align-items: center;
}

.thanks-copy {
  max-width: 680px;
}

.thanks-status {
  width: fit-content;
  margin-bottom: 28px;
  padding: 7px 10px;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  font-family: var(--font-mono);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .09em;
  box-shadow: 4px 4px 0 var(--cyan);
}

.thanks-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(154, 215, 131, .25);
}

.thanks-copy .micro-label {
  margin-bottom: 14px;
}

.thanks-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  line-height: .84;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.thanks-copy h1 em {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-style: normal;
}

.thanks-copy h1 em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 4%;
  height: 12%;
  z-index: -1;
  background: var(--yellow);
  transform: rotate(-1deg);
}

.thanks-lead {
  max-width: 620px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.thanks-note {
  max-width: 580px;
  margin-top: 30px;
  padding: 20px 22px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow-small);
  transform: rotate(-.8deg);
}

.thanks-note span {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-mono);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.thanks-note p {
  font-weight: 700;
  line-height: 1.5;
}

.thanks-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.thanks-visual-wrap {
  position: relative;
  min-height: 560px;
}

.thanks-visual {
  position: absolute;
  inset: 42px 24px 45px 0;
  margin: 0;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(2deg);
}

.thanks-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thanks-visual figcaption {
  position: absolute;
  left: -20px;
  bottom: -34px;
  max-width: 270px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  background: var(--white);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 4px 4px 0 var(--ink);
}

.thanks-visual figcaption span {
  display: block;
  margin-bottom: 3px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .08em;
}

.thanks-sticker {
  position: absolute;
  right: -2px;
  top: 4px;
  z-index: 4;
  width: 142px;
  height: 142px;
  padding: 16px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 6px 6px 0 var(--yellow);
}

.thanks-sticker span {
  font-family: var(--font-mono);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.thanks-sticker strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: .9;
}

/* Privacy page */

.privacy-page {
  background:
    linear-gradient(to bottom, rgba(255,216,77,.18), transparent 410px),
    var(--paper);
}

.legal-hero {
  position: relative;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(75px, 9vw, 125px) 0 65px;
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}

.legal-hero .micro-label {
  position: relative;
  z-index: 2;
  margin-bottom: 17px;
}

.legal-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 950px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: .82;
  letter-spacing: -.08em;
  text-transform: uppercase;
}

.legal-hero > p {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.legal-meta {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legal-meta > * {
  padding: 7px 9px;
  border: 1px solid var(--ink);
  background: var(--white);
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-meta a {
  background: var(--yellow);
}

.legal-hero-shape {
  position: absolute;
  pointer-events: none;
}

.legal-hero-shape-one {
  right: 9%;
  top: 50px;
  width: 190px;
  height: 190px;
  border: 38px solid var(--blue);
  border-radius: 50%;
  opacity: .09;
}

.legal-hero-shape-two {
  right: -30px;
  bottom: 30px;
  width: 190px;
  height: 80px;
  background: var(--orange);
  opacity: .12;
  transform: rotate(-12deg);
}

.legal-layout {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 120px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 28px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.legal-toc > strong {
  display: block;
  padding: 16px;
  border-bottom: 2px solid var(--ink);
  background: var(--yellow);
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
}

.legal-toc a {
  position: relative;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .66rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, padding-left 160ms ease;
}

.legal-toc a:last-child {
  border-bottom: 0;
}

.legal-toc a:hover,
.legal-toc a:focus-visible,
.legal-toc a.is-active {
  padding-left: 20px;
  color: var(--ink);
  background: var(--paper);
}

.legal-toc a.is-active::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%);
}

.legal-content {
  min-width: 0;
}

.legal-block {
  scroll-margin-top: 30px;
  padding: 0 0 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--ink);
}

.legal-block h2 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: .96;
  letter-spacing: -.05em;
}

.legal-block h3 {
  margin: 31px 0 10px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.legal-block p,
.legal-block li {
  max-width: 850px;
  color: var(--muted);
  font-size: .97rem;
}

.legal-block p + p {
  margin-top: 14px;
}

.legal-block ul {
  max-width: 850px;
  margin: 14px 0 0 20px;
}

.legal-block li + li {
  margin-top: 7px;
}

.legal-block a {
  color: var(--blue-deep);
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-detail-box {
  max-width: 700px;
  margin: 18px 0 22px;
  padding: 20px 22px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow-small);
}

.legal-detail-box p,
.legal-detail-box a {
  color: var(--ink);
}

.legal-table-wrap {
  width: 100%;
  margin-top: 20px;
  overflow-x: auto;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-small);
  background: var(--white);
}

.legal-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-align: left;
  vertical-align: top;
}

.legal-table th:last-child,
.legal-table td:last-child {
  border-right: 0;
}

.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-table th {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.legal-table td {
  color: var(--muted);
  font-size: .86rem;
}

.legal-end-card {
  margin-top: 10px;
  padding: clamp(28px, 4vw, 42px);
  border: 3px solid var(--ink);
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow);
}

.legal-end-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: .94;
  letter-spacing: -.05em;
}

.legal-end-card p {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255,255,255,.8);
}

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

.legal-actions .button {
  background: var(--white);
  color: var(--ink);
}

.legal-actions .button:first-child {
  background: var(--yellow);
}

.inner-footer {
  margin-top: auto;
}

/* Inner-page responsive */

@media (max-width: 980px) {
  .thanks-shell {
    grid-template-columns: 1fr;
  }

  .thanks-copy {
    max-width: 760px;
  }

  .thanks-visual-wrap {
    width: min(720px, 100%);
    min-height: 520px;
    margin: 0 auto;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-toc a:nth-last-child(2) {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .inner-header {
    width: min(var(--container), calc(100% - 28px));
    min-height: 90px;
  }

  .inner-brand .brand-copy small {
    display: none;
  }

  .inner-nav {
    gap: 2px;
  }

  .inner-nav a {
    padding: 0 8px;
    font-size: .64rem;
  }

  .inner-nav a:not(.inner-nav-home) {
    display: none;
  }

  .thanks-shell,
  .legal-hero,
  .legal-layout {
    width: min(var(--container), calc(100% - 28px));
  }

  .thanks-main {
    padding-top: 62px;
  }

  .thanks-copy h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

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

  .thanks-actions .button,
  .thanks-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .thanks-note {
    transform: none;
  }

  .thanks-visual-wrap {
    min-height: 410px;
  }

  .thanks-visual {
    inset: 25px 8px 38px 0;
  }

  .thanks-sticker {
    width: 105px;
    height: 105px;
    padding: 11px;
  }

  .thanks-sticker strong {
    font-size: 1rem;
  }

  .legal-hero {
    padding-top: 58px;
  }

  .legal-hero h1 {
    font-size: clamp(3.6rem, 17vw, 5.5rem);
  }

  .legal-layout {
    padding-top: 42px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
    max-height: 290px;
    overflow-y: auto;
  }

  .legal-toc a:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .legal-block {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }

  .legal-block h2 {
    font-size: clamp(1.85rem, 10vw, 2.8rem);
  }

  .legal-meta {
    gap: 6px;
  }

  .legal-meta > * {
    font-size: .59rem;
  }

  .legal-actions {
    flex-direction: column;
  }

  .legal-actions .button {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .inner-header .brand-mark {
    width: 42px;
    height: 42px;
  }

  .inner-header .brand-copy b {
    font-size: .72rem;
  }

  .inner-nav-home {
    min-height: 38px !important;
  }

  .thanks-visual-wrap {
    min-height: 340px;
  }

  .thanks-visual figcaption {
    left: 6px;
    bottom: -28px;
    max-width: 220px;
    font-size: .74rem;
  }

  .thanks-status {
    margin-bottom: 20px;
  }

  .legal-table th,
  .legal-table td {
    padding: 11px;
  }
}
