/* ============================================================
   TrackForge — Landing page (unauthenticated)
   Porsche-configurator idiom: white canvas, hairline rules,
   matte black + Guards Red, type-forward editorial.
   Namespaced .tl-*. Reuses tokens from colors_and_type.css +
   palettes.css (porsche) and the .hr-btn / .hr-eyebrow helpers
   from home.css.
   ============================================================ */

/* ============================================================
   TrackForge — Splash / landing for unauthenticated users.
   Mounted by index.html as the pre-auth gate. Self-contained:
   bundles the .hr-eyebrow + .hr-btn helpers it needs (originally
   from the Home Redesign home.css) plus all .tl-* landing rules.
   Tokens come from the app's own :root / palette layer.
   ============================================================ */

/* ---------- Helpers (eyebrow + flat buttons) ---------- */
.hr-eyebrow {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--tt-primary); display: inline-flex; align-items: center; gap: 12px;
}
.hr-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--tt-primary); display: inline-block; }
.hr-btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: inherit;
  font-size: 13px; font-weight: 500; padding: 11px 20px; border-radius: 0;
  border: 1px solid transparent; cursor: pointer; letter-spacing: 0.01em;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.hr-btn svg, .hr-btn .lucide { width: 15px; height: 15px; }
.hr-btn--primary { background: #000; color: #fff; border-color: #000; }
.hr-btn--primary:hover { background: var(--tt-primary); border-color: var(--tt-primary); }
.hr-btn--ghost { background: transparent; color: var(--tt-ink-1); border-color: var(--tt-ink-1); }
.hr-btn--ghost:hover { background: var(--tt-ink-1); color: #fff; }
.hr-btn--quiet { background: #fff; color: var(--tt-ink-2); border-color: var(--tt-line); }
.hr-btn--quiet:hover { border-color: var(--tt-ink-1); color: var(--tt-ink-1); }
.hr-btn[disabled] { opacity: 0.45; cursor: default; }
.hr-btn--lg { padding: 14px 26px; font-size: 14px; }

/* ---------- Splash container ---------- */
/* The app mounts the splash full-viewport. Unlike the design-canvas
   artboard (fixed height, clipped), the real splash scrolls.
   Override --tt-primary to the splash accent so all var(--tt-primary) references
   within the splash use coral/red consistently, independent of the app's blue primary. */
.tt-splash {
  position: fixed; top: 56px; right: 0; bottom: 0; left: 0; z-index: 60;
  background: #fff; overflow-y: auto; overflow-x: hidden;
  --tt-primary: #d5001c;           /* Guards Red */
  --tt-primary-border: #b00018;
  --tt-surface-2: #f0f0f0;         /* Porsche palette neutral tint, not app's blue-gray */
}
.tt-splash .tl-page { height: auto; overflow: visible; }
.tt-splash .tl-nav { position: sticky; }

.tl-page {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #fff;
  color: var(--tt-ink-1);
  height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
.tl-wrap { max-width: 1140px; margin: 0 auto; padding: 0 48px; width: 100%; }

/* ---------- Marketing nav ---------- */
.tl-nav {
  height: 64px;
  border-bottom: 1px solid var(--tt-line);
  display: flex; align-items: center;
  position: sticky; top: 0; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px); z-index: 5;
}
.tl-nav__inner { max-width: 1140px; margin: 0 auto; padding: 0 48px; width: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.tl-brand { display: inline-flex; align-items: center; font-weight: 700; font-size: 1.02rem; letter-spacing: -0.02em; color: var(--tt-ink-1); }
.tl-brand__mark { height: 1.8em; width: auto; margin: 0 -0.04em; }
/* App-bar parity: centered brand, links left, avatar right */
.tl-nav__brand { justify-self: center; font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; color: var(--tt-ink-1); }
.tl-nav__right { justify-self: end; display: flex; align-items: center; gap: 14px; }
.tl-nav__avatar {
  width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--tt-ink-3); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 140ms;
}
.tl-nav__avatar:hover { background: var(--tt-ink-1); }
.tl-nav__avatar svg, .tl-nav__avatar .lucide { width: 17px; height: 17px; }
.tl-nav__links { display: flex; gap: 24px; justify-self: start; }
.tl-nav__link { font-size: 13px; color: var(--tt-ink-2); text-decoration: none; cursor: pointer; }
.tl-nav__link:hover { color: var(--tt-primary); }
.tl-nav__spacer { flex: 1; }
.tl-nav__signin { font-size: 13px; color: var(--tt-ink-1); text-decoration: none; cursor: pointer; font-weight: 500; }
.tl-nav__signin:hover { color: var(--tt-primary); }

/* ---------- Section-link overlay (sits on top of AppBar) ---------- */
/* The AppBar (z-index:61) shows through the splash. This bar floats above
   it (z-index:63) and adds the marketing anchor links to the left of the
   AppBar's menu button area. No background — AppBar colour shows through. */
.tl-splash-links {
  position: fixed; top: 0; left: 0;
  height: 56px;                  /* matches AppBar height */
  display: flex; align-items: center; gap: 20px;
  padding-left: 52px;
  z-index: 63;
  pointer-events: none;          /* container transparent to clicks */
  --tt-primary: #d5001c;         /* Guards Red — tl-splash-links is outside .tt-splash so scope here */
}
.tl-splash-links > * { pointer-events: auto; }
.tl-splash-links .tl-nav__link { font-size: 13px; color: var(--tt-ink-2); cursor: pointer; text-decoration: none; }
.tl-splash-links .tl-nav__link:hover { color: var(--tt-primary); }

/* ---------- Shared section scaffolding ---------- */
.tl-section { padding: 72px 0; }
.tl-section--tint { background: var(--tt-surface-2); }
.tl-section--ink { background: #0e1418; color: #fff; }
.tl-sechead { max-width: 640px; margin-bottom: 40px; }
.tl-sechead--center { margin-left: auto; margin-right: auto; text-align: center; }
.tl-sechead__title {
  font-size: 2rem; font-weight: 200; letter-spacing: -0.02em; line-height: 1.1;
  margin: 14px 0 12px; color: inherit;
}
.tl-sechead__title em { font-style: normal; color: var(--tt-primary); }
.tl-sechead__body { font-size: 1rem; line-height: 1.6; color: var(--tt-ink-3); }
.tl-section--ink .tl-sechead__body { color: rgba(255,255,255,0.66); }

/* shared eyebrow override for ink sections */
.tl-section--ink .hr-eyebrow { color: #d5001c; }
.tl-section--ink .hr-eyebrow::before { background: #d5001c; }

/* ---------- HERO: shared bits ---------- */
.tl-hero__eyebrow { margin-bottom: 18px; }
.tl-hero__title {
  font-weight: 200; letter-spacing: -0.025em; line-height: 1.02;
  color: var(--tt-ink-1); margin: 0 0 22px;
}
.tl-hero__title em { font-style: normal; color: var(--tt-primary); }
.tl-hero__body { font-size: 1.08rem; line-height: 1.6; color: var(--tt-ink-3); margin: 0 0 30px; }
.tl-hero__cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.tl-hero__note { font-size: 12px; color: var(--tt-ink-4); margin-top: 16px; display: flex; align-items: center; gap: 7px; }
.tl-hero__note svg, .tl-hero__note .lucide { width: 13px; height: 13px; color: var(--tt-primary); }
.hr-btn--lg { padding: 14px 26px; font-size: 14px; }

/* HERO 1 — Editorial split (type left, framed car right) */
.tl-hero1 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 84px 0 88px; }
.tl-hero1 .tl-hero__title { font-size: 3.3rem; max-width: 13ch; }
.tl-hero1__media { position: relative; }
.tl-hero1__img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  border: 1px solid var(--tt-line); filter: grayscale(0.35) contrast(1.03);
}
.tl-hero1__tag {
  position: absolute; left: 0; bottom: -1px;
  background: #0e1418; color: #fff; font-size: 11px; letter-spacing: 0.04em;
  padding: 9px 14px; display: inline-flex; align-items: center; gap: 8px;
}
.tl-hero1__tag b { color: var(--tt-primary); font-weight: 600; }

/* HERO 2 — Cinematic full-bleed */
.tl-hero2 { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; background: #0e1418; }
.tl-hero2__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.55) brightness(0.55) contrast(1.05); }
.tl-hero2::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,20,24,0.94) 0%, rgba(14,20,24,0.72) 42%, rgba(14,20,24,0.30) 100%);
}
.tl-hero2__inner { position: relative; z-index: 1; max-width: 1140px; margin: 0 auto; padding: 0 48px; width: 100%; }
.tl-hero2 .tl-hero__title { color: #fff; font-size: 3.4rem; max-width: 16ch; }
.tl-hero2 .tl-hero__title em { color: #d5001c; }
.tl-hero2 .tl-hero__body { color: rgba(255,255,255,0.78); max-width: 46ch; }
.tl-hero2 .hr-eyebrow { color: #d5001c; }
.tl-hero2 .hr-eyebrow::before { background: #d5001c; }
.tl-hero2 .hr-btn--ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.tl-hero2 .hr-btn--ghost:hover { background: #fff; color: #0e1418; }
.tl-hero2 .tl-hero__note { color: rgba(255,255,255,0.6); }

/* HERO 3 — Stacked statement (pure type, image band below) */
.tl-hero3 { padding: 92px 0 64px; text-align: left; }
.tl-hero3 .tl-hero__title { font-size: 4rem; max-width: 15ch; letter-spacing: -0.03em; }
.tl-hero3__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: 8px; }
.tl-hero3 .tl-hero__body { max-width: 42ch; margin: 0; }
.tl-hero3__band { height: 320px; position: relative; overflow: hidden; background: #0e1418; margin-top: 56px; }
.tl-hero3__band img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5) contrast(1.03) brightness(0.92); }
.tl-hero3__band-cap {
  position: absolute; left: 48px; bottom: 26px; color: #fff; z-index: 1;
  font-size: 13px; letter-spacing: 0.04em; max-width: 1140px;
}
.tl-hero3__band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,20,24,0.6), transparent 50%); }

