/* ============================================================
   MISSION FELT STUDIO — style.css
   ============================================================ */

:root {
  --bg:           #080808;
  --surface:      #0f0f0f;
  --surface-2:    #161616;
  --border:       #222222;
  --border-light: #2e2e2e;

  --gold:         #D4933A;
  --gold-light:   #E8B46A;
  --gold-dark:    #A87228;
  --gold-dim:     rgba(212, 147, 58, 0.1);

  --blue:         #2E79C9;
  --blue-light:   #4A92DC;
  --blue-dim:     rgba(46, 121, 201, 0.12);
  --blue-border:  rgba(46, 121, 201, 0.25);

  --text:         #F0EAE0;
  --text-muted:   #8A8278;
  --text-dim:     #484440;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Montserrat', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:       3px;
  --t:            0.25s ease;
  --t-md:         0.4s ease;

  --max-w:        1200px;
  --max-w-narrow: 780px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.container--narrow { max-width: var(--max-w-narrow); }
.section { padding: 7rem 0; }
.section--dark { background: var(--surface); }

/* ===== TYPOGRAPHY ===== */
.label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.label--gold { color: var(--gold); }
.label--blue { color: var(--blue-light); }
.label--dark { color: rgba(8,8,8,0.5); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-body {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 1.2rem;
}
.section-body--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.9rem;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--t);
  border: 2px solid transparent;
}
.btn--lg { padding: 1rem 2.4rem; font-size: 0.76rem; }

.btn--primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,147,58,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(240,234,224,0.22);
}
.btn--ghost:hover {
  border-color: rgba(240,234,224,0.55);
  background: rgba(240,234,224,0.04);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--bg);
}
.btn--outline-dark {
  background: transparent;
  color: var(--bg);
  border-color: rgba(8,8,8,0.45);
}
.btn--outline-dark:hover {
  background: var(--bg);
  color: var(--gold);
}
.btn--dark {
  background: var(--bg);
  color: var(--gold);
  border-color: var(--bg);
}
.btn--dark:hover {
  background: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.btn--nav {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  padding: 0.58rem 1.3rem;
  font-size: 0.68rem;
}
.btn--nav:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.nav__pulse-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--blue);
  padding: 0.18rem 0.45rem;
  border-radius: 2px;
  margin-left: 0.35rem;
  vertical-align: middle;
  line-height: 1;
}
.btn--blue {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}
.btn--blue:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,121,201,0.3);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-md), border-color var(--t-md), box-shadow var(--t-md);
}
.nav--scrolled {
  background: rgba(8,8,8,0.97);
  border-color: var(--border);
  box-shadow: 0 2px 32px rgba(0,0,0,0.5);
}
.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
/* Image logo — nav and footer */
.nav__logo-img {
  height: 62px;
  width: auto;
  display: block;
}
.footer__logo .nav__logo-img {
  height: 68px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.015em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 1.2rem; }
.nav__mobile a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav__mobile .mobile-cta { margin-top: 0.5rem; display: inline-flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero__video.video-loaded {
  opacity: 1;
}
.hero__video-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 68% 45%, #241708 0%, transparent 55%),
    radial-gradient(ellipse at 18% 75%, #0c0c1c 0%, transparent 50%),
    linear-gradient(155deg, #120e07 0%, #080808 50%, #060609 100%);
  animation: fallbackDrift 20s ease-in-out infinite alternate;
}
@keyframes fallbackDrift {
  from { transform: scale(1.03) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, 1%); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(8,8,8,0.94) 0%,
    rgba(8,8,8,0.78) 42%,
    rgba(8,8,8,0.45) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  max-width: 800px;
}
.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  font-weight: 700;
  line-height: 1.03;
  color: var(--text);
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}
.hero__headline em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: 1.06rem;
  color: rgba(240,234,224,0.7);
  max-width: 540px;
  line-height: 1.85;
  margin-bottom: 2.8rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-dim);
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 1; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.trust-bar__items {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem;
  text-align: center;
}
.trust-bar__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-bar__icon--gold {
  background: var(--gold-dim);
  border: 1px solid rgba(212,147,58,0.25);
  color: var(--gold);
}
.trust-bar__icon--blue {
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue-light);
}
.trust-bar__label {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}
.trust-bar__divider {
  width: 1px;
  height: 48px;
  background: var(--border-light);
  justify-self: center;
}

/* ===== INTRO ===== */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro__text .section-body { max-width: 480px; }
.intro__text .btn { margin-top: 0.8rem; }
.intro__img-block { position: relative; }
.intro__img-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #181818 0%, #0e0e0e 100%);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.intro__img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(212,147,58,0.06) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(212,147,58,0.04) 0%, transparent 30%);
  pointer-events: none;
}
.intro__img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}
.intro__img-inner p {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}
.intro__img-inner svg { color: var(--blue-light); }
.intro__img-accent {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 60%;
  height: 60%;
  background: var(--gold-dim);
  border: 1px solid rgba(212,147,58,0.15);
  border-radius: 4px;
  z-index: -1;
}

/* ===== SOUND FAMILIAR ===== */
.pain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.pain__intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 0.5rem;
}
.pain__left .section-title { margin-bottom: 1rem; }

.pain__points {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2rem;
}
.pain__point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pain__check {
  width: 26px;
  height: 26px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pain__point p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.pain__point p em {
  color: var(--text);
  font-style: normal;
  font-weight: 500;
}

/* ===== SCROLLING TICKER ===== */
.ticker {
  display: flex;
  align-items: center;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.9rem 0;
  gap: 0;
  position: relative;
}
/* Fade edges */
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--surface-2), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--surface-2), transparent);
}

.ticker__label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 1.5rem 0 2rem;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  background: var(--surface-2);
}
.ticker__label::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: var(--border-light);
}

.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
  flex-shrink: 0;
}
.ticker__track:hover { animation-play-state: paused; }

.ticker__inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.ticker__inner span {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 1.6rem;
}
.ticker__sep {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  padding: 0 !important;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
  align-items: stretch;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.8rem 2rem;
  position: relative;
  transition: border-color var(--t-md), box-shadow var(--t-md);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.service-card--featured {
  border-color: var(--gold-dark);
  background: linear-gradient(155deg, #1c1409 0%, #121008 55%, var(--surface) 100%);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.service-card--featured:hover {
  border-color: var(--gold);
  box-shadow: 0 24px 64px rgba(212,147,58,0.15);
}
.service-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  border-radius: 2px;
  white-space: nowrap;
}
.service-card__tier {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.service-card__price {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.service-card__desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}
.service-card__features { margin-bottom: 1.8rem; }
.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.service-card__features li::before {
  content: '+';
  color: var(--blue-light);
  font-weight: 800;
  font-family: var(--font-ui);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.05em;
}

.services__addons {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  text-align: center;
}
.services__addons-label {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.services__addons-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
}
.services__addons-list span {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold);
}
.addons-dot { color: var(--border-light); font-size: 0.5rem; }

.services__cta { text-align: center; margin-top: 3.5rem; }
.services__cta p { font-size: 0.98rem; color: var(--text-muted); margin-bottom: 1.2rem; }

/* ===== WHY MISSION FELT ===== */
.why__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why__text .section-body { max-width: 480px; }
.why__cta { margin-top: 2rem; }

.why__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.why__list-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
}
.why__list-item:last-child { border-bottom: 1px solid var(--border); }

.why__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 2.4rem;
  padding-top: 0.1rem;
}
.why__list-item h4 {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.why__list-item p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Why tags — compact icon + title list */
.why__tags {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}
.why__tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.why__tag-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}
.why__tag span {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

/* BTS video column */
.why__video-col { position: relative; }
.why__video-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  aspect-ratio: 4 / 5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__bts-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why__video-placeholder {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #181818 0%, #0e0e0e 100%);
}
.why__video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
  pointer-events: none;
}
.why__video-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}
.why__video-inner svg { color: var(--blue-light); }
.why__video-inner p {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}
.why__video-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
  background: rgba(8,8,8,0.6);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  backdrop-filter: blur(6px);
}

