/* Multitudal — landing site styles.
   Built on the design-system tokens (assets/css/styles.css). Vibrant, loud,
   functional: clean near-white surfaces, gradients as the signature move. */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.display { font-family: var(--font-display); letter-spacing: var(--tracking-tight); }

.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;
}

/* Animated hero "flyover" rotator.
   Single-line + fixed line-height so the phrase never wraps and the hero
   height stays constant as phrases of different lengths swap through. */
.rotator {
  display: inline-block;
  vertical-align: top;
  perspective: 600px;
  white-space: nowrap;
}
.rotator-word {
  display: inline-block;
  white-space: nowrap;
  will-change: transform, opacity, filter;
  transition:
    transform var(--dur-med) var(--ease-out),
    opacity var(--dur-med) var(--ease-out),
    filter var(--dur-med) var(--ease-out);
}
.rotator-word.is-out {
  transform: translateY(-0.52em) rotateX(40deg);
  opacity: 0;
  filter: blur(4px);
}
.rotator-word.is-in {
  animation: rotatorIn var(--dur-med) var(--ease-out);
}
@keyframes rotatorIn {
  from { transform: translateY(0.6em) rotateX(-45deg); opacity: 0; filter: blur(4px); }
  to   { transform: none; opacity: 1; filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .rotator-word,
  .rotator-word.is-out,
  .rotator-word.is-in { transition: none; animation: none; transform: none; opacity: 1; filter: none; }
}

.gradient-text {
  background: var(--grad-multitudal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-md);
  line-height: 1;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-med) var(--ease-standard),
              background var(--dur-med) var(--ease-standard),
              color var(--dur-med) var(--ease-standard);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--grad-multitudal);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { color: #fff; box-shadow: var(--glow-indigo); }

.btn-outline {
  background: var(--gray-0);
  color: var(--text-strong);
  border-color: var(--border-strong);
}
.btn-outline:hover { color: var(--text-strong); border-color: var(--gray-400); background: var(--gray-50); }

.btn-ghost { background: transparent; color: var(--text-body); }
.btn-ghost:hover { color: var(--text-strong); background: var(--gray-100); }

.btn-sm { padding: 9px 15px; font-size: var(--text-sm); border-radius: var(--radius-sm); }
.btn-lg { padding: 15px 24px; font-size: var(--text-lg); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--grad-multitudal-sweep);
  box-shadow: var(--shadow-sm);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 20px;
  letter-spacing: var(--tracking-tight);
  color: var(--text-strong);
}
.nav-links { display: flex; gap: 24px; flex: 1; }
.nav-links a {
  font-size: 14.5px; font-weight: var(--weight-medium);
  color: var(--text-body);
}
.nav-links a:hover { color: var(--text-strong); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-sweep {
  position: absolute; inset: 0;
  background: var(--grad-multitudal-sweep);
  opacity: 0.14;
}
.hero-fade {
  position: absolute; inset: 0;
  background: radial-gradient(100% 80% at 50% -10%, transparent, var(--gray-50) 72%);
}
.hero-inner {
  position: relative;
  padding: 92px 24px 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--indigo-50);
  border: 1px solid var(--indigo-100);
  color: var(--indigo-700);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  margin-bottom: 26px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--grad-multitudal); }
