:root {
  --paper: #f7f3ee;
  --paper-2: #efe8de;
  --ink: #12110f;
  --ink-soft: #2a2824;
  --muted: #6b6357;
  --line: #e3dccf;
  --line-strong: #cfc6b4;
  --gold: #d89b2a;
  --gold-bright: #f5b63d;
  --terra: #b8553b;
  --signal: #ff6b3d;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-card: 0 1px 0 rgba(18, 17, 15, 0.04), 0 14px 44px -24px rgba(18, 17, 15, 0.18);
  --shadow-bold: 0 18px 50px -20px rgba(18, 17, 15, 0.45);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 12% -10%, rgba(216, 155, 42, 0.18), transparent 40%),
    radial-gradient(circle at 92% 8%, rgba(184, 85, 59, 0.12), transparent 38%);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 243, 238, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px #2a2824;
}
.brand-mark svg { width: 20px; height: 20px; fill: currentColor; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; gap: .2rem; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-tagline {
  font-size: .68rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 1.4rem; color: var(--ink-soft); font-size: .95rem; font-weight: 500; }
.nav-links a:hover { color: var(--gold); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.25rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid var(--ink);
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.button:hover { transform: translateY(-1px); background: #000; }
.button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.button-ghost:hover { background: var(--paper-2); border-color: var(--ink); }
.button-small { padding: .68rem 1rem; font-size: .9rem; }
.button-block { width: 100%; }

.eyebrow {
  margin: 0 0 1rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.signal {
  display: inline-block;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(255, 107, 61, 0.18);
}

.section { padding: 5.25rem 0; }
.band { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { max-width: 58rem; margin-bottom: 2.5rem; }
.section-heading.narrow { max-width: 42rem; }
.section-heading h2 {
  font-family: var(--serif);
  margin: 0 0 .9rem;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}
.section-heading p:last-child { margin: 0; color: var(--muted); font-size: 1.05rem; max-width: 40rem; }

.hero { padding: 5.5rem 0 4.5rem; position: relative; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--line);
}
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero-copy h1 {
  font-family: var(--serif);
  margin: 0;
  font-size: clamp(2.7rem, 6.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}
.hero-copy h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--terra);
}
.hero-text {
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin: 1.3rem 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.8rem 0 1.4rem; }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: .5rem;
  color: var(--muted); font-size: .85rem;
}
.hero-proof span {
  padding: .4rem .75rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.phone-card {
  background: var(--ink);
  color: #f5ede0;
  padding: 1.3rem 1.3rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-bold);
  position: relative;
  overflow: hidden;
}
.phone-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(245, 182, 61, 0.18), transparent 55%);
  pointer-events: none;
}
.phone-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; position: relative; }
.caller { display: flex; gap: .75rem; }
.caller-dot {
  width: .7rem; height: .7rem; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(255, 107, 61, 0.18);
  margin-top: .5rem;
}
.caller-label { margin: 0; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: #c8bda8; }
.caller-name { margin: .2rem 0 0; font-weight: 600; font-size: 1rem; color: #fff; }
.outcome {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .65rem;
  background: rgba(255, 107, 61, 0.18);
  color: #ffb99f;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 61, 0.35);
  white-space: nowrap;
}
.coaching-chip {
  margin-top: 1.3rem;
  background: rgba(245, 182, 61, 0.12);
  border: 1px solid rgba(245, 182, 61, 0.3);
  padding: .85rem 1rem;
  border-radius: 14px;
  position: relative;
}
.coaching-label { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: .3rem; }
.coaching-chip p { margin: 0; color: #f5ede0; font-size: .92rem; }

/* Stat strip */
.stat-strip {
  background: var(--ink);
  color: #f5ede0;
  padding: 2.4rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.stat-strip::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 120%, rgba(255, 107, 61, 0.22), transparent 45%),
    radial-gradient(circle at 90% -20%, rgba(245, 182, 61, 0.18), transparent 50%);
  pointer-events: none;
}
.stat-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
}
.stat-grid > div {
  display: grid;
  gap: .3rem;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-grid > div:last-child { border-right: none; }
.stat-grid strong {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold-bright);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-grid span {
  color: #c8bda8;
  font-size: .88rem;
  line-height: 1.45;
}
@media (min-width: 900px) {
  .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Dashboard mock */
.dashboard-mock {
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.dash-head {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
}
.dash-head h3 {
  font-family: var(--serif);
  margin: .25rem 0 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}
.dash-eyebrow {
  margin: 0;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.dash-kpis {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dash-kpis > div {
  display: grid;
  gap: .25rem;
  padding: .85rem 1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.dash-k-label {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.dash-kpis strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1;
  font-weight: 700;
}
.trend-up { color: #3d9960 !important; }
.dash-body { display: grid; gap: 1.5rem; }
.dash-trend {
  padding: 1.25rem 1.25rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.dash-trend-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: .5rem;
}
.dash-trend-caption {
  margin: .2rem 0 0;
  font-size: .8rem;
  color: var(--muted);
}
.dash-pill {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .3rem .6rem;
  border-radius: 999px;
  background: rgba(61, 153, 96, 0.12);
  color: #2f7a4b;
  border: 1px solid rgba(61, 153, 96, 0.28);
  white-space: nowrap;
}
.chart-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .6rem;
  align-items: stretch;
  margin-top: .3rem;
}
.chart-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2px 0;
  font-size: .7rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.chart {
  width: 100%;
  height: 140px;
  display: block;
  overflow: visible;
}
.chart .grid {
  stroke: var(--line);
  stroke-width: 1;
  stroke-dasharray: 3 4;
  vector-effect: non-scaling-stroke;
}
.chart .line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.chart .dot {
  fill: #fff;
  stroke: var(--gold);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.chart .dot-active {
  fill: var(--gold);
  stroke: #fff;
  stroke-width: 3;
  filter: drop-shadow(0 2px 6px rgba(216, 155, 42, 0.5));
}
.dash-weeks {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .06em;
  padding-left: calc(24px + .6rem);
  font-variant-numeric: tabular-nums;
}
.dash-calls {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
}
.dash-calls li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .75rem .9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .15s ease;
}
.dash-calls li:hover { border-color: var(--line-strong); }
.call-score {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1;
  padding: .5rem .7rem;
  border-radius: 10px;
  min-width: 3rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.call-good { background: rgba(61, 153, 96, 0.12); color: #2f7a4b; }
.call-mid { background: rgba(216, 155, 42, 0.15); color: var(--gold); }
.call-bad { background: rgba(184, 85, 59, 0.15); color: var(--terra); }
.call-title {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
}
.call-meta {
  margin: .1rem 0 0;
  font-size: .78rem;
  color: var(--muted);
}
.call-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: 999px;
}
.tag-good { background: rgba(61, 153, 96, 0.12); color: #2f7a4b; border: 1px solid rgba(61, 153, 96, 0.28); }
.tag-mid { background: rgba(216, 155, 42, 0.12); color: var(--gold); border: 1px solid rgba(216, 155, 42, 0.3); }
.tag-bad { background: rgba(184, 85, 59, 0.12); color: var(--terra); border: 1px solid rgba(184, 85, 59, 0.3); }
@media (min-width: 900px) {
  .dash-head { grid-template-columns: 1fr auto; align-items: end; gap: 2rem; }
  .dash-kpis { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .75rem; }
  .dash-body { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

.grid-3, .grid-4, .faq {
  display: grid;
  gap: 1rem;
}
.card, .scenario, .pilot-card, .faq article, .cta-panel {
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
}
.card h3, .scenario h3, .pilot-card h3, .faq h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 0 0 .55rem;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 600;
}
.card p, .scenario p, .pilot-card p.pilot-note, .faq article p {
  margin: 0;
  color: var(--muted);
}
.card-index, .scenario-tag, .pilot-tag, .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--terra);
  background: rgba(184, 85, 59, 0.12);
  border: 1px solid rgba(184, 85, 59, 0.2);
  border-radius: 999px;
  padding: .25rem .65rem;
  font-size: .78rem;
  letter-spacing: .04em;
  margin-bottom: 1rem;
  width: fit-content;
}

.split { display: grid; gap: 1rem; }
.card-list ul {
  margin: .5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .5rem;
}
.card-list li {
  padding: .55rem 0 .55rem 1.6rem;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.card-list li:last-child { border-bottom: none; }
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .95rem;
  width: .7rem; height: .7rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 155, 42, 0.15);
}
.card-accent {
  background: var(--ink);
  color: #f5ede0;
  border-color: var(--ink);
}
.card-accent h3 { color: #fff; }
.card-accent li { color: #e6ddc9; border-bottom-color: rgba(255,255,255,0.12); }
.card-accent li::before { background: var(--gold-bright); box-shadow: 0 0 0 3px rgba(245, 182, 61, 0.18); }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}
.steps h3 {
  font-family: var(--serif);
  margin: 0 0 .4rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}
.steps p { margin: 0; color: var(--muted); max-width: 48rem; }
.step-num {
  background: var(--ink);
  color: var(--gold-bright);
  border: none;
  min-width: 2.6rem;
  min-height: 2.6rem;
  margin: 0;
  font-size: .9rem;
  letter-spacing: .04em;
}

.scenario { position: relative; padding-top: 1.4rem; }
.scenario-tag { color: var(--gold); background: rgba(216, 155, 42, 0.12); border-color: rgba(216, 155, 42, 0.25); }

.pilot-wrap { display: grid; gap: 2rem; justify-items: center; text-align: center; }
.pilot-wrap .section-heading { text-align: center; margin-bottom: 0; }
.pilot-wrap .section-heading p { margin-left: auto; margin-right: auto; }
.pilot-card {
  max-width: 460px;
  width: 100%;
  display: grid;
  gap: .8rem;
  text-align: left;
  border: 1px solid var(--line-strong);
  position: relative;
}
.pilot-price {
  font-family: var(--serif);
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
}
.pilot-card ul {
  list-style: none; padding: 0; margin: .2rem 0 .5rem;
  display: grid; gap: .4rem;
}
.pilot-card li {
  padding-left: 1.3rem;
  position: relative;
  color: var(--ink-soft);
}
.pilot-card li::before {
  content: "";
  position: absolute; left: 0; top: .55rem;
  width: .6rem; height: .6rem;
  border-radius: 50%;
  background: var(--gold);
}

.cta-section { padding-bottom: 6rem; }
.cta-panel {
  background: var(--ink);
  color: #f5ede0;
  border: 1px solid var(--ink);
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 107, 61, 0.25), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(245, 182, 61, 0.2), transparent 45%);
  pointer-events: none;
}
.cta-panel h2 { color: #fff; }
.cta-panel p { color: #dcd3bd; margin: .4rem 0 0; max-width: 36rem; }
.cta-panel .eyebrow { color: var(--gold-bright); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; z-index: 1; }
.cta-panel .button { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.cta-panel .button:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.cta-panel .button-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-panel .button-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

.site-footer { border-top: 1px solid var(--line); background: var(--paper-2); }
.footer-grid {
  display: grid;
  gap: 1rem;
  padding: 2.4rem 0;
  align-items: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}
.footer-logo div { display: flex; flex-direction: column; line-height: 1.2; }
.footer-logo strong { font-family: var(--serif); font-weight: 700; color: var(--ink); }
.footer-logo span { color: var(--muted); font-size: .82rem; letter-spacing: .06em; }
.footer-links { display: flex; gap: 1.25rem; color: var(--ink-soft); flex-wrap: wrap; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--muted); margin: 0; font-size: .85rem; }

/* Desktop layout */
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 3.5rem; }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
  .faq { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cta-panel { grid-template-columns: 1.1fr auto; padding: 3rem 3rem; }
  .footer-grid { grid-template-columns: 1.2fr 1fr auto; }
}

/* Mobile */
@media (max-width: 900px) {
  .nav { flex-wrap: wrap; padding: .7rem 0; }
  .nav-links { order: 3; width: 100%; justify-content: flex-start; gap: 1rem; padding-top: .4rem; }
}
@media (max-width: 640px) {
  .hero { padding: 4.5rem 0 3.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .phone-card { padding: 1.1rem; }
  .score-block { grid-template-columns: 1fr; }
  .steps li { grid-template-columns: 1fr; gap: .6rem; }
  .cta-panel { padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ============ HERO: radial gauge + call arc ============ */
.gauge-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
  margin: 1.2rem 0 1.3rem;
}
.gauge { position: relative; width: 120px; height: 120px; flex-shrink: 0; }
.gauge svg { width: 100%; height: 100%; display: block; }
.gauge-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: .15rem;
}
.gauge-num { display: inline-flex; align-items: baseline; line-height: 1; }
.gauge-val {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-bright);
}
.gauge-denom { font-size: .75rem; color: #c8bda8; margin-left: .15rem; }
.gauge-label {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: #c8bda8;
  order: -1;
}
.gauge-tags { display: grid; gap: .4rem; }
.gauge-tag {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: .55rem;
  font-size: .85rem; color: #e6ddc9;
  padding: .5rem .75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.gauge-tag strong {
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: 1.05rem;
}
.gt-dot {
  width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(245, 182, 61, 0.18);
}
.gauge-tag:nth-child(2) .gt-dot { background: #e0a846; box-shadow: 0 0 0 3px rgba(224, 168, 70, 0.18); }
.gauge-tag:nth-child(3) .gt-dot { background: var(--signal); box-shadow: 0 0 0 3px rgba(255, 107, 61, 0.22); }

.arc {
  padding: .9rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
.arc-label {
  margin: 0 0 .35rem;
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-bright); font-weight: 700;
}
.arc-label span { color: #c8bda8; font-weight: 500; letter-spacing: .04em; text-transform: none; }
.arc-svg { width: 100%; height: 52px; display: block; overflow: visible; }
.arc-markers {
  display: flex; justify-content: space-between;
  font-size: .66rem; color: #c8bda8; margin-top: .35rem;
  letter-spacing: .04em;
}
.arc-markers .mk-warn { color: var(--signal); font-weight: 700; }


/* ============ TRANSCRIPT HIGHLIGHT ============ */
.transcript-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--paper), #ece3d3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.transcript-intro {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.transcript-intro h2 { margin-bottom: .75rem; }
.transcript-lede { color: var(--muted); margin: 0 auto; font-size: 1.05rem; }

.transcript-panel {
  max-width: 860px;
  margin: 0 auto;
  background: #fffaf1;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: var(--shadow-card);
}
.tp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.tp-head-left { display: flex; align-items: center; gap: .85rem; min-width: 0; }
.tp-title { margin: 0; font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.tp-meta { margin: .15rem 0 0; font-size: .78rem; color: var(--muted); }
.tp-status {
  flex-shrink: 0;
  padding: .35rem .75rem;
  background: rgba(61, 153, 96, 0.12);
  color: #2f7a4b;
  border: 1px solid rgba(61, 153, 96, 0.28);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .7rem;
}
.tp-head-score {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
.tp-score-val {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.tp-score-label {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
}

/* timeline */
.tp-timeline { margin-bottom: 1.5rem; }
.tl-track {
  display: flex;
  gap: 2px;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper-2);
  margin-bottom: .55rem;
}
.tl-seg { display: block; }
.tl-seg-good { background: linear-gradient(90deg, #3d9960, #4bb376); }
.tl-seg-ok { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tl-seg-miss { background: linear-gradient(90deg, var(--signal), var(--terra)); }
.tl-markers {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
}
.tl-mark { display: flex; flex-direction: column; gap: .1rem; color: var(--muted); }
.tl-mark:last-child { align-items: flex-end; text-align: right; }
.tl-mark:nth-child(2) { align-items: center; text-align: center; }
.tl-mark-time { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink-soft); }
.tl-mark-label { font-size: .68rem; letter-spacing: .04em; }
.tl-mark-warn { color: var(--signal); font-weight: 700; }

/* chat messages */
.tp-chat { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.25rem; }
.msg {
  position: relative;
  max-width: 78%;
  padding: .7rem .95rem .85rem;
  border-radius: 14px;
  font-size: .95rem;
  line-height: 1.45;
  box-shadow: 0 1px 0 rgba(18, 17, 15, 0.03);
}
.msg p { margin: 0; color: var(--ink); }
.msg-who {
  display: block;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: .3rem;
  opacity: .75;
}
.msg-time {
  display: block;
  font-size: .68rem;
  color: var(--muted);
  margin-top: .3rem;
  font-variant-numeric: tabular-nums;
  opacity: .75;
}
.msg-caller {
  align-self: flex-start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  color: var(--ink-soft);
}
.msg-caller .msg-who { color: var(--terra); }
.msg-caller-fade { opacity: .72; }
.msg-staff {
  align-self: flex-end;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-right-radius: 4px;
}
.msg-staff .msg-who { color: var(--gold); text-align: right; }
.msg-staff .msg-time { text-align: right; }
.msg-good {
  border-color: rgba(61, 153, 96, 0.4);
  background: linear-gradient(180deg, rgba(61, 153, 96, 0.06), #fff 80%);
}
.msg-miss {
  border-color: rgba(255, 107, 61, 0.5);
  background: linear-gradient(180deg, rgba(255, 107, 61, 0.08), #fff 80%);
  box-shadow: 0 0 0 3px rgba(255, 107, 61, 0.08);
}
.msg-pin {
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .28rem .6rem;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(18, 17, 15, 0.12);
  white-space: nowrap;
}
.msg-pin-good { background: #3d9960; color: #fff; }
.msg-pin-miss { background: var(--signal); color: #fff; }

/* coaching */
.tp-coaching {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, rgba(216, 155, 42, 0.12), rgba(216, 155, 42, 0.04));
  border: 1px solid rgba(216, 155, 42, 0.35);
  border-radius: 14px;
}
.tp-coaching-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold);
  color: #fff;
  flex-shrink: 0;
}
.tp-coaching-icon svg { width: 20px; height: 20px; }
.tp-coaching-label {
  margin: 0 0 .2rem;
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.tp-coaching-text {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}

@media (max-width: 640px) {
  .tp-head { flex-wrap: wrap; }
  .msg { max-width: 92%; font-size: .9rem; }
  .tp-coaching-text { font-size: 1rem; }
}

/* ============ DASHBOARD additions ============ */
.dash-outcomes {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: .85rem;
}
.pill-neutral {
  background: rgba(216, 155, 42, 0.12) !important;
  color: var(--gold) !important;
  border-color: rgba(216, 155, 42, 0.3) !important;
}
.stack-row {
  display: flex;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.stack {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: .95rem;
  font-variant-numeric: tabular-nums;
  transition: flex .4s ease;
}
.stack.won { background: linear-gradient(90deg, #3d9960, #2f7a4b); }
.stack.mid { background: linear-gradient(90deg, var(--gold-bright), var(--gold)); color: var(--ink); }
.stack.lost { background: linear-gradient(90deg, var(--signal), var(--terra)); }
.stack-legend {
  display: flex; flex-wrap: wrap; gap: 1rem;
  font-size: .78rem; color: var(--muted);
}
.stack-legend i {
  display: inline-block;
  width: .7rem; height: .7rem;
  border-radius: 3px;
  margin-right: .4rem;
  vertical-align: middle;
}
.dot-won { background: #3d9960; }
.dot-mid { background: var(--gold); }
.dot-lost { background: var(--signal); }

.dash-col { display: flex; flex-direction: column; gap: 1rem; }
.dash-listhead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.dash-more {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
}
.dash-more:hover { color: var(--gold-bright); }

@media (max-width: 899px) {
  .dash-outcomes { gap: .65rem; }
  .stack-row { height: 30px; }
  .gauge-row { grid-template-columns: 1fr; }
  .gauge { margin: 0 auto; }
}

/* ============ WHY PHONE GENIUS — upgraded design ============ */
.why-section { position: relative; }

.vs-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
  margin: 2.5rem auto 3rem;
  max-width: 1000px;
}
.vs-col {
  padding: 1.5rem 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  box-shadow: var(--shadow-card);
}
.vs-old {
  background: var(--paper-2);
  border-color: var(--line);
}
.vs-new {
  background: linear-gradient(160deg, #fffaf1 0%, #fff 55%);
  border-color: rgba(216, 155, 42, 0.4);
  box-shadow: 0 18px 40px -26px rgba(216, 155, 42, 0.55), 0 1px 0 rgba(18, 17, 15, 0.04);
}
.vs-new::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(245, 182, 61, 0.8), rgba(216, 155, 42, 0) 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.vs-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--line);
}
.vs-label {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.vs-old .vs-label { color: var(--muted); }
.vs-verdict {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .3rem .65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.vs-verdict-bad {
  background: rgba(184, 85, 59, 0.1);
  color: var(--terra);
  border: 1px solid rgba(184, 85, 59, 0.25);
}
.vs-verdict-good {
  background: rgba(61, 153, 96, 0.12);
  color: #2f7a4b;
  border: 1px solid rgba(61, 153, 96, 0.28);
}
.vs-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.vs-col ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.vs-col ul li::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.4;
}
.vs-old ul li::before { content: "—"; color: var(--muted); }
.vs-old ul li { color: var(--muted); }
.vs-new ul li::before {
  content: "";
  top: 8px;
  left: 2px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.vs-divider span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--muted);
  background: var(--paper);
  padding: .35rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  z-index: 1;
}
.vs-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: calc(100% - 1rem);
  background: var(--line);
  transform: translateX(-50%);
}

@media (max-width: 820px) {
  .vs-compare {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .vs-divider {
    height: 2rem;
  }
  .vs-divider::before {
    width: calc(100% - 1rem);
    height: 1px;
    left: .5rem;
    transform: none;
  }
}

/* upgraded why cards */
.why-cards { margin-top: 0; }
.why-card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding-top: 1.5rem;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.why-card:nth-child(2)::after { background: linear-gradient(90deg, var(--signal), transparent); }
.why-card:nth-child(3)::after { background: linear-gradient(90deg, var(--terra), transparent); }
.why-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(216, 155, 42, 0.12);
  color: var(--gold);
  flex-shrink: 0;
}
.why-icon svg { width: 26px; height: 26px; }
.why-icon-2 {
  background: rgba(255, 107, 61, 0.12);
  color: var(--signal);
}
.why-icon-3 {
  background: rgba(184, 85, 59, 0.12);
  color: var(--terra);
}
.why-card h3 { margin: 0; }
.why-card p { margin: 0; color: var(--muted); }

/* ============ SCIENCE PAGE ============ */

/* hero pipeline stack */
.sci-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--ink);
  border-radius: 18px;
  padding: 1.5rem;
  color: #fff;
  box-shadow: 0 24px 48px -12px rgba(18,17,15,.35);
}
.sci-stack-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .85rem 0;
}
.sci-stack-item:first-child { padding-top: 0; }
.sci-stack-item:last-child { padding-bottom: 0; }
.sci-step {
  font-family: var(--serif);
  font-weight: 800;
  font-size: .75rem;
  color: var(--gold);
  background: rgba(216,155,42,.15);
  border-radius: 8px;
  padding: .3rem .55rem;
  flex-shrink: 0;
  letter-spacing: .06em;
}
.sci-stack-item div { display: flex; flex-direction: column; gap: .15rem; }
.sci-stack-item strong { font-size: .88rem; font-weight: 600; color: #fff; }
.sci-stack-item span { font-size: .72rem; color: rgba(255,255,255,.5); }
.sci-stack-arrow {
  text-align: center;
  font-size: .7rem;
  color: rgba(255,255,255,.2);
  line-height: 1;
  padding: .15rem 0;
}
.sci-stack-final {
  border-top: 1px solid rgba(216,155,42,.3);
  margin-top: .25rem;
  padding-top: 1rem !important;
}
.sci-stack-final strong { color: var(--gold-bright); }

/* foundations */
.sci-foundations { gap: 1.5rem; }
.sci-found-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding-top: 1.25rem;
}
.sci-tag {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  background: rgba(216,155,42,.1);
  padding: .25rem .6rem;
  border-radius: 999px;
  align-self: flex-start;
}
.sci-bullets {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.sci-bullets li {
  position: relative;
  padding-left: 1.25rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}
.sci-bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* rubric cards */
.sci-rubric { gap: 1.5rem; }
.sci-rubric-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: var(--shadow-card);
}
.sci-rubric-card-wide {
  grid-column: 1 / -1;
  max-width: 680px;
  margin: 0 auto;
}
.sci-rubric-head {
  display: flex;
  align-items: baseline;
  gap: .75rem;
}
.sci-dim {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.sci-rubric-card h3 { margin: 0; font-size: 1.05rem; }
.sci-rubric-card > p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.sci-anchor {
  background: var(--paper-2);
  border-radius: 10px;
  padding: .85rem 1rem;
  margin-top: auto;
}
.sci-anchor-label {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  display: block;
  margin-bottom: .5rem;
}
.sci-anchor ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.sci-anchor ul li {
  font-size: .78rem;
  color: var(--ink-soft);
  padding-left: 1.1rem;
  position: relative;
}
.sci-anchor ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: .72rem;
}
.sci-rubric-note {
  text-align: center;
  max-width: 720px;
  margin: 2rem auto 0;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* pipeline steps */
.sci-pipeline { gap: 1.25rem; }
.sci-step-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card);
}
.sci-step-num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 1.5rem;
}
.sci-step-card h3 { margin: 0 0 .35rem; font-size: .95rem; }
.sci-step-card p { margin: 0; font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* specialty compare */
.sci-compare-grid { gap: 1.5rem; }
.sci-compare-card { padding: 1.5rem; }
.sci-compare-card h3 { margin-bottom: .75rem; }
.sci-compare-highlight {
  border-color: rgba(216,155,42,.4);
  background: linear-gradient(160deg, #fffaf1 0%, #fff 55%);
  box-shadow: 0 18px 40px -26px rgba(216,155,42,.55), 0 1px 0 rgba(18,17,15,.04);
}
.sci-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.sci-list li {
  font-size: .88rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.sci-compare-card:not(.sci-compare-highlight) .sci-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-weight: 700;
}
.sci-compare-highlight .sci-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* benchmarks strip */
.sci-benchmarks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.sci-benchmark {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  text-align: center;
}
.sci-benchmark strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
}
.sci-benchmark span {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.4;
}
@media (max-width: 700px) {
  .sci-benchmarks { grid-template-columns: repeat(2, 1fr); }
}

/* boundary grid */
.sci-boundary-grid { gap: 1.25rem; }

/* trust / field exposure */
.sci-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.sci-trust-copy p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1rem;
}
.sci-trust-copy p:last-child { margin-bottom: 0; }
.sci-trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sci-trust-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  box-shadow: var(--shadow-card);
}
.sci-trust-stat strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}
.sci-trust-stat span {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.4;
}
@media (max-width: 820px) {
  .sci-trust { grid-template-columns: 1fr; }
}

/* final CTA */
.sci-final {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.sci-final h2 { margin-bottom: .75rem; }
.sci-final p { color: var(--muted); margin-bottom: 1.5rem; }
.sci-final .hero-actions { justify-content: center; }

/* ============ SCIENCE — DISCIPLINE 2x2 GRID ============ */
.disc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.disc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.disc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(18,17,15,.18);
}
.disc-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--gold);
  background: rgba(216,155,42,.1);
  flex-shrink: 0;
}
.disc-icon svg { width: 32px; height: 32px; }
.disc-icon-2 { color: var(--signal); background: rgba(255,107,61,.1); }
.disc-icon-3 { color: var(--terra); background: rgba(184,85,59,.1); }
.disc-icon-4 { color: #2f7a4b; background: rgba(47,122,75,.1); }
.disc-num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--muted);
}
.disc-card h3 { margin: 0; font-size: 1.05rem; }
.disc-card > p { margin: 0; font-size: .85rem; color: var(--muted); line-height: 1.6; }
.disc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: auto;
  padding-top: .5rem;
}
.disc-pills span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--muted);
  border: 1px solid var(--line);
}
@media (max-width: 700px) {
  .disc-grid { grid-template-columns: 1fr; }
}

/* ============ SCIENCE — SPECIALTY VS SPLIT ============ */
.spec-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin: 2.5rem auto 0;
  max-width: 1000px;
}
.spec-col {
  padding: 1.75rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.spec-old {
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.spec-new {
  background: linear-gradient(160deg, #fffaf1 0%, #fff 55%);
  border: 1px solid rgba(216,155,42,.4);
  box-shadow: 0 18px 40px -26px rgba(216,155,42,.55), 0 1px 0 rgba(18,17,15,.04);
  position: relative;
}
.spec-new::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(245,182,61,.8), rgba(216,155,42,0) 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.spec-col-head {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.spec-icon-x, .spec-icon-check {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.spec-icon-x {
  background: rgba(184,85,59,.1);
  color: var(--terra);
}
.spec-icon-x svg { width: 18px; height: 18px; }
.spec-icon-check {
  background: rgba(47,122,75,.12);
  color: #2f7a4b;
}
.spec-icon-check svg { width: 18px; height: 18px; }
.spec-col-head h3 { margin: 0; font-size: 1.1rem; }
.spec-verdict {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: 999px;
  display: inline-block;
  margin-top: .2rem;
}
.spec-verdict-bad {
  background: rgba(184,85,59,.1);
  color: var(--terra);
  border: 1px solid rgba(184,85,59,.25);
}
.spec-verdict-good {
  background: rgba(47,122,75,.1);
  color: #2f7a4b;
  border: 1px solid rgba(47,122,75,.25);
}
.spec-old .sci-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-weight: 700;
}
.spec-new .sci-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.spec-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.spec-divider span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--muted);
  background: var(--paper);
  padding: .35rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  z-index: 1;
}
.spec-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: calc(100% - 1rem);
  background: var(--line);
  transform: translateX(-50%);
}
@media (max-width: 820px) {
  .spec-split { grid-template-columns: 1fr; gap: .75rem; }
  .spec-divider { height: 2rem; }
  .spec-divider::before { width: calc(100% - 1rem); height: 1px; left: .5rem; transform: none; }
}

/* ============ SCIENCE — BOUNDARIES GRID ============ */
.bound-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.bound-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.bound-is {
  background: linear-gradient(160deg, #fffaf1 0%, #fff 55%);
  border-color: rgba(216,155,42,.4);
}
.bound-is::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), transparent);
}
.bound-badge {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.bound-badge svg { width: 20px; height: 20px; }
.bound-badge-yes {
  background: rgba(47,122,75,.12);
  color: #2f7a4b;
}
.bound-badge-no {
  background: rgba(184,85,59,.08);
  color: var(--terra);
}
.bound-card h3 { margin: 0; font-size: .95rem; }
.bound-card p { margin: 0; font-size: .85rem; color: var(--muted); line-height: 1.55; }
.bound-not { border-left: 3px solid rgba(184,85,59,.15); }

/* ============ SCIENCE — CTA REDESIGN ============ */
.cta-panel {
  position: relative;
  background: var(--ink);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 32px 64px -24px rgba(18,17,15,.4);
}
.cta-glow {
  position: absolute;
  top: -60%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(216,155,42,.35), transparent 70%);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-badge {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}
.cta-badge svg { width: 48px; height: 48px; }
.cta-panel .eyebrow { color: var(--gold); }
.cta-panel h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: .75rem;
}
.cta-sub {
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  font-size: .92rem;
  line-height: 1.6;
}
.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2rem;
}
.cta-features span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(216,155,42,.15);
  color: var(--gold-bright);
  border: 1px solid rgba(216,155,42,.3);
}
.cta-panel .hero-actions { justify-content: center; }
.cta-panel .button {
  background: var(--gold);
  color: var(--ink);
}
.cta-panel .button:hover { background: var(--gold-bright); }
.cta-panel .button-ghost {
  background: transparent;
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.2);
}
.cta-panel .button-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.05);
}