/* ===== QUOTE BREAK ===== */
.quote-break {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.quote-break__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, #1c1408 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, #0c0c1a 0%, transparent 50%),
    linear-gradient(180deg, #080808 0%, #0c0a07 50%, #080808 100%);
}
.quote-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.5);
  z-index: 1;
}
.quote-break__content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.quote-break__img-placeholder {
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.quote-break__img-placeholder svg { color: var(--blue-light); }
.quote-break__img-placeholder p {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}
.quote-break__text {
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
}
.quote-break__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.quote-break__attr {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

/* ===== PORTFOLIO ===== */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.portfolio__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t-md), transform var(--t-md), box-shadow var(--t-md);
}
.portfolio__thumb:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.55);
}
.portfolio__thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dim) 0%, transparent 55%);
  pointer-events: none;
}
.portfolio__play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1.5px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  padding-left: 3px;
  transition: all var(--t-md);
  z-index: 1;
}
.portfolio__thumb:hover .portfolio__play-btn {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  transform: scale(1.1);
}
.portfolio__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(8,8,8,0.97) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.portfolio__client {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text);
}
.portfolio__type {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.portfolio__cta { text-align: center; margin-top: 3rem; }

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.testimonial {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.2rem 1.8rem;
  transition: border-color var(--t-md), box-shadow var(--t-md);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--gold));
  opacity: 0;
  transition: opacity var(--t-md);
}
.testimonial:hover { border-color: var(--border-light); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.testimonial:hover::before { opacity: 1; }
.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: -0.6rem;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.6rem;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}
.testimonial__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text);
}
.testimonial__author span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ===== CTA BAND ===== */
.cta-band { background: var(--gold); }
.cta-band__inner { text-align: center; }
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bg);
  margin-bottom: 1.2rem;
}
.cta-band__body {
  font-size: 1rem;
  color: rgba(8,8,8,0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}
.cta-band__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.cta-band__note {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(8,8,8,0.45);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 6rem 0 2.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__logo { margin-bottom: 1rem; display: inline-flex; }
.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.footer__desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 280px;
}
.footer__col-title {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a:not(.btn) {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer__col a:not(.btn):hover { color: var(--gold); }
.footer__col .btn--primary { color: #111111; }
.footer__email,
.footer__phone {
  display: block;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  transition: color var(--t);
}
.footer__email:hover,
.footer__phone:hover { color: var(--gold); }
.footer__cta-btn { margin-top: 1.2rem; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom > p { font-size: 0.74rem; color: var(--text-dim); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
  font-size: 0.74rem;
  color: var(--text-dim);
  transition: color var(--t);
}
.footer__legal a:hover { color: var(--text-muted); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .intro__grid   { grid-template-columns: 1fr; gap: 3rem; }
  .pain__grid    { grid-template-columns: 1fr; gap: 3rem; }
  .why__grid     { grid-template-columns: 1fr; gap: 3.5rem; }
  .why__video-col { display: none; }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .service-card--featured { transform: none; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .quote-break__content { grid-template-columns: 1fr; gap: 3rem; }
  .quote-break__img-placeholder { display: none; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .trust-bar__items { max-width: 100%; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  .container { padding: 0 1.4rem; }
  .section   { padding: 5rem 0; }

  .nav__links, .btn--nav { display: none; }
  .nav__toggle { display: flex; }

  .hero__headline { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero__actions  { flex-direction: column; align-items: flex-start; }
  .hero__scroll-hint { display: none; }

  .trust-bar__items {
    grid-template-columns: 1fr 1px 1fr;
    grid-template-rows: auto auto;
    gap: 1rem 0;
  }
  .trust-bar__divider:nth-child(4) {
    grid-column: 2;
    grid-row: 1 / 3;
    height: 100%;
  }
  .trust-bar__divider:nth-child(2),
  .trust-bar__divider:nth-child(6) { display: none; }

  .portfolio__grid { grid-template-columns: 1fr; }

  .footer__grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer__desc  { max-width: none; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cta-band__actions { flex-direction: column; }
  .ticker__label { display: none; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .trust-bar__items { grid-template-columns: 1fr 1fr; }
  .trust-bar__divider { display: none; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

/* Active nav link */
.nav__active { color: var(--text) !important; }
.nav__active::after { width: 100% !important; }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, #1c1408 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, #0c0c1a 0%, transparent 50%),
    linear-gradient(155deg, #120e07 0%, #080808 50%, #060609 100%);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.65) 100%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 0;
  width: 100%;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(240,234,224,0.65);
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto 2.4rem;
}
.page-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.page-hero__badges {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.scorecard-badge--light {
  color: rgba(240,234,224,0.65);
  border-color: rgba(240,234,224,0.2);
  background: transparent;
}
.page-hero--scorecard { min-height: 80vh; }

/* ===== PACKAGE NAV ===== */
.pkg-nav {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: var(--blue);
  border-bottom: 1px solid rgba(46, 121, 201, 0.35);
  box-shadow: 0 2px 20px rgba(46, 121, 201, 0.2);
}
.pkg-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
}
.pkg-nav__links {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.pkg-nav__links::-webkit-scrollbar { display: none; }
.pkg-nav__link {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 0 1.4rem;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
  white-space: nowrap;
}
.pkg-nav__link:hover {
  color: #fff;
  border-bottom-color: var(--gold);
}
.pkg-nav__cta { display: none; }

/* ===== PACKAGE SECTIONS ===== */
.pkg-section__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 7rem;
  align-items: start;
}
.pkg-section__visual {
  position: sticky;
  top: 10rem;
}
.pkg-section__visual::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  top: 12px;
  left: 12px;
  border: 1px solid rgba(212, 147, 58, 0.12);
  border-radius: 4px;
  z-index: 0;
  pointer-events: none;
}
.pkg-section__grid--reverse .pkg-section__visual::after {
  right: 12px;
  left: -12px;
}

.pkg-badge {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.pkg-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.pkg-price {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.pkg-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.pkg-bestfor {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: 3px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
}
.pkg-bestfor__icon {
  width: 28px;
  height: 28px;
  background: rgba(46,121,201,0.2);
  border: 1px solid var(--blue-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.pkg-bestfor__label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.35rem;
}
.pkg-bestfor__text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.pkg-features { margin-bottom: 2rem; }
.pkg-features__title {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}
.pkg-features__list { display: flex; flex-direction: column; }
.pkg-features__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.pkg-features__list li:first-child { border-top: 1px solid var(--border); }
.pkg-features__list li::before {
  content: '+';
  color: var(--blue-light);
  font-weight: 800;
  font-family: var(--font-ui);
  flex-shrink: 0;
  font-size: 0.75rem;
  line-height: 1.5;
}

.pkg-featured-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

/* ===== VISUAL CARD ===== */
.pkg-visual-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface-2);
  transition: border-color var(--t-md), box-shadow var(--t-md);
  position: relative;
  z-index: 1;
}
.pkg-visual-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 20px 56px rgba(0,0,0,0.55);
}
.pkg-visual-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #181308 0%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pkg-visual-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dim) 0%, transparent 60%);
  pointer-events: none;
}
.pkg-visual-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1.5px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  padding-left: 4px;
  cursor: pointer;
  transition: all var(--t-md);
  position: relative;
  z-index: 1;
}
.pkg-visual-card:hover .pkg-visual-play {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: scale(1.08);
}
.pkg-visual-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(8,8,8,0.97) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.pkg-visual-name {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
}
.pkg-visual-type {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.pkg-visual-meta {
  border-top: 1px solid var(--border);
  padding: 0 1.2rem;
  background: var(--surface);
}
.pkg-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.pkg-meta-item:last-child { border-bottom: none; }
.pkg-meta-item svg { color: var(--blue-light); flex-shrink: 0; }

/* ===== ADD-ONS ===== */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.addon-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-md), box-shadow var(--t-md);
}
.addon-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--blue), transparent);
  opacity: 0;
  transition: opacity var(--t-md);
}
.addon-card:hover { border-color: var(--border-light); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.addon-card:hover::before { opacity: 1; }
.addon-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 1.2rem;
}
.addon-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.addon-card__desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== PROCESS ===== */
.process { overflow: hidden; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 4rem;
}
.process__note {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.process__note em {
  color: var(--gold);
  font-style: normal;
}
.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.2rem;
  position: relative;
}
.process__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}
.process__connector {
  position: absolute;
  top: 5.5rem;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 1px;
  background: linear-gradient(to right, var(--border-light) 60%, transparent);
}
.process__connector--last { display: none; }
.process__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.process__step h4 {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}
.process__step p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-body {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.3rem;
}

/* ===== STORY ===== */
.about-intro-video { margin-bottom: 2.5rem; }
.about-story__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 7rem;
  align-items: start;
}
.about-story__quote {
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
  margin-bottom: 3rem;
}
.about-story__quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}
.about-story__quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}
.about-story__quote-attr {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.about-story__quote-attr strong {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.about-story__quote-attr span {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.about-story__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
}
.about-stat:last-child { border-bottom: 1px solid var(--border); }
.about-stat__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.about-stat__label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== GAPS GRID ===== */
.gaps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.gap-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-md), box-shadow var(--t-md);
}
.gap-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.gap-card__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: 1rem;
}
.gap-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.gap-card__body {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== WHY NONPROFITS ===== */
.about-why__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 7rem;
  align-items: start;
}
.about-why__orgs {
  position: sticky;
  top: 7rem;
}
.about-why__orgs-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}
.about-why__org-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-why__org-list li {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: color var(--t);
}
.about-why__org-list li:first-child { border-top: 1px solid var(--border); }
.about-why__org-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
}
.about-why__org-list li:hover { color: var(--text); }

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.value-item {
  padding: 2.4rem 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color var(--t-md), box-shadow var(--t-md);
}
.value-item:hover {
  border-color: var(--border-light);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
.value-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 1.4rem;
}
.value-item__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}
.value-item__body {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--t-md), box-shadow var(--t-md);
}
.team-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.team-card__photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #181308 0%, #0d0d0d 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-card__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 55%);
}
.team-card__photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}
.team-card__photo-inner svg { color: var(--text-dim); }
.team-card__photo-inner p {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.team-card__body { padding: 2rem; }
.team-card__cred {
  display: inline-block;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue-light);
  font-family: var(--font-ui);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.22rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.team-card__role {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.team-card__bio {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.team-note {
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  padding: 2rem 2.2rem;
}
.team-note__inner {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}
.team-note__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(46,121,201,0.2);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.team-note__title {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.team-note__body {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== STRATEGY SESSION — HOMEPAGE CALLOUT ===== */
.strategy-callout {
  background: linear-gradient(135deg, #1c1408 0%, #0f0e0c 60%, #0a0a0a 100%);
  border: 1px solid rgba(212, 147, 58, 0.22);
  border-radius: 4px;
  padding: 3rem 3rem 3rem 3.2rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.strategy-callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  border-radius: 4px 0 0 4px;
}
.strategy-callout__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.strategy-callout__tag::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.strategy-callout__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.strategy-callout__price {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.strategy-callout__desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.strategy-callout__credit {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--gold-dim);
  border: 1px solid rgba(212,147,58,0.18);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.6;
}
.strategy-callout__credit::before {
  content: '★';
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.05em;
}
.strategy-callout__includes-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.strategy-callout__includes {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.strategy-callout__includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.strategy-callout__includes li:first-child { border-top: 1px solid var(--border); }
.strategy-callout__includes li::before {
  content: '+';
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  flex-shrink: 0;
  line-height: 1.4;
}
.strategy-callout__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Divider between strategy + tiers */
.services__pkg-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 3rem 0 2rem;
}
.services__pkg-divider::before,
.services__pkg-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.services__pkg-divider-label {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

/* Dual buttons on service cards */
.service-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

/* ===== STRATEGY SESSION — SERVICES PAGE ===== */
.session-section {
  background: linear-gradient(155deg, #1c1408 0%, #0f0d0a 50%, #080808 100%);
  border-bottom: 1px solid var(--border);
}
.session-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: start;
}
.session-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.session-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.session-price {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.session-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}
.session-ideal {
  margin-bottom: 2rem;
}
.session-ideal__title {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
}
.session-ideal__list {
  display: flex;
  flex-direction: column;
}
.session-ideal__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.session-ideal__list li:first-child { border-top: 1px solid var(--border); }
.session-ideal__list li::before {
  content: '+';
  color: var(--blue-light);
  font-weight: 800;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  flex-shrink: 0;
  line-height: 1.5;
}
.session-aside {
  position: sticky;
  top: 9rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.session-includes-card {
  background: rgba(8,8,8,0.6);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}
.session-includes-card__title {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}
.session-includes-card ul {
  display: flex;
  flex-direction: column;
}
.session-includes-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}
.session-includes-card ul li:first-child { border-top: 1px solid var(--border); }
.session-includes-card ul li::before {
  content: '+';
  color: var(--blue-light);
  font-weight: 800;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  flex-shrink: 0;
  line-height: 1.45;
}
.session-credit-card {
  background: var(--gold-dim);
  border: 1px solid rgba(212,147,58,0.2);
  border-radius: 4px;
  padding: 1.8rem 2rem;
}
.session-credit-card__icon {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  display: block;
}
.session-credit-card__title {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.session-credit-card__body {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== ABOUT PAGE — RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-story__grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-why__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-why__orgs { position: relative; top: auto; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .gaps-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Short hero variant */
.page-hero--short { min-height: 38vh; }

/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ===== FORM CARD ===== */
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3rem;
}

/* ── Contact form success state ─────────────────────────────────── */
.contact-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  min-height: 300px;
}
.contact-form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212,147,58,0.1);
  border: 1px solid rgba(212,147,58,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.contact-form-success__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.9rem;
  line-height: 1.2;
}
.contact-form-success__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 1rem;
}
.contact-form-success__note {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ── Contact form error message ─────────────────────────────────── */
.contact-form-error {
  margin-top: 1rem;
  font-size: 0.83rem;
  color: #E06060;
  line-height: 1.6;
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.contact-form-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

/* ===== FORM ELEMENTS ===== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.4rem;
}
.form-label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-required { color: var(--gold); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.88rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,147,58,0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-muted);
  pointer-events: none;
}
.form-select { padding-right: 2.8rem; cursor: pointer; }
.form-select option { background: var(--surface-2); color: var(--text); }
.btn--full { width: 100%; }
.form-note {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  text-align: center;
  margin-top: 1rem;
}
.form-disclaimer {
  font-size: 0.67rem;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: center;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}

/* ===== CONTACT ASIDE ===== */
.contact-aside {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ===== CONTACT INFO CARD ===== */
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.8rem 2rem;
}
.contact-info-card__label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-info-card__sub {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}
.contact-info-card__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
  transition: opacity var(--t);
}
.contact-info-item:last-child { border-bottom: 1px solid var(--border); }
.contact-info-item:hover { opacity: 0.75; }
.contact-info-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}
.contact-info-item__type {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}
.contact-info-item__value {
  display: block;
  font-size: 0.84rem;
  color: var(--text);
}

/* ===== WHAT TO EXPECT CARD ===== */
.expect-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.8rem 2rem;
}
.expect-card__label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.expect-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}
.expect-steps { display: flex; flex-direction: column; }
.expect-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.expect-step--last { border-bottom: 1px solid var(--border); }
.expect-step__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1.15;
  flex-shrink: 0;
  width: 2rem;
}
.expect-step__title {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}
.expect-step__body {
  font-size: 0.81rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 3.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-top: 1px solid var(--border);
  padding: 1.8rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.faq-answer {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ===== CONTACT PAGE — RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-aside { position: relative; top: auto; }
}

@media (max-width: 768px) {
  .contact-form-card { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== SERVICES PAGE — RESPONSIVE ===== */
@media (max-width: 1200px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: 3rem 1rem; }
  .process__connector { display: none; }
  .process__step { padding: 0 1rem; }
}

@media (max-width: 1024px) {
  .pkg-section__grid { grid-template-columns: 1fr; gap: 3rem; }
  .pkg-section__grid--reverse .pkg-section__content { order: -1; }
  .pkg-section__visual { position: relative; top: auto; }
  .pkg-section__visual::after { display: none; }
}

@media (max-width: 768px) {
  .page-hero { min-height: 50vh; }
  .page-hero__title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .page-hero__actions { flex-direction: column; align-items: center; }
  .pkg-nav__link { padding: 0 0.9rem; font-size: 0.6rem; }
  .addons-grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
}

/* ============================================================
   SCORECARD — HOMEPAGE PROMO + DEDICATED PAGE
   ============================================================ */

/* ── HOMEPAGE PROMO SECTION ─────────────────────────────────── */
.scorecard-promo {
  background: linear-gradient(180deg, #09070a 0%, #0d0b08 60%, #09070a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.scorecard-promo__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5.5rem;
}
.scorecard-name-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.4rem 1.15rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}
.scorecard-promo__headline {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.2;
  margin-top: 0.2rem;
}
.scorecard-promo__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 640px;
  margin: 1.4rem auto 0;
}

/* 2-col grid */
.scorecard-promo__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

/* ── PREVIEW CARD ────────────────────────────────────────────── */
.scorecard-preview-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 2.6rem 2.2rem;
  position: sticky;
  top: 8rem;
  overflow: hidden;
}
.scorecard-preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}
.scorecard-preview-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.2rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
}
.scorecard-preview-card__meta {}
.scorecard-preview-card__tag {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.scorecard-preview-card__org {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
}

/* Score ring */
.scorecard-ring {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(212, 147, 58, 0.45);
  background: var(--gold-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.scorecard-ring::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(212, 147, 58, 0.12);
}
.scorecard-ring__num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}
.scorecard-ring__sub {
  font-family: var(--font-ui);
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Dimension bars */
.scorecard-preview-card__dims {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.scorecard-dim {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
}
.scorecard-dim__label {
  font-family: var(--font-ui);
  font-size: 0.67rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
}
.scorecard-dim__row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.scorecard-dim__track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.scorecard-dim__bar {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.scorecard-dim__pct {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-dim);
  width: 2.2rem;
  text-align: right;
  flex-shrink: 0;
}
/* Bar animate on scroll-in */
.scorecard-preview-card.visible .scorecard-dim__bar { width: var(--bar-w, 50%); }
.scorecard-dim:nth-child(1) .scorecard-dim__bar { transition-delay: 0.12s; }
.scorecard-dim:nth-child(2) .scorecard-dim__bar { transition-delay: 0.28s; }
.scorecard-dim:nth-child(3) .scorecard-dim__bar { transition-delay: 0.44s; }
.scorecard-dim:nth-child(4) .scorecard-dim__bar { transition-delay: 0.60s; }
.scorecard-dim:nth-child(5) .scorecard-dim__bar { transition-delay: 0.76s; }
.scorecard-dim:nth-child(6) .scorecard-dim__bar { transition-delay: 0.92s; }

.scorecard-preview-card__foot {
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.scorecard-preview-card__foot p {
  font-size: 0.73rem;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.5;
}
.scorecard-preview-card__foot strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* ── CONTENT SIDE ────────────────────────────────────────────── */
.scorecard-promo__body {
  font-size: 0.91rem;
  line-height: 1.88;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}
.scorecard-discover {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.8rem 2rem;
  margin: 2.2rem 0;
}
.scorecard-discover__heading {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.scorecard-discover__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.78rem;
}
.scorecard-discover__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}
.scorecard-discover__list li::before {
  content: '→';
  color: var(--blue);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.08em;
}
.scorecard-promo__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.4rem;
}
.scorecard-badge {
  font-family: var(--font-ui);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 0.35rem 0.9rem;
}
.scorecard-promo__note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ── SCORECARD HOMEPAGE STRIP ────────────────────────────────── */
.scorecard-strip {
  background: linear-gradient(180deg, #0c0905 0%, #0a0808 100%);
  border-top: 2px solid rgba(212, 147, 58, 0.25);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background sample scorecard visual */
.scorecard-strip__bg-visual {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 360px;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
}
/* Gradient fade — blends the visual into the section background */
.scorecard-strip::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 380px;
  background: linear-gradient(to right, #0a0808 0%, transparent 38%);
  pointer-events: none;
  z-index: 1;
}
/* Keep main content above the gradient overlay */
.scorecard-strip > .container {
  position: relative;
  z-index: 2;
}
.scorecard-bg-card {
  height: 100%;
  background: var(--surface);
  border: none;
  border-left: 1px solid var(--border-light);
  border-radius: 0;
  padding: 2.8rem 1.8rem;
  display: flex;
  flex-direction: column;
}
.scorecard-bg-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--border);
}
.scorecard-bg-card__label {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.scorecard-bg-card__org {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}
.scorecard-bg-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}
.scorecard-bg-dims {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0;
}
.scorecard-bg-dim {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.scorecard-bg-dim > span:first-child {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  color: var(--text-muted);
  flex: 0 0 140px;
  line-height: 1.3;
}
.scorecard-bg-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.scorecard-bg-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
}
.scorecard-bg-pct {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--text-dim);
  flex-shrink: 0;
  width: 2rem;
  text-align: right;
}
.scorecard-bg-footer {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  font-size: 0.65rem;
  color: var(--text-dim);
  font-style: italic;
  text-align: center;
}

/* Eyebrow + free row */
.scorecard-strip__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.scorecard-strip__free-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.8rem;
}
.scorecard-free-badge {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
}
.scorecard-free-badge--blue {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--blue);
  padding: 0.35rem 1.2rem;
  border-radius: 2px;
}
.scorecard-strip__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.scorecard-strip__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 3.2rem;
}
.scorecard-strip__benefits {
  display: flex;
  max-width: 820px;
  margin: 0 auto 3.5rem;
  gap: 0;
}
.scorecard-benefit {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.6rem;
  text-align: left;
}
.scorecard-benefit:last-child { border-right: none; }
.scorecard-benefit__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.scorecard-benefit__text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.scorecard-strip__cta-wrap { }
.scorecard-strip__note {
  margin-top: 1rem;
  font-size: 0.76rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* ── SCORECARD POPUP ─────────────────────────────────────────── */
.scorecard-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 300px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  z-index: 9998;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.75), 0 0 0 1px rgba(212,147,58,0.08);
  transform: translateY(calc(100% + 3rem));
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
}
.scorecard-popup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.scorecard-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.scorecard-popup__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--t-md), border-color var(--t-md), background var(--t-md);
}
.scorecard-popup__close:hover {
  background: var(--surface-2);
  border-color: var(--border-light);
  color: var(--text);
}
.scorecard-popup__tag {
  font-family: var(--font-ui);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.scorecard-popup__headline {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.scorecard-popup__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.3rem;
}
.scorecard-popup__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
  margin-bottom: 1.6rem;
}
.scorecard-popup__items li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.4;
}
.scorecard-popup__items li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 800;
  font-size: 0.68rem;
  flex-shrink: 0;
}
.scorecard-popup__dismiss {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  transition: color var(--t-md);
}
.scorecard-popup__dismiss:hover { color: var(--text-muted); }

