/* =========================================================================
   Launchpad — BNI Millennium Power Team Portal
   Design system: tokens, base, layout, components
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --ink:      #111827;
  --accent:   #2563EB;
  --accent2:  #F97316;
  --paper:    #FAFAFA;

  /* Derived surfaces & text */
  --surface:      #FFFFFF;
  --ink-90:       rgba(17, 24, 39, .92);
  --ink-70:       rgba(17, 24, 39, .70);
  --ink-50:       rgba(17, 24, 39, .52);
  --ink-30:       rgba(17, 24, 39, .30);
  --ink-15:       rgba(17, 24, 39, .13);
  --ink-08:       rgba(17, 24, 39, .07);
  --accent-10:    rgba(37, 99, 235, .09);
  --accent-20:    rgba(37, 99, 235, .16);
  --accent-dark:  #1D4ED8;
  --accent2-10:   rgba(249, 115, 22, .10);
  --accent2-20:   rgba(249, 115, 22, .20);

  /* Type */
  --font-display: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Fluid type scale */
  --step-hero:  clamp(2.5rem, 1.85rem + 3vw, 4.5rem);
  --step-h1:    clamp(2.1rem, 1.65rem + 2vw, 3.25rem);
  --step-h2:    clamp(1.6rem, 1.35rem + 1.1vw, 2.35rem);
  --step-h3:    clamp(1.2rem, 1.08rem + .5vw, 1.5rem);
  --step-lead:  clamp(1.1rem, 1.02rem + .3vw, 1.3rem);
  --step-body:  1rem;
  --step-small: .875rem;

  /* Spacing */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4.5rem;
  --sp-9: 6.5rem;

  /* Layout */
  --container-w: 1180px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(17, 24, 39, .06), 0 1px 1px rgba(17, 24, 39, .04);
  --shadow-md: 0 8px 24px rgba(17, 24, 39, .08), 0 2px 6px rgba(17, 24, 39, .05);
  --shadow-lg: 0 24px 60px rgba(17, 24, 39, .14), 0 6px 16px rgba(17, 24, 39, .06);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur-fast: .18s;
  --dur-med: .45s;
  --dur-slow: .75s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; }

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: '';
  width: 1.4em;
  height: 2px;
  background: var(--accent2);
  border-radius: 2px;
}

.lead { font-size: var(--step-lead); color: var(--ink-70); line-height: 1.55; }
.muted { color: var(--ink-50); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--sp-9); }
.section-tight { padding-block: var(--sp-8); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: var(--sp-4); top: -60px;
  background: var(--ink); color: var(--paper);
  padding: .75rem 1.25rem; border-radius: var(--radius-sm);
  z-index: 200; transition: top var(--dur-fast) var(--ease);
  font-weight: 600;
}
.skip-link:focus { top: var(--sp-4); }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-15);
}
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost { color: var(--accent); font-weight: 600; }
.btn-ghost::after { content: '→'; margin-left: .5em; display: inline-block; transition: transform var(--dur-fast) var(--ease); }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn svg { width: 1.15em; height: 1.15em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--ink-08);
  /* Note: the frosted-glass effect lives on ::before, not on this element itself —
     backdrop-filter/filter/transform on .site-header would create a new containing
     block for its position:fixed descendants (the mobile nav panel), breaking its
     full-viewport sizing. Keep .site-header itself filter-free. */
}
.site-header::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background: rgba(250, 250, 250, .82);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 34px; width: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease); }