/* ============ SCIENCE — RUBRIC SCORE VISUALIZATION ============ */
.rubric-viz {
  max-width: 680px;
  margin: 2.5rem auto 0;
  background: var(--ink);
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 24px 48px -12px rgba(18,17,15,.35);
}
.rubric-viz-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.rubric-viz-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
}
.rvs-num {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}
.rvs-label {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 700;
}
.rubric-viz-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .35rem;
}
.rvm-tag {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: 999px;
}
.rvm-tag-gold {
  background: rgba(216,155,42,.2);
  color: var(--gold-bright);
  border: 1px solid rgba(216,155,42,.35);
}
.rvm-detail {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
}
.rubric-bars {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.rb-row {
  display: grid;
  grid-template-columns: 110px 1fr 36px;
  align-items: center;
  gap: .75rem;
}
.rb-label {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.rb-track {
  height: 8px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
}
.rb-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}
.rb-fill-5, .rb-fill-6, .rb-fill-7 {
  background: linear-gradient(90deg, var(--terra), var(--signal));
}
.rb-row-primary .rb-label { color: var(--gold-bright); font-weight: 700; }
.rb-row-primary .rb-fill {
  background: linear-gradient(90deg, var(--terra), var(--signal));
  box-shadow: 0 0 8px rgba(255,107,61,.4);
}
.rb-val {
  font-family: var(--serif);
  font-weight: 700;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.rb-row-primary .rb-val { color: var(--gold-bright); }
.rubric-viz-coaching {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(216,155,42,.2);
}
.rvc-icon {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}
.rvc-label {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: .3rem;
}
.rvc-text {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  margin: 0;
}
.rvc-text em {
  font-family: var(--serif);
  color: var(--gold-bright);
  font-style: italic;
}

/* ============ SCIENCE — PIPELINE DARK VERTICAL ============ */
.pipe-vertical {
  max-width: 720px;
  margin: 2.5rem auto 0;
  position: relative;
  padding-left: 3rem;
}
.pipe-vertical::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-bright) 50%, rgba(216,155,42,.2));
}
.pv-step {
  position: relative;
  padding: 0 0 2rem 1.5rem;
}
.pv-step:last-child { padding-bottom: 0; }
.pv-dot {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 800;
  font-size: .65rem;
  color: var(--gold);
  z-index: 1;
}
.pv-step:last-child .pv-dot {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.pv-step h3 {
  margin: 0 0 .3rem;
  font-size: .95rem;
  color: var(--ink);
}
.pv-step p {
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============ SCIENCE — SPECIALTY BENCHMARK CARDS ============ */
.sci-benchmarks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.sci-benchmark {
  background: var(--ink);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  box-shadow: 0 12px 24px -8px rgba(18,17,15,.25);
}
.sci-benchmark strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-bright);
}
.sci-benchmark span {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}
@media (max-width: 700px) {
  .sci-benchmarks { grid-template-columns: repeat(2, 1fr); }
}

