/* TalenTeam Walkthroughs — shared design system
 * 2025 Brand: TT Orange #F6851E (canonical), Poppins only.
 */

:root {
  --tt-orange: #F6851E;
  --tt-orange-warm: #F07233;
  --tt-dark: #2F3540;
  --tt-navy: #0E2841;
  --tt-text: #3B3838;
  --tt-white: #FFFFFF;
  --tt-grey-light: #E8E8E8;
  --tt-accent-pink: #BD025F;
  --tt-accent-lavender: #BDB5F2;

  --tt-ink-soft: #5b5957;
  --tt-ink-mute: #847f7c;
  --tt-line: #ececec;
  --tt-line-strong: #d8d4d1;
  --tt-bg-soft: #fafaf7;

  /* Semantic — kept muted so orange stays dominant */
  --success: #2faf64;
  --warn: #b76904;
  --danger: #c0263f;

  --shadow-sm: 0 1px 2px rgba(47, 53, 64, 0.06);
  --shadow: 0 8px 28px rgba(47, 53, 64, 0.08);
  --shadow-lg: 0 22px 56px rgba(47, 53, 64, 0.14);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --max: 1240px;

  --font: "Poppins", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--tt-white);
  color: var(--tt-text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(900px 600px at 92% -120px, rgba(246, 133, 30, 0.10), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(240, 114, 51, 0.08), transparent 60%),
    var(--tt-white);
}

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--tt-text);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { color: var(--tt-orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  left: -200px;
  top: 0;
  background: var(--tt-orange);
  color: var(--tt-white);
  padding: 8px 14px;
  z-index: 10;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 3px solid var(--tt-orange);
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--tt-text);
}
.brand-logo { height: 40px; width: auto; display: block; }
.brand-divider { width: 1px; height: 28px; background: var(--tt-line-strong); }
.brand-product {
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand-product strong { font-weight: 700; font-size: 15px; color: var(--tt-text); }
.brand-product em {
  font-style: normal; font-size: 9px; color: var(--tt-ink-mute);
  letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px;
}

.stepper { flex: 1; display: flex; justify-content: center; }
.stepper ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 6px; align-items: center;
}
.stepper li { display: flex; align-items: center; gap: 8px; }
.step-dot {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: var(--radius-pill);
  background: var(--tt-white);
  color: var(--tt-ink-mute);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  border: 1.5px solid var(--tt-line);
  cursor: pointer;
  transition: all .18s ease;
  padding: 0;
}
.step-dot:hover { border-color: var(--tt-orange); color: var(--tt-text); }
.step-dot[aria-current="step"] {
  background: var(--tt-orange);
  color: var(--tt-white);
  border-color: var(--tt-orange);
  box-shadow: 0 6px 16px rgba(246, 133, 30, 0.32);
  transform: scale(1.08);
}
.step-dot[data-state="done"] {
  background: var(--tt-orange-warm);
  color: var(--tt-white);
  border-color: var(--tt-orange-warm);
}
.step-connector {
  width: 14px; height: 2px;
  background: var(--tt-line);
  border-radius: 2px;
}

.topbar-actions { display: flex; gap: 8px; align-items: center; }

.ghost-btn, .primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.ghost-btn {
  background: var(--tt-white);
  color: var(--tt-text);
  border-color: var(--tt-line-strong);
}
.ghost-btn:hover { background: var(--tt-bg-soft); border-color: var(--tt-orange); color: var(--tt-orange); text-decoration: none; }
.ghost-btn:disabled { opacity: .4; cursor: not-allowed; }
.primary-btn {
  background: var(--tt-orange);
  color: var(--tt-white);
  box-shadow: 0 8px 20px rgba(246, 133, 30, 0.34);
}
.primary-btn:hover {
  background: var(--tt-orange-warm);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(240, 114, 51, 0.40);
  color: var(--tt-white);
  text-decoration: none;
}
.primary-btn:active { transform: translateY(0); }