/* Strip responsive */
@media (max-width: 1024px) {
  .scorecard-strip__bg-visual { opacity: 0.15; width: 280px; }
}
@media (max-width: 768px) {
  .scorecard-strip__bg-visual { display: none; }
  .scorecard-strip__benefits { flex-direction: column; align-items: center; }
  .scorecard-benefit { justify-content: center; }
  .scorecard-popup { width: calc(100vw - 2rem); right: 1rem; bottom: 1rem; }
}

/* ── SCORECARD PAGE STYLES ───────────────────────────────────── */

/* Why section */
.scorecard-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 3.5rem;
}
.scorecard-why__body {
  font-size: 0.92rem;
  line-height: 1.88;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}
.scorecard-why__pullquote {
  background: var(--surface-2);
  border-left: 3px solid var(--gold);
  padding: 1.8rem 2rem;
  border-radius: 4px;
}
.scorecard-why__pullquote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
}
.scorecard-why__pullquote span {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.scorecard-gap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.2rem;
}
.scorecard-gap-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.scorecard-gap-list li::before {
  content: '·';
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -0.15em;
}

/* 6 Dimensions section */
.scorecard-dims-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.scorecard-dim-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.2rem 1.8rem;
  transition: border-color var(--t-md), box-shadow var(--t-md);
  position: relative;
  overflow: hidden;
}
.scorecard-dim-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0;
  transition: opacity var(--t-md);
}
.scorecard-dim-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.scorecard-dim-card:hover::after { opacity: 1; }
.scorecard-dim-card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(212, 147, 58, 0.18);
  line-height: 1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}
