/* ============================================================
   AI Fluency — Westchester
   Design system. Shared across index / seminars / done-for-you.
   Aesthetic reference: warm cream, terracotta accent, forest
   secondary, Inter + Instrument Serif. Plain CSS, no framework.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Color — AI Fluency brand: forest green primary, copper secondary, cream */
  --background:        #faf8f5;
  --surface:           #ffffff;
  --surface-2:         #f4f1ea;
  --foreground:        #1a1a1a;
  --muted-foreground:  #5a5a5a;
  --muted:             #8a8a8a;
  --border:            #e2ddd4;
  --border-strong:     #d6cfc1;

  --accent:            #2a6b4a;
  --accent-hover:      #1e5438;
  --accent-ink:        #1e5438;
  --accent-soft:       rgba(42, 107, 74, 0.10);
  --accent-softer:     rgba(42, 107, 74, 0.055);

  --copper:            #b8734a;
  --copper-ink:        #9f5a35;
  --copper-soft:       rgba(184, 115, 74, 0.12);

  /* Type */
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  /* Radius */
  --r-card: 1.25rem;
  --r-btn:  0.625rem;
  --r-sm:   0.5rem;

  /* Layout */
  --container: 1180px;
  --gutter: 1.5rem;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(26, 39, 68, 0.06);
  --shadow-md: 0 10px 30px rgba(26, 39, 68, 0.08);
  --shadow-lg: 0 20px 48px rgba(26, 39, 68, 0.12);
  --shadow-accent: 0 6px 18px rgba(42, 107, 74, 0.26);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Film-grain noise overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.028;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---------- Fixed background (grid + orbs) ---------- */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.site-bg::before {  /* grid lines */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(111, 104, 98, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(111, 104, 98, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 25%, #000 55%, transparent 100%);
}
/* Cursor-follow background — soft glow + grid that sharpens near the pointer */
.cursor-grid, .cursor-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cursor-grid {
  background-image:
    linear-gradient(to right, rgba(111, 104, 98, 0.11) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(111, 104, 98, 0.11) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle 340px at var(--mx, 50%) var(--my, 40%), #000 0%, transparent 72%);
          mask-image: radial-gradient(circle 340px at var(--mx, 50%) var(--my, 40%), #000 0%, transparent 72%);
}
.cursor-glow {
  background: radial-gradient(circle 520px at var(--mx, 50%) var(--my, 40%),
              rgba(42, 107, 74, 0.07), transparent 62%);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 4.75rem 0; position: relative; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

/* Anchor-jump offset — keeps the fixed nav from clipping a section's heading */
.section, .footer { scroll-margin-top: 100px; }

.section-head { max-width: 680px; margin: 0 auto 3.25rem; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.12; letter-spacing: -0.021em; color: var(--foreground); }

.h-display {
  font-size: clamp(2.55rem, 6vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
h2.h-section, .h-section {
  font-size: clamp(2rem, 4vw, 3.05rem);
  letter-spacing: -0.028em;
}
h3 { font-size: 1.3rem; letter-spacing: -0.018em; }

.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.005em;
  padding-right: 0.08em;
  padding-left: 0.02em;
}
.h-display .serif { font-size: 1.08em; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--muted-foreground);
  line-height: 1.62;
}
.muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }

/* Hero rotating-word headline (the _Word look) */
.hero-h1 { display: flex; flex-direction: column; gap: 0.04em; align-items: flex-start; }
.hero-lead-line {
  font-weight: 600;
  color: #8f897f;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.tick-line { display: inline-flex; align-items: baseline; gap: 0.14em; }
.tick-line::before {
  content: "";
  width: 0.5em; height: 0.15em;
  background: var(--accent);
  border-radius: 2px;
  align-self: flex-end;
  margin-bottom: 0.2em;
  animation: cursor-blink 1.1s step-end infinite;
}
.rotator {
  display: inline-block;
  color: var(--foreground);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.rotator.swap { opacity: 0; transform: translateY(0.12em); }
@keyframes cursor-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 0.92rem 1.7rem;
  border-radius: var(--r-btn);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(42, 107, 74, 0.34); }
.btn-ghost {
  background: var(--surface);
  color: var(--foreground);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); box-shadow: var(--shadow-sm); }
.btn-white { background: #fff; color: var(--foreground); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.02rem; }

/* ---------- Pills / tags / badges ---------- */
.tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
}
.tag-copper { background: var(--copper-soft); color: var(--copper-ink); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted-foreground);
  box-shadow: var(--shadow-sm);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.num {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.nav-logo .mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 0.95rem; font-weight: 700;
  font-family: var(--font-serif); font-style: italic;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.18s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--foreground); }
.nav-links a.btn-primary { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--foreground);
  position: relative;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: var(--foreground);
  transition: transform 0.25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav.menu-open .nav-toggle span { background: transparent; }
.nav.menu-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.menu-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(250, 248, 244, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem var(--gutter) 1.5rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .nav.menu-open .nav-links { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a {
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 1.02rem;
  }
  .nav-links .btn { margin-top: 1rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: 9.5rem;
  padding-bottom: 4.5rem;
}
@media (min-width: 768px) { .hero { padding-top: 11.5rem; padding-bottom: 6rem; } }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}
.hero h1 { margin-bottom: 1.4rem; }
.hero .lead { max-width: 33rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  display: flex; align-items: center; gap: 0.5rem;
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 107, 74, 0.32);
  box-shadow: var(--shadow-lg);
}
.card h3 { margin-bottom: 0.55rem; }
.card p { color: var(--muted-foreground); font-size: 0.97rem; }

.grid {
  display: grid;
  gap: 1.4rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* feature card with icon */
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 1.15rem;
}
.feature-icon svg { width: 24px; height: 24px; }

/* numbered card (01..04 across the top) */
.card-num { position: relative; }
.card-num .card-rule {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.card-num .card-rule::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}

/* path card (home router) */
.path-card {
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
}
.path-card .path-arrow {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--accent);
  font-weight: 600; font-size: 0.96rem;
  padding-top: 1.6rem;
}
.path-card:hover .path-arrow svg { transform: translateX(4px); }
.path-card .path-arrow svg { transition: transform 0.25s ease; }

/* ---------- Mock visuals (non-technical hero / card props) ---------- */
.mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
}
.mock-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.7rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  margin-bottom: 0.7rem;
}
.mock-row:last-child { margin-bottom: 0; }
.mock-row.is-accent { background: var(--accent-soft); border-color: rgba(42,107,74,0.2); }
.mock-dot { width: 30px; height: 30px; border-radius: 8px; flex: 0 0 auto; display: grid; place-items: center; }
.mock-dot.copper { background: var(--copper-soft); color: var(--copper-ink); }
.mock-dot.accent { background: var(--accent-soft); color: var(--accent); }
.mock-line { flex: 1; }
.mock-line b { font-size: 0.9rem; font-weight: 600; display: block; }
.mock-line span { font-size: 0.8rem; color: var(--muted); }
.mock-cap {
  font-size: 0.78rem; color: var(--muted);
  text-align: center; margin-top: 1rem;
}
.mock-head {
  display: flex; align-items: center; gap: 0.4rem;
  padding-bottom: 1rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.mock-head .tl { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.mock-tilt { transform: perspective(1200px) rotateX(4deg) rotateY(-5deg); }

/* ---------- Services — visual cards ---------- */
.svc-featured {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 0;
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.svc-featured .svc-text {
  padding: 2.6rem;
  display: flex; flex-direction: column; justify-content: center;
}
.svc-featured .svc-text h3 { font-size: 1.55rem; margin-bottom: 0.7rem; letter-spacing: -0.022em; }
.svc-featured .svc-text p { color: var(--muted-foreground); font-size: 1.01rem; }
.svc-stage {
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  padding: 1.6rem;
}
.svc-featured .svc-stage { border-left: 1px solid var(--border); }
.svc-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.svc-card .svc-stage { border-bottom: 1px solid var(--border); height: 212px; flex: 0 0 auto; }
.svc-card .svc-text { padding: 1.5rem 1.6rem 1.7rem; }
.svc-card .svc-text h3 { font-size: 1.14rem; margin-bottom: 0.45rem; }
.svc-card .svc-text p { color: var(--muted-foreground); font-size: 0.93rem; }
@media (max-width: 760px) {
  .svc-featured { grid-template-columns: 1fr; }
  .svc-featured .svc-stage { border-left: none; border-top: 1px solid var(--border); min-height: 250px; }
}

/* mini-mockup vocabulary (used inside .svc-stage) */
.mk { width: 100%; max-width: 332px; display: flex; flex-direction: column; gap: 0.42rem; }
.mk-cap { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }
.mk-msg {
  font-size: 0.8rem; line-height: 1.4;
  padding: 0.55rem 0.75rem; border-radius: 0.7rem;
  background: var(--surface); border: 1px solid var(--border);
  max-width: 92%;
}
.mk-msg-in { align-self: flex-start; border-bottom-left-radius: 0.2rem; color: var(--muted-foreground); }
.mk-msg-out {
  align-self: flex-end; border-bottom-right-radius: 0.2rem;
  background: var(--accent-soft); border-color: rgba(42, 107, 74, 0.22); color: var(--accent-ink);
}
.mk-note { font-size: 0.72rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; line-height: 1.35; }
.mk-note svg { width: 12px; height: 12px; color: var(--accent); flex: 0 0 auto; }
.mk-step {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--muted-foreground);
  padding: 0.5rem 0.65rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 0.5rem;
}
.mk-dot { width: 16px; height: 16px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); }
.mk-dot svg { width: 9px; height: 9px; }
.mk-step.running { border-color: rgba(42, 107, 74, 0.3); background: var(--accent-soft); color: var(--accent-ink); font-weight: 600; }
.mk-search {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.79rem; color: var(--foreground);
  padding: 0.55rem 0.7rem;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: 0.5rem;
}
.mk-search svg { width: 13px; height: 13px; color: var(--muted); flex: 0 0 auto; }
.mk-answer {
  font-size: 0.8rem; line-height: 1.45;
  padding: 0.6rem 0.75rem;
  background: var(--accent-soft); border: 1px solid rgba(42, 107, 74, 0.2); border-radius: 0.55rem;
  color: var(--foreground);
}
.mk-answer b { color: var(--accent-ink); }
.mk-stat { display: flex; align-items: center; gap: 0.6rem; }
.mk-stat .mk-label { font-size: 0.75rem; color: var(--muted-foreground); width: 92px; flex: 0 0 auto; }
.mk-stat .mk-track { flex: 1; height: 7px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.mk-stat .mk-fill { display: block; height: 100%; background: linear-gradient(to right, var(--accent), #3f9168); }
.mk-stat .mk-num { font-size: 0.82rem; font-weight: 700; color: var(--foreground); width: 22px; text-align: right; flex: 0 0 auto; }

/* ---------- Inquiry — two-column layout ---------- */
.inquiry-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.5fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 880px) {
  .inquiry-grid { grid-template-columns: 1fr; }
}
.inquiry-side { display: flex; flex-direction: column; gap: 1.6rem; }
.side-block h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.side-list { display: flex; flex-direction: column; gap: 0.8rem; }
.side-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.93rem; color: var(--muted-foreground); line-height: 1.45;
}
.side-list li svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; margin-top: 0.05rem; }
.inquiry-form .form-wrap { max-width: none; margin: 0; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 940px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--border-strong) 10%, var(--border-strong) 90%, transparent);
}
.tl-row { position: relative; display: flex; margin-bottom: 2rem; }
.tl-row:last-child { margin-bottom: 0; }
.tl-row:nth-child(odd)  { justify-content: flex-start; }
.tl-row:nth-child(even) { justify-content: flex-end; }
.tl-card { width: calc(50% - 3.2rem); }
.tl-node {
  position: absolute;
  left: 50%; top: 1.6rem;
  transform: translateX(-50%);
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 5px var(--background);
  z-index: 1;
}
@media (max-width: 760px) {
  .timeline::before { left: 8px; }
  .tl-row { justify-content: flex-end !important; }
  .tl-card { width: calc(100% - 2.75rem); }
  .tl-node { left: 8px; }
}

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: 0.85rem; max-width: 760px; margin: 0 auto; }
.check-item {
  display: flex; align-items: flex-start; gap: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.15rem 1.35rem;
}
.check-item.highlight { background: var(--accent-softer); border-color: rgba(42,107,74,0.28); }
.check-mark {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-top: 0.05rem;
}
.check-mark svg { width: 13px; height: 13px; }
.check-item b { font-weight: 600; font-size: 1rem; }
.check-item p { font-size: 0.9rem; color: var(--muted-foreground); margin-top: 0.1rem; }

