/* =========================================================
   TIFIN.AI Australia — Landing Page
   Design system mirrors the Series A deck:
   Editorial / financial-prospectus feel.
   Navy on off-white, with a single teal accent.
   ========================================================= */

:root {
  --bg-dark: #0B1E33;
  --bg-dark-2: #0F2540;
  --bg-light: #F7F9FB;
  --bg-page: #FFFFFF;

  --text-primary: #0F1F33;
  --text-secondary: #3A4A5C;
  --text-muted: #8A95A3;
  --text-on-dark: #E8EEF5;
  --text-on-dark-muted: #92A4BB;

  --accent: #1F8A9B;
  --accent-soft: rgba(31, 138, 155, 0.12);
  --rule: #E1E6EC;
  --rule-dark: rgba(255, 255, 255, 0.12);

  --font-serif: 'Source Serif 4', 'Tiempos Headline', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --kicker-tracking: 0.16em;
  --container-max: 1240px;
  --container-pad: clamp(20px, 4vw, 64px);
  --section-pad: clamp(72px, 9vw, 140px);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

/* Tabular lining figures for all numerals on data — prospectus convention */
.serif, .megastat, .stat__num, .market__num, .compare__num, .offer__num,
.fin-table td, .uof__num, .forces__num, .exits__num, .steps__num {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--text-primary); }
ul, ol { padding-left: 0; list-style: none; margin: 0; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.serif { font-family: var(--font-serif); letter-spacing: -0.015em; }

/* ---------- shared atoms ---------- */
.kicker {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--kicker-tracking);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.kicker--muted { color: var(--text-muted); }
.kicker--on-dark { color: #4EBDCE; }

.accent-rule {
  width: 96px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 24px;
}
.rule { height: 1px; background: var(--rule); margin: 32px 0 48px; }
.rule--accent {
  height: 2px;
  width: 64px;
  background: var(--accent);
  margin: 8px 0 48px;
}

.lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--text-primary);
  max-width: 60ch;
  margin: 0 0 28px;
  font-weight: 400;
}
.lead--on-dark { color: var(--text-on-dark); }

.caption {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 28px;
  max-width: 80ch;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.7;
  font-weight: 500;
}
.caption--sentence {
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  line-height: 1.6;
}

.section {
  padding: var(--section-pad) 0;
  background: var(--bg-page);
}
.section--light { background: var(--bg-light); }
.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section--dark p,
.section--dark li { color: var(--text-on-dark-muted); }
.section--dark .caption { color: var(--text-on-dark-muted); }