/* ---------- Pillars ---------- */
.tl-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tl-pillar {
  background: #fff; border: 1px solid var(--tt-line); padding: 28px 26px 24px;
  display: flex; flex-direction: column; position: relative; min-height: 230px;
}
.tl-pillar--soon { background: var(--tt-surface-2); }
.tl-pillar__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.tl-pillar__icon { color: var(--tt-ink-1); }
.tl-pillar__icon svg, .tl-pillar__icon .lucide { width: 26px; height: 26px; stroke-width: 1.4; }
.tl-pillar--soon .tl-pillar__icon { color: var(--tt-ink-4); }
.tl-pillar__name { font-size: 1.5rem; font-weight: 200; margin: 0 0 8px; }
.tl-pillar--soon .tl-pillar__name { color: var(--tt-ink-3); }
.tl-pillar__desc { font-size: 0.88rem; line-height: 1.55; color: var(--tt-ink-3); flex: 1; }
.tl-pillar__foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--tt-line-soft); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--tt-ink-4); display: flex; align-items: center; gap: 7px; }
.tl-pillar__foot strong { color: var(--tt-primary); font-weight: 700; }
.tl-tag { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; padding: 3px 7px; border: 1px solid; white-space: nowrap; flex: 0 0 auto; }
.tl-tag--live { color: #fff; background: var(--tt-primary); border-color: var(--tt-primary); }
.tl-tag--soon { color: var(--tt-ink-4); border-color: var(--tt-line); }

/* ---------- Interactive pillar tiles (act as tabs) ---------- */
.tl-pillar--btn {
  font-family: inherit; text-align: left; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background: var(--tt-surface-2);
  transition: border-color 160ms, box-shadow 160ms, background 160ms;
}
.tl-pillar--btn:hover { border-color: var(--tt-ink-3); }
.tl-pillar.is-active { background: #fff; border-color: var(--tt-primary); box-shadow: inset 0 0 0 1px var(--tt-primary); }
.tl-pillar__see {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--tt-line-soft);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--tt-ink-3); display: flex; align-items: center; gap: 7px;
}
.tl-pillar.is-active .tl-pillar__see { color: var(--tt-primary); font-weight: 600; }
.tl-pillar__see .lucide, .tl-pillar__see svg { width: 13px; height: 13px; }
.tl-pillar__notch {
  position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px; background: #fff;
  border-right: 1px solid var(--tt-primary); border-bottom: 1px solid var(--tt-primary);
}