.scorecard-dim-card__name {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.scorecard-dim-card__desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* What You'll Receive section */
.scorecard-receive__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3.5rem;
}
.scorecard-receive-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.6rem 1.8rem;
  transition: border-color var(--t-md);
}
.scorecard-receive-item:hover { border-color: var(--border-light); }
.scorecard-receive-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.scorecard-receive-item__text {}
.scorecard-receive-item__title {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.scorecard-receive-item__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Form / embed section */
.scorecard-form-section {
  background: linear-gradient(155deg, #0f0d0a 0%, #080808 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.scorecard-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.scorecard-form-wrap__intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin: 1.2rem auto 3rem;
}
.scorecard-embed-placeholder {
  background: var(--surface);
  border: 1px dashed rgba(212, 147, 58, 0.35);
  border-radius: 6px;
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.scorecard-embed-placeholder__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(212, 147, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.scorecard-embed-placeholder__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}
.scorecard-embed-placeholder__body {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
  text-align: center;
}
.scorecard-embed-placeholder__note {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

/* =========================================================
   PORTFOLIO PAGE
   ========================================================= */

/* Intro line */
.port-intro {
  margin-bottom: 3rem;
  text-align: center;
}
.port-intro__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* 2-column grid */
.port-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

/* Card shell */
.port-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease;
}
.port-item:hover {
  border-color: rgba(212, 147, 58, 0.35);
}

/* ── THUMBNAIL ──────────────────────────────── */
.port-item__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d0d0d;
  cursor: pointer;
}
.port-item__thumb:hover .port-item__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold);
  border-color: var(--gold);
}
.port-item__thumb:hover .port-thumb-placeholder {
  opacity: 0.85;
}