.progress-rail {
  height: 3px;
  background: var(--tt-line);
  position: relative;
  overflow: hidden;
}
.progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--tt-orange), var(--tt-orange-warm));
  border-radius: 0 3px 3px 0;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}

/* ---------- Stage ---------- */
.stage {
  flex: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 24px 28px;
  width: 100%;
  display: flex;
  flex-direction: column;
  /* Centre the step vertically when there's leftover room on tall screens.
   * `safe center` falls back to flex-start if content is taller than the
   * stage, so it never gets clipped above the scroll. */
  justify-content: safe center;
}

.step {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 36px;
  align-items: center;
  width: 100%;
  animation: fadeIn .4s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step.cover, .step.outro {
  grid-template-columns: minmax(0, 1fr);
  text-align: center;
  padding: 8px 0;
}
.step.cover .step-copy, .step.outro .step-copy { max-width: 760px; margin: 0 auto; }
.step.cover .step-visual, .step.outro .step-visual {
  margin: 18px auto 0;
  width: 100%;
  max-width: 880px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tt-orange);
  background: rgba(246, 133, 30, 0.10);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.eyebrow .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--tt-orange); }

.step h1 {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--tt-text);
}
.step h1 .accent {
  color: var(--tt-orange);
  font-style: italic;
}
.step p.lede {
  font-size: 14px;
  color: var(--tt-ink-soft);
  margin: 0 0 12px;
  line-height: 1.45;
}

.bullets {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 6px;
}
.bullets li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px;
  color: var(--tt-text);
  line-height: 1.4;
}
.bullets svg { flex-shrink: 0; margin-top: 2px; color: var(--tt-orange); }

.persona-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.chip {
  font-size: 11px;
  font-weight: 700;
  color: var(--tt-text);
  background: var(--tt-grey-light);
  border: none;
  border-radius: var(--radius-pill);
  padding: 5px 11px;
}
.chip.brand { color: var(--tt-white); background: var(--tt-orange); }
.chip.accent { color: var(--tt-orange); background: rgba(246, 133, 30, 0.14); }
.chip.dark { color: var(--tt-white); background: var(--tt-dark); }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: inherit; }
.step.cover .cta-row, .step.outro .cta-row { justify-content: center; }

/* ---------- Mockups ---------- */
.step-visual { position: relative; }

.mock {
  background: var(--tt-white);
  border: 1px solid var(--tt-line);
  border-top: 3px solid var(--tt-orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.mock-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 2px 2px 8px;
  border-bottom: 1px solid var(--tt-line);
  margin-bottom: 10px;
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots span { width: 8px; height: 8px; border-radius: 999px; background: var(--tt-line-strong); }
.mock-dots span:nth-child(1) { background: var(--tt-orange); }
.mock-dots span:nth-child(2) { background: var(--tt-orange-warm); }
.mock-dots span:nth-child(3) { background: var(--tt-grey-light); }
.mock-url {
  flex: 1;
  background: var(--tt-bg-soft);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 11px;
  color: var(--tt-ink-mute);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.mock-body { display: grid; gap: 10px; }
.mock-card {
  background: var(--tt-white);
  border: 1px solid var(--tt-line);
  border-left: 3px solid var(--tt-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
}
.mock-card h4 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--tt-ink-mute);
  margin: 0 0 8px;
  font-weight: 700;
}

/* Table */
.mock-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.mock-table th, .mock-table td {
  text-align: left;
  padding: 7px 10px;
  border-bottom: 1px solid var(--tt-line);
}
.mock-table th {
  font-size: 11px;
  font-weight: 700;
  color: var(--tt-ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--tt-bg-soft);
}
.mock-table tr:last-child td { border-bottom: none; }
.mock-table td.kpi { font-weight: 600; color: var(--tt-text); }

/* Pills */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.pill.orange { color: var(--tt-orange); background: rgba(246, 133, 30, 0.14); }
.pill.green  { color: var(--success);  background: rgba(47, 175, 100, 0.14); }
.pill.amber  { color: var(--warn);     background: rgba(183, 105, 4, 0.14); }
.pill.red    { color: var(--danger);   background: rgba(192, 38, 63, 0.12); }
.pill.grey   { color: var(--tt-ink-mute); background: var(--tt-grey-light); }
.pill.dark   { color: var(--tt-white); background: var(--tt-dark); }
.pill .dot   { width: 6px; height: 6px; border-radius: 999px; background: currentColor; }

/* KPI grid */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kpi-tile {
  background: var(--tt-white);
  border: 1px solid var(--tt-line);
  border-top: 2px solid var(--tt-orange);
  border-radius: var(--radius);
  padding: 10px 12px;
  display: flex; flex-direction: column;
  gap: 2px;
}
.kpi-tile .label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--tt-ink-mute);
  font-weight: 700;
}
.kpi-tile .value {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--tt-text);
}
.kpi-tile .delta { font-size: 10px; font-weight: 700; }
.kpi-tile .delta.up { color: var(--success); }
.kpi-tile .delta.down { color: var(--danger); }