/* ============ SCIENCE — CONVERGENCE GRAPHIC ============ */
.foundations-section { overflow: hidden; }
.converge-wrap {
  display: flex;
  justify-content: center;
  margin: 2rem auto 2.5rem;
}
.converge-ring {
  position: relative;
  width: 360px;
  height: 360px;
}
.converge-ring svg {
  width: 100%;
  height: 100%;
}
.converge-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
.cn-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px -6px rgba(18,17,15,.2);
}
.cn-dot-1 { background: rgba(216,155,42,.15); border: 2px solid var(--gold); }
.cn-dot-2 { background: rgba(255,107,61,.12); border: 2px solid var(--signal); }
.cn-dot-3 { background: rgba(184,85,59,.12); border: 2px solid var(--terra); }
.cn-dot-4 { background: rgba(47,122,75,.12); border: 2px solid #2f7a4b; }
.cn-label {
  font-size: .68rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
/* position nodes around the ring */
.cn-1 { top: -8px; left: 50%; transform: translateX(-50%); }
.cn-2 { top: 50%; right: -16px; transform: translateY(-50%); }
.cn-3 { bottom: -8px; left: 50%; transform: translateX(-50%); }
.cn-4 { top: 50%; left: -16px; transform: translateY(-50%); }

/* connecting lines from nodes to center */
.converge-node::before {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, rgba(216,155,42,.3), rgba(216,155,42,.08));
  z-index: -1;
}
.cn-1::before {
  width: 1px;
  height: 100px;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
}
.cn-3::before {
  width: 1px;
  height: 100px;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to top, rgba(216,155,42,.3), rgba(216,155,42,.08));
}
.cn-2::before {
  width: 100px;
  height: 1px;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to left, rgba(216,155,42,.3), rgba(216,155,42,.08));
}
.cn-4::before {
  width: 100px;
  height: 1px;
  left: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to right, rgba(216,155,42,.3), rgba(216,155,42,.08));
}