/* ---------- Pricing card ---------- */
.pricing {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 2.75rem 2.4rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(to right, var(--accent), #3f9168);
}
.price-amount {
  font-size: clamp(3.2rem, 8vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin: 0.5rem 0 0.2rem;
}
.price-was {
  font-size: 1.1rem; color: var(--muted);
  text-decoration: line-through;
  margin-right: 0.5rem;
}
.price-sub { color: var(--muted-foreground); font-size: 0.95rem; }
.price-list {
  display: grid; gap: 0.7rem;
  text-align: left;
  margin: 1.8rem 0;
}
.price-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.97rem; }
.price-list .check-mark { width: 20px; height: 20px; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 0.85rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.4rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--foreground);
}
.faq-q .num { flex: 0 0 auto; }
.faq-q .faq-chevron {
  margin-left: auto; flex: 0 0 auto;
  transition: transform 0.3s ease;
  color: var(--muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 1.4rem 1.3rem 3.4rem;
  color: var(--muted-foreground);
  font-size: 0.97rem;
}

/* ---------- Steps (3 simple steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 880px; margin: 0 auto; }
.step { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.4rem; font-weight: 700;
  display: grid; place-items: center;
  margin: 0 auto 1.1rem;
  box-shadow: var(--shadow-accent);
}
.step h3 { font-size: 1.08rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.9rem; color: var(--muted-foreground); }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; gap: 0.6rem; } }

/* ---------- Forms ---------- */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) { .form-wrap { padding: 2.5rem; } }