h1.hero-title {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(40px, 7vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin: 0;
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 620px;
  margin: 22px 0 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-meta {
  display: flex; align-items: center; gap: 8px;
  margin-top: 30px;
  color: var(--text-faint);
  font-size: 13.5px;
}
.hero-meta svg { width: 16px; height: 16px; }

/* ---------- Section headings ---------- */
.section { padding: 8px 24px 88px; }
.section-head { text-align: center; margin: 0 auto 48px; }
.section-eyebrow {
  font-size: 12.5px; font-weight: var(--weight-bold);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--indigo-500); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0;
  text-wrap: balance;
}
/* keep the gradient sub-phrase from breaking across lines on its own */
.section-title .gradient-text { white-space: nowrap; }
.section-lead { color: var(--text-muted); font-size: var(--text-lg); margin: 14px auto 0; max-width: 620px; }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: transform var(--dur-med) var(--ease-standard),
              box-shadow var(--dur-med) var(--ease-standard);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.product-lockup { display: flex; align-items: center; gap: 12px; }
.product-icon {
  width: 44px; height: 44px; border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: block;
}
.product-name {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--text-xs); font-weight: var(--weight-semibold);
  padding: 5px 10px; border-radius: var(--radius-pill);
}
.pill-live { background: var(--success-soft); color: #0a7d5a; }
.pill-soon { background: var(--warning-soft); color: #92600a; }
.pill .dot { width: 6px; height: 6px; border-radius: 999px; background: currentColor; }

.card-tag {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  margin: 0 0 8px;
}
.card-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.55; margin: 0 0 20px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 20px; }
.tag-chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  background: var(--gray-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 4px 9px;
}
.card-foot { margin-top: auto; }

/* ---------- Spectrum diagram ---------- */
.spectrum { padding: 8px 24px 92px; }

.spectrum-orch {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 1.5px; /* gradient edge */
  background: var(--grad-jobtrack);
  box-shadow: var(--shadow-md);
}
.spectrum-orch-inner {
  background: var(--surface-card);
  border-radius: 14.5px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.spectrum-orch .product-icon { width: 40px; height: 40px; }
.spectrum-orch .orch-role {
  font-size: 11.5px; font-weight: var(--weight-bold);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-jobtrack); margin-bottom: 3px;
}
.spectrum-orch .orch-name {
  font-family: var(--font-display); font-weight: var(--weight-bold);
  font-size: 18px; letter-spacing: -0.02em; color: var(--text-strong);
}
.spectrum-orch p { margin: 4px 0 0; font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* connector from orchestrator down to the rail */
.spectrum-legs {
  position: relative;
  height: 44px;
  max-width: 560px;
  margin: 0 auto;
}
.spectrum-legs::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 2px; height: 22px;
  transform: translateX(-50%);
  background: var(--border-strong);
}
.spectrum-legs::after {
  content: "";
  position: absolute;
  top: 22px; left: 15%; right: 15%;
  height: 22px;
  border: 2px solid var(--border-strong);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}

/* the gradient spectrum rail */
.spectrum-rail {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 820px;
  margin: 4px auto 0;
}
.spectrum-bar {
  flex: 1;
  height: 8px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg in oklch, #5940D6, #C858C8, #FF8A66, #6FE8F8, #55B2F9, #EC5FA5);
  box-shadow: var(--shadow-xs);
}
.spectrum-end-label {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-strong);
  white-space: nowrap;
}
.spectrum-end-label span { display: block; font-family: var(--font-body); font-weight: var(--weight-medium); font-size: 12px; letter-spacing: 0; color: var(--text-faint); }
.spectrum-end-label.right { text-align: right; }

.spectrum-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 28px auto 0;
}
.spectrum-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.spectrum-card .product-lockup { margin-bottom: 6px; }
.spectrum-card .kicker {
  font-size: 11.5px; font-weight: var(--weight-bold);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px;
}
.spectrum-card.agnes .kicker { color: var(--accent-agnes); }
.spectrum-card.codey .kicker { color: var(--accent-codeybox); }
.spectrum-card h3 {
  font-family: var(--font-display); font-weight: var(--weight-semibold);
  font-size: 18px; letter-spacing: -0.01em; color: var(--text-strong); margin: 0 0 8px;
}
.spectrum-card p { margin: 0; font-size: 14.5px; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 720px) {
  .spectrum-legs { display: none; }
  /* Labels sit at each end on the top row; the bar wraps full-width below.
     (Resetting flex is essential — flex:1 in a column collapses the bar.) */
  .spectrum-rail {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-top: 24px;
  }
  .spectrum-end-label { order: 0; text-align: left; }
  .spectrum-end-label.right { order: 1; text-align: right; }
  .spectrum-bar { order: 2; flex: 0 0 100%; width: 100%; height: 10px; }
  .spectrum-pair { grid-template-columns: 1fr; }
  .spectrum-orch-inner { flex-direction: column; text-align: center; }
}