/* Thumbnail placeholder variants */
.port-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  transition: opacity 0.3s ease;
}
.port-thumb-placeholder--1 {
  background: linear-gradient(135deg, #0e1520 0%, #1a2a42 100%);
}
.port-thumb-placeholder--2 {
  background: linear-gradient(135deg, #1a1208 0%, #2e1e08 100%);
}
.port-thumb-placeholder--3 {
  background: linear-gradient(135deg, #091410 0%, #0f2418 100%);
}
.port-thumb-placeholder--4 {
  background: linear-gradient(135deg, #0e0e1e 0%, #181830 100%);
}
.port-thumb-placeholder--5 {
  background: linear-gradient(135deg, #180a10 0%, #2a0e1a 100%);
}
.port-thumb-placeholder--6 {
  background: linear-gradient(135deg, #0d1218 0%, #141e28 100%);
}

.port-thumb-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
  padding: 1.5rem;
}
.port-thumb-placeholder__inner p {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
  margin: 0;
}

/* Play button — centered over thumbnail */
.port-item__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 147, 58, 0.18);
  border: 1.5px solid rgba(212, 147, 58, 0.55);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.25s ease,
              border-color 0.25s ease;
  z-index: 2;
}
.port-item__play:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold);
  border-color: var(--gold);
  color: #080808;
}
.port-item__play svg {
  margin-left: 3px; /* optical center for play triangle */
}

/* Type label overlay — bottom-left of thumbnail */
.port-item__overlay {
  position: absolute;
  bottom: 0.8rem;
  left: 0.9rem;
  z-index: 2;
}
.port-item__type {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.28rem 0.65rem;
  border-radius: 2px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ── PLAYER ─────────────────────────────────── */
.port-item__player {
  position: relative;
  background: #000;
}
.port-item__player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
}
.port-item__player-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.port-item__close {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.04);
  border: none;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s ease, color 0.2s ease;
}
.port-item__close:hover {
  background: rgba(255,255,255,0.07);
  color: var(--text);
}

/* ── INFO SECTION ───────────────────────────── */
.port-item__info {
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.port-item__info-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}
.port-item__client {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
  flex: 1;
}
.port-item__type-label {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(212, 147, 58, 0.2);
  padding: 0.28rem 0.6rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}
.port-item__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* "More work available" note */
.port-note {
  margin-top: 3.5rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.port-note p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.port-note a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(212, 147, 58, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.port-note a:hover {
  text-decoration-color: var(--gold);
}

/* ── PORTFOLIO RESPONSIVE ───────────────────── */
@media (max-width: 900px) {
  .port-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .port-grid {
    gap: 1.5rem;
  }
  .port-item__info {
    padding: 1.2rem 1.2rem 1.4rem;
  }
  .port-item__play {
    width: 50px;
    height: 50px;
  }
}

/* ── SCORECARD RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .scorecard-promo__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .scorecard-preview-card { position: relative; top: auto; }
  .scorecard-why__grid { grid-template-columns: 1fr; gap: 3rem; }
  .scorecard-dims-grid { grid-template-columns: repeat(2, 1fr); }
  .scorecard-receive__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .scorecard-promo__header { margin-bottom: 3.5rem; }
  .scorecard-dims-grid { grid-template-columns: 1fr; }
  .scorecard-receive__grid { grid-template-columns: 1fr; }
  .scorecard-embed-placeholder { padding: 3rem 1.5rem; }
}

/* =========================================================
   CINEMATIC BACKGROUND SYSTEM
   About page — add body.page--cinematic + HTML elements to activate

   THE FIX: Light leaks must be position:fixed above all
   section backgrounds, using mix-blend-mode:screen so they
   ADD warm/cool light through any dark background.

   Layer stack (low → high z-index):
      ↕  page content         sections, text (z-index auto)
   9970  .cin-vignette-el     corner darkening (normal blend)
   9972  .cin-projector       cream projector cone (screen)
   9973  .cin-blue-glow       cool atmospheric (screen)
   9974  .cin-amber--bl/tr    warm key light (screen)
   9981  .cin-particles-el    floating dust canvas
   9988  .cin-grain-el        film grain (overlay blend)
   ========================================================= */

/* ── HIDDEN SVG FOR GRAIN FILTER ────────────────────── */
.cin-grain-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ── STRUCTURAL WRAPPER (no visual effect) ──────────── */
.cin-bg {
  pointer-events: none;
}

/* ── AMBER KEY LIGHT — bottom-left ───────────────────
   The primary warm bloom. mix-blend-mode:screen means
   it ADDS amber luminance on top of any section color.
   On #080808, this lifts the corner from near-black to
   a warm dark copper. Slow breathing animation (~22s).
   ─────────────────────────────────────────────────── */
.cin-amber--bl {
  position: fixed;
  bottom: -14%;
  left: -8%;
  width: 68%;
  height: 66%;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 147, 58, 0.30) 0%,
    rgba(185, 105, 22, 0.12) 40%,
    transparent 68%
  );
  filter: blur(55px);
  pointer-events: none;
  z-index: 9974;
  mix-blend-mode: screen;
  animation: cin-bl 22s ease-in-out infinite alternate;
}