.section__h {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--text-primary);
  margin: 0 0 12px;
  max-width: 22ch;
}
.section__h--light { color: #FFFFFF; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--text-primary);
  color: #fff;
}
.btn--primary:hover { background: var(--accent); color: #fff; }
.btn--ghost {
  border-color: var(--text-primary);
  color: var(--text-primary);
  background: transparent;
}
.btn--ghost:hover { background: var(--text-primary); color: #fff; }
.btn--text {
  background: transparent;
  color: var(--accent);
  padding-left: 0;
}
.btn--text:hover { color: var(--text-primary); }

/* ================== NAV ================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.brand__mark {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}
.brand__wordmark { font-size: 15px; }
.brand__wordmark em { color: var(--accent); font-style: italic; font-weight: 500; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}
.nav__links a:hover { color: var(--text-primary); }

@media (max-width: 880px) {
  .nav__links a:not(.btn) { display: none; }
}

/* ================== HERO ================== */
.hero {
  position: relative;
  padding: clamp(80px, 9vw, 140px) 0 clamp(72px, 8vw, 120px);
  background:
    radial-gradient(ellipse at 90% -10%, rgba(31, 138, 155, 0.10), transparent 55%),
    var(--bg-page);
  border-bottom: 1px solid var(--rule);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.hero__title {
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 6px 0 28px;
}
.hero__cta {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 32px 0 36px;
  flex-wrap: wrap;
}
.hero__disclaim {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.hero__panel {
  background: var(--bg-light);
  border: 1px solid var(--rule);
  padding: clamp(28px, 3vw, 48px);
  border-radius: 2px;
  position: relative;
}
.hero__panel::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 64px; height: 2px;
  background: var(--accent);
}
.megastat {
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.95;
  font-weight: 600;
  color: var(--text-primary);
  margin: 12px 0 8px;
  letter-spacing: -0.03em;
}
.stat__caption {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 32ch;
  margin: 0;
  line-height: 1.5;
}
.hero__stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.hero__stat-row > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero__stat-row .stat__num {
  min-height: calc(1.1em * 1);
}
.stat__num {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero__stat-row .stat__caption {
  font-size: 13.5px;
  line-height: 1.55;
}
sup.fn {
  font-family: var(--font-sans);
  font-size: 0.45em;
  font-feature-settings: "sups" 1;
  font-variant-position: super;
  font-weight: 500;
  color: var(--accent);
  margin-left: 2px;
  letter-spacing: 0;
  vertical-align: super;
  line-height: 0;
}
.hero__panel-foot {
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  font-style: italic;
  color: var(--text-secondary);
}
.hero__notes {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__notes li {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.hero__notes li span {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__stat-row { grid-template-columns: 1fr; gap: 20px; }
}

/* ================== GENERIC LAYOUTS ================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}
.grid--gapped { margin-top: 56px; }
@media (max-width: 800px) { .grid-2 { grid-template-columns: 1fr; } }

/* ================== MARKET BARS ================== */
.market {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.market__row {
  display: grid;
  grid-template-columns: 84px 1fr minmax(160px, auto) minmax(220px, 1.6fr);
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.market__row:first-child { border-top: 1px solid var(--rule); }
.market__label {
  font-size: 11px;
  letter-spacing: var(--kicker-tracking);
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.market__track {
  position: relative;
  height: 18px;
  background: rgba(15, 31, 51, 0.05); /* ghost bar = full TAM reference */
  display: block;
}
.market__bar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: var(--accent);
  display: block;
}
.market__bar--tam { width: 100%; }
.market__bar--gap { width: 29%; background: var(--text-primary); }
.market__bar--som { width: 0.43%; background: var(--text-primary); min-width: 2px; }
.market__num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}
.market__cap {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0;
}
@media (max-width: 700px) {
  .market__row { grid-template-columns: 1fr; gap: 8px; }
}

/* ================== FORCES (numbered) ================== */
.forces {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
}
.forces__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 44px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.forces__item:last-child { border-bottom: 1px solid var(--rule); }
.forces__num {
  font-size: clamp(56px, 5vw, 72px);
  color: #C7CFD9;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.forces__h {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 14px;
  letter-spacing: var(--kicker-tracking);
  text-transform: uppercase;
}
.forces__item p { font-size: 17px; color: var(--text-primary); }
.forces__item p { margin: 0; max-width: 70ch; }

/* ================== PRODUCTS ================== */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  margin-top: 48px;
}
.product {
  background: var(--bg-page);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--accent);
  padding: clamp(32px, 3vw, 48px);
}
.product__tag {
  font-size: 11px;
  letter-spacing: var(--kicker-tracking);
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 16px;
}
.product__h {
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 24px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.product__list li {
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  font-size: 15px;
}
.product__list li:first-child { border-top: none; }
.product__list strong { color: var(--text-primary); font-weight: 600; }
@media (max-width: 800px) { .products { grid-template-columns: 1fr; } }

/* ================== PLATFORM (dark) ================== */
.surface {
  border-top: 2px solid var(--accent);
  padding-top: 28px;
}
.surface__h {
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 600;
  color: #fff;
  margin: 8px 0 20px;
  letter-spacing: -0.015em;
}
.surface__list li {
  padding: 12px 0;
  border-top: 1px solid var(--rule-dark);
  color: var(--text-on-dark);
  font-size: 15px;
}
.surface__list li:first-child { border-top: none; }

.logo-strip {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--rule-dark);
}
.logo-strip__row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 56px;
  margin-top: 18px;
  align-items: center;
}
.logo-strip__row span {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-on-dark);
  opacity: 0.85;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ================== QUAD ================== */
.quad {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.quad__cell {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.quad__tag {
  font-size: 11px;
  letter-spacing: var(--kicker-tracking);
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 14px;
}
.quad__h {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 14px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.quad__cell p { margin: 0; }
@media (max-width: 800px) { .quad { grid-template-columns: 1fr; } }

/* ================== COMPARE (economics) ================== */
.compare {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--bg-page);
}
.compare__col {
  padding: clamp(36px, 4vw, 64px);
  border-right: 1px solid var(--rule);
}
.compare__col:last-child { border-right: none; }
.compare__col--accent {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
}
.compare__col--accent::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
}
.compare__tag {
  font-size: 11px;
  letter-spacing: var(--kicker-tracking);
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0 0 16px;
}
.compare__col--accent .compare__tag { color: #4EBDCE; }
.compare__num {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 600;
  line-height: 1;
  color: var(--text-primary);
  margin: 0 0 14px;
  letter-spacing: -0.025em;
}
.compare__col--accent .compare__num { color: #fff; }
.compare__sm { font-size: 0.4em; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.compare__sub {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0 0 14px;
}
.compare__col--accent .compare__sub { color: var(--text-on-dark); }
.compare__note {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}
.compare__col--accent .compare__note { color: var(--text-on-dark-muted); }
@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; }
  .compare__col { border-right: none; border-bottom: 1px solid var(--rule); }
  .compare__col:last-child { border-bottom: none; }
}

/* ================== FIN TABLE ================== */
.fin-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border-top: 2px solid var(--accent);
}
.fin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 640px;
}
.fin-table th, .fin-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
.fin-table thead th {
  font-size: 11px;
  letter-spacing: var(--kicker-tracking);
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  padding-top: 22px;
  padding-bottom: 22px;
}
.fin-table tbody th {
  color: var(--text-primary);
  font-weight: 600;
  width: 36%;
}
.fin-table tbody td {
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-feature-settings: "tnum" 1;
  font-size: 18px;
  font-weight: 500;
}

/* ================== OFFER ================== */
.offer-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 56px 0 16px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.offer__num {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.offer__cap {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 800px) {
  .offer-stats { grid-template-columns: repeat(2, 1fr); }
}

.use-of-funds__h {
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--text-primary);
  margin: 64px 0 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.uof {
  display: flex;
  flex-direction: column;
}
.uof li {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) 2fr minmax(140px, auto);
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  font-size: 15px;
}
.uof li:last-child { border-bottom: 1px solid var(--rule); }
.uof__label { color: var(--text-primary); font-weight: 500; }
.uof__bar {
  position: relative;
  height: 8px;
  background: var(--rule);
}
.uof__bar > span {
  position: absolute;
  inset: 0;
  width: var(--w);
  background: var(--accent);
}
.uof__num {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  text-align: right;
}
@media (max-width: 760px) {
  .uof li { grid-template-columns: 1fr; gap: 8px; }
  .uof__num { text-align: left; }
}

/* ================== TEAM ================== */
.team {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.team__card {
  background: var(--bg-page);
  padding: clamp(28px, 3vw, 40px);
}
.team__name {
  font-size: 22px;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.team__role {
  font-size: 12px;
  letter-spacing: var(--kicker-tracking);
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 20px;
}
.team__card p:last-child {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team { grid-template-columns: 1fr; } }

/* ================== EXITS ================== */
.exits {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.exits__card {
  border-top: 2px solid var(--accent);
  padding-top: 28px;
}
.exits__num {
  font-size: 32px;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0 0 16px;
  line-height: 1;
}
.exits__h {
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--text-primary);
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.exits__tag {
  font-size: 11px;
  letter-spacing: var(--kicker-tracking);
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 18px;
}
.exits__card p:last-child { margin: 0; font-size: 15px; }
@media (max-width: 800px) { .exits { grid-template-columns: 1fr; } }

/* ================== STEPS ================== */
.steps {
  margin: 48px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-dark);
  border: 1px solid var(--rule-dark);
}
.steps li {
  background: var(--bg-dark);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.steps__num {
  font-size: 24px;
  color: var(--accent);
  font-weight: 500;
  line-height: 1;
}
.steps__h {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  letter-spacing: 0;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

/* ================== CONTACT BOX ================== */
.contact-box {
  margin-top: 48px;
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--rule-dark);
  background: var(--bg-dark-2);
  border-top: 2px solid var(--accent);
}
.contact__h {
  font-size: clamp(26px, 3vw, 36px);
  color: #fff;
  font-weight: 600;
  margin: 8px 0 4px;
  letter-spacing: -0.015em;
}
.contact__sub {
  color: var(--text-on-dark-muted);
  margin: 0 0 18px;
  font-size: 15px;
}
.contact__email {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.contact__email:hover {
  color: #fff;
  border-bottom-color: var(--accent);
}
.contact__note {
  font-size: 13px;
  color: var(--text-on-dark-muted);
  margin: 28px 0 0;
  max-width: 70ch;
  line-height: 1.7;
}

/* ================== FOOTER ================== */
.foot {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  padding: 32px 0 40px;
  border-top: 1px solid var(--rule-dark);
}
.foot__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.foot__left, .foot__right {
  font-size: 11px;
  letter-spacing: var(--kicker-tracking);
  text-transform: uppercase;
  margin: 0;
  color: var(--text-on-dark-muted);
}
.foot__legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-dark);
}
.foot__legal p {
  font-size: 12px;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  max-width: 90ch;
  margin: 0;
}

/* ================== PRINT ================== */
@media print {
  .nav, .hero__cta { display: none; }
  body { background: #fff; color: #000; }
  .section--dark { background: #fff; color: #000; }
  .section--dark p, .section--dark li { color: #333; }
}
