:root {
  --bg: #FAFAF7;
  --ink: #0A0A0A;
  --ink-soft: #2A2A2A;
  --muted: #6B6B68;
  --line: #E5E3DC;
  --card: #FFFFFF;
  --accent: #E25822;
  --accent-soft: #FCEDE4;
  --tint-blue: #EAF1F7;
  --tint-green: #ECF3EC;
  --tint-yellow: #FBF3DC;
  --tint-purple: #EFEAF6;
  --shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
h1, h2, h3, h4 {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.04;
  color: var(--ink);
}
p { color: var(--ink-soft); }
em { font-style: italic; }
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1120px;
  margin: 0 auto;
  gap: 24px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 8px;
}
@media (min-width: 760px) {
  .nav-links { display: flex; }
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s ease, opacity .15s ease;
}
.nav-cta:hover { transform: translateY(-1px); opacity: 0.92; }

/* Hero */
.hero {
  padding: 110px 0 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,10,10,0.08) 1px, transparent 0);
  background-size: 22px 22px;
  background-position: 0 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,250,247,0.4) 0%, var(--bg) 90%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.65fr 1fr; gap: 64px; }
}
.hero-art {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.hero-art svg { width: 100%; height: 100%; display: block; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  margin-bottom: 28px;
  max-width: 20ch;
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.02;
}
.hero .lede {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--bg);
  padding: 16px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, background .2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { transform: translateY(-1px); background: var(--accent); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: background .2s ease;
}
.btn-ghost:hover { background: #fff; }

/* Sections */
section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(34px, 4.4vw, 52px);
  margin-bottom: 24px;
  max-width: 22ch;
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.02;
}
.section-lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.6;
}

/* Problem section */
.problem { background: #fff; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 880px) {
  .problem-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.pull-quote {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: 26px;
  margin-bottom: 28px;
}
.pull-quote-after {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  padding-left: 29px;
}
.pull-quote-after b { color: var(--ink); font-weight: 600; }
.problem-body b { color: var(--ink); font-weight: 600; }
.problem-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.problem-point + .problem-point { margin-top: 18px; }
.problem-num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-top: 1px;
}
.problem-point p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.problem-resolve {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Difference / Step one */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 760px) {
  .compare-grid { grid-template-columns: 1fr 1fr; }
}
.compare-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.compare-card.them {
  background: transparent;
  box-shadow: none;
  border: 1px dashed var(--line);
}
.compare-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.compare-card p { font-size: 16px; }
.compare-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.compare-card.them .compare-tag { background: #F0EFEA; color: var(--muted); }
.compare-card.us .compare-tag { background: var(--ink); color: var(--bg); }

.five-disciplines {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 880px) {
  .five-disciplines {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
.fd-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fd-text > p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.fd-text > p b { color: var(--ink); font-weight: 600; }
.fd-visual {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.fd-visual svg { display: block; width: 100%; height: auto; }
.fd-visual-head { text-align: center; }
.fd-visual-head h3 {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
}
.fd-visual-head p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.why-matters {
  margin-top: 52px;
  background: var(--tint-blue);
  border-radius: 22px;
  padding: 40px 44px;
}
.why-matters h3 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 20px;
  margin-bottom: 22px;
}
.why-matters ul { list-style: none; }
.why-matters li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.why-matters li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.why-matters li b { color: var(--ink); font-weight: 600; }

/* Incomplete callout */
.incomplete-callout {
  margin-top: 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--tint-yellow);
  border-radius: 18px;
  padding: 28px 32px;
  border-left: 3px solid #D49B25;
}
.incomplete-mark {
  color: #D49B25;
  font-size: 22px;
  line-height: 1;
  margin-top: 4px;
  flex-shrink: 0;
}
.incomplete-callout p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

/* What you get */
.gets { background: #fff; }
.gets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 56px;
}
@media (min-width: 760px) {
  .gets-grid { grid-template-columns: 1fr 1fr; }
}
.get-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 30px 28px;
  background: var(--bg);
  transition: transform .2s ease, border-color .2s ease;
}
.get-card:hover { transform: translateY(-2px); border-color: #D7D4CB; }
.get-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-weight: 700;
}
.get-card h3 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.get-card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Certified-on modules grid — Program page, "What you're certified on" */
.cert-modules {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 36px 0 32px;
  counter-reset: cert-mod;
}
@media (max-width: 980px) {
  .cert-modules { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .cert-modules { grid-template-columns: 1fr; }
}
.cert-module {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s ease, transform .2s ease;
}
.cert-module::before {
  counter-increment: cert-mod;
  content: "0" counter(cert-mod);
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.cert-module:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.cert-module h3 {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.cert-module p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: auto;
}
.cert-modules-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cert-modules-rule::before,
.cert-modules-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* OS does two things */
.os-does-two {
  margin-top: 60px;
  background: var(--tint-green);
  border-radius: 22px;
  padding: 48px 48px 52px;
}
.os-does-two > h3 {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 32ch;
  letter-spacing: -0.015em;
}
.os-two-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 760px) {
  .os-two-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.os-two-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}
.os-two-item h4 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.os-two-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.os-two-item p b { color: var(--ink); font-weight: 600; }

/* Recurring revenue */
.revenue { background: var(--bg); }
.rev-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 56px;
}
@media (min-width: 760px) {
  .rev-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1040px) {
  .rev-grid { grid-template-columns: repeat(3, 1fr); }
}
.rev-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
}
.rev-card .num {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}
.rev-card h3 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.rev-card .price {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.rev-card p { font-size: 15px; line-height: 1.55; }

/* Math table */
.math-wrap {
  margin-top: 60px;
  background: #0A0A0A;
  color: #fff;
  border-radius: 22px;
  padding: 44px;
  overflow: hidden;
}
.math-wrap h3 {
  color: #fff;
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: 28px;
  margin-bottom: 8px;
}
.math-wrap p.intro {
  color: #BFBEB8;
  margin-bottom: 28px;
  font-size: 16px;
  max-width: 60ch;
}
.math-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
}
.math-table th, .math-table td {
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid #1F1F1F;
}
.math-table th {
  font-weight: 600;
  color: #999996;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.math-table td { color: #E8E7E2; }
.math-table tr.total td {
  border-bottom: none;
  border-top: 1px solid #2A2A2A;
  padding-top: 22px;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
}
.math-table tr.total td:last-child { color: var(--accent); }
.math-disclaimer {
  margin-top: 22px;
  font-size: 13.5px;
  color: #999996;
  font-style: italic;
}

.insight {
  margin-top: 36px;
  background: var(--tint-yellow);
  border-radius: 18px;
  padding: 28px 34px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  border-left: 3px solid #D49B25;
}
.insight b { font-weight: 600; }

/* Differentiators */
.diff { background: #fff; }
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 56px;
}
@media (min-width: 760px) {
  .diff-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1040px) {
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
}
.diff-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  background: var(--bg);
}
.diff-card h3 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}
.diff-card p { font-size: 15px; line-height: 1.55; }

