
/* Resto-Lution · vanilla CSS · dark theme */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Barlow:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --navy: #0d1117;
  --navy-mid: #152240;
  --navy-light: #1e3260;
  --orange: #e8520a;
  --orange-dark: #c73d08;
  --orange-light: #f07a30;
  --green: #1b5c38;
  --green-light: #226b43;
  --white: #ffffff;
  --off: #f5f6f8;
  --paper: #faf8f4;
  --rule: rgba(255,255,255,0.10);
  --rule-dark: #e8eaed;
  --text: #1a202c;
  --ink-mute: #9aa3b2;
  --ink-soft: #4a5568;
  --display: 'Barlow Condensed', sans-serif;
  --body: 'Barlow', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--body); color: var(--white);
  background: linear-gradient(155deg, var(--navy) 0%, #080c12 100%);
  background-attachment: fixed;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-family: var(--display); font-weight: 700; letter-spacing: 0.02em; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.4rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  font-family: var(--display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--orange); }

/* nav */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,17,23,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--orange);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: 0; color: var(--white); font-family: var(--display); font-weight: 800; font-size: 1.35rem; letter-spacing: 0.045em; line-height: 1; white-space: nowrap; text-decoration: none; }
.nav-logo-mark { font-family: var(--display); font-weight: 800; font-size: 1.35rem; letter-spacing: 0.045em; line-height: 1; }
.nav-logo-mark span { color: var(--orange); }
.nav-logo span { color: var(--orange); display: inline; }
.nav-logo-tag {
  font-family: var(--display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-left: 1px solid rgba(255,255,255,0.18); padding-left: 14px;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--display); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.78);
  padding: 8px 10px; border-radius: 6px; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); background: rgba(232,105,26,0.10); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-hamburger { display: none; }
.nav-mobile { display: none; }
@media (max-width: 760px) { .nav-links, .nav-logo-tag { display: none; } .nav-hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; } .nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; } .nav-mobile.open { display: flex; flex-direction: column; padding: 16px; background: rgba(13,17,23,0.98); border-top: 1px solid rgba(255,255,255,0.08); } .nav-mobile.open a { padding: 12px 0; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); } }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border: 0; border-radius: 999px;
  font-family: var(--display); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  transition: all 0.2s ease; text-decoration: none;
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 8px 22px rgba(232,105,26,0.4);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-remi {
  background: var(--orange); color: #fff; padding: 14px 24px 14px 10px !important;
  box-shadow: 0 12px 30px rgba(232,105,26,0.4);
}
.btn-remi .remi-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.24); display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 1rem;
}

/* hero */
.hero {
  padding: 80px 0 96px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(232,105,26,0.16) 0%, transparent 60%),
              radial-gradient(ellipse at 18% 80%, rgba(27,92,56,0.12) 0%, transparent 60%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.18fr 0.82fr;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.hero h1 .accent { color: var(--orange); }
.hero h1 .block { display: block; }
.hero-lead { color: rgba(255,255,255,0.74); font-size: 1.12rem; max-width: 580px; margin: 1.5rem 0 2rem; }
.hero-lead b { color: #fff; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 20px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.13);
  font-size: 0.82rem; color: rgba(255,255,255,0.78); font-weight: 500;
}
.badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.35); }
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-foot { margin-top: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.hero-foot a { border-bottom: 1px solid rgba(255,255,255,0.35); }

/* quick panel */
.qpanel {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl); padding: 1.8rem;
  backdrop-filter: blur(10px);
}
.qpanel-title {
  font-family: var(--display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.25rem;
}
.qpanel-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; margin-bottom: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; transition: all 0.2s ease; cursor: pointer; color: #fff;
  width: 100%; text-align: left; font-family: var(--body);
}
.qpanel-link:hover {
  background: rgba(232,105,26,0.10); border-color: rgba(232,105,26,0.35);
  transform: translateX(4px);
}
.qpanel-link .ic {
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: grid; place-items: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.qpanel-link .text { flex: 1; }
.qpanel-link .name { font-family: var(--display); font-weight: 700; font-size: 0.96rem; }
.qpanel-link .sub { font-size: 0.78rem; color: rgba(255,255,255,0.52); margin-top: 2px; }
.qpanel-link .arr { color: var(--orange); }
.qpanel-foot {
  display: flex; align-items: center; gap: 12px;
  margin-top: 14px; padding: 12px 14px;
  background: rgba(27,92,56,0.18); border: 1px solid rgba(27,92,56,0.32);
  border-radius: 12px; font-size: 0.86rem;
}
.qpanel-foot b { color: #a8e6c0; font-family: var(--display); }
.qpanel-foot small { color: rgba(255,255,255,0.6); font-size: 0.75rem; display: block; }
.qpanel-foot-av {
  width: 36px; height: 36px; border-radius: 50%; background: var(--green);
  display: grid; place-items: center; flex-shrink: 0;
}

/* section + stat strip */
.section { padding: 80px 0; }
.section.light { background: var(--off); color: var(--text); }
.section.light h2 { color: var(--navy); }
.section.light p { color: var(--ink-soft); }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding: 36px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; gap: 24px; } }
.stat { text-align: center; }
.stat .num {
  font-family: var(--display); font-weight: 800; font-size: 2.4rem;
  color: var(--orange); line-height: 1; margin-bottom: 4px;
}
.stat .lbl {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.12em;
}