/* Interest chip — appears above the form when the visitor has picked an industry
   or clicked into a specific "Tell me about this one" workflow card. Tells them
   the form already knows what they're asking about, so they don't have to repeat it. */
.interest-chip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  margin-bottom: 1.4rem;
  background: rgba(184, 115, 74, 0.06);
  border: 1px solid rgba(184, 115, 74, 0.22);
  border-left: 3px solid var(--copper);
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.4;
}
.interest-chip .chip-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 600;
}
.interest-chip .chip-label {
  font-weight: 700;
  color: var(--copper-ink, var(--copper));
}
.interest-chip .chip-meta {
  color: var(--muted-foreground);
}

.form-progress { margin-bottom: 1.8rem; }
.form-progress-top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; margin-bottom: 0.55rem;
}
.form-progress-top .label { font-weight: 600; }
.form-progress-top .count { color: var(--accent); font-weight: 700; }
.progress-track { height: 6px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: linear-gradient(to right, var(--accent), #3f9168); border-radius: 999px; transition: width 0.4s ease; }

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.45rem; }
.field label .req { color: var(--accent); }
.field .hint { font-size: 0.82rem; color: var(--muted); font-weight: 400; }
.input, .textarea, .select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  color: var(--foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.input::placeholder, .textarea::placeholder { color: var(--muted); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

/* selectable pills (radio/checkbox styled) */
.pill-group { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill-option {
  position: relative;
  display: inline-flex;
}
.pill-option input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.pill-option span {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 0.9rem; font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.18s ease;
}
.pill-option input:hover + span { border-color: var(--accent); color: var(--foreground); }
.pill-option input:checked + span {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
}
.pill-option input:focus-visible + span { box-shadow: 0 0 0 3px var(--accent-soft); }

.form-aside {
  display: flex; flex-wrap: wrap; gap: 1.1rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}
.form-aside .ax { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted-foreground); }
.form-aside .ax svg { color: var(--accent); width: 16px; height: 16px; flex: 0 0 auto; }

.form-status { margin-top: 1rem; font-size: 0.92rem; text-align: center; }
.form-status.ok { color: var(--accent); }
.form-status.err { color: #b4453a; }

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.form-success .tick {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin: 0 auto 1.2rem;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.is-hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--muted-foreground); font-size: 0.94rem; max-width: 22rem; margin-bottom: 1rem; }
.footer-brand a.email { color: var(--accent); font-weight: 500; font-size: 0.94rem; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a { color: var(--muted-foreground); font-size: 0.94rem; transition: color 0.18s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.85rem; color: var(--muted);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; filter: blur(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .btn:hover, .card-hover:hover, .path-card:hover .path-arrow svg { transform: none; }
  .rotator { transition: none; }
  .tick-line::before { animation: none; }
  .cursor-grid, .cursor-glow { display: none; }
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mb-0 { margin-bottom: 0; }
.maxw-sm { max-width: 36rem; }
.maxw-md { max-width: 44rem; }
.flex-center { display: flex; align-items: center; gap: 0.6rem; }
.wrap-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.divider-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
  margin-top: 2.25rem;
}
.divider-note a { color: var(--accent); font-weight: 600; }

/* ---------- Industry explorer (V5) ---------- */
.industry-select-wrap { text-align: center; }
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  padding: 8px 20px 8px 22px;
  font-size: 1rem;
}
.industry-pill-label { font-size: 0.88rem; color: var(--muted-foreground); }
.industry-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  font: inherit;
  font-weight: 600;
  color: var(--accent);
  padding: 4px 24px 4px 0;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232a6b4a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  outline: none;
}
.industry-select:focus { outline: none; }
.industry-select:focus-visible { outline: none; }
.industry-pill:focus-within {
  box-shadow: 0 0 0 3px rgba(42, 107, 74, 0.15);
}
.industry-hint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}
.industry-card {
  margin-top: 2.25rem;
  padding: 1.75rem 0.5rem;
  background: transparent;
  border: none;
}
.industry-card svg { width: 100%; height: auto; display: block; }
.industry-blurb {
  background: transparent;
}

/* Iteration B — local cursor-grid amplification in the diagram section */
.industry-explorer { position: relative; }
.industry-explorer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(111, 104, 98, 0.13) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(111, 104, 98, 0.13) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle 420px at var(--mx, 50%) var(--my, 50%), #000 30%, transparent 78%);
  mask-image: radial-gradient(circle 420px at var(--mx, 50%) var(--my, 50%), #000 30%, transparent 78%);
  z-index: 0;
}
.industry-explorer .container,
.industry-explorer .industry-card,
.industry-explorer .industry-expand,
.industry-explorer .industry-extras {
  position: relative;
  z-index: 1;
}
@media (hover: none) {
  .industry-explorer::before { display: none; }
}
.industry-blurb {
  padding: 1.1rem 0.5rem 0.25rem;
  border-top: 1px solid var(--border);
  margin-top: 1.1rem;
  font-size: 0.99rem;
  color: var(--foreground);
  line-height: 1.65;
}
.industry-blurb b { font-weight: 600; color: var(--accent); }
.industry-expand {
  text-align: center;
  margin-top: 1.5rem;
  cursor: pointer;
  user-select: none;
}
.industry-expand-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.97rem;
  font-weight: 600;
}
.industry-chev { display: inline-block; transition: transform 0.22s ease; font-size: 1.1rem; line-height: 1; }
.industry-expand.is-open .industry-chev { transform: rotate(180deg); }
.industry-extras-hint {
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--muted-foreground);
}
.industry-extras {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.industry-extra-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
}
.industry-extra-eyebrow {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.industry-extra-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--foreground);
}
.industry-extra-sub {
  font-size: 0.92rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}