/* Who this is for */
.for { background: var(--bg); }
.for-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}
@media (min-width: 760px) {
  .for-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.for-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
}
.for-card.no { background: transparent; border: 1px dashed var(--line); }
.for-card h3 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.for-card ul { list-style: none; }
.for-card li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.for-card.yes li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.for-card.no li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 18px; height: 18px;
  border: 1.5px solid #B7B5AD;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B7B5AD' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='6' y1='6' x2='18' y2='18'/><line x1='18' y1='6' x2='6' y2='18'/></svg>");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* FAQ */
.faq { background: #fff; }
.faq-list { margin-top: 48px; max-width: 820px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--muted);
  font-weight: 400;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Apply CTA */
.apply {
  background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
  color: #fff;
  border-bottom: none;
  text-align: center;
  padding: 130px 0;
}
.apply h2 {
  color: #fff;
  font-size: clamp(40px, 5.5vw, 64px);
  margin-bottom: 24px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.apply p {
  color: #BFBEB8;
  font-size: 18px;
  max-width: 56ch;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.apply .btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 18px 32px;
  font-size: 16px;
}
.apply .btn-primary:hover { background: #fff; color: var(--ink); }
.apply-note {
  margin-top: 28px;
  font-size: 14px;
  color: #888884;
}

/* Footer */
footer {
  padding: 36px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
footer .logo { justify-content: center; font-size: 18px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* small utility */
.accent { color: var(--accent); }
.em { font-style: italic; font-family: 'Geist', 'Inter Tight', system-ui, sans-serif; }

/* ========== APPLICATION FORM ========== */
.form-page {
  padding: 80px 0 100px;
  border-bottom: none;
  min-height: calc(100vh - 70px);
  background: var(--bg);
}
.form-page .container-narrow { max-width: 720px; }
.form-page .eyebrow { color: var(--accent); }
.form-page h1 {
  font-size: clamp(36px, 4.6vw, 54px);
  margin-bottom: 18px;
  max-width: 18ch;
}
.form-page .lede {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 56ch;
}
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 48px;
  box-shadow: var(--shadow);
}
@media (max-width: 640px) {
  .form-card { padding: 32px 24px; }
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.field .hint {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.45;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="url"],
.field input[type="tel"],
.field textarea,
.field select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  font-family: 'Inter Tight', 'Inter', sans-serif;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(226, 88, 34, 0.12);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}
.field-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  margin-right: 8px;
  vertical-align: 1px;
}
.form-actions {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.form-actions .legalese {
  font-size: 12.5px;
  color: var(--muted);
  max-width: 32ch;
  line-height: 1.5;
}
.honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .15s ease;
}
.back-link:hover { color: var(--ink); }

/* ========== PAGE-LEVEL HERO (subpages) ========== */
.page-hero {
  padding: 90px 0 60px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,10,10,0.07) 1px, transparent 0);
  background-size: 22px 22px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250,250,247,0.4) 0%, var(--bg) 90%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) {
  .page-hero-grid { grid-template-columns: 1.5fr 1fr; gap: 64px; }
}
.page-hero-art {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.page-hero-art svg { width: 100%; height: auto; display: block; }
.page-hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  margin-bottom: 22px;
  max-width: 18ch;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}