/* Problem panel (swaps with selected pillar) */
.tl-prob {
  background: #fff; border: 1px solid var(--tt-line); border-top: 2px solid var(--tt-primary);
  padding: 32px 34px; margin-top: 24px;
}
.tl-prob__head { margin-bottom: 24px; }
.tl-prob__title { font-size: 1.7rem; font-weight: 200; letter-spacing: -0.015em; line-height: 1.15; margin: 14px 0 0; color: var(--tt-ink-1); }
.tl-prob__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }

/* ---------- Problem (legacy, still used by .tl-cope/.tl-quote) ---------- */
.tl-problem__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.tl-quote {
  border-left: 2px solid var(--tt-primary); padding: 6px 0 6px 22px; margin: 0;
}
.tl-quote__text { font-size: 1.35rem; font-weight: 300; line-height: 1.4; color: var(--tt-ink-1); letter-spacing: -0.01em; }
.tl-quote__who { font-size: 12px; color: var(--tt-ink-4); margin-top: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.tl-cope { display: flex; flex-direction: column; }
.tl-cope__row { display: grid; grid-template-columns: 18px 1fr; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--tt-line); font-size: 13px; color: var(--tt-ink-2); align-items: start; }
.tl-cope__row:last-child { border-bottom: none; }
.tl-cope__row .lucide, .tl-cope__row svg { width: 15px; height: 15px; color: var(--tt-primary); margin-top: 1px; }