/* Rating pills */
.rating-row { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.rating-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  border: 1.5px solid var(--tt-line);
  background: var(--tt-white);
  color: var(--tt-ink-soft);
}
.rating-pill.selected.green  { background: rgba(47, 175, 100, .14); color: var(--success); border-color: rgba(47, 175, 100, .35); }
.rating-pill.selected.red    { background: rgba(192, 38, 63, .12);  color: var(--danger);  border-color: rgba(192, 38, 63, .35); }
.rating-pill.selected.orange { background: rgba(246, 133, 30, .14); color: var(--tt-orange); border-color: rgba(246, 133, 30, .35); }

/* Notif list */
.notif-list { display: flex; flex-direction: column; gap: 6px; }
.notif {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--tt-bg-soft);
  border: 1px solid var(--tt-line);
}
.notif .avatar {
  width: 30px; height: 30px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--tt-white); font-size: 11px;
  background: var(--tt-orange);
}
.notif .meta { font-size: 10px; color: var(--tt-ink-mute); }
.notif .body { font-size: 12px; color: var(--tt-text); }
.notif .body strong { font-weight: 700; }

/* Chart */
.chart { width: 100%; height: 100px; display: block; }

/* Sources stack (SkillStackIQ) */
.sources {
  display: grid; gap: 6px;
}
.sources .source {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  background: var(--tt-bg-soft);
  border: 1px solid var(--tt-line);
}
.sources .source.primary {
  background: rgba(246, 133, 30, 0.08);
  border-color: rgba(246, 133, 30, 0.35);
}
.sources .source .name { font-weight: 700; font-size: 13px; color: var(--tt-text); }
.sources .source .desc { font-size: 12px; color: var(--tt-ink-soft); }

/* Assessment three-layer */
.assess-layers { display: grid; gap: 6px; }
.assess-layer {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--tt-white);
  border: 1px solid var(--tt-line);
  border-left: 3px solid var(--tt-orange);
}
.assess-layer .num {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--tt-orange);
  color: var(--tt-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.assess-layer h5 {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tt-text);
}
.assess-layer p {
  margin: 0;
  font-size: 12px;
  color: var(--tt-ink-soft);
  line-height: 1.4;
}