/* Amber hair-light — top-right */
.cin-amber--tr {
  position: fixed;
  top: -12%;
  right: -8%;
  width: 46%;
  height: 52%;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 147, 58, 0.18) 0%,
    transparent 62%
  );
  filter: blur(65px);
  pointer-events: none;
  z-index: 9974;
  mix-blend-mode: screen;
  animation: cin-tr 28s ease-in-out infinite alternate;
}

/* ── BLUE ATMOSPHERIC ─────────────────────────────────
   Cool separation light — evokes documentary color
   grading where fill light is slightly blue/cool.
   Placed upper-left to contrast the bottom-left amber.
   ─────────────────────────────────────────────────── */
.cin-blue-glow {
  position: fixed;
  top: 4%;
  left: 6%;
  width: 54%;
  height: 48%;
  background: radial-gradient(
    ellipse at center,
    rgba(46, 121, 201, 0.14) 0%,
    transparent 65%
  );
  filter: blur(78px);
  pointer-events: none;
  z-index: 9973;
  mix-blend-mode: screen;
  animation: cin-blue 34s ease-in-out infinite alternate;
}

/* ── PROJECTOR CONE ───────────────────────────────────
   Ultra-faint cream light from top-center, shaped like
   a cinema projector beam — barely visible but adds a
   sense of being inside a screening room.
   ─────────────────────────────────────────────────── */
.cin-projector {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 75%;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 240, 0.042) 0%,
    rgba(255, 250, 235, 0.016) 32%,
    transparent 72%
  );
  clip-path: polygon(18% 0%, 82% 0%, 100% 100%, 0% 100%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 9972;
  mix-blend-mode: screen;
}

/* ── PARTICLES CANVAS ─────────────────────────────── */
.cin-particles-el {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9981;
}

/* ── VIGNETTE ─────────────────────────────────────────
   Classic film-frame darkening at all four edges.
   Sits above page content but BELOW the light leaks,
   so the amber glow can push back against the darkness
   in the corners — a natural cinematic tension.
   ─────────────────────────────────────────────────── */
.cin-vignette-el {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9970;
  background: radial-gradient(
    ellipse 110% 95% at 50% 42%,
    transparent 28%,
    rgba(0, 0, 0, 0.22) 58%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* ── FILM GRAIN ───────────────────────────────────────
   SVG fractalNoise applied to a large div, shifted
   each CSS animation step. JS updates the seed every
   80ms for random noise. mix-blend-mode:overlay adds
   bidirectional texture — brightens lighter areas,
   darkens darker areas, net zero brightness shift.
   ─────────────────────────────────────────────────── */
.cin-grain-el {
  position: fixed;
  inset: -55%;
  width: 210%;
  height: 210%;
  pointer-events: none;
  z-index: 9988;
  opacity: 0.048;
  mix-blend-mode: overlay;
  filter: url(#cin-grain);
  background: #d0d0d0;
  will-change: transform;
  animation: cin-grain-shift 0.22s steps(1) infinite;
}

/* ── KEYFRAMES ──────────────────────────────────────── */

@keyframes cin-bl {
  0%   { opacity: 0.80; transform: scale(1.00) translate(0,     0);   }
  30%  { opacity: 1.00; transform: scale(1.06) translate(2%,   -4%);  }
  65%  { opacity: 0.88; transform: scale(1.03) translate(-1.5%, 2.5%);}
  100% { opacity: 0.94; transform: scale(1.09) translate(1.5%, -2%);  }
}

@keyframes cin-tr {
  0%   { opacity: 0.65; transform: scale(1.00) translate(0,    0);   }
  45%  { opacity: 0.95; transform: scale(1.10) translate(-3%,  5%);  }
  100% { opacity: 0.75; transform: scale(1.14) translate(2%,  -3%);  }
}

/* =========================================================
   MISSION PULSE SCORECARD — Full Form + Results
   ========================================================= */

/* ── SECTION WRAPPER ──────────────────────────────────── */
.mps-section {
  background: linear-gradient(180deg, #0a0808 0%, #080808 100%);
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}
/* Amber bokeh — upper right */
.mps-section::before {
  content: '';
  position: absolute;
  width: 860px;
  height: 860px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,147,58,0.28) 0%, rgba(212,147,58,0.10) 38%, rgba(212,147,58,0.03) 60%, transparent 75%);
  top: -300px;
  right: -250px;
  pointer-events: none;
  z-index: 0;
}
/* Blue bokeh — lower left */
.mps-section::after {
  content: '';
  position: absolute;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,121,201,0.22) 0%, rgba(46,121,201,0.08) 42%, transparent 68%);
  bottom: -180px;
  left: -180px;
  pointer-events: none;
  z-index: 0;
}
/* Keep all content above bokeh */
.mps-section > .container {
  position: relative;
  z-index: 1;
}
.mps-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
/* Larger "Take the Mission Pulse" label */
.mps-section__header .label {
  font-size: 1.06rem;
  letter-spacing: 0.32em;
  margin-bottom: 1.6rem;
}
.mps-section__intro {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 1.2rem auto 0;
  text-align: center;
}

/* ── FORM WRAPPER ─────────────────────────────────────── */
.mps-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* ── PROGRESS BAR ─────────────────────────────────────── */
.mps-progress {
  margin-bottom: 2.8rem;
}
.mps-progress__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}
.mps-progress__domain {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.mps-progress__count {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.mps-progress__track {
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.mps-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #E8B055);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
  width: 0;
}

/* ── STEP SHELL ───────────────────────────────────────── */
.mps-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.8rem 3rem;
}
@media (max-width: 600px) {
  .mps-step { padding: 2rem 1.5rem; }
}
.mps-step--intro { text-align: center; }
.mps-step--lead  { text-align: center; }

.mps-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.mps-domain-label {
  font-family: var(--font-ui);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.mps-domain-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mps-question {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.38;
  margin-bottom: 2rem;
}
.mps-step-note {
  font-size: 0.76rem;
  color: var(--text-dim);
  margin-top: 1.4rem;
}

/* ── ORG TYPE GRID ────────────────────────────────────── */
.mps-org-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.mps-org-btn {
  padding: 0.85rem 1.4rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-align: center;
}
.mps-org-btn:hover,
.mps-org-btn.is-sel {
  border-color: var(--gold);
  color: var(--text);
  background: rgba(212,147,58,0.08);
}
.mps-org-btn.is-sel {
  font-weight: 600;
}

/* ── BEGIN BUTTON ─────────────────────────────────────── */
.mps-begin-btn.is-dim {
  opacity: 0.38;
  pointer-events: none;
}

/* ── ANSWER OPTIONS ───────────────────────────────────── */
.mps-opts {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mps-opt {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s, background 0.18s;
  width: 100%;
}
.mps-opt:hover {
  border-color: rgba(212,147,58,0.5);
  background: rgba(212,147,58,0.05);
}
.mps-opt.is-sel {
  border-color: var(--gold);
  background: rgba(212,147,58,0.1);
}
.mps-opt__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: border-color 0.18s, background 0.18s;
  color: transparent;
}
.mps-opt.is-sel .mps-opt__check {
  background: var(--gold);
  border-color: var(--gold);
  color: #080808;
}
.mps-opt__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  transition: color 0.18s;
}
.mps-opt.is-sel .mps-opt__text {
  color: var(--text);
}

/* ── NAV BUTTONS ──────────────────────────────────────── */
.mps-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
.mps-nav__next { min-width: 130px; }

/* ── Inline arrow navigation — embedded in each question step ────── */
.mps-inline-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}
.mps-arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0.4rem 0;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--t), transform var(--t);
}
.mps-arrow-btn--back:hover { color: var(--text); }
.mps-arrow-btn--back:hover svg { transform: translateX(-3px); }
.mps-arrow-btn--back svg { transition: transform var(--t); }

/* Forward arrow — dimmed until an answer is selected */
.mps-arrow-btn--fwd {
  color: var(--text-dim);
  cursor: default;
  pointer-events: none;
}
.mps-arrow-btn--fwd.is-active {
  color: var(--blue-light);
  cursor: pointer;
  pointer-events: auto;
}
.mps-arrow-btn--fwd.is-active:hover { color: var(--blue); }
.mps-arrow-btn--fwd.is-active svg { transition: transform var(--t); }
.mps-arrow-btn--fwd.is-active:hover svg { transform: translateX(3px); }