.industry-extra-cta {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}
@media (max-width: 640px) {
  .industry-extras { grid-template-columns: 1fr; }
  .industry-pill { font-size: 0.92rem; padding: 6px 16px 6px 18px; }
  .industry-card { padding: 1.1rem; }
}

/* ============================================================
   V5 — additions and overrides for the new design language
   ============================================================ */

/* Hero badge dot pulse */
.badge .dot.pulse {
  box-shadow: 0 0 0 0 rgba(42,107,74,.5);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(42,107,74,.45); }
  70%  { box-shadow: 0 0 0 8px rgba(42,107,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,107,74,0); }
}

/* Hero mockup card — V5 tilt + row pattern */
.mock-tilt {
  transform: rotate(.6deg);
  transition: transform .3s ease;
}
.mock-tilt:hover { transform: rotate(0deg); }
.mock-row {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}
.mock-row:last-of-type { border-bottom: none; }
.mock-row .mock-dot {
  width: 32px; height: 32px;
  border-radius: 9px;
  color: #fff;
  background: var(--accent);
}
.mock-row .mock-dot.copper { background: var(--copper); color:#fff; }
.mock-row .mock-dot.accent { background: var(--accent); color:#fff; }
.mock-row .mock-line { display:flex; flex-direction:column; gap:.15rem; }
.mock-row .mock-line b { font-size:.95rem; font-weight:600; color:var(--foreground); }
.mock-row .mock-line span { font-size:.84rem; color:var(--muted-foreground); line-height:1.4; }
.check-mark {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-mark svg { width: 13px; height: 13px; }
.mock-cap {
  margin: .9rem 0 0;
  font-size: .82rem;
  color: var(--muted-foreground);
  text-align: center;
  font-style: italic;
}

/* Translator section kicker */
.translator-kicker {
  margin: 2.25rem auto 0;
  max-width: 36rem;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.55rem;
  line-height: 1.45;
  color: var(--accent);
}

/* Industry pick — de-boxed selector ("I run a [X ▾]") */
.industry-pick {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.12rem;
  color: var(--muted-foreground);
}
.industry-pick .lab {
  font-size: .98rem;
  white-space: nowrap;
}
.industry-pick .industry-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  font: inherit;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  padding: 2px 26px 4px 2px;
  border-bottom: 2px solid rgba(42,107,74,.35);
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%232a6b4a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  transition: border-color .18s;
}
.industry-pick .industry-select:hover { border-color: var(--accent); }
.industry-pick .industry-select:focus { outline: none; border-color: var(--accent); }

/* Funnel diagram wrapper */
.treewrap {
  max-width: 940px;
  margin: 2.4rem auto 0;
}
.treewrap svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* Industry pull quote (italic, centered, copper-tinged) */
.industry-pull {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--accent);
  text-align: center;
  max-width: 38rem;
  margin: 1.8rem auto 0;
}
.industry-pull-cap {
  text-align: center;
  font-size: .84rem;
  color: var(--muted-foreground);
  margin: .5rem 0 0;
}

/* Industry blurb — centered, no card */
.industry-blurb {
  max-width: 46rem;
  margin: 1.5rem auto 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #3f3f37;
  text-align: center;
  padding: 0;
  border-top: none;
}
.industry-blurb b { color: var(--accent); font-weight: 600; }

/* Industry expand button (V5 — centered with top border) */
.industry-expand {
  max-width: 46rem;
  margin: 1.8rem auto 0;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 1.3rem;
  cursor: pointer;
}
.industry-expand-line {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--accent);
  font-size: .98rem;
}
.industry-extras {
  max-width: 46rem;
  margin: 1.2rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.industry-extras .xcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
  text-align: left;
  box-shadow: 0 18px 40px -34px rgba(40,38,28,.5);
}
.industry-extras .xcard-eyebrow {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 600;
}
.industry-extras .xcard h4 {
  margin: .45rem 0 .4rem;
  font-size: 1.12rem;
  color: var(--foreground);
}
.industry-extras .xcard p {
  margin: 0 0 1rem;
  font-size: .94rem;
  color: #55554c;
  line-height: 1.55;
}
.xcard-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--accent);
}
.xcard-cta .arr { transition: transform .15s; }
.xcard-cta:hover .arr { transform: translateX(4px); }