/* JobProfileIQ — profile draft */
.profile {
  display: grid; gap: 4px;
  font-size: 12px;
}
.profile .row { display: grid; grid-template-columns: 130px 1fr; gap: 10px; padding: 4px 0; border-bottom: 1px dashed var(--tt-line); }
.profile .row:last-child { border-bottom: none; }
.profile .row .k { color: var(--tt-ink-mute); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.profile .row .v { color: var(--tt-text); }
.profile .row .v ul { margin: 4px 0 0; padding-left: 18px; }
.profile .row .v li { line-height: 1.5; }

/* ---------- Cover hero (TT orange circle signature) ---------- */
.cover-hero {
  position: relative;
  display: block;
  width: 100%;
  min-height: 260px;
  border-radius: var(--radius-lg);
  background: var(--tt-bg-soft);
  border: 1px solid var(--tt-line);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cover-hero::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  background: var(--tt-orange);
  border-radius: 50%;
  right: -120px; top: -120px;
  z-index: 0;
}
.cover-hero::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: var(--tt-orange-warm);
  opacity: .55;
  border-radius: 50%;
  left: -70px; bottom: -90px;
  z-index: 0;
}
.cover-hero .float {
  position: absolute;
  background: var(--tt-white);
  border: 1px solid var(--tt-line);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--tt-text);
  font-size: 12px;
  display: flex; align-items: center;
  gap: 10px;
  box-shadow: 0 14px 28px rgba(47, 53, 64, 0.14);
  z-index: 2;
  max-width: 260px;
}
.cover-hero .float .badge {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--tt-orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cover-hero .float strong { font-weight: 700; display: block; font-size: 12px; }
.cover-hero .float small {
  color: var(--tt-ink-mute);
  display: block;
  font-size: 10px;
  margin-top: 1px;
}
.cover-hero .float.f1 { top: 22px; left: 24px; animation: floaty 6s ease-in-out infinite; }
.cover-hero .float.f2 { top: 96px; right: 40px; animation: floaty 7.5s ease-in-out -2s infinite; }
.cover-hero .float.f3 { bottom: 24px; left: 22%; animation: floaty 8.5s ease-in-out -1s infinite; }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* TT orange callout */
.tt-callout {
  background: var(--tt-orange);
  color: var(--tt-white);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 8px;
}

/* Outro CTAs */
.outro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.outro-card {
  background: var(--tt-white);
  border: 1px solid var(--tt-line);
  border-top: 3px solid var(--tt-orange);
  border-radius: var(--radius);
  padding: 16px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.outro-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.outro-card .icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--tt-orange);
  display: flex; align-items: center; justify-content: center; color: var(--tt-white);
  margin-bottom: 10px;
}
.outro-card h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--tt-text);
}
.outro-card p {
  margin: 0;
  font-size: 12px;
  color: var(--tt-ink-soft);
  line-height: 1.45;
}

