/* ============================================================
   Nicholas Babb · nickbabb.com
   Premium dark theme · AI motion
   ============================================================ */

:root {
  --bg: #08090d;
  --bg-soft: #0d0f16;
  --panel: #11131c;
  --panel-2: #161927;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f3f5fb;
  --muted: #9aa3b8;
  --muted-2: #6b7488;
  --cyan: #22d3ee;
  --violet: #a78bfa;
  --blue: #3b82f6;
  --grad: linear-gradient(100deg, #22d3ee 0%, #6aa6ff 45%, #a78bfa 100%);
  --maxw: 1120px;
  --r: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  letter-spacing: -0.011em;
}

h1, h2, h3 { font-family: "Space Grotesk", "Inter", sans-serif; line-height: 1.05; letter-spacing: -0.03em; font-weight: 600; }

a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }

em { font-style: normal; color: var(--cyan); }

/* ---------- Aurora backdrop ---------- */
.aurora { position: fixed; inset: 0; z-index: -2; overflow: hidden; background: radial-gradient(120% 120% at 50% -10%, #11141f 0%, #08090d 55%); }
.aurora__blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; will-change: transform; }
.aurora__blob--1 { width: 52vw; height: 52vw; left: -10vw; top: -12vw; background: radial-gradient(circle, rgba(34,211,238,0.55), transparent 65%); animation: float1 22s var(--ease) infinite alternate; }
.aurora__blob--2 { width: 46vw; height: 46vw; right: -8vw; top: 8vh; background: radial-gradient(circle, rgba(167,139,250,0.5), transparent 65%); animation: float2 26s var(--ease) infinite alternate; }
.aurora__blob--3 { width: 40vw; height: 40vw; left: 30vw; top: 60vh; background: radial-gradient(circle, rgba(59,130,246,0.42), transparent 65%); animation: float3 30s var(--ease) infinite alternate; }
.grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 75%); opacity: 0.5; }

@keyframes float1 { to { transform: translate(8vw, 8vh) scale(1.15); } }
@keyframes float2 { to { transform: translate(-7vw, 5vh) scale(1.1); } }
@keyframes float3 { to { transform: translate(4vw, -8vh) scale(1.2); } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  max-width: var(--maxw); margin-inline: auto;
  padding: 18px 28px;
  transition: padding 0.4s var(--ease);
}
.nav.scrolled {
  top: 10px; padding: 12px 22px;
  left: 16px; right: 16px;
  background: rgba(12, 14, 20, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.nav__brand { margin-right: auto; }
.nav__mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  font-family: "Space Grotesk"; font-weight: 700; font-size: 16px; letter-spacing: -0.04em;
  border: 1px solid var(--line-strong); border-radius: 11px;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), transparent);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.nav__brand:hover .nav__mark { transform: translateY(-2px); border-color: var(--cyan); color: var(--cyan); }
.nav__links { display: flex; gap: 26px; }
.nav__links a { font-size: 14px; color: var(--muted); transition: color 0.2s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1.5px; background: var(--grad); transition: width 0.3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; gap: 10px; margin-left: 8px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(8,9,13,0.96); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 40px;
  transform: translateY(-100%); transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: "Space Grotesk"; font-size: 30px; font-weight: 600; padding: 8px 0; border-bottom: 1px solid var(--line); }
.mobile-menu__resume { color: var(--cyan) !important; border-bottom: none !important; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: inherit; font-size: 14px; font-weight: 600; padding: 11px 20px; border: none; border-radius: 12px; appearance: none; -webkit-appearance: none; cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s; white-space: nowrap; }
.btn:focus { outline: none; }
.btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.btn--lg { padding: 15px 28px; font-size: 15.5px; }
.btn--solid { background: var(--grad); color: #061018; }
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,211,238,0.35); }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--text); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 140px 0 132px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.02); width: fit-content; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(34,211,238,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,211,238,0.55); } 70% { box-shadow: 0 0 0 12px rgba(34,211,238,0); } 100% { box-shadow: 0 0 0 0 rgba(34,211,238,0); } }