/* generic dark card */
.card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl); padding: 1.75rem 2rem;
}
.card.light { background: #fff; color: var(--text); border-color: var(--rule-dark); }
.card.light h3 { color: var(--navy); }

/* footer */
.site-footer {
  background: #060d1f;
  padding: 56px 0 24px;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid var(--rule);
  margin-top: 64px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.footer-brand-mark { font-family: var(--display); font-size: 1.5rem; font-weight: 800; letter-spacing: 0.04em; color: #fff; display: block; margin-bottom: 6px; }
.footer-brand-mark span { color: var(--orange); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin: 1rem 0; color: rgba(255,255,255,0.55); }
.footer-col h4 {
  font-family: var(--display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.62); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* floating dock (REMI button) */
.dock {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
}
.dock-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green); border: 0; cursor: pointer;
  box-shadow: 0 14px 38px rgba(27,92,56,0.45);
  display: grid; place-items: center;
}
.dock-btn:hover { transform: scale(1.06); }

/* chat modal */
.chat-veil {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(13,17,23,0.85); backdrop-filter: blur(8px);
  place-items: center; padding: 24px;
}
.chat-veil.open { display: grid; }
.chat-modal {
  width: min(720px, 100%); height: min(720px, 92vh);
  background: var(--off); border-radius: var(--radius-xl);
  display: flex; flex-direction: column;
  overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  border-top: 4px solid var(--orange); color: var(--text);
}
.chat-hd {
  background: #fff; padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--rule-dark);
  display: flex; align-items: center; justify-content: space-between;
}
.chat-hd-l { display: flex; align-items: center; gap: 12px; }
.chat-hd .nm { font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--navy); }
.chat-hd .st { font-size: 0.74rem; color: var(--ink-mute); }
.chat-x { background: transparent; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink-mute); padding: 4px 10px; }
.chat-body { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 14px; }
.bubble { max-width: 80%; padding: 12px 16px; border-radius: 18px; line-height: 1.55; font-size: 0.96rem; }
.bubble.ai { background: #fff; color: var(--text); border-bottom-left-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.bubble.me { background: var(--navy); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.bubble .meta { font-family: var(--display); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.chat-input-row { padding: 12px 1rem 1rem; border-top: 1px solid var(--rule-dark); background: #fff; display: flex; gap: 10px; }
.chat-input-row input {
  flex: 1; padding: 12px 14px; border: 1.5px solid var(--rule-dark);
  border-radius: 12px; font: inherit; font-size: 0.95rem; outline: none; color: var(--text);
  background: var(--off);
}
.chat-input-row input:focus { border-color: var(--orange); background: #fff; }
.chat-send {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: #fff; border: 0;
  display: grid; place-items: center; cursor: pointer;
}
.chat-disc { font-size: 0.72rem; color: var(--ink-mute); text-align: center; padding: 0 1rem 0.75rem; font-family: var(--display); letter-spacing: 0.08em; }

/* forms */
.form-card { background: #fff; color: var(--text); border-radius: var(--radius-xl); padding: 2rem; box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.form-card h2 { color: var(--navy); margin-bottom: 0.5rem; }
.form-card .sub { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 1.5rem; line-height: 1.55; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-family: var(--display); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); }
.field input, .field select, .field textarea {
  padding: 12px 14px; border: 1.5px solid var(--rule-dark); border-radius: 10px;
  font: inherit; font-size: 0.96rem; color: var(--text); outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); }
.field textarea { min-height: 96px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

/* dashboard layout (admin + partner) */
.dash-shell { min-height: 100vh; display: grid; grid-template-columns: 260px 1fr; }
@media (max-width: 980px) { .dash-shell { grid-template-columns: 1fr; } .dash-side { display: none; } }
.dash-side {
  background: #060d1f; color: rgba(255,255,255,0.85);
  padding: 1.5rem 0.75rem; height: 100vh; position: sticky; top: 0;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--rule);
}
.dash-side .brand {
  padding: 0 0.75rem 1.25rem; display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--rule);
}
.dash-side .brand .mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--orange); display: grid; place-items: center;
  color: #fff; font-family: var(--display); font-weight: 800; font-size: 1rem;
}
.dash-side .brand .name { font-family: var(--display); font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: 0.04em; }
.dash-side .brand .name small { display: block; font-family: var(--body); font-size: 0.66rem; color: rgba(255,255,255,0.5); letter-spacing: 0.16em; text-transform: uppercase; margin-top: 2px; }
.dash-nav { display: flex; flex-direction: column; gap: 2px; padding: 1rem 0; flex: 1; overflow-y: auto; }
.dash-nav a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.72);
}
.dash-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.dash-nav a.active { background: rgba(232,105,26,0.16); color: #fff; border-left: 3px solid var(--orange); padding-left: 9px; }
.dash-nav a .ic { font-size: 1.05rem; width: 22px; text-align: center; }
.dash-nav a .pill { margin-left: auto; background: var(--orange); color: #fff; font-family: var(--display); font-size: 0.7rem; font-weight: 800; padding: 2px 7px; border-radius: 10px; }
.dash-nav h5 { font-family: var(--display); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); padding: 14px 12px 6px; }
.dash-user { padding: 12px; border-top: 1px solid var(--rule); display: flex; align-items: center; gap: 10px; }
.dash-user .av { width: 36px; height: 36px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 0.9rem; }
.dash-user .nm { font-family: var(--display); font-size: 0.94rem; color: #fff; font-weight: 700; }
.dash-user .rl { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.dash-main { background: var(--off); color: var(--text); padding: 0; min-height: 100vh; display: flex; flex-direction: column; }
.dash-hd {
  background: #fff; border-bottom: 1px solid var(--rule-dark);
  padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.dash-hd h1 { font-family: var(--display); font-size: 1.75rem; font-weight: 700; color: var(--navy); letter-spacing: 0.01em; line-height: 1; margin: 0; }
.dash-hd .sub { font-size: 0.86rem; color: var(--ink-soft); margin-top: 4px; }
.dash-body { padding: 1.5rem 2rem 3rem; flex: 1; }
@media (max-width: 720px) { .dash-hd, .dash-body { padding-left: 1.25rem; padding-right: 1.25rem; } }

.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
@media (max-width: 1100px) { .dash-stats { grid-template-columns: 1fr 1fr; } }
.dstat { background: #fff; border: 1px solid var(--rule-dark); border-radius: 14px; padding: 1.1rem 1.25rem; }
.dstat .lbl { font-family: var(--display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.dstat .val { font-family: var(--display); font-size: 1.9rem; font-weight: 800; color: var(--navy); line-height: 1; }
.dstat .val.orange { color: var(--orange); }
.dstat .val.green { color: var(--green); }
.dstat .delta { font-size: 0.78rem; color: var(--green); margin-top: 4px; font-weight: 600; }

/* table-ish lead inbox */
.lead-list { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--rule-dark); overflow: hidden; }
.lead-row {
  display: grid; grid-template-columns: 36px 1fr 1.2fr 110px 90px;
  gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--rule-dark);
  align-items: center; cursor: pointer; transition: background 0.15s;
}
.lead-row:last-child { border-bottom: 0; }
.lead-row:hover { background: var(--off); }
.lead-row .ic { width: 36px; height: 36px; border-radius: 8px; background: var(--off); display: grid; place-items: center; font-size: 1.1rem; }
.lead-row .nm { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--navy); }
.lead-row .desc { font-size: 0.86rem; color: var(--ink-soft); margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lead-row .when { font-family: var(--mono); font-size: 0.74rem; color: var(--ink-mute); }
.status-pill {
  display: inline-block; font-family: var(--display); font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: 10px;
}
.s-new { background: rgba(232,105,26,0.14); color: var(--orange-dark); }
.s-cont { background: rgba(13,17,23,0.10); color: var(--navy); }
.s-prog { background: rgba(74,144,226,0.14); color: #2c7fcb; }
.s-quoted { background: #f7f0e2; color: #8a6a17; }
.s-won { background: rgba(27,92,56,0.14); color: var(--green); }

/* status timeline (lead-status page) */
.timeline { display: flex; flex-direction: column; padding: 1rem 0; }
.tl-step { display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--rule-dark); position: relative; align-items: flex-start; }
.tl-step:last-child { border-bottom: 0; }
.tl-step .dot-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }
.tl-step .dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--rule-dark); color: #fff;
  display: grid; place-items: center; font-family: var(--display); font-weight: 800;
}
.tl-step.done .dot { background: var(--green); }
.tl-step.current .dot { background: var(--orange); box-shadow: 0 0 0 6px rgba(232,105,26,0.22); animation: pulse 2s infinite; }
.tl-step:not(:last-child) .dot-wrap::after {
  content: ''; position: absolute; top: 36px; left: 50%; transform: translateX(-50%);
  width: 2px; height: calc(100% + 14px); background: var(--rule-dark);
}
.tl-step.done:not(:last-child) .dot-wrap::after { background: var(--green); }
.tl-step h3 { font-size: 1.15rem; color: var(--navy); margin: 4px 0 4px; }
.tl-step.future h3 { color: var(--ink-mute); }
.tl-step .desc { font-size: 0.94rem; color: var(--ink-soft); line-height: 1.55; }
.tl-step.future .desc { color: var(--ink-mute); }
.tl-step .when { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-mute); padding-top: 6px; }
.tl-step.current .when { color: var(--orange); }

/* utility */
.text-center { text-align: center; }
.bg-light { background: var(--off); color: var(--text); padding: 2rem; border-radius: var(--radius-xl); }

/* private banner */
.rl-private-banner {
  position: sticky; top: 0; z-index: 999;
  background: #2a0e0e; color: #ffb4b4; padding: 6px 16px;
  font-family: var(--display); font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; text-align: center;
  border-bottom: 1px solid #b8553c;
}