/* ---------- Footer nav ---------- */
.footnav {
  position: sticky;
  bottom: 0;
  background: var(--tt-dark);
  color: var(--tt-grey-light);
  border-top: 3px solid var(--tt-orange);
  z-index: 4;
}
.footnav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center; justify-content: space-between;
  gap: 16px;
}
.footnav .ghost-btn {
  background: transparent;
  color: var(--tt-grey-light);
  border-color: rgba(255,255,255,0.18);
}
.footnav .ghost-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--tt-orange);
  color: var(--tt-orange);
}
.step-count {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.step-count strong { color: var(--tt-orange); font-weight: 700; }

.brand-tagline {
  text-align: center;
  font-size: 11px;
  color: var(--tt-ink-mute);
  padding: 18px 24px 12px;
  border-top: 1px solid var(--tt-line);
}
.brand-tagline a { color: var(--tt-orange); font-weight: 700; }
.brand-tagline em { color: var(--tt-orange); font-weight: 700; font-style: italic; }

/* ============================================================
   LANDING PAGE
   ============================================================ */

.landing {
  flex: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 96px;
  width: 100%;
}

.landing-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.landing-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
  font-weight: 700;
}
.landing-hero h1 .accent { color: var(--tt-orange); font-style: italic; }
.landing-hero p.lede {
  font-size: 19px;
  color: var(--tt-ink-soft);
  line-height: 1.6;
  margin: 0 0 26px;
}
.landing-hero .cta-row { justify-content: flex-start; }

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 14px;
  color: var(--tt-ink-mute);
  margin: 0 0 22px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 56px;
}
.journey-card {
  background: var(--tt-white);
  border: 1px solid var(--tt-line);
  border-top: 4px solid var(--tt-orange);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
}
.journey-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.journey-card .badge-row {
  display: flex; gap: 6px; align-items: center;
  font-size: 11px;
  color: var(--tt-ink-mute);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.journey-card .badge-row .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--tt-ink-mute);
}
.journey-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--tt-text);
  letter-spacing: -0.01em;
}
.journey-card .blurb {
  font-size: 14px;
  color: var(--tt-ink-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.journey-card .meta-row {
  display: flex;
  gap: 8px; align-items: center;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--tt-line);
  font-size: 12px;
  color: var(--tt-ink-mute);
  font-weight: 600;
}
.journey-card .meta-row .start {
  margin-left: auto;
  color: var(--tt-orange);
  display: inline-flex; align-items: center; gap: 4px;
}
.journey-card .status-pill {
  position: absolute;
  top: 16px; right: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .step { grid-template-columns: 1fr; gap: 32px; }
  .stepper { display: none; }
  .topbar-inner { gap: 12px; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .outro-cards { grid-template-columns: 1fr; }
  .cover-hero { min-height: 280px; }
  .cover-hero::before { width: 320px; height: 320px; right: -110px; top: -110px; }
  .cover-hero::after  { width: 180px; height: 180px; }
  .brand-divider, .brand-product { display: none; }
  .landing-hero { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .stage, .landing { padding: 32px 16px 80px; }
  .topbar-inner { padding: 12px 16px; }
  .footnav-inner { padding: 12px 16px; }
  .brand-logo { height: 52px; }
}

/* ---------- Tall-screen scale-up ----------
 * Base sizes are tuned for a 1440x900 viewport. On taller screens the
 * page would otherwise sit in the top half with empty bands above and
 * below. Scale up typography, spacing and visuals to occupy the room. */

@media (min-height: 950px) {
  .stage { padding: 32px 24px 36px; }
  .step { gap: 44px; }
  .step h1 { font-size: clamp(26px, 2.6vw, 40px); margin: 0 0 12px; }
  .step p.lede { font-size: 15px; line-height: 1.5; margin: 0 0 16px; }
  .eyebrow { margin-bottom: 14px; padding: 5px 12px; font-size: 11px; }
  .persona-chips { margin-bottom: 14px; }
  .bullets { gap: 8px; margin: 0 0 14px; }
  .bullets li { font-size: 14px; line-height: 1.5; }
  .mock-card { padding: 14px 16px; }
  .mock-card h4 { margin: 0 0 10px; font-size: 11px; }
  .mock-table th, .mock-table td { padding: 8px 11px; font-size: 12.5px; }
  .kpi-tile { padding: 12px 14px; }
  .kpi-tile .value { font-size: 24px; }
  .chart { height: 120px; }
  .cover-hero { min-height: 320px; }
  .cover-hero::before { width: 400px; height: 400px; right: -140px; top: -140px; }
  .cover-hero::after  { width: 230px; height: 230px; left: -80px; bottom: -100px; }
  .ghost-btn, .primary-btn { font-size: 14px; padding: 9px 18px; }
}

@media (min-height: 1100px) {
  .stage { padding: 40px 24px 44px; }
  .step { gap: 56px; }
  .step h1 { font-size: clamp(30px, 2.8vw, 46px); margin: 0 0 16px; line-height: 1.08; }
  .step p.lede { font-size: 16px; line-height: 1.55; margin: 0 0 20px; }
  .eyebrow { margin-bottom: 18px; padding: 6px 13px; font-size: 11px; }
  .persona-chips { margin-bottom: 18px; }
  .bullets { gap: 10px; margin: 0 0 18px; }
  .bullets li { font-size: 15px; line-height: 1.55; }
  .mock-card { padding: 16px 18px; }
  .mock-card h4 { margin: 0 0 12px; font-size: 12px; }
  .mock-table th, .mock-table td { padding: 10px 12px; font-size: 13px; }
  .kpi-tile { padding: 14px 16px; }
  .kpi-tile .value { font-size: 26px; }
  .chart { height: 140px; }
  .cover-hero { min-height: 380px; }
  .cover-hero::before { width: 460px; height: 460px; right: -160px; top: -160px; }
  .cover-hero::after  { width: 260px; height: 260px; left: -90px; bottom: -120px; }
  .brand-logo { height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation: none !important; transition: none !important; }
}