/* ---------- Feature band (dark) ---------- */
.band {
  background: var(--gray-950);
  color: var(--text-on-inverse);
}
.band-inner { padding: 88px 24px; }
.band-title {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px;
  max-width: 18ch;
}
.band-lead { font-size: var(--text-lg); color: var(--indigo-200); max-width: 560px; margin: 0 0 48px; }
.band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.band-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.band-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-multitudal);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 18px;
}
.band-icon svg { width: 22px; height: 22px; }
.band-card h3 {
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: 20px;
  color: #fff;
  margin: 0 0 8px;
}
.band-card p { font-size: 14.5px; line-height: 1.6; color: var(--indigo-200); margin: 0; }

/* ---------- CTA ---------- */
.cta-wrap { padding: 88px 24px; }
.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--grad-multitudal);
  padding: 64px 40px;
  text-align: center;
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 20% 0%, rgba(255,255,255,0.3), transparent 55%);
}
.cta-inner { position: relative; }
.cta h2 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(30px, 4.5vw, 44px);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 14px;
  text-shadow: 0 2px 20px rgba(18, 12, 46, 0.3);
}
.cta p { font-size: var(--text-lg); color: rgba(255, 255, 255, 0.92); margin: 0 auto 30px; max-width: 500px; }
.btn-on-brand { background: #fff; color: var(--indigo-700); }
.btn-on-brand:hover { color: var(--indigo-800); box-shadow: var(--shadow-lg); }

/* ---------- Card links (product grid → product pages) ---------- */
a.card { text-decoration: none; color: inherit; }
a.card:hover { color: inherit; }
.card-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: var(--weight-semibold); font-size: 14.5px;
  color: var(--accent);
}
.card-link svg { width: 16px; height: 16px; transition: transform var(--dur-med) var(--ease-standard); }
a.card:hover .card-link svg { transform: translateX(3px); }
.card-sub {
  margin-top: 12px; font-size: 13px; color: var(--text-faint);
  display: inline-flex; align-items: center; gap: 6px;
}
.card-sub svg { width: 14px; height: 14px; }

/* make the spectrum end/orchestrator cards clickable */
a.spectrum-card, a.spectrum-orch { text-decoration: none; color: inherit; display: block; }
a.spectrum-card { transition: transform var(--dur-med) var(--ease-standard), box-shadow var(--dur-med) var(--ease-standard); }
a.spectrum-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: inherit; }
a.spectrum-orch { transition: transform var(--dur-med) var(--ease-standard), box-shadow var(--dur-med) var(--ease-standard); }
a.spectrum-orch:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- Modular / open section ---------- */
.mod-tile .band-icon { margin-bottom: 16px; }

/* ---------- Hosting / plans (self-host vs hosted) ---------- */
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.plan.featured {
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--surface-card), var(--surface-card)) padding-box,
    var(--grad-multitudal) border-box;
  box-shadow: var(--shadow-lg);
}
.plan-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.plan-name { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 22px; letter-spacing: -0.02em; color: var(--text-strong); }
.plan-tagline { font-size: 14.5px; color: var(--text-muted); margin: 0 0 18px; }
.plan-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 11px; }
.plan-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; color: var(--text-body); }
.plan-list svg { width: 18px; height: 18px; color: var(--success); flex: none; margin-top: 1px; }
.plan-soon { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: var(--weight-semibold); color: var(--text-faint); }
.plan-soon svg { width: 16px; height: 16px; }
@media (max-width: 720px) { .duo-grid { grid-template-columns: 1fr; } }

/* ================================================================
   PRODUCT PAGES  (agnes.html / codeybox.html / jobtrack.html)
   Themed per page via --pgrad / --paccent set on <body>.
   ================================================================ */
.product-page { --pgrad: var(--grad-multitudal); --paccent: var(--accent); }

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: var(--weight-medium); color: var(--text-muted);
}
.back-link:hover { color: var(--text-strong); }
.back-link svg { width: 16px; height: 16px; }