.page-hero .lede {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.55;
}

/* Hero stats row */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-stats span::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero-stats span:first-child::before { display: none; }
.hero-stats b { color: var(--ink); font-weight: 600; }

/* Teaser cards (home) */
.teasers {
  background: #fff;
}
.teasers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 56px;
}
@media (min-width: 760px) {
  .teasers-grid { grid-template-columns: repeat(3, 1fr); }
}
.teaser-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  background: var(--bg);
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.teaser-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: #fff;
}
.teaser-num {
  display: inline-block;
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.teaser-card h3 {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.teaser-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.teaser-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}

/* Library — 13 programs */
.library {
  margin-top: 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 48px;
  box-shadow: var(--shadow);
}
@media (max-width: 720px) { .library { padding: 32px 24px; } }
.library-header {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: baseline;
  margin-bottom: 28px;
}
.library-header .badge {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.library-header h2 {
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.018em;
}
.library-intro {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 70ch;
  line-height: 1.6;
  margin-bottom: 32px;
}
.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.library-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.library-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.library-bundle {
  background: var(--tint-blue);
  border-radius: 14px;
  padding: 22px 26px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.library-bundle b { color: var(--ink); font-weight: 600; }

/* Before / After comparison grid — "What changes" on the Program page */
.compare {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  border-top: 1px solid var(--line);
  margin-top: 44px;
  position: relative;
}
.compare > div {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.compare .h {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--ink);
}
.compare .metric { font-weight: 600; color: var(--ink); }
.compare .before {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(90, 90, 96, .4);
}
.compare .after { color: var(--ink); font-weight: 600; }
.compare .after::before { content: "→ "; color: var(--accent); font-weight: 700; }
/* Highlight the "With Vector OS™" column */
.compare .h-after {
  color: var(--accent);
  background: #FFFFFF;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  border-radius: 10px 10px 0 0;
  margin-top: -1px;
}
.compare .after {
  background: #FFFFFF;
  border-left: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
}
.compare .after.last {
  border-bottom: 1px solid var(--accent);
  border-radius: 0 0 10px 10px;
}
.compare-note {
  color: var(--muted);
  font-size: 14px;
  margin: 28px auto 18px;
  max-width: 720px;
  line-height: 1.6;
  text-align: center;
}
.compare-pullquote {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto;
  max-width: 820px;
  line-height: 1.4;
  text-align: center;
  padding: 22px 28px;
  border-left: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  background: #FFF7F3;
}
.compare-pullquote .accent { color: var(--accent); }
@media (max-width: 720px) {
  .compare { grid-template-columns: 1fr 1fr; }
  .compare .metric {
    grid-column: 1 / -1;
    border-bottom: none;
    padding-bottom: 4px;
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
  }
  .compare .h:first-child { display: none; }
}

/* Comparison table (why-vector) */
.compare-table-wrap {
  margin-top: 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table thead th {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: var(--bg);
  color: var(--ink);
  text-transform: uppercase;
}
.compare-table thead th.col-vector {
  background: var(--ink);
  color: #fff;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .dim {
  font-weight: 600;
  color: var(--ink);
  font-size: 14.5px;
}
.compare-table .vector-cell {
  font-weight: 600;
  color: var(--ink);
  background: rgba(226, 88, 34, 0.04);
}
.compare-table .them-cell { color: var(--muted); }
@media (max-width: 720px) {
  .compare-table th, .compare-table td { padding: 14px 14px; font-size: 14px; }
}

/* Scenarios (economics) */
.scenarios {
  margin-top: 60px;
}
.scenarios > h3 {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 8px;
  letter-spacing: -0.018em;
}
.scenarios > p.sub {
  color: var(--ink-soft);
  margin-bottom: 32px;
  font-size: 16px;
}
.scenarios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 880px) {
  .scenarios-grid { grid-template-columns: repeat(3, 1fr); }
}
.scenario-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
}
.scenario-card .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}
.scenario-card h4 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  line-height: 1.35;
}
.scenario-card .row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.scenario-card .row:first-of-type { border-top: none; padding-top: 0; }
.scenario-card .row b { color: var(--ink); font-weight: 600; }
.scenario-card .payback {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--accent-soft);
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--accent);
  font-weight: 600;
}