.hero__title { font-size: clamp(2.6rem, 7vw, 5.4rem); margin: 26px 0 0; max-width: 16ch; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__lead { margin-top: 28px; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--muted); max-width: 60ch; }
.hero__lead strong { color: var(--text); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 64px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--line); }
.stat { background: var(--bg-soft); padding: 26px 22px; }
.stat__num { display: block; font-family: "Space Grotesk"; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { display: block; font-size: 13.5px; color: var(--muted); margin-top: 6px; }

.scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted-2); }
.scroll-hint::after { content: ""; display: block; width: 1px; height: 30px; margin: 8px auto 0; background: linear-gradient(var(--muted-2), transparent); animation: scrolldot 2s infinite; }
@keyframes scrolldot { 0%,100% { opacity: 0.2; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Sections ---------- */
.section { padding: 110px 0; position: relative; }
.section__head { max-width: 760px; margin-bottom: 56px; }
.kicker { display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 18px; }
.section__title { font-size: clamp(1.9rem, 4vw, 3.1rem); }
.section__title em { color: var(--violet); }
.section__sub { margin-top: 22px; font-size: 1.12rem; color: var(--muted); max-width: 62ch; text-wrap: pretty; }

/* ---------- Enablement ---------- */
.enablement-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.section__head--inline { max-width: none; margin-bottom: 26px; }
.section__head--inline .kicker { margin-bottom: 14px; }
.section__head--inline .section__title { font-size: clamp(1.7rem, 2.6vw, 2.45rem); }
.enablement-copy p { color: var(--muted); margin-bottom: 18px; font-size: 1.06rem; }
.enablement-copy strong { color: var(--text); }
.enablement-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; order: -1; }
.ecard { padding: 26px; border: 1px solid var(--line); border-radius: var(--r); background: linear-gradient(165deg, var(--panel), var(--bg-soft)); transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; position: relative; overflow: hidden; }
.ecard::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 80% at 100% 0%, rgba(34,211,238,0.12), transparent 60%); opacity: 0; transition: opacity 0.4s; }
.ecard:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 18px 50px rgba(0,0,0,0.5); }
.ecard:hover::before { opacity: 1; }
.ecard__icon { font-size: 22px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line-strong); margin-bottom: 18px; color: var(--cyan); background: rgba(34,211,238,0.06); }
.ecard h3 { font-size: 1.18rem; margin-bottom: 10px; }
.ecard p { font-size: 0.96rem; color: var(--muted); }

/* ---------- Playbook ---------- */
.section--playbook { background: linear-gradient(180deg, transparent, rgba(13,15,22,0.55), transparent); }
.playbook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pcard { position: relative; padding: 28px 26px; border: 1px solid var(--line); border-radius: var(--r); background: linear-gradient(165deg, var(--panel), var(--bg-soft)); transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; overflow: hidden; }
.pcard:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 18px 50px rgba(0,0,0,0.5); }
.pcard__badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.pcard__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.pcard h3 { font-size: 1.18rem; margin-bottom: 10px; }
.pcard p { font-size: 0.96rem; color: var(--muted); }
.pcard--feature { border-color: color-mix(in srgb, var(--cyan) 45%, var(--line-strong)); background: radial-gradient(130% 130% at 0% 0%, rgba(34,211,238,0.12), var(--panel) 58%); }
.pcard--feature .pcard__badge { color: #7fe7f5; }
.pcard__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.pcard__tags span { font-size: 12px; color: var(--muted); padding: 4px 11px; border: 1px solid var(--line); border-radius: 7px; background: rgba(255,255,255,0.02); }

.playbook-callout { margin-top: 22px; padding: 32px 36px; border: 1px solid color-mix(in srgb, var(--cyan) 32%, var(--line-strong)); border-radius: var(--r); background: radial-gradient(130% 160% at 100% 0%, rgba(167,139,250,0.12), rgba(34,211,238,0.06) 48%, var(--bg-soft) 82%); display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.playbook-callout h3 { font-size: clamp(1.35rem, 2.3vw, 1.8rem); flex: 1 1 380px; line-height: 1.1; }
.playbook-callout p { color: var(--muted); flex: 1 1 340px; font-size: 1.06rem; }
.playbook-callout strong { color: var(--text); }

/* ---------- Work / cases ---------- */
.section--work { background: linear-gradient(180deg, transparent, rgba(13,15,22,0.6), transparent); }
.cases { display: grid; gap: 24px; }
.case { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 0; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--panel); transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s; }
.case:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 50%, var(--line-strong)); box-shadow: 0 26px 70px rgba(0,0,0,0.55); }
.case__visual { position: relative; min-height: 240px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(120% 120% at 30% 20%, color-mix(in srgb, var(--accent) 22%, var(--bg-soft)), var(--bg-soft) 70%); border-right: 1px solid var(--line); }
.case__logo { font-family: "Space Grotesk"; font-weight: 700; font-size: clamp(1.6rem, 2.6vw, 2.3rem); letter-spacing: -0.04em; color: var(--text); z-index: 2; text-shadow: 0 2px 30px color-mix(in srgb, var(--accent) 60%, transparent); }
.case__orbits { position: absolute; inset: 0; }
.case__orbits i { position: absolute; top: 50%; left: 50%; border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); border-radius: 50%; transform: translate(-50%, -50%); animation: spin 16s linear infinite; }
.case__orbits i:nth-child(1) { width: 130px; height: 130px; }
.case__orbits i:nth-child(2) { width: 220px; height: 220px; animation-duration: 26s; animation-direction: reverse; }
.case__orbits i:nth-child(3) { width: 320px; height: 320px; animation-duration: 40s; }
.case__orbits i::before { content: ""; position: absolute; top: -3px; left: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.case__body { padding: 34px 36px; }
.case__tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); padding: 5px 12px; border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); border-radius: 999px; margin-bottom: 16px; }
.case__body h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 14px; }
.case__body > p { color: var(--muted); margin-bottom: 18px; }
.case__points { list-style: none; margin-bottom: 20px; }
.case__points li { position: relative; padding-left: 24px; color: var(--muted); font-size: 0.96rem; margin-bottom: 8px; }
.case__points li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.case__stack { display: flex; flex-wrap: wrap; gap: 8px; }
.case__stack span { font-size: 12.5px; color: var(--muted); padding: 5px 12px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,0.02); }