/* ── LEAD FORM ────────────────────────────────────────── */
.mps-lead-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(212,147,58,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}
.mps-lead-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0.8rem auto 2rem;
}
.mps-lead-form {
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}
.mps-lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .mps-lead-row { grid-template-columns: 1fr; }
}
.mps-lead-email-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.4rem;
  color: var(--text-muted);
}
.mps-lead-email-note p {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── SHAKE ANIMATION ──────────────────────────────────── */
@keyframes mps-shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}
.mps-shake { animation: mps-shake 0.42s ease; }

/* =========================================================
   RESULTS VIEW
   ========================================================= */

.mps-results-view {
  max-width: 900px;
  margin: 0 auto;
}

/* ── RESULTS HEADER ───────────────────────────────────── */
.mps-res-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.mps-res-greeting {
  font-family: var(--font-ui);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.mps-res-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
.mps-res-org {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}
.mps-res-email-note {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.80rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.65rem 1.1rem;
}

/* ── SCORE HERO ───────────────────────────────────────── */
.mps-score-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
@media (max-width: 640px) {
  .mps-score-hero { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
}
.mps-gauge-block { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.mps-gauge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(var(--gc, #D4933A) 0% var(--pct, 0%), #1c1c1c var(--pct, 0%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.8s cubic-bezier(0.22,1,0.36,1);
}
.mps-gauge__hole {
  position: absolute;
  width: 114px;
  height: 114px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mps-gauge__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.mps-gauge__den {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--text-dim);
  font-weight: 600;
}
.mps-gauge__label {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}
.mps-gauge__label.tier5 { color: #3BAA7A; }
.mps-gauge__label.tier4 { color: #3BAA7A; }
.mps-gauge__label.tier3 { color: #D4933A; }
.mps-gauge__label.tier2 { color: #E06060; }
.mps-gauge__label.tier1 { color: #E06060; }

.mps-score-copy { }
.mps-score-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.82;
}

/* ── RADAR + DOMAIN GRID ──────────────────────────────── */
.mps-viz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}
@media (max-width: 700px) {
  .mps-viz-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.mps-viz-label {
  font-family: var(--font-ui);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.mps-radar-col { }
.mps-domain-col { display: flex; flex-direction: column; gap: 1.1rem; }

/* Domain row */
.mps-drow { }
.mps-drow__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.45rem;
}
.mps-drow__name {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}
.mps-drow__score {
  font-family: var(--font-ui);
  font-size: 0.80rem;
  font-weight: 700;
}
.mps-drow__den { font-size: 0.62em; opacity: 0.5; font-weight: 400; }
.mps-drow__score--strong { color: #3BAA7A; }
.mps-drow__score--mid    { color: #D4933A; }
.mps-drow__score--gap    { color: #E06060; }
.mps-dbar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}
.mps-dbar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.22,1,0.36,1);
}
.mps-dstatus {
  font-family: var(--font-ui);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mps-dstatus--strong { color: #3BAA7A; }
.mps-dstatus--mid    { color: #D4933A; }
.mps-dstatus--gap    { color: #E06060; }

/* ── SHARED BIG SCORE DEN ─────────────────────────────── */
.mps-card-score-den {
  font-family: var(--font-ui);
  font-size: 0.70rem;
  font-weight: 500;
  opacity: 0.4;
  margin-left: 0.1rem;
}

/* ── GAP ANALYSIS ─────────────────────────────────────── */
.mps-gaps {
  margin-bottom: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.mps-gaps__header {
  margin-bottom: 1.5rem;
}
.mps-gaps__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.4rem 0 0.4rem;
}
.mps-gaps__sub {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}

.mps-gap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid #E06060;
  border-radius: 0 6px 6px 0;
  padding: 1.5rem 1.8rem;
  margin-bottom: 0.9rem;
}
.mps-gap-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.5rem;
}
.mps-gap-card__score-block { flex: 1; }
.mps-gap-card__domain-lbl {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}
.mps-gap-card__score-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.mps-gap-badge {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E06060;
  background: rgba(224,96,96,0.1);
  border: 1px solid rgba(224,96,96,0.22);
  padding: 0.22rem 0.6rem;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.mps-gap-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.mps-gap-card__body {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin: 0;
}

/* ── STRENGTHS ────────────────────────────────────────── */
.mps-strengths {
  margin-bottom: 3rem;
}
.mps-strengths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 560px) {
  .mps-strengths__grid { grid-template-columns: 1fr; }
}
.mps-strength-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid #3BAA7A;
  border-radius: 0 6px 6px 0;
  padding: 1.4rem 1.6rem;
}
.mps-strength-card__score-block {
  margin-bottom: 0.8rem;
}
.mps-strength-card__domain-lbl {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}
.mps-strength-card__score-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.mps-strength-card__body {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── PACKAGE RECOMMENDATION ───────────────────────────── */
.mps-rec {
  margin-bottom: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.mps-rec__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.5rem 0 2rem;
  line-height: 1.3;
}
.mps-rec-card {
  background: var(--surface);
  border: 1px solid rgba(212,147,58,0.3);
  border-radius: 8px;
  overflow: hidden;
}
.mps-rec-card__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
@media (max-width: 700px) {
  .mps-rec-card__grid { grid-template-columns: 1fr; }
}
.mps-rec-card__left {
  padding: 1.8rem 2rem;
  border-right: 1px solid var(--border);
}
@media (max-width: 700px) {
  .mps-rec-card__left { border-right: none; border-bottom: 1px solid var(--border); }
}
.mps-rec-card__pkg-label {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.mps-rec-card__pkg-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.mps-rec-card__price {
  font-family: var(--font-ui);
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}
.mps-rec-card__why {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.mps-rec-card__btns {
  display: flex;
  flex-direction: row;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}
.mps-rec-card__right {
  padding: 1.8rem 1.8rem;
  background: rgba(212,147,58,0.04);
}
.mps-rec-card__why-label {
  font-family: var(--font-ui);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.4rem;
}
.mps-rec-why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  color: var(--gold);
}
.mps-rec-why-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.mps-rec-why-item svg { flex-shrink: 0; margin-top: 3px; }

/* ── STRATEGY SESSION ─────────────────────────────────── */
.mps-strategy {
  margin-bottom: 4rem;
}
.mps-strategy-card {
  background: linear-gradient(135deg, #0f0d0a 0%, #0a0808 100%);
  border: 1px solid rgba(212,147,58,0.25);
  border-radius: 8px;
  padding: 3rem;
}
@media (max-width: 600px) {
  .mps-strategy-card { padding: 2rem 1.5rem; }
}
.mps-strategy-card__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.mps-strategy-card__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}
.mps-strategy-card__body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.82;
  max-width: 680px;
  margin-bottom: 2rem;
}
.mps-strategy-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.mps-strategy-detail__label {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}
.mps-strategy-detail__val {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}
.mps-strategy-detail__val span {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.mps-strategy-card__note {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 1.2rem;
}
.mps-strategy-card__note em {
  color: var(--text-muted);
  font-style: normal;
  font-weight: 600;
}

/* ── WHAT HAPPENS NEXT ────────────────────────────────── */
.mps-next {
  padding: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  margin-bottom: 2rem;
}
.mps-next__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2.5rem;
}
.mps-next-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  text-align: left;
}
.mps-next-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mps-next-step:last-child { border-bottom: none; }
.mps-next-step__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(212,147,58,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}
.mps-next-step__title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.mps-next-step__body {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.mps-next__btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.mps-next__note {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── STRATEGY SESSION PRIMARY (always-first recommendation) ─ */
.mps-strategy-primary {
  background: linear-gradient(135deg, #0f0d0a 0%, #0a0808 100%);
  border: 1px solid rgba(212,147,58,0.35);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}
.mps-strategy-primary__badge {
  background: var(--gold);
  color: #080808;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  display: inline-block;
}
.mps-strategy-primary__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
}
@media (max-width: 720px) {
  .mps-strategy-primary__inner { grid-template-columns: 1fr; }
}
.mps-strategy-primary__left {
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(212,147,58,0.15);
}
@media (max-width: 720px) {
  .mps-strategy-primary__left { border-right: none; border-bottom: 1px solid rgba(212,147,58,0.15); }
}
.mps-strategy-primary__right {
  padding: 1.8rem 1.8rem;
  background: rgba(212,147,58,0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mps-strategy-primary__step {
  font-family: var(--font-ui);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.mps-strategy-primary__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.mps-strategy-primary__price {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.mps-strategy-primary__price span {
  font-size: 0.70rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-left: 0.25rem;
}
.mps-strategy-primary__body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin: 0;
}
.mps-strategy-primary__note {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin-top: 0.8rem;
}

/* ── SECONDARY PACKAGE CARD ───────────────────────────────── */
.mps-rec-secondary {
  margin-top: 1rem;
}
.mps-rec-secondary__hdr {
  margin-bottom: 0.9rem;
}
.mps-rec-secondary__label {
  font-family: var(--font-ui);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Inline credit note inside secondary card right column */
.mps-rec-credit-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.77rem;
  color: #6ecfa4;
  line-height: 1.55;
  margin-top: 1rem;
}
.mps-rec-credit-inline strong { color: #3BAA7A; }
.mps-rec-credit-inline svg { flex-shrink: 0; margin-top: 2px; color: #3BAA7A; }

/* ── EMAIL REPORT NOTE ────────────────────────────────────── */
.mps-report-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.8rem 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}
.mps-report-note p {
  font-size: 0.80rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.mps-report-note--bottom {
  margin-top: 1rem;
  margin-bottom: 0;
  justify-content: center;
  text-align: center;
}

/* ================================================================
   CINEMATIC BACKGROUND ACCENTS
   ================================================================ */

/* ── Film grain — all hero sections ─────────────────────────────── */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.1;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 3;
}

/* ── Bokeh light orbs — hero background ─────────────────────────── */
/* Warm gold orb — upper right, center pulled into visible area */
.page-hero__bg::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,147,58,0.32) 0%, rgba(212,147,58,0.14) 35%, rgba(212,147,58,0.04) 60%, transparent 75%);
  top: -220px;
  right: -180px;
  pointer-events: none;
}
/* Cool blue orb — lower left, center pulled into visible area */
.page-hero__bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,121,201,0.22) 0%, rgba(46,121,201,0.08) 45%, transparent 68%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

/* ── Letterbox accent line — top of hero ─────────────────────────── */
.page-hero__overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212,147,58,0.9) 15%,
    rgba(212,147,58,0.9) 85%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}
/* Accent line — bottom of hero */
.page-hero__overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212,147,58,0.35) 25%,
    rgba(212,147,58,0.35) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ── Viewfinder corner brackets — hero content framelines ────────── */
.page-hero__content::before,
.page-hero__content::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: rgba(212,147,58,0.75);
  border-style: solid;
  pointer-events: none;
}
/* Top-left bracket */
.page-hero__content::before {
  top: 2.8rem;
  left: 2.5rem;
  border-width: 2px 0 0 2px;
}
/* Bottom-right bracket */
.page-hero__content::after {
  bottom: 2.8rem;
  right: 2.5rem;
  border-width: 0 2px 2px 0;
}


/* ── Ambient bokeh — dark sections ──────────────────────────────── */
.section--dark { position: relative; }
.section--dark::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,147,58,0.13) 0%, rgba(212,147,58,0.05) 45%, transparent 68%);
  top: -200px;
  right: -200px;
  pointer-events: none;
  z-index: 0;
}
/* Ensure section content sits above the bokeh layer */
.section--dark > .container { position: relative; z-index: 1; }

/* =========================================================
   PRINT STYLESHEET — Clean PDF output
   ========================================================= */
@media print {
  /* Hide nav, footer, form view, print bar, CTAs */
  .nav, .footer, .page-hero, .section, .cta-band,
  #mps-section-header, .mps-form-view, .mps-report-note,
  .mps-next__btns, .mps-rec-card__btns, .mps-strategy-primary__note,
  .btn { display: none !important; }

  /* White backgrounds and dark readable text */
  body { background: #ffffff !important; color: #111111 !important; }
  .mps-section { background: #ffffff !important; padding: 0 !important; }
  .mps-results-view { max-width: 100% !important; padding: 2rem !important; }

  /* Score hero */
  .mps-score-hero {
    background: #f7f7f7 !important;
    border: 1px solid #dddddd !important;
    grid-template-columns: auto 1fr !important;
  }
  .mps-gauge__hole { background: #f7f7f7 !important; }

  /* Surface elements */
  .mps-rec-card, .mps-next, .mps-gap-card, .mps-strength-card,
  .mps-strategy-primary, .mps-res-email-note {
    background: #f9f9f9 !important;
    border-color: #dddddd !important;
  }
  .mps-strategy-primary { border-color: #c8922e !important; }
  .mps-strategy-primary__left { border-right-color: #dddddd !important; }
  .mps-strategy-primary__right { background: #f5f0e8 !important; }
  .mps-rec-card__right { background: #fdf9f3 !important; }

  /* Text colors for print */
  .mps-res-title, .mps-rec__title, .mps-gaps__title,
  .mps-next__title, .mps-strategy-primary__name,
  .mps-rec-card__pkg-name, .mps-gap-card__title { color: #111111 !important; }

  .mps-score-intro, .mps-gap-card__body, .mps-rec-card__why,
  .mps-strategy-primary__body, .mps-next-step__body,
  .mps-rec-why-item p, .mps-strength-card__body { color: #444444 !important; }

  .mps-res-greeting, .mps-rec-card__pkg-label,
  .mps-strategy-primary__step { color: #b8762a !important; }

  /* Radar SVG — make lines visible on white */
  .mps-radar-col polygon[fill="none"] { stroke: rgba(0,0,0,0.12) !important; }
  .mps-radar-col line { stroke: rgba(0,0,0,0.08) !important; }
  .mps-radar-col text { fill: rgba(0,0,0,0.45) !important; }

  /* Credit/impact boxes */
  .mps-strategy-primary__credit { background: #edf7f2 !important; border-color: #8ecfb0 !important; }
  .mps-strategy-primary__credit p, .mps-strategy-primary__credit strong { color: #1e7a4e !important; }
  .mps-rec-credit-note { background: #edf7f2 !important; border-color: #8ecfb0 !important; }
  .mps-rec-credit-note p, .mps-rec-credit-note strong { color: #1e7a4e !important; }
  .mps-gap-card__impact { background: #fdf0f0 !important; border-color: #f0b0b0 !important; }
  .mps-gap-card__impact p { color: #a04040 !important; }

  /* Page break hints */
  .mps-gap-card, .mps-strength-card,
  .mps-score-hero, .mps-strategy-primary { page-break-inside: avoid; }
}

@keyframes cin-blue {
  0%   { opacity: 0.52; transform: scale(1.00) translate(0,   0);   }
  50%  { opacity: 0.92; transform: scale(1.12) translate(4%,  5%);  }
  100% { opacity: 0.68; transform: scale(1.18) translate(-3%, -4%); }
}

@keyframes cin-grain-shift {
  0%   { transform: translate(0,    0);   }
  10%  { transform: translate(-4%,  -8%); }
  20%  { transform: translate(-12%, 5%);  }
  30%  { transform: translate(5%,  -20%); }
  40%  { transform: translate(-5%,  18%); }
  50%  { transform: translate(-14%, 8%);  }
  60%  { transform: translate(12%,  0);   }
  70%  { transform: translate(0,    14%); }
  80%  { transform: translate(4%,  -3%);  }
  90%  { transform: translate(-8%,  6%);  }
  100% { transform: translate(3%,  -7%);  }
}