/* ---------- How it works ---------- */
.tl-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--tt-line); }
.tl-step { padding: 28px 22px 26px; border-right: 1px solid var(--tt-line); position: relative; }
.tl-step:last-child { border-right: none; }
.tl-step--soon { background: var(--tt-surface-2); }
.tl-step__tagrow { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 16px; min-height: 20px; }
.tl-step__pillar { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--tt-ink-4); }
.tl-step__pillar.is-live { color: var(--tt-primary); }
.tl-step__num { font-size: 2.2rem; font-weight: 200; color: var(--tt-line); letter-spacing: -0.02em; }
.tl-step--live .tl-step__num { color: var(--tt-ink-1); }
.tl-step__name { font-size: 1.02rem; font-weight: 500; margin: 8px 0 8px; }
.tl-step__desc { font-size: 0.84rem; line-height: 1.5; color: var(--tt-ink-3); }

/* ---------- Membership: grows with you ---------- */
.tl-grows { border: 1px solid var(--tt-line); background: #fff; position: relative; }
.tl-grows__head, .tl-grows__row { display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); }
.tl-grows__head { border-bottom: 1px solid var(--tt-line); background: var(--tt-surface-2); }
.tl-grows__corner {
  padding: 16px 20px; display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--tt-ink-3);
}
.tl-grows__corner .lucide, .tl-grows__corner svg { width: 14px; height: 14px; color: var(--tt-primary); }
.tl-grows__stage {
  padding: 14px 12px 16px; text-align: center; border-left: 1px solid var(--tt-line-soft);
  position: relative; display: flex; flex-direction: column; gap: 4px; justify-content: flex-start;
}
.tl-grows__stage-name { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--tt-ink-2); }
.tl-grows__stage.is-top .tl-grows__stage-name { color: var(--tt-primary); }
.tl-grows__stage-sub { font-size: 10px; color: var(--tt-ink-4); line-height: 1.3; }
.tl-grows__stage::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--tt-line);
}
.tl-grows__stage:nth-child(2)::after { background: color-mix(in srgb, var(--tt-primary) 25%, var(--tt-line)); }
.tl-grows__stage:nth-child(3)::after { background: color-mix(in srgb, var(--tt-primary) 55%, var(--tt-line)); }
.tl-grows__stage:nth-child(4)::after { background: color-mix(in srgb, var(--tt-primary) 80%, var(--tt-line)); }
.tl-grows__stage:nth-child(5)::after { background: var(--tt-primary); }
.tl-grows__row { border-top: 1px solid var(--tt-line-soft); }
.tl-grows__row:first-of-type { border-top: none; }
.tl-grows__feat { padding: 11px 20px; display: flex; align-items: center; gap: 12px; }
.tl-grows__feat-icon { color: var(--tt-ink-1); display: inline-flex; }
.tl-grows__feat-icon .lucide, .tl-grows__feat-icon svg { width: 17px; height: 17px; stroke-width: 1.5; }
.tl-grows__feat-name { font-size: 13.5px; color: var(--tt-ink-1); font-weight: 500; display: block; }
.tl-grows__feat-sub { font-size: 11px; color: var(--tt-ink-4); display: block; margin-top: 1px; }
.tl-grows__cell {
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--tt-line-soft); font-size: 13px;
  font-variant-numeric: tabular-nums; color: var(--tt-ink-1);
}
.tl-grows__cell .lucide, .tl-grows__cell svg { width: 15px; height: 15px; color: var(--tt-primary); }
.tl-grows__cell--off { color: var(--tt-line); }
.tl-grows__cell--val { font-weight: 500; }
.tl-grows__foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; flex-wrap: wrap; }
.tl-grows__note { font-size: 13px; color: var(--tt-ink-3); }