@media (max-width: 640px) {
  .industry-extras { grid-template-columns: 1fr; }
  .industry-pick { font-size: 1rem; }
  .industry-pick .industry-select { padding-right: 22px; }
}

/* V5 Approach timeline — alternating left/right with big copper numbers */
.timeline-v5 {
  position: relative;
  max-width: 980px;
  margin: 3rem auto 0;
}
.timeline-v5::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--border-strong), rgba(205,200,185,.25));
}
.timeline-v5 .tl-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  margin-bottom: 0;
}
.timeline-v5 .tl-row + .tl-row { margin-top: -2.6rem; }
.timeline-v5 .tl-row:nth-child(odd) .tl-card { grid-column: 1; }
.timeline-v5 .tl-row:nth-child(even) .tl-card { grid-column: 2; }
.timeline-v5 .tl-node {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--background);
  box-shadow: 0 0 0 1px var(--border-strong);
  transform: translateX(-50%);
  z-index: 2;
}
.timeline-v5 .tl-card {
  padding: 1.5rem 1.7rem;
  position: relative;
  z-index: 1;
  width: auto;
}
.timeline-v5 .card-rule { display: flex; align-items: center; }
.timeline-v5 .card-rule .num-big {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--copper);
  font-weight: 400;
}
.timeline-v5 .tl-card h3 { margin: 0; font-size: 1.15rem; }
.timeline-v5 .tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 5px 12px;
  text-transform: none;
  letter-spacing: 0;
}
@media (max-width: 720px) {
  .timeline-v5::before { left: 11px; transform: none; }
  .timeline-v5 .tl-row { grid-template-columns: 1fr; }
  .timeline-v5 .tl-row + .tl-row { margin-top: 1.2rem; }
  .timeline-v5 .tl-row:nth-child(odd)  .tl-card,
  .timeline-v5 .tl-row:nth-child(even) .tl-card { grid-column: 1; margin-left: 46px; }
  .timeline-v5 .tl-node { left: 11px; top: 26px; }
}

/* Without/with bullet styling extracted to classes */
.x-mark {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  color: var(--muted-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1;
}
.check-bubble {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Industry-explorer cursor grid — restore on V5 (background already set above) */
.industry-explorer { position: relative; }
.industry-explorer .container { position: relative; z-index: 1; }

/* Inquiry side blocks polish for V5 */
.inquiry-side .side-block { padding: 1.3rem 1.4rem; }
.inquiry-side .side-block h4 { margin: 0 0 .8rem; font-size: 1rem; }