/* Continued/next-page CTA bar */
.next-cta {
  margin-top: 80px;
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: 44px 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.next-cta .nc-text h3 {
  color: #fff;
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.next-cta .nc-text p {
  color: #BFBEB8;
  font-size: 15px;
  max-width: 56ch;
}
.next-cta .nc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.next-cta a.btn-primary {
  background: var(--accent);
  color: #fff;
}
.next-cta a.btn-primary:hover { background: #fff; color: var(--ink); }
.next-cta a.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #2F2F2F;
}
.next-cta a.btn-ghost:hover { background: #1A1A1A; }
@media (max-width: 720px) {
  .next-cta { padding: 32px 28px; }
}

/* ========== ICON SYSTEM ========== */
.ico {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.ico-lg { width: 26px; height: 26px; }

/* Replace .get-icon with svg-friendly version */
.get-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Differentiator number badges */
.diff-card { position: relative; }
.diff-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

/* ========== FIVE DISCIPLINES DIAGRAM ========== */
.five-disciplines-visual {
  margin-top: 56px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.five-disciplines-visual h3 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}
.five-disciplines-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}
.fd-node-text {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  fill: var(--ink);
}
.fd-center-text {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  fill: #fff;
  letter-spacing: -0.01em;
}
.fd-center-sub {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  fill: rgba(255,255,255,0.7);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ========== HERO ACCENT GEOMETRIC SHAPES ========== */
.hero-mark-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}
.hero-mark-decor.tr {
  top: 80px;
  right: -40px;
  width: 280px;
  height: 280px;
}
.hero-mark-decor svg { width: 100%; height: 100%; display: block; }

/* ========== DECORATIVE SECTION DIVIDER ========== */
.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 48px 0;
}
.section-divider::before, .section-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.section-divider svg { color: var(--accent); width: 22px; height: 22px; }

/* ========== ASCENDING STAIRS / GROWTH VISUAL ========== */
.growth-visual {
  width: 100%;
  max-width: 360px;
  height: auto;
}

/* Improve get-icon now that it holds an SVG */
.get-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
}

/* ========== TRACKS (Library) ========== */
.tracks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 36px;
}
.track-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
}
@media (max-width: 720px) { .track-card { padding: 28px 24px; } }
.track-header {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 14px;
}
.track-num {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.track-header h3 {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.018em;
  margin-bottom: 6px;
}
.track-tag {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink-soft);
  font-weight: 400;
}
.track-when {
  font-size: 14.5px;
  color: var(--muted);
  margin: 6px 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  max-width: 76ch;
  line-height: 1.55;
}
.track-when b { color: var(--ink); font-weight: 600; }
.track-programs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 760px) {
  .track-programs { grid-template-columns: 1fr 1fr; gap: 14px; }
}
.track-program {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .2s ease, transform .2s ease;
}
.track-program:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
.track-program h4 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.track-program h4::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.track-program p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ========== SHIPS-WITH CALLOUT ========== */
.ships-with {
  margin-top: 56px;
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: 52px 48px;
}
@media (max-width: 720px) { .ships-with { padding: 36px 28px; } }
.callout-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}
.ships-with h3 {
  color: #fff;
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  max-width: 24ch;
}
.ships-with > p {
  color: #BFBEB8;
  font-size: 16.5px;
  max-width: 58ch;
  margin-bottom: 32px;
  line-height: 1.6;
}
.ships-with > p b { color: #fff; font-weight: 600; }
.ships-with-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 540px) {
  .ships-with-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .ships-with-grid { grid-template-columns: repeat(4, 1fr); }
}
.ships-with-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 14px;
  color: #E8E7E2;
  font-weight: 500;
  line-height: 1.35;
}
.ships-with-item svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ========== THREE WAYS TO DEPLOY ========== */
.three-ways {
  margin-top: 56px;
}
.three-ways h3 {
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  max-width: 28ch;
}
.three-ways > p {
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 58ch;
  margin-bottom: 36px;
  line-height: 1.6;
}
.three-ways-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) {
  .three-ways-grid { grid-template-columns: repeat(3, 1fr); }
}
.way-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.way-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.way-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.way-card h4 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--ink);
}
.way-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* Thanks page */
.thanks-page {
  padding: 120px 0;
  text-align: center;
  background: var(--bg);
  border-bottom: none;
  min-height: calc(100vh - 70px);
  display: grid;
  place-items: center;
}
.thanks-card {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 28px;
}
.thanks-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  font-size: 28px;
  font-weight: 700;
}
.thanks-page h1 {
  font-size: clamp(36px, 4.4vw, 50px);
  margin-bottom: 20px;
}
.thanks-page p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.thanks-page .secondary {
  font-size: 15px;
  color: var(--muted);
  margin-top: 32px;
}