.work-note { margin-top: 40px; font-size: 1.15rem; color: var(--muted); max-width: 64ch; text-align: center; margin-inline: auto; text-wrap: pretty; }
.work-note em { color: var(--text); font-weight: 600; }

/* ---------- Approach / steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
.step { padding: 28px 22px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-soft); transition: transform 0.4s var(--ease), border-color 0.4s; position: relative; }
.step:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.step__num { font-family: "Space Grotesk"; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--cyan); }
.step h3 { font-size: 1.15rem; margin: 14px 0 8px; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 0; }
.tl-item { display: grid; grid-template-columns: 200px 1fr; gap: 32px; padding: 30px 0; border-top: 1px solid var(--line); transition: padding-left 0.4s var(--ease); }
.tl-item:hover { padding-left: 12px; }
.tl-item:last-child { border-bottom: 1px solid var(--line); }
.tl-when { font-family: "Space Grotesk"; font-weight: 600; color: var(--muted-2); font-size: 0.95rem; padding-top: 4px; }
.tl-what h3 { font-size: 1.35rem; }
.tl-what h3 span { color: var(--muted); font-weight: 500; font-family: "Inter"; }
.tl-what p { color: var(--muted); margin-top: 10px; max-width: 70ch; }

/* ---------- About ---------- */
.section--about { background: linear-gradient(180deg, transparent, rgba(13,15,22,0.5), transparent); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.about-copy p { color: var(--muted); margin-bottom: 18px; font-size: 1.08rem; }
.about-links { display: flex; gap: 18px; margin-top: 26px; }
.about-links a { font-weight: 600; color: var(--text); padding-bottom: 3px; border-bottom: 1.5px solid var(--line-strong); transition: color 0.2s, border-color 0.2s; }
.about-links a:hover { color: var(--cyan); border-color: var(--cyan); }

/* ---------- Contact ---------- */
.section--contact { padding: 130px 0; text-align: center; }
.contact-inner { max-width: 820px; margin-inline: auto; }
.contact__title { font-size: clamp(2rem, 5vw, 3.6rem); margin: 16px 0 0; }
.contact__sub { color: var(--muted); font-size: 1.2rem; margin-top: 22px; }

/* Contact form */
.contact-form { max-width: 620px; margin: 40px auto 0; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; letter-spacing: 0.01em; }
.field label .opt { color: var(--muted-2); font-weight: 400; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--text);
  background: rgba(255,255,255,0.03); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: 13px 15px; transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); background: rgba(34,211,238,0.04);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
#cf-submit { display: flex; width: fit-content; margin: 14px auto 0; }
#cf-submit[disabled] { opacity: 0.6; cursor: not-allowed; }
.form-status { margin-top: 16px; font-size: 14px; min-height: 20px; text-align: center; }
.form-status.ok { color: #34d399; }
.form-status.err { color: #fb7185; }

.contact__links { display: flex; gap: 22px; justify-content: center; margin-top: 36px; }
.contact__links a { font-weight: 600; color: var(--muted); padding-bottom: 3px; border-bottom: 1.5px solid var(--line); transition: color 0.2s, border-color 0.2s; }
.contact__links a:hover { color: var(--cyan); border-color: var(--cyan); }

/* inline code in case studies */
code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 0.88em; padding: 1px 6px; border-radius: 6px; background: rgba(255,255,255,0.06); border: 1px solid var(--line); color: var(--text); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.footer__mark { font-family: "Space Grotesk"; font-weight: 700; border: 1px solid var(--line-strong); width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; }
.footer p { color: var(--muted); font-size: 14px; }
.footer a { color: var(--text); }
.footer a:hover { color: var(--cyan); }
.footer__fine { color: var(--muted-2) !important; font-size: 13px !important; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .enablement-grid, .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .playbook-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .case { grid-template-columns: 1fr; }
  .case__visual { min-height: 180px; border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 620px) {
  .container { padding-inline: 20px; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .enablement-cards { grid-template-columns: 1fr; }
  .playbook-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .section { padding: 80px 0; }
  .hero { padding-top: 120px; }
  .case__body { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Timeline bullet points (CX Director) */
.tl-points { list-style: none; margin-top: 12px; display: grid; gap: 9px; max-width: 74ch; }
.tl-points li { position: relative; padding-left: 22px; color: var(--muted); font-size: 0.98rem; text-wrap: pretty; }
.tl-points li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.tl-points strong { color: var(--text); font-weight: 600; }