.site-nav { display: flex; align-items: center; gap: var(--sp-7); }
.site-nav ul { display: flex; align-items: center; gap: var(--sp-6); }
.site-nav a:not(.btn) {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-70);
  position: relative;
  padding-block: .3rem;
  transition: color var(--dur-fast) var(--ease);
}
.site-nav a:not(.btn):hover { color: var(--ink); }
.site-nav a:not(.btn)::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--accent2);
  transition: right var(--dur-fast) var(--ease);
  border-radius: 2px;
}
.site-nav a:not(.btn):hover::after,
.site-nav a.is-active::after { right: 0; }
.site-nav a.is-active { color: var(--ink); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; inset: 76px 0 0 0;
    background: var(--paper);
    flex-direction: column; align-items: stretch;
    padding: var(--sp-6) var(--container-pad);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
    overflow-y: auto;
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: var(--sp-2); width: 100%; }
  .site-nav ul li { width: 100%; }
  .site-nav ul a:not(.btn) { display: block; padding: .9rem 0; border-bottom: 1px solid var(--ink-08); font-size: 1.05rem; }
  .site-nav .btn { margin-top: var(--sp-5); width: 100%; justify-content: center; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(250, 250, 250, .78);
  padding-block: var(--sp-8) var(--sp-6);
}
.site-footer a { transition: color var(--dur-fast) var(--ease); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(250, 250, 250, .12);
}
.footer-brand img { height: 30px; margin-bottom: var(--sp-4); }
.footer-brand p { max-width: 32ch; color: rgba(250, 250, 250, .6); font-size: .92rem; }
.footer-col h4 {
  font-family: var(--font-body); font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(250, 250, 250, .5);
  margin-bottom: var(--sp-4); font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { color: rgba(250, 250, 250, .82); font-size: .95rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  font-size: .85rem;
  color: rgba(250, 250, 250, .5);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =========================================================================
   Journey Map — signature interactive element
   ========================================================================= */
.journey {
  position: relative;
}
.journey-progress {
  position: sticky;
  top: 92px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
  padding: .85rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--ink-08);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  width: fit-content;
  max-width: 100%;
}
.journey-progress .count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  white-space: nowrap;
}
.journey-progress .count em {
  font-style: normal;
  color: var(--accent2);
}
.journey-progress-track {
  position: relative;
  width: clamp(90px, 22vw, 180px);
  height: 5px;
  background: var(--ink-08);
  border-radius: 999px;
  overflow: hidden;
}
.journey-progress-fill {
  position: absolute; inset: 0 auto 0 0;
  width: 14.28%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 999px;
  transition: width var(--dur-med) var(--ease);
}
.journey-progress-label {
  font-size: .82rem;
  color: var(--ink-50);
  display: none;
}
@media (min-width: 640px) { .journey-progress-label { display: inline; } }

.journey-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.journey-list::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-20), var(--ink-08) 85%);
  border-radius: 2px;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-5);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.journey-step.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .journey-step { opacity: 1; transform: none; }
}

.journey-step-marker {
  position: relative;
  z-index: 1;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--ink-15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink-30);
  transition: border-color var(--dur-med) var(--ease), color var(--dur-med) var(--ease), background var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
  flex-shrink: 0;
}
.journey-step.is-active .journey-step-marker {
  background: var(--accent2);
  border-color: var(--accent2);
  color: #fff;
  box-shadow: 0 0 0 6px var(--accent2-10);
}
.journey-step.is-passed .journey-step-marker {
  border-color: var(--accent);
  color: var(--accent);
}