/* make disc cards more visual with colored left borders */
.disc-card {
  border-left: 4px solid var(--gold);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.disc-card:nth-child(2) { border-left-color: var(--signal); }
.disc-card:nth-child(3) { border-left-color: var(--terra); }
.disc-card:nth-child(4) { border-left-color: #2f7a4b; }
.disc-card:hover {
  border-left-width: 6px;
}

/* color-code the pills per card */
.disc-card:nth-child(1) .disc-pills span { background: rgba(216,155,42,.08); border-color: rgba(216,155,42,.25); color: var(--gold); }
.disc-card:nth-child(2) .disc-pills span { background: rgba(255,107,61,.08); border-color: rgba(255,107,61,.25); color: var(--signal); }
.disc-card:nth-child(3) .disc-pills span { background: rgba(184,85,59,.08); border-color: rgba(184,85,59,.25); color: var(--terra); }
.disc-card:nth-child(4) .disc-pills span { background: rgba(47,122,75,.08); border-color: rgba(47,122,75,.25); color: #2f7a4b; }

@media (max-width: 700px) {
  .converge-ring { width: 280px; height: 280px; }
  .cn-1::before, .cn-3::before { height: 70px; }
  .cn-2::before, .cn-4::before { width: 70px; }
}

/* ============ MOBILE NAV — hamburger ============ */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }
@media (max-width: 900px) {
  .nav { flex-wrap: nowrap; }
  .nav-toggle { display: block; order: 3; margin-left: auto; }
  .nav-links {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    gap: .75rem;
    padding: 1rem 0 .5rem;
    border-top: 1px solid var(--line);
    margin-top: .5rem;
  }
  .nav-links.open { display: flex; }
  .button-small { order: 2; margin-left: auto; font-size: .82rem; padding: .5rem 1rem; }
}

/* ============ DISC CARDS — dark ink style ============ */
.disc-card {
  background: var(--ink);
  color: #fff;
  border: none;
  border-left: 4px solid var(--gold);
}
.disc-card:nth-child(2) { border-left-color: var(--signal); }
.disc-card:nth-child(3) { border-left-color: var(--terra); }
.disc-card:nth-child(4) { border-left-color: #2f7a4b; }
.disc-card h3 { color: #fff; }
.disc-card > p { color: rgba(255,255,255,.6); }
.disc-card .disc-num { color: rgba(255,255,255,.35); }
.disc-card .disc-pills span {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.55);
}
.disc-card:nth-child(1) .disc-pills span { color: var(--gold-bright); background: rgba(216,155,42,.12); border-color: rgba(216,155,42,.25); }
.disc-card:nth-child(2) .disc-pills span { color: var(--signal); background: rgba(255,107,61,.1); border-color: rgba(255,107,61,.2); }
.disc-card:nth-child(3) .disc-pills span { color: #e8a090; background: rgba(184,85,59,.12); border-color: rgba(184,85,59,.2); }
.disc-card:nth-child(4) .disc-pills span { color: #6fcf97; background: rgba(47,122,75,.12); border-color: rgba(47,122,75,.2); }
.disc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,.4);
  border-left-width: 4px;
}

/* ============ SCIENCE — SCORE EXPLAINER ============ */
.score-explainer {
  max-width: 680px;
  margin: 2.5rem auto 0;
  background: var(--ink);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  color: #fff;
  box-shadow: 0 24px 48px -12px rgba(18,17,15,.35);
}
.se-lead {
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  margin: 0 0 1.25rem;
}
.se-lead strong {
  color: var(--gold-bright);
  font-weight: 700;
}
.se-bands {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.se-band {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .65rem 1rem;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
}
.se-band-score {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.4rem;
  min-width: 48px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.se-band-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
}
.se-band-desc em {
  font-family: var(--serif);
  color: var(--gold-bright);
  font-style: italic;
}
.se-band-green .se-band-score { color: #6fcf97; }
.se-band-green { border-left: 4px solid #6fcf97; }
.se-band-gold .se-band-score { color: var(--gold-bright); }
.se-band-gold { border-left: 4px solid var(--gold-bright); }
.se-band-terra .se-band-score { color: var(--signal); }
.se-band-terra { border-left: 4px solid var(--signal); }