/* DRAFT stamp across the membership table */
.tl-draft {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  font-size: 4.2rem; font-weight: 700; letter-spacing: 0.28em; text-indent: 0.28em;
  text-transform: uppercase; line-height: 1; white-space: nowrap;
  color: rgba(213, 0, 28, 0.13);
  border: 5px solid rgba(213, 0, 28, 0.13); border-radius: 8px;
  padding: 14px 44px; pointer-events: none; user-select: none; z-index: 4;
}

/* ---------- Pricing (legacy — retained, no longer rendered) ---------- */
.tl-prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--tt-line); }
.tl-price { padding: 28px 22px 26px; border-right: 1px solid var(--tt-line); display: flex; flex-direction: column; background: #fff; }
.tl-price:last-child { border-right: none; }
.tl-price--feature { background: #0e1418; color: #fff; }
.tl-price__name { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--tt-ink-3); }
.tl-price--feature .tl-price__name { color: rgba(255,255,255,0.6); }
.tl-price__pop { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--tt-primary); padding: 3px 7px; margin-left: 8px; }
.tl-price__amt { font-size: 2.1rem; font-weight: 200; letter-spacing: -0.02em; margin: 14px 0 2px; }
.tl-price__amt span { font-size: 0.85rem; color: var(--tt-ink-4); font-weight: 400; }
.tl-price--feature .tl-price__amt span { color: rgba(255,255,255,0.5); }
.tl-price__who { font-size: 11.5px; color: var(--tt-ink-4); min-height: 30px; }
.tl-price--feature .tl-price__who { color: rgba(255,255,255,0.55); }
.tl-price__list { list-style: none; padding: 0; margin: 18px 0 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.tl-price__list li { font-size: 12.5px; color: var(--tt-ink-2); display: grid; grid-template-columns: 15px 1fr; gap: 8px; align-items: start; line-height: 1.4; }
.tl-price--feature .tl-price__list li { color: rgba(255,255,255,0.82); }
.tl-price__list .lucide, .tl-price__list svg { width: 13px; height: 13px; color: var(--tt-primary); margin-top: 2px; }
.tl-price--feature .tl-price__list .lucide, .tl-price--feature .tl-price__list svg { color: #d5001c; }
.tl-price .hr-btn { width: 100%; justify-content: center; }
.tl-price--feature .hr-btn--ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.tl-price--feature .hr-btn--ghost:hover { background: #fff; color: #0e1418; }

/* ---------- Personas ---------- */
.tl-personas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tl-persona { border-top: 2px solid var(--tt-ink-1); padding: 18px 2px 0; }
.tl-persona__name { font-size: 1.05rem; font-weight: 500; margin-bottom: 7px; }
.tl-persona__desc { font-size: 0.84rem; line-height: 1.5; color: var(--tt-ink-3); }
.tl-persona__tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--tt-primary); margin-top: 10px; font-weight: 600; }

/* ---------- Closing CTA ---------- */
.tl-cta { text-align: center; padding: 60px 0; }
.tl-cta__title { font-size: 2.6rem; font-weight: 200; letter-spacing: -0.02em; color: #fff; margin: 0 0 10px; }
.tl-cta__title em { font-style: normal; color: #d5001c; }
.tl-cta__body { color: rgba(255,255,255,0.66); font-size: 1rem; margin: 0 auto 30px; max-width: 44ch; }
.tl-cta__row { display: flex; gap: 12px; justify-content: center; }
.tl-cta .hr-btn--primary { background: var(--tt-primary); border-color: var(--tt-primary); }
.tl-cta .hr-btn--primary:hover { background: #fff; color: #0e1418; border-color: #fff; }
.tl-cta .hr-btn--ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.tl-cta .hr-btn--ghost:hover { background: rgba(255,255,255,0.1); }

/* ---------- Footer ---------- */
.tl-footer { background: #0a0e11; color: rgba(255,255,255,0.5); padding: 30px 0; font-size: 12px; }
.tl-footer__inner { max-width: 1140px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; gap: 20px; }
.tl-footer__links { display: flex; gap: 18px; margin-left: auto; }
.tl-footer__links a { color: rgba(255,255,255,0.6); text-decoration: none; cursor: pointer; }
.tl-footer__links a:hover { color: #fff; }
.tl-footer .tl-brand { color: rgba(255,255,255,0.85); }