.journey-card {
  background: var(--surface);
  border: 1px solid var(--ink-08);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: grid;
  gap: var(--sp-2);
  transition: box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.journey-step.is-active .journey-card {
  box-shadow: var(--shadow-md);
  border-color: var(--accent2-20);
}
.journey-card .problem {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink-50);
}
.journey-card h3 {
  font-size: var(--step-h3);
  margin-block: .15rem .3rem;
}
.journey-card .solution { color: var(--ink-70); }
.journey-card .handled-by {
  margin-top: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.journey-card .handled-by .who {
  font-size: .88rem;
  color: var(--ink-50);
}
.journey-card .handled-by .who strong { color: var(--ink-70); font-weight: 600; }
.journey-card .go {
  font-size: .88rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .35em;
}
.journey-card .go::after { content: '→'; transition: transform var(--dur-fast) var(--ease); }
.journey-card a:hover .go::after,
.journey-card:hover .go::after { transform: translateX(4px); }

@media (min-width: 760px) {
  .journey-list::before { left: 27px; }
}

/* ---------- Section divider — trajectory motif ---------- */
.chevron-divider {
  display: flex;
  justify-content: center;
  padding-block: var(--sp-6);
}
.chevron-divider svg { width: 46px; height: auto; }

/* ---------- Reveal-on-scroll (generic) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: var(--sp-9) var(--sp-8);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero h1 {
  font-size: var(--step-hero);
  max-width: 15ch;
}
.hero h1 .accent { color: var(--accent); }
.hero .lead { margin-top: var(--sp-5); max-width: 46ch; }
.hero-actions { display: flex; gap: var(--sp-4); margin-top: var(--sp-6); flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: var(--sp-7);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--ink);
}
.hero-stats .stat span { font-size: .85rem; color: var(--ink-50); }

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-art svg { width: 100%; height: 100%; }
.pulse-ring {
  transform-origin: 370px 40px;
  animation: pulse-ring 2.6s var(--ease) infinite;
}
@keyframes pulse-ring {
  0%   { r: 15; opacity: .35; }
  70%  { r: 26; opacity: 0; }
  100% { r: 26; opacity: 0; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 340px; margin-inline: auto; order: -1; }
}

/* ---------- Generic page hero (inner pages) ---------- */
.page-hero {
  padding-block: var(--sp-8) var(--sp-7);
  border-bottom: 1px solid var(--ink-08);
}
.page-hero h1 { font-size: var(--step-h1); max-width: 22ch; }
.page-hero .lead { margin-top: var(--sp-4); max-width: 56ch; }
.breadcrumb {
  display: flex; align-items: center; gap: .5em;
  font-size: .85rem; color: var(--ink-50); margin-bottom: var(--sp-4);
}
.breadcrumb a { color: var(--ink-50); font-weight: 600; }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- Service page visuals: stage tracker + service icons ----------
   Extends the homepage journey-map's blue/orange trajectory language onto
   individual service pages, at a supporting scale — the homepage hero
   graphic remains the site's single biggest visual moment. */
.stage-tracker-wrap { margin-bottom: var(--sp-6); }
.stage-tracker {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}
@media (max-width: 500px) {
  .stage-tracker { max-width: 240px; }
}

.service-icon-badge {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--ink-08);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.service-icon-badge img { width: 36px; height: 36px; }

.section-icon-badge {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--ink-08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-3);
}
.section-icon-badge img { width: 27px; height: 27px; }

/* ---------- Cards / grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--ink-08);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
}

/* Why a Power Team */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-top: var(--sp-7); }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }
.why-card .num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
  color: var(--accent2); margin-bottom: var(--sp-3);
}
.why-card h3 { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.why-card p { color: var(--ink-70); font-size: .96rem; }

/* Partner logo strip */
.logo-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-6);
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--ink-08);
  border-radius: var(--radius-lg);
}
.logo-strip img { height: 32px; width: auto; filter: grayscale(1); opacity: .72; transition: opacity var(--dur-fast) var(--ease), filter var(--dur-fast) var(--ease); }
.logo-strip img:hover { filter: grayscale(0); opacity: 1; }

/* ---------- About page — member sections ---------- */
.member {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-7);
  padding-block: var(--sp-8);
  border-bottom: 1px solid var(--ink-08);
  align-items: start;
}
.member:last-child { border-bottom: 0; }
.member-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-08);
  box-shadow: var(--shadow-sm);
}
.member-portrait img { width: 100%; height: 100%; object-fit: cover; }
.member-body .stage-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-10);
  padding: .3em .8em; border-radius: 999px;
  margin-bottom: var(--sp-3);
}
.member-body h2 { font-size: var(--step-h2); }
.member-body .biz { color: var(--ink-50); font-weight: 600; margin-top: .2rem; margin-bottom: var(--sp-4); }
.member-body p.bio { color: var(--ink-70); max-width: 64ch; }
.member-body .member-links { margin-top: var(--sp-5); display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: center; }

@media (max-width: 760px) {
  .member { grid-template-columns: 1fr; }
  .member-portrait { max-width: 220px; }
}