.phero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border-subtle); }
.phero-wash { position: absolute; inset: 0; background: var(--pgrad); opacity: 0.13; }
.phero-fade { position: absolute; inset: 0; background: radial-gradient(100% 85% at 50% -10%, transparent, var(--gray-50) 72%); }
.phero-inner {
  position: relative;
  padding: 72px 24px 64px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.product-icon-lg {
  width: 76px; height: 76px; border-radius: 22px;
  box-shadow: var(--shadow-lg); margin-bottom: 22px;
}
.phero .kicker {
  font-size: 12.5px; font-weight: var(--weight-bold);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--paccent); margin-bottom: 14px;
}
.phero h1 {
  font-family: var(--font-display); font-weight: var(--weight-bold);
  font-size: clamp(34px, 6vw, 56px); line-height: 1.04; letter-spacing: -0.03em;
  color: var(--text-strong); margin: 0; max-width: 16ch;
}
.phero .plead {
  font-size: clamp(16px, 2.2vw, 19px); line-height: 1.55; color: var(--text-muted);
  max-width: 600px; margin: 20px 0 30px;
}
.pill-page {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: var(--radius-pill);
  font-size: var(--text-sm); font-weight: var(--weight-semibold);
  background: var(--gray-0); border: 1px solid var(--border-subtle);
  color: var(--text-muted); margin-bottom: 22px;
}
.pill-page .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--pgrad); }

.btn-product { background: var(--pgrad); color: #fff; box-shadow: var(--shadow-sm); }
.btn-product:hover { color: #fff; box-shadow: var(--shadow-lg); }

/* Feature grid */
.pfeatures { padding: 72px 24px; }
.pfeature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pfeature {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 24px;
}
.pfeature .fi {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; background: var(--pgrad); margin-bottom: 16px;
}
.pfeature .fi svg { width: 22px; height: 22px; }
.pfeature h3 {
  font-family: var(--font-display); font-weight: var(--weight-semibold);
  font-size: 17px; letter-spacing: -0.01em; color: var(--text-strong); margin: 0 0 8px;
}
.pfeature p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--text-muted); }

/* Marquee highlight row */
.phighlight { padding: 0 24px 8px; }
.phighlight-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
  padding: 44px; overflow: hidden;
}
.phighlight .eyebrow-mini {
  font-size: 12px; font-weight: var(--weight-bold); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--paccent); margin-bottom: 12px;
}
.phighlight h2 {
  font-family: var(--font-display); font-weight: var(--weight-bold);
  font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -0.02em; color: var(--text-strong); margin: 0 0 14px;
}
.phighlight p { margin: 0; font-size: var(--text-lg); line-height: 1.6; color: var(--text-muted); }
.phighlight-visual {
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  background: var(--pgrad); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.phighlight-visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 20% 0%, rgba(255,255,255,.35), transparent 55%);
}
.phighlight-visual svg { width: 84px; height: 84px; color: rgba(255,255,255,.95); position: relative; }
/* alternate layout: visual on the left */
.phighlight.reverse .phighlight-visual { order: -1; }

/* Roadmap callout */
.roadmap { padding: 64px 24px; }
.roadmap-inner {
  border: 1.5px dashed var(--border-strong); border-radius: var(--radius-xl);
  padding: 40px; background: var(--gray-25);
}
.roadmap .eyebrow-mini {
  font-size: 12px; font-weight: var(--weight-bold); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--paccent); margin-bottom: 12px;
}
.roadmap h2 {
  font-family: var(--font-display); font-weight: var(--weight-bold);
  font-size: clamp(22px, 3vw, 30px); letter-spacing: -0.02em; color: var(--text-strong); margin: 0 0 20px;
}
.roadmap ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.roadmap li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--text-body); line-height: 1.5; }
.roadmap li svg { width: 20px; height: 20px; color: var(--paccent); flex: none; margin-top: 1px; }
.roadmap .soon { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 2px 7px; margin-left: 4px; white-space: nowrap; }

@media (max-width: 860px) {
  .pfeature-grid { grid-template-columns: 1fr 1fr; }
  .phighlight-inner { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
  .phighlight-visual { order: -1; }
}
@media (max-width: 620px) {
  .pfeature-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border-subtle); background: var(--gray-0); }
.footer-inner {
  padding: 40px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-mark { width: 24px; height: 24px; border-radius: 7px; }
.footer-brand .brand-name { font-size: 16px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--text-muted); font-weight: var(--weight-medium); }
.footer-links a:hover { color: var(--text-strong); }
.footer-note { font-size: 13px; color: var(--text-faint); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .band-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 64px 24px 56px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