/* ---------- Service pages ---------- */
.service-hero {
  padding-block: var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-7);
  align-items: start;
}
.service-hero-main .eyebrow { margin-bottom: var(--sp-4); }
.service-hero-main h1 { font-size: var(--step-h1); max-width: 20ch; }
.service-hero-main .lead { margin-top: var(--sp-4); max-width: 60ch; }
.service-provider-card {
  background: var(--surface);
  border: 1px solid var(--ink-08);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.service-provider-card h3 { font-size: 1.15rem; }
.service-provider-card .biz { color: var(--ink-50); font-weight: 600; font-size: .9rem; margin-top: .15rem; }
.service-provider-card .meta { margin-top: var(--sp-4); display: grid; gap: .6rem; font-size: .88rem; color: var(--ink-70); }
.service-provider-card .btn { margin-top: var(--sp-5); width: 100%; justify-content: center; }

@media (max-width: 860px) {
  .service-hero { grid-template-columns: 1fr; }
  .service-provider-card { position: static; }
}

.service-section { padding-block: var(--sp-8); border-top: 1px solid var(--ink-08); }
.service-section h2 { font-size: var(--step-h2); max-width: 24ch; }
.service-section .lead { margin-top: var(--sp-3); max-width: 62ch; }

.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); margin-top: var(--sp-6); }
@media (max-width: 700px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: var(--sp-5); border: 1px solid var(--ink-08); border-radius: var(--radius-md); background: var(--surface); }
.pillar h3 { font-size: 1.05rem; margin-bottom: var(--sp-2); display: flex; align-items: center; gap: .5em; }
.pillar h3::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent2); flex-shrink: 0; }
.pillar p { color: var(--ink-70); font-size: .95rem; }

.tier-table { width: 100%; border-collapse: collapse; margin-top: var(--sp-5); }
.tier-table th, .tier-table td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--ink-08); font-size: .95rem; }
.tier-table th { color: var(--ink-50); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.tier-table tr:last-child td { border-bottom: 0; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-top: var(--sp-6); }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial { padding: var(--sp-5); background: var(--surface); border: 1px solid var(--ink-08); border-radius: var(--radius-md); }
.testimonial blockquote { font-size: .98rem; color: var(--ink-90); line-height: 1.6; }
.testimonial blockquote::before { content: '“'; color: var(--accent2); font-family: var(--font-display); }
.testimonial cite { display: block; margin-top: var(--sp-4); font-style: normal; font-size: .85rem; color: var(--ink-50); }
.testimonial cite strong { color: var(--ink-70); display: block; font-weight: 600; }

.fit-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: var(--sp-5); }
.fit-list li {
  font-size: .85rem; font-weight: 600; color: var(--ink-70);
  background: var(--ink-08); padding: .5em 1em; border-radius: 999px;
}

.next-step {
  margin-top: var(--sp-8);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6);
  flex-wrap: wrap;
}
.next-step h3 { color: #fff; font-size: 1.4rem; max-width: 26ch; }
.next-step p { color: rgba(250,250,250,.65); margin-top: .4rem; }

.placeholder-banner {
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  border: 1.5px dashed var(--accent2);
  background: var(--accent2-10);
  border-radius: var(--radius-md);
  font-size: .92rem;
  color: var(--ink-90);
}
.placeholder-banner strong { display: block; margin-bottom: .25rem; color: var(--accent2); font-weight: 700; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--surface); border: 1px solid var(--ink-08); border-radius: var(--radius-lg);
  padding: var(--sp-7);
}
.contact-method {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-5) 0; border-bottom: 1px solid var(--ink-08);
}
.contact-method:last-child { border-bottom: 0; }
.contact-method .icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-10); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method .icon svg { width: 22px; height: 22px; }
.contact-method .label { font-size: .8rem; color: var(--ink-50); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.contact-method .value { font-size: 1.05rem; font-weight: 600; margin-top: .1rem; }
.contact-method .value a:hover { color: var(--accent); }

.stage-picker { display: grid; gap: .6rem; margin-top: var(--sp-5); }
.stage-picker a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.1rem; border: 1px solid var(--ink-08); border-radius: var(--radius-sm);
  font-size: .92rem; font-weight: 600; color: var(--ink-70);
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.stage-picker a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-10); }
.stage-picker a::after { content: '→'; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0 !important; }
