:root {
  --ink: #111827;
  --night: #05070c;
  --night-soft: #111827;
  --muted: #3f4a5f;
  --paper: #f5f6f9;
  --paper-strong: #ffffff;
  --teal: #265cff;
  --teal-dark: #123bbd;
  --coral: #f06449;
  --gold: #f7b731;
  --blue: #00a3ff;
  --green: #12b76a;
  --line: #cfd8e3;
  --soft: #eef2f7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-y: auto;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 28px;
  background: rgba(245, 246, 249, 0.94);
  border-bottom: 1px solid rgba(17, 24, 39, 0.11);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 246px;
  height: 54px;
  overflow: hidden;
  background: url("assets/logos/leap-r3-grid-compact.svg") left center / contain no-repeat;
  font-weight: 760;
}

.brand > .brand-mark,
.brand > .brand-word {
  display: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, #265cff 0%, #5d35ff 100%);
  border-radius: 8px;
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.2;
}

.brand-mark circle {
  fill: currentColor;
  stroke: none;
}

.brand-word {
  display: grid;
  gap: 0;
  line-height: 1;
}

.brand-word strong {
  font-size: 1.12rem;
}

.brand-word span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.header-action:hover {
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  font-weight: 850;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  content: "";
  background: rgba(17, 24, 39, 0.08);
}

.hero::before {
  left: max(20px, calc((100% - 1200px) / 2));
}

.hero::after {
  right: max(20px, calc((100% - 1200px) / 2));
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 58px;
}

.hero-content {
  text-align: left;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

.eyebrow.light {
  color: #f2c46a;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 5.4rem;
  line-height: 0.9;
  letter-spacing: 0;
}

h1 span {
  display: inline;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.8rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 0 0 28px;
  color: #344054;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(17, 24, 39, 0.16);
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}

.button.full {
  width: 100%;
}

.is-hidden {
  display: none !important;
}

.hero-note {
  width: min(620px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.landing-hero {
  min-height: calc(100svh - 72px);
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(38, 92, 255, 0.36) 0%, rgba(38, 92, 255, 0.18) 26%, transparent 54%),
    linear-gradient(158deg, transparent 0%, transparent 44%, rgba(240, 100, 73, 0.22) 72%, rgba(247, 183, 49, 0.18) 100%),
    linear-gradient(180deg, #05070c 0%, #0a0f18 100%);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 -120px 140px rgba(0, 0, 0, 0.34);
}

.landing-hero::before,
.landing-hero::after {
  background: rgba(255, 255, 255, 0.09);
}

.landing-hero .hero-stage {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  min-height: calc(100svh - 72px);
  padding: 86px 0 56px;
}

.landing-hero .eyebrow {
  color: #9ef4e6;
}

.landing-hero h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(4.1rem, 7.4vw, 7.5rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.landing-hero .hero-copy {
  color: rgba(255, 255, 255, 0.78);
}

.landing-hero .hero-note {
  color: rgba(255, 255, 255, 0.58);
}

.landing-hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.route-panel,
.impact-panel,
.builder-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.route-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(8, 12, 20, 0.72);
  backdrop-filter: blur(18px);
}

.panel-label {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.route-strip {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 14px;
  min-height: 108px;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.route-strip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.route-strip small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.75rem;
  font-weight: 900;
}

.route-strip strong {
  font-size: 1.42rem;
  line-height: 1;
}

.route-strip span {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.68);
}

.route-strip.hot {
  border-left: 4px solid var(--coral);
}

.route-strip.cool {
  border-left: 4px solid #9ef4e6;
}

.route-strip.bright {
  border-left: 4px solid var(--gold);
}

.route-strip.scan {
  border-left: 4px solid var(--blue);
}

.route-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.route-proof span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.capability-hero {
  min-height: auto;
}

.capability-hero .hero-stage {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 56px;
  min-height: auto;
  padding: 54px 0 38px;
}

.capability-hero h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, 5.4vw, 5.8rem);
}

.capability-map {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(8, 12, 20, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.map-core {
  min-height: 128px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 92, 255, 0.35), rgba(18, 183, 106, 0.12)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(158, 244, 230, 0.26);
  border-radius: 8px;
}

.map-core small,
.map-node small {
  display: inline-flex;
  margin-bottom: 12px;
  color: #9ef4e6;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-core strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.82rem;
  line-height: 0.98;
}

.map-core span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.map-node {
  display: grid;
  min-height: 104px;
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.map-node:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.map-node strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.26rem;
  line-height: 1.04;
}

.map-node span {
  display: block;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.68);
}

.map-node.adoption {
  border-left: 4px solid var(--coral);
}

.map-node.capable {
  border-left: 4px solid var(--gold);
}

.map-node.responsible {
  border-left: 4px solid #9ef4e6;
}

.map-node.efficient {
  border-left: 4px solid var(--green);
}

.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 590px;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.92) 0 8%, transparent 26%),
    radial-gradient(circle at 75% 18%, rgba(18, 183, 106, 0.95) 0 8%, transparent 24%),
    radial-gradient(circle at 80% 82%, rgba(240, 100, 73, 0.95) 0 10%, transparent 28%),
    linear-gradient(135deg, #265cff 0%, #5d35ff 42%, #00a3ff 100%);
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(38, 92, 255, 0.28);
}

.card-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  font-weight: 850;
}

.hero-card h2 {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  margin: 58px 0 12px;
  color: var(--white);
  font-size: 3.65rem;
}

.hero-card p {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.card-action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(360px, 100%);
  min-height: 60px;
  margin-top: 22px;
  margin-bottom: 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  font-weight: 850;
}

.card-requests {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: auto;
  padding: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.card-requests small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.card-requests span {
  display: block;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(17, 24, 39, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-board {
  position: relative;
  z-index: 3;
  width: min(1040px, calc(100% - 40px));
  margin: 8px auto 54px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.board-intro {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.board-intro span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.board-intro strong {
  color: var(--ink);
  font-size: 1rem;
}

.hero-queue {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: rgba(17, 24, 39, 0.11);
  border: 1px solid rgba(17, 24, 39, 0.11);
  border-radius: 8px;
}

.hero-queue div {
  min-height: 94px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.queue-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band,
.process-section,
.requests-section,
.plans-section,
.faq-section {
  padding: 96px 0;
}

.course-promo {
  padding: 82px 0;
  color: var(--white);
  background: #101828;
}

.course-promo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.course-promo h2 {
  color: var(--white);
}

.course-promo p {
  color: #d8ded8;
  font-size: 1.08rem;
}

.enterprise-teaser {
  padding: 82px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.enterprise-teaser-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.enterprise-teaser p {
  color: #344054;
  font-size: 1.08rem;
}

.intro-grid,
.difference-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.intro-copy {
  color: #344054;
  font-size: 1.08rem;
}

.scanner-section {
  padding: 96px 0;
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading p {
  color: #344054;
}

.scanner-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  align-items: stretch;
}

.scanner-form,
.report-panel,
.steps-grid article,
.request-grid article,
.plan,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
}

.scanner-form {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}

.form-section-title span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 850;
}

.form-section-title strong {
  font-size: 1rem;
}

.field {
  display: grid;
  gap: 8px;
}

.field.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field.two-col > div {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 800;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="url"],
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid #c9d6e6;
  border-radius: 8px;
}

.field textarea {
  min-height: 96px;
  padding: 12px;
  resize: vertical;
}

.field input[type="range"] {
  accent-color: var(--teal);
}

.field output {
  color: #344054;
  font-weight: 700;
}

.field small {
  color: #344054;
  font-size: 0.82rem;
}

.check-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #344054;
  font-size: 0.9rem;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.report-panel {
  min-height: 565px;
  padding: 28px;
  background: #101828;
  color: var(--white);
}

.report-kicker {
  margin-bottom: 12px;
  color: #f2c46a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.report-panel h3 {
  font-size: 1.8rem;
}

.report-panel p,
.report-panel li {
  color: #d9e1da;
}

.report-panel ul {
  padding-left: 20px;
}

.report-block {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.metric {
  min-height: 86px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.metric span {
  display: block;
  color: #f2c46a;
  font-size: 1.32rem;
  font-weight: 850;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.metric small {
  color: #d9e1da;
}

.report-panel h4 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1rem;
}

.report-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  font-weight: 850;
}

.steps-grid,
.request-grid,
.plans-grid,
.assets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps-grid article,
.request-grid article,
.assets-grid a {
  padding: 24px;
}

.stance-section,
.pathway-section,
.framework-section,
.audience-section,
.analyst-section {
  padding: 92px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.framework-section.muted,
.audience-section.muted {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.stance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 52px;
  align-items: start;
}

.stance-grid .section-heading {
  margin-bottom: 0;
}

.model-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.model-card,
.pillar-grid article,
.entry-grid a,
.audience-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.06);
}

.model-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
}

.model-card.preferred {
  color: var(--white);
  background: #101828;
  border-color: #101828;
}

.model-card > span,
.pillar-grid span,
.entry-grid span,
.audience-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.model-card.preferred > span {
  color: #9ef4e6;
}

.model-card h3 {
  font-size: 1.72rem;
  line-height: 1.06;
}

.model-card p {
  margin-top: auto;
  color: #344054;
}

.model-card.preferred h3 {
  color: var(--white);
}

.model-card.preferred p {
  color: rgba(255, 255, 255, 0.76);
}

.pillar-grid,
.entry-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pillar-grid article,
.entry-grid a,
.audience-grid article {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 24px;
}

.pillar-grid article:first-child,
.entry-grid a:first-child,
.audience-grid article:first-child {
  border-top: 4px solid var(--coral);
}

.pillar-grid article:nth-child(2),
.entry-grid a:nth-child(2),
.audience-grid article:nth-child(2) {
  border-top: 4px solid var(--gold);
}

.pillar-grid article:nth-child(3),
.entry-grid a:nth-child(3),
.audience-grid article:nth-child(3) {
  border-top: 4px solid var(--green);
}

.pillar-grid article:nth-child(4),
.entry-grid a:nth-child(4),
.audience-grid article:nth-child(4) {
  border-top: 4px solid var(--blue);
}

.pillar-grid h3,
.audience-grid h3 {
  font-size: 1.35rem;
}

.pillar-grid p,
.entry-grid p,
.audience-grid p {
  color: #344054;
}

.entry-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.12;
}

.entry-grid p,
.audience-grid p {
  margin-bottom: 22px;
}

.audience-grid a {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--teal);
  font-weight: 850;
}

.analyst-section {
  background: #ffffff;
}

.analyst-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 48px;
  align-items: stretch;
}

.analyst-copy {
  align-self: center;
}

.analyst-copy p {
  color: #344054;
  font-size: 1.08rem;
}

.analyst-copy .button {
  margin-top: 12px;
}

.report-preview-card {
  padding: 28px;
  color: var(--white);
  background: #101828;
  border: 1px solid #101828;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.18);
}

.report-preview-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #9ef4e6;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.report-preview-card h3 {
  color: var(--white);
  font-size: 2rem;
}

.brief-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.brief-list section {
  min-height: 208px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.brief-list small {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 900;
}

.brief-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.12;
}

.brief-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.learning-loop {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 22px;
  padding: 22px;
  background: #eefaf6;
  border: 1px solid #a8e8ca;
  border-radius: 8px;
}

.learning-loop strong {
  font-size: 1.2rem;
  line-height: 1.12;
}

.learning-loop p {
  margin: 0;
  color: #344054;
}

.analyst-voice-hero {
  padding: 82px 0;
  color: var(--white);
  background:
    linear-gradient(116deg, rgba(38, 92, 255, 0.28) 0%, transparent 38%),
    linear-gradient(158deg, transparent 0%, transparent 48%, rgba(18, 183, 106, 0.18) 76%, rgba(247, 183, 49, 0.2) 100%),
    #05070c;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.voice-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 42px;
  align-items: end;
}

.analyst-voice-hero .eyebrow {
  color: #9ef4e6;
}

.analyst-voice-hero h1 {
  max-width: 860px;
  color: var(--white);
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  line-height: 0.9;
}

.analyst-voice-hero p {
  color: rgba(255, 255, 255, 0.76);
}

.voice-signal-card {
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.voice-signal-card span,
.voice-brief-preview > span,
.voice-architecture-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #9ef4e6;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.voice-signal-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.08;
}

.voice-agent-section,
.voice-architecture-section {
  padding: 92px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.voice-architecture-section.muted {
  background: var(--paper);
}

.voice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
  gap: 24px;
  align-items: start;
}

.voice-console,
.voice-brief-preview,
.voice-architecture-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.07);
}

.voice-console {
  display: grid;
  gap: 20px;
  padding: 24px;
  background: #ffffff;
}

.voice-context-form {
  display: grid;
  gap: 16px;
}

.voice-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #344054;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill.active {
  color: #074d31;
  background: #eefaf6;
  border-color: #a8e8ca;
}

.status-pill.error {
  color: #7a271a;
  background: #fff1ef;
  border-color: #ffb8ad;
}

#callTimer {
  color: #344054;
  font-weight: 900;
}

.voice-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.voice-controls .button {
  min-height: 46px;
  padding: 0 12px;
  font-size: 0.92rem;
}

.voice-controls .button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}

.transcript-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.transcript-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #f8fbff;
  border-bottom: 1px solid var(--line);
}

.text-button {
  padding: 0;
  color: var(--teal);
  background: transparent;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

.transcript-stream {
  display: grid;
  gap: 10px;
  height: 380px;
  padding: 16px;
  overflow: auto;
  background: #101828;
}

.empty-state {
  color: rgba(255, 255, 255, 0.62);
}

.transcript-line {
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.transcript-line.user {
  border-left: 4px solid var(--gold);
}

.transcript-line.assistant {
  border-left: 4px solid var(--green);
}

.transcript-line.system {
  border-left: 4px solid var(--blue);
}

.transcript-line span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #9ef4e6;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.transcript-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.generated-brief-panel {
  display: grid;
  gap: 18px;
  padding: 20px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.generated-brief-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.generated-brief-header h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.08;
}

.generated-brief-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  min-width: min(100%, 320px);
}

.generated-brief-actions .button {
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.generated-brief-output {
  padding-top: 2px;
}

.generated-brief-output > p {
  margin: 0;
  color: #344054;
}

.brief-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.brief-result-grid article {
  min-height: 132px;
  padding: 16px;
  color: var(--white);
  background: #101828;
  border-radius: 8px;
}

.brief-result-grid span,
.brief-result-section h4 {
  display: block;
  margin-bottom: 10px;
  color: #9ef4e6;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-result-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.12;
}

.brief-result-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.brief-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.brief-result-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #344054;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.brief-result-section {
  margin-top: 14px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brief-result-section h4 {
  color: var(--teal);
}

.brief-result-section ul {
  margin: 0;
  padding-left: 20px;
}

.brief-result-section li {
  color: #344054;
}

.saved-reports-panel {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.saved-reports-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.saved-reports-header h4 {
  margin: 0;
  font-size: 1rem;
}

.saved-reports-header span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.saved-reports-list {
  display: grid;
  gap: 8px;
}

.saved-reports-list > p {
  margin: 0;
  color: #344054;
}

.saved-report-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.saved-report-item strong,
.saved-report-item span {
  display: block;
}

.saved-report-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.voice-brief-preview {
  position: sticky;
  top: 98px;
  padding: 24px;
  color: var(--white);
  background: #101828;
}

.voice-brief-preview h3 {
  color: var(--white);
  font-size: 1.72rem;
}

.brief-capture-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.brief-capture-list section {
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.brief-capture-list small {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
}

.brief-capture-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.brief-capture-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.voice-architecture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.voice-architecture-grid article {
  min-height: 260px;
  padding: 22px;
  background: #ffffff;
}

.voice-architecture-grid span {
  color: var(--coral);
}

.voice-architecture-grid h3 {
  font-size: 1.32rem;
}

.voice-architecture-grid p {
  color: #344054;
}

.logo-hero h1 {
  max-width: 980px;
}

.logo-lab-section,
.logo-usage-section {
  padding: 92px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.logo-usage-section.muted {
  background: var(--paper);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.logo-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.07);
}

.logo-card > span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preferred-logo {
  border-top: 4px solid var(--green);
}

.dark-logo-card {
  border-top: 4px solid var(--teal);
}

.logo-preview {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.light-preview {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 22px 22px;
}

.dark-preview {
  background: #05070c;
}

.icon-preview {
  background: #f8fbff;
}

.logo-preview img {
  display: block;
  width: min(100%, 620px);
  height: auto;
}

.icon-preview img {
  width: min(220px, 70%);
}

.logo-card h3 {
  margin-bottom: 0;
  font-size: 1.42rem;
}

.logo-card p {
  margin-bottom: 0;
  color: #344054;
}

.logo-card a {
  color: var(--teal);
  font-weight: 900;
}

.logo-usage-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.logo-mini-system {
  display: grid;
  gap: 14px;
}

.logo-mini-system div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.06);
}

.logo-mini-system span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.logo-mini-system img {
  display: block;
  max-width: 100%;
  max-height: 86px;
}

.assets-section {
  padding: 96px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.assets-grid a {
  display: block;
  min-height: 210px;
  color: inherit;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.assets-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.assets-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.32rem;
}

.assets-grid p {
  color: #344054;
}

.step-number {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--coral);
  font-weight: 850;
}

.request-grid article:nth-child(2n) {
  border-top: 4px solid var(--blue);
}

.request-grid article:nth-child(2n + 1) {
  border-top: 4px solid var(--teal);
}

.request-grid article:nth-child(3n) {
  border-top-color: var(--coral);
}

.difference-section {
  padding: 96px 0;
  color: var(--white);
  background: #101828;
}

.difference-section h2 {
  color: var(--white);
}

.difference-list p,
.difference-list li {
  color: #d8ded8;
}

.difference-list ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.plans-grid {
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 26px;
}

.plan.featured {
  color: var(--white);
  background: #3f3f46;
  border-color: #3f3f46;
  box-shadow: 0 26px 75px rgba(17, 24, 39, 0.22);
}

.plan.featured .plan-top p,
.plan.featured li,
.plan.featured .price span {
  color: rgba(255, 255, 255, 0.78);
}

.plan.featured .price {
  color: var(--white);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--coral);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 850;
}

.plan-top {
  min-height: 120px;
  padding-right: 48px;
}

.plan-top p,
.plan li {
  color: var(--muted);
}

.price {
  margin: 8px 0 20px;
  font-size: 2.3rem;
  font-weight: 850;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.plan ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin-bottom: 26px;
}

.plan .button {
  margin-top: auto;
}

.refund-note {
  margin-top: 20px;
  padding: 18px 20px;
  color: #344054;
  background: #eefaf6;
  border: 1px solid #a8e8ca;
  border-radius: 8px;
}

.refund-note strong {
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  padding: 96px 0;
  color: var(--white);
  background: #123bbd;
}

.final-cta .wrap {
  width: min(780px, calc(100% - 40px));
  text-align: center;
}

.final-cta p {
  color: #d9e1da;
}

.site-footer {
  padding: 30px 0;
  color: var(--muted);
  background: #0b1220;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
}

.footer-links a {
  color: #d9e1da;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links a[aria-current="page"] {
  color: var(--white);
  font-weight: 850;
}

.asset-hero {
  padding: 96px 0 70px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.asset-hero .wrap {
  width: min(980px, calc(100% - 40px));
}

.asset-hero h1 {
  margin-bottom: 24px;
}

.asset-hero p {
  width: min(760px, 100%);
  color: #344054;
  font-size: 1.2rem;
}

.course-hero {
  color: var(--white);
  background:
    linear-gradient(122deg, rgba(18, 183, 106, 0.24) 0%, transparent 36%),
    linear-gradient(160deg, transparent 0%, transparent 48%, rgba(38, 92, 255, 0.3) 100%),
    #05070c;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.course-hero .eyebrow {
  color: #9ef4e6;
}

.course-hero h1 {
  max-width: 920px;
  color: var(--white);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.course-hero p {
  color: rgba(255, 255, 255, 0.76);
}

.course-hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.spotlight-hero {
  min-height: calc(100svh - 72px);
  padding: 96px 0 82px;
  color: var(--white);
  background: var(--night);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.organisation-spotlight {
  background:
    linear-gradient(112deg, rgba(240, 100, 73, 0.24) 0%, transparent 36%),
    linear-gradient(157deg, transparent 0%, transparent 47%, rgba(18, 183, 106, 0.18) 76%, rgba(38, 92, 255, 0.24) 100%),
    #05070c;
}

.individual-spotlight {
  background:
    linear-gradient(118deg, rgba(158, 244, 230, 0.2) 0%, transparent 38%),
    linear-gradient(160deg, transparent 0%, transparent 50%, rgba(247, 183, 49, 0.22) 100%),
    #05070c;
}

.smallbiz-spotlight {
  background:
    linear-gradient(115deg, rgba(247, 183, 49, 0.23) 0%, transparent 34%),
    linear-gradient(158deg, transparent 0%, transparent 48%, rgba(18, 183, 106, 0.2) 78%, rgba(38, 92, 255, 0.18) 100%),
    #05070c;
}

.tree-spotlight {
  background:
    linear-gradient(118deg, rgba(38, 92, 255, 0.26) 0%, transparent 36%),
    linear-gradient(158deg, transparent 0%, transparent 46%, rgba(247, 183, 49, 0.2) 74%, rgba(18, 183, 106, 0.18) 100%),
    #05070c;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: 48px;
  align-items: center;
}

.spotlight-copy h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(4rem, 7vw, 7.1rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.spotlight-copy p {
  width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.16rem;
}

.dark-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.impact-panel,
.builder-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(8, 12, 20, 0.72);
  backdrop-filter: blur(18px);
}

.impact-stat {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.impact-stat strong {
  color: #9ef4e6;
  font-size: 2.65rem;
  line-height: 1;
}

.impact-stat span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
}

.primary-stat {
  grid-template-columns: 1fr;
  align-items: start;
}

.primary-stat strong {
  color: var(--gold);
  font-size: 5.6rem;
}

.impact-panel p {
  margin: 2px 0 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.builder-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 6px 14px;
  min-height: 106px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.builder-step small {
  color: #9ef4e6;
  font-weight: 900;
}

.builder-step strong {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.05;
}

.builder-step span {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.68);
}

.builder-step.featured {
  background: rgba(247, 183, 49, 0.14);
  border-color: rgba(247, 183, 49, 0.34);
}

.panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  font-weight: 900;
}

.tree-status-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(8, 12, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.tree-status-node {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.tree-status-node small {
  color: #9ef4e6;
  font-weight: 900;
  text-transform: uppercase;
}

.tree-status-node strong {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.05;
}

.tree-status-node span {
  color: rgba(255, 255, 255, 0.68);
}

.tree-status-node.active {
  background: rgba(247, 183, 49, 0.14);
  border-color: rgba(247, 183, 49, 0.34);
}

.tree-status-node.locked {
  opacity: 0.72;
}

.lead-hero {
  padding: 96px 0 70px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.lead-hero-grid,
.lead-grid,
.lead-next-grid,
.download-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 40px;
  align-items: center;
}

.lead-points {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 28px 0 0;
  color: #344054;
}

.kit-preview {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 92, 255, 0.95), rgba(93, 53, 255, 0.9)),
    #265cff;
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(38, 92, 255, 0.22);
}

.kit-preview span,
.download-next span {
  display: inline-flex;
  margin-bottom: 36px;
  color: #f2c46a;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.kit-preview strong {
  display: block;
  font-size: 2.8rem;
  line-height: 1.02;
}

.kit-preview small {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 750;
}

.kit-lines {
  display: grid;
  gap: 12px;
  margin: 42px 0;
}

.kit-lines i {
  display: block;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}

.kit-lines i:nth-child(2) {
  width: 72%;
}

.kit-lines i:nth-child(3) {
  width: 86%;
}

.kit-lines i:nth-child(4) {
  width: 62%;
}

.compact-asset h1 {
  font-size: 4.6rem;
}

.enterprise-hero h1 {
  width: min(940px, 100%);
}

.report-document,
.board-template-section,
.package-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

.report-doc-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  align-items: start;
}

.report-summary-card,
.report-doc,
.board-template,
.template-grid article,
.package-card,
.prompt-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.07);
}

.report-summary-card {
  position: sticky;
  top: 98px;
  padding: 24px;
  color: var(--white);
  background: #101828;
}

.report-summary-card span,
.package-card span,
.prompt-table span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.report-summary-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.report-summary-card p {
  color: rgba(255, 255, 255, 0.78);
}

.report-doc {
  padding: 34px;
  background: #ffffff;
}

.report-doc h2 {
  margin-top: 34px;
  font-size: 2rem;
}

.report-doc h2:first-child {
  margin-top: 0;
}

.report-doc p,
.report-doc li {
  color: #344054;
}

.score-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.score-row div {
  min-height: 96px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.score-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 1.35rem;
  font-weight: 850;
}

.score-row small {
  color: var(--muted);
}

.opportunity-list {
  display: grid;
  gap: 14px;
}

.opportunity-list section {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.doc-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.report-preview-actions {
  margin-top: 22px;
}

.report-preview-actions .button {
  width: 100%;
}

.report-brief-hero {
  padding: 54px 0 42px;
  color: var(--white);
  background:
    linear-gradient(116deg, rgba(38, 92, 255, 0.3) 0%, transparent 34%),
    linear-gradient(158deg, transparent 0%, transparent 48%, rgba(18, 183, 106, 0.2) 76%, rgba(247, 183, 49, 0.2) 100%),
    #05070c;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.report-brief-hero .wrap {
  width: min(1120px, calc(100% - 40px));
}

.report-brief-hero .eyebrow {
  color: #9ef4e6;
}

.report-brief-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(2.85rem, 5.2vw, 5.4rem);
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.report-brief-hero h1 span {
  display: block;
  color: #f2c46a;
}

.report-brief-hero p {
  width: min(820px, 100%);
  color: rgba(255, 255, 255, 0.76);
}

.brief-hero-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.brief-hero-strip div {
  min-height: 92px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
}

.brief-hero-strip span {
  display: block;
  margin-bottom: 12px;
  color: #9ef4e6;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-hero-strip strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.12;
}

.generated-report-logo {
  display: block;
  width: min(520px, 100%);
  height: auto;
  margin-bottom: 26px;
  border-radius: 8px;
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.26);
}

.opportunity-brief {
  padding: 48px 0 96px;
  background: #ffffff;
}

.brief-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.brief-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 14px;
}

.brief-side-card,
.brief-nav,
.brief-side-note {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brief-side-card {
  padding: 22px;
  color: var(--white);
  background: #101828;
  box-shadow: 0 18px 52px rgba(17, 24, 39, 0.16);
}

.brief-side-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #9ef4e6;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-side-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.32rem;
  line-height: 1.08;
}

.brief-side-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.brief-nav {
  display: grid;
  gap: 2px;
  padding: 10px;
  background: #f8fbff;
}

.brief-nav a {
  padding: 9px 10px;
  color: #344054;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

.brief-nav a:hover {
  color: var(--ink);
  background: #eef3ff;
}

.brief-side-note {
  padding: 18px;
  background: #eefaf6;
  border-color: #a8e8ca;
}

.brief-side-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.brief-side-note p {
  margin: 0;
  color: #344054;
  font-size: 0.92rem;
}

.generated-report-actions {
  display: grid;
  gap: 10px;
}

.generated-report-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.brief-report {
  min-width: 0;
}

.brief-section {
  padding-bottom: 54px;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.brief-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.brief-section h2 {
  max-width: 900px;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1;
}

.brief-section p {
  color: #344054;
}

.lead-copy {
  font-size: 1.14rem;
}

.brief-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.brief-callout {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 24px;
  color: var(--white);
  background: #101828;
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.brief-callout span {
  display: inline-flex;
  margin-bottom: 22px;
  color: #9ef4e6;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-callout strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.08;
}

.brief-callout p {
  margin-top: auto;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.signal-grid,
.pain-map-grid,
.boundary-grid,
.capability-path-report,
.support-options-grid {
  display: grid;
  gap: 16px;
}

.signal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.signal-card {
  min-height: 170px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.signal-card.coral {
  border-top-color: var(--coral);
}

.signal-card.gold {
  border-top-color: var(--gold);
}

.signal-card.green {
  border-top-color: var(--green);
}

.signal-card.blue {
  border-top-color: var(--blue);
}

.signal-card span,
.pain-map-grid span,
.map-quadrant > span,
.move-grid span,
.boundary-grid span,
.capability-path-report span,
.benefit-grid span,
.support-options-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.18;
}

.pain-map-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.pain-map-grid article,
.boundary-grid article,
.capability-path-report article,
.support-options-grid article {
  padding: 22px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pain-map-grid article:nth-child(1),
.capability-path-report article:nth-child(1),
.support-options-grid article:nth-child(1) {
  border-left: 4px solid var(--coral);
}

.pain-map-grid article:nth-child(2),
.capability-path-report article:nth-child(2),
.support-options-grid article:nth-child(2) {
  border-left: 4px solid var(--gold);
}

.pain-map-grid article:nth-child(3),
.capability-path-report article:nth-child(3),
.support-options-grid article:nth-child(3) {
  border-left: 4px solid var(--green);
}

.pain-map-grid article:nth-child(4),
.capability-path-report article:nth-child(4),
.support-options-grid article:nth-child(4) {
  border-left: 4px solid var(--blue);
}

.pain-map-grid h3,
.capability-path-report h3,
.support-options-grid h3 {
  font-size: 1.25rem;
}

.pain-map-grid p,
.boundary-grid p,
.capability-path-report p,
.support-options-grid p {
  margin-bottom: 0;
}

.pain-map-grid small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.generated-empty-state {
  padding: 34px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-hero {
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(116deg, rgba(38, 92, 255, 0.26) 0%, transparent 44%),
    linear-gradient(158deg, transparent 0%, transparent 50%, rgba(18, 183, 106, 0.2) 78%, rgba(247, 183, 49, 0.18) 100%),
    #05070c;
}

.review-hero .eyebrow {
  color: #9ef4e6;
}

.review-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
}

.review-hero p {
  width: min(760px, 100%);
  color: rgba(255, 255, 255, 0.76);
}

.review-section {
  padding: 78px 0 100px;
  background: #ffffff;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.review-side-panel,
.review-form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.07);
}

.review-side-panel {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 14px;
  padding: 22px;
  background: #f8fbff;
}

.review-side-panel > span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-side-panel strong {
  font-size: 1.32rem;
  line-height: 1.08;
}

.review-side-panel p {
  margin: 0;
  color: #344054;
}

.review-actions {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.review-form-card {
  padding: 24px;
  background: #ffffff;
}

.review-form,
.review-form-card {
  min-width: 0;
}

.review-form {
  display: grid;
  gap: 18px;
}

.review-form.is-disabled {
  opacity: 0.56;
  pointer-events: none;
}

.review-form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.review-form-heading h2 {
  margin: 0;
  font-size: 2rem;
}

.json-editor {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.45;
}

.opportunity-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 16px;
}

.opportunity-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  color: #344054;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.opportunity-map-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.risk-low {
  background: var(--green);
}

.risk-medium {
  background: var(--gold);
}

.risk-high {
  background: var(--coral);
}

.opportunity-map-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  min-height: 560px;
  padding: 58px 46px;
  overflow: hidden;
  background: #101828;
  border: 1px solid #101828;
  border-radius: 8px;
}

.map-axis {
  position: absolute;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-axis.top {
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.map-axis.bottom {
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.map-axis.left {
  top: 50%;
  left: 14px;
  transform: translateY(-50%) rotate(-90deg);
}

.map-axis.right {
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(90deg);
}

.map-quadrant {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.95);
}

.map-quadrant > span {
  color: #344054;
}

.map-opportunity {
  padding: 15px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.map-opportunity.low {
  border-left-color: var(--green);
}

.map-opportunity.medium {
  border-left-color: var(--gold);
}

.map-opportunity.high {
  border-left-color: var(--coral);
}

.map-opportunity strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.12;
}

.map-opportunity small {
  display: block;
  color: #344054;
  line-height: 1.35;
}

.next-move-list {
  display: grid;
  gap: 26px;
  margin-top: 24px;
}

.next-move {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.move-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.move-body h3 {
  margin-bottom: 8px;
  font-size: 1.62rem;
}

.move-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.move-grid div {
  padding: 14px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.move-grid strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.22;
}

.boundary-section {
  color: var(--white);
  padding: 34px;
  background: #101828;
  border: 0;
  border-radius: 8px;
}

.boundary-section h2,
.boundary-section .eyebrow {
  color: var(--white);
}

.boundary-section .eyebrow {
  color: #9ef4e6;
}

.boundary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.boundary-grid article {
  min-height: 176px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.boundary-grid span {
  color: var(--gold);
}

.boundary-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.capability-path-report,
.support-options-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, minmax(0, 0.95fr));
  gap: 16px;
  margin-top: 24px;
}

.benefit-primary,
.benefit-detail {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-primary {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.benefit-primary span,
.benefit-primary p {
  color: rgba(255, 255, 255, 0.82);
}

.benefit-primary strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
}

.benefit-detail {
  background: #f8fbff;
}

.benefit-detail strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.board-template {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(17, 24, 39, 0.12);
}

.board-column {
  min-height: 360px;
  padding: 18px;
  background: #f8fbff;
}

.board-column.active {
  background: #eef3ff;
}

.board-column > span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.board-column article {
  padding: 16px;
  margin-bottom: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.board-column strong,
.board-column small {
  display: block;
}

.board-column small {
  margin-top: 8px;
  color: var(--muted);
}

.template-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

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

.template-grid article,
.package-card {
  padding: 26px;
  background: var(--paper);
}

.template-grid h2,
.package-card h2,
.prompt-table h2 {
  font-size: 1.65rem;
}

.template-grid li,
.package-card li,
.package-card p,
.prompt-table p {
  color: #344054;
}

.package-card.dark {
  color: var(--white);
  background: #101828;
  border-color: #101828;
}

.package-card.dark h2 {
  color: var(--white);
}

.package-card.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.prompt-table {
  margin-top: 26px;
  padding: 30px;
}

.prompt-table > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.prompt-table article {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.library-section,
.about-section,
.legal-section,
.course-section,
.lead-section,
.download-section,
.enterprise-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

.enterprise-section.muted {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.evidence-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.06);
}

.evidence-card.dark {
  color: var(--white);
  background: #101828;
  border-color: #101828;
}

.evidence-card span,
.decision-list span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.evidence-card strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1.08;
}

.evidence-card p {
  margin-top: auto;
  color: #344054;
}

.evidence-card.dark strong {
  color: var(--white);
}

.evidence-card.dark p {
  color: rgba(255, 255, 255, 0.76);
}

.decision-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: start;
}

.decision-list {
  display: grid;
  gap: 14px;
}

.decision-list article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.06);
}

.decision-list h3 {
  font-size: 1.25rem;
}

.decision-list p {
  color: #344054;
}

.article-hero {
  padding: 96px 0 72px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.article-hero .wrap {
  width: min(980px, calc(100% - 40px));
}

.article-hero h1 {
  width: min(930px, 100%);
  margin-bottom: 24px;
}

.article-hero p:not(.eyebrow) {
  width: min(760px, 100%);
  color: #344054;
  font-size: 1.2rem;
}

.article-introduction {
  padding: 72px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.article-introduction-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: start;
}

.article-introduction h2 {
  font-size: 2.7rem;
  line-height: 1.02;
}

.article-introduction p {
  color: #344054;
  font-size: 1.08rem;
}

.article-intro-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.article-intro-points span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.15;
}

.article-section,
.article-products {
  padding: 80px 0 100px;
  background: #ffffff;
}

.article-products {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.article-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 14px;
}

.article-card,
.article-body {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.06);
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--paper);
}

.article-card.dark {
  color: var(--white);
  background: #101828;
  border-color: #101828;
}

.article-card span,
.article-decision-list span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.article-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.12;
}

.article-card p {
  margin: 0;
  color: #344054;
}

.article-card.dark strong {
  color: var(--white);
}

.article-card.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.article-card .button {
  margin-top: 8px;
}

.article-body {
  padding: 38px;
  background: #ffffff;
}

.article-body h2 {
  margin: 40px 0 14px;
  font-size: 2rem;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: #344054;
}

.article-body a {
  color: var(--teal);
  font-weight: 800;
}

.article-intro {
  margin-top: 0;
  color: #344054;
  font-size: 1.15rem;
}

.article-quote {
  margin: 32px 0;
  padding: 26px;
  color: var(--white);
  background: #101828;
  border-radius: 8px;
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.35;
}

.article-quote cite {
  display: block;
  margin-top: 14px;
  color: #f2c46a;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 850;
}

.article-callout {
  margin: 30px 0;
  padding: 22px;
  background: #eefaf6;
  border: 1px solid #a8e8ca;
  border-radius: 8px;
}

.article-callout strong {
  display: block;
  font-size: 1.14rem;
}

.article-callout p {
  margin: 8px 0 0;
}

.article-decision-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 10px;
}

.article-decision-list section {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-decision-list h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
}

.article-decision-list p {
  margin: 0;
}

.stat-table {
  margin: 22px 0 10px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-table table {
  width: 100%;
  min-width: 620px;
  background: #ffffff;
  border-collapse: collapse;
}

.stat-table th,
.stat-table td {
  padding: 14px;
  color: #344054;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.stat-table tr:last-child td {
  border-bottom: 0;
}

.stat-table th {
  color: var(--ink);
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.source-list {
  display: grid;
  gap: 10px;
  padding-top: 24px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.source-list h2 {
  margin: 0 0 6px;
}

.article-link-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.article-link-band p {
  color: #344054;
  font-size: 1.08rem;
}

.lead-grid {
  align-items: start;
}

.lead-form,
.download-card,
.download-next {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.06);
}

.lead-form {
  display: grid;
  gap: 18px;
  background: var(--paper);
}

.lead-next-grid {
  align-items: stretch;
}

.download-section {
  min-height: 72svh;
}

.download-grid {
  align-items: stretch;
}

.download-card {
  background: #ffffff;
}

.download-next {
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: #101828;
  border-color: #101828;
}

.download-next h2 {
  color: var(--white);
}

.download-next p {
  color: rgba(255, 255, 255, 0.76);
}

.download-next .button {
  margin-top: auto;
}

.course-section.muted {
  background: #eef2f7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.course-hero .hero-actions {
  margin-top: 28px;
}

.course-positioning,
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.course-card,
.artifact-grid article,
.curriculum-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.06);
}

.course-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #ffffff;
}

.course-card.dark {
  color: var(--white);
  background: #101828;
  border-color: #101828;
}

.course-card > span,
.artifact-grid span,
.curriculum-list span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.course-card h2,
.course-card h3 {
  font-size: 1.8rem;
}

.course-card.dark h2,
.course-card.dark h3 {
  color: var(--white);
}

.course-card p,
.course-card li,
.artifact-grid p,
.curriculum-list p {
  color: #263447;
}

.course-card.dark p,
.course-card.dark li {
  color: rgba(255, 255, 255, 0.78);
}

.course-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin-bottom: 26px;
}

.course-card .button {
  margin-top: auto;
}

.artifact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.artifact-grid article {
  min-height: 210px;
  padding: 24px;
  background: #ffffff;
}

.artifact-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.curriculum-list {
  display: grid;
  gap: 12px;
}

.curriculum-list article {
  display: grid;
  grid-template-columns: 110px 0.72fr 1.28fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  background: #ffffff;
}

.curriculum-list strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.18;
}

.curriculum-list p {
  margin: 0;
}

.course-price {
  margin: 10px 0 20px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}

.course-card.dark .course-price {
  color: var(--white);
}

.course-price span {
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.course-card.dark .course-price span {
  color: rgba(255, 255, 255, 0.68);
}

.tree-section {
  padding: 96px 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.skill-tree-app {
  display: grid;
  gap: 22px;
}

.tree-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  background: #101828;
  border: 1px solid #101828;
  border-radius: 8px;
}

.tree-toolbar h3 {
  color: var(--white);
  font-size: 1.6rem;
}

.tree-toolbar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.outcome-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.outcome-button {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.74);
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.outcome-button:hover,
.outcome-button.is-active {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(158, 244, 230, 0.56);
}

.outcome-button strong {
  color: var(--white);
  font-size: 1.04rem;
  line-height: 1.08;
}

.outcome-button span {
  font-size: 0.88rem;
}

.tree-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.interactive-skill-map {
  min-height: 760px;
  overflow: auto;
  background:
    radial-gradient(circle at 50% 50%, rgba(38, 92, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #07101c 0%, #0d1220 100%);
  border: 1px solid rgba(17, 24, 39, 0.24);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 24px 70px rgba(17, 24, 39, 0.14);
}

.game-skill-board {
  position: relative;
  overflow: hidden;
}

.skill-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.skill-lines line {
  stroke-width: 2;
  stroke-linecap: round;
}

.skill-lines .is-muted {
  stroke: rgba(255, 255, 255, 0.035);
}

.skill-lines .is-path {
  stroke: rgba(158, 244, 230, 0.95);
  stroke-width: 4;
}

.skill-lines .is-sidequest {
  stroke: rgba(247, 183, 49, 0.9);
  stroke-width: 3;
  stroke-dasharray: 8 8;
}

.ring {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-1 {
  width: 380px;
  height: 380px;
}

.ring-2 {
  width: 760px;
  height: 760px;
}

.ring-3 {
  width: 1120px;
  height: 1120px;
}

.ring-4 {
  width: 1360px;
  height: 1360px;
}

.branch-label {
  position: absolute;
  z-index: 2;
  max-width: 160px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid color-mix(in srgb, var(--branch-color) 62%, rgba(255, 255, 255, 0.16));
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.game-node {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 3px;
  width: 144px;
  min-height: 104px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  background: rgba(8, 12, 20, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.game-node:hover {
  transform: translate(-50%, -52%);
  border-color: color-mix(in srgb, var(--branch-color) 68%, rgba(255, 255, 255, 0.18));
}

.game-node > span {
  color: color-mix(in srgb, var(--branch-color) 72%, #ffffff);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.game-node strong {
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.08;
}

.game-node small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 750;
}

.game-node em {
  display: inline-flex;
  justify-self: start;
  margin-top: 3px;
  padding: 3px 7px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.game-node.is-path {
  color: rgba(255, 255, 255, 0.86);
  background: color-mix(in srgb, var(--branch-color) 22%, rgba(8, 12, 20, 0.9));
  border-color: color-mix(in srgb, var(--branch-color) 72%, rgba(255, 255, 255, 0.22));
}

.game-node.is-target {
  background: rgba(247, 183, 49, 0.2);
  border-color: rgba(247, 183, 49, 0.9);
}

.game-node.is-sidequest {
  background: rgba(247, 183, 49, 0.14);
  border-color: rgba(247, 183, 49, 0.64);
}

.game-node.is-muted {
  width: 26px;
  height: 26px;
  min-height: 26px;
  padding: 0;
  opacity: 0.42;
  background: color-mix(in srgb, var(--branch-color) 22%, rgba(8, 12, 20, 0.9));
  border-color: color-mix(in srgb, var(--branch-color) 38%, rgba(255, 255, 255, 0.12));
  border-radius: 999px;
}

.game-node.is-muted:hover {
  opacity: 0.82;
  transform: translate(-50%, -50%) scale(1.18);
}

.node-dot {
  display: block;
  width: 8px;
  height: 8px;
  place-self: center;
  background: color-mix(in srgb, var(--branch-color) 72%, #ffffff);
  border-radius: 999px;
}

.game-node.node-sidequest,
.game-node.node-elective {
  border-style: dashed;
}

.path-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  padding: 20px;
  color: var(--white);
  background: #101828;
  border: 1px solid #101828;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.16);
}

.path-panel h3 {
  margin: 0;
  color: color-mix(in srgb, var(--branch-color) 54%, #ffffff);
  font-size: 1.5rem;
}

.path-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.path-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.path-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.path-list li > span {
  grid-row: span 2;
  color: #9ef4e6;
  font-weight: 900;
}

.path-list strong {
  color: var(--white);
  line-height: 1.15;
}

.path-list small {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
  text-transform: uppercase;
}

.path-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 2px;
}

.path-stats span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 850;
}

.sidequest-list {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sidequest-list > strong {
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.sidequest-list article {
  display: grid;
  gap: 2px;
  padding: 10px;
  background: rgba(247, 183, 49, 0.11);
  border: 1px dashed rgba(247, 183, 49, 0.34);
  border-radius: 8px;
}

.sidequest-list article span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sidequest-list article b {
  color: var(--white);
  line-height: 1.15;
}

.sidequest-list article small,
.sidequest-list p,
.path-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.library-band {
  padding: 30px;
  margin-bottom: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.06);
}

.library-band > span,
.about-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.library-band h2 {
  font-size: 2rem;
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.library-grid article {
  display: flex;
  flex-direction: column;
  min-height: 218px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.library-grid h3 {
  font-size: 1.08rem;
}

.library-grid p {
  color: #344054;
}

.library-grid small {
  margin-top: auto;
  color: var(--teal);
  font-weight: 850;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.about-card,
.legal-doc {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.06);
}

.about-card.dark {
  grid-row: span 2;
  color: var(--white);
  background: #101828;
  border-color: #101828;
}

.about-card h2 {
  font-size: 1.8rem;
}

.about-card.dark h2 {
  color: var(--white);
}

.about-card p,
.about-card li,
.legal-doc p,
.legal-doc li {
  color: #344054;
}

.about-card.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.about-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.legal-doc {
  width: min(860px, calc(100% - 40px));
}

.legal-doc h1 {
  margin-bottom: 24px;
}

.legal-doc h2 {
  margin-top: 34px;
  font-size: 1.7rem;
}

.diagnostic-section,
.call-script-section,
.admin-section {
  padding: 80px 0;
  background: #ffffff;
}

.call-script-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 1.05fr;
  gap: 18px;
}

.diagnostic-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.07);
}

.diagnostic-card h2 {
  font-size: 1.65rem;
}

.diagnostic-card li,
.diagnostic-card p {
  color: #344054;
}

.price-card {
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: #101828;
  border-color: #101828;
}

.price-card span {
  color: #f2c46a;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-card strong {
  margin: 34px 0 8px;
  font-size: 4rem;
  line-height: 0.95;
}

.price-card p {
  color: rgba(255, 255, 255, 0.75);
}

.price-card .button {
  margin-top: auto;
}

.script-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.script-steps article {
  min-height: 210px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.script-steps span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--coral);
  font-weight: 850;
}

.script-steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.script-steps p {
  color: var(--muted);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  margin-bottom: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-toolbar strong,
.admin-toolbar span {
  display: block;
}

.admin-toolbar span {
  color: var(--muted);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button.danger {
  color: #b42318;
}

.brief-offer-hero {
  color: var(--white);
  background:
    linear-gradient(116deg, rgba(38, 92, 255, 0.32) 0%, transparent 36%),
    linear-gradient(158deg, transparent 0%, transparent 48%, rgba(18, 183, 106, 0.22) 76%, rgba(247, 183, 49, 0.18) 100%),
    #05070c;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.brief-offer-hero .wrap {
  width: min(1120px, calc(100% - 40px));
}

.brief-offer-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 46px;
  align-items: end;
}

.brief-offer-hero .eyebrow {
  color: #9ef4e6;
}

.brief-offer-hero h1 {
  max-width: 860px;
  color: var(--white);
  font-size: clamp(3.4rem, 6.4vw, 6.5rem);
  line-height: 0.9;
}

.brief-offer-hero p {
  color: rgba(255, 255, 255, 0.76);
}

.brief-offer-hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.brief-offer-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.22);
}

.brief-offer-card span,
.brief-offer-grid span {
  color: #9ef4e6;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-offer-card strong {
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1.08;
}

.brief-offer-card p {
  margin: 0;
}

.brief-offer-price {
  display: grid;
  gap: 3px;
  padding-top: 18px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.brief-offer-price small,
.brief-offer-price em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-weight: 800;
}

.brief-offer-price b {
  color: #f2c46a;
  font-size: 2.25rem;
  line-height: 1;
}

.brief-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.brief-offer-grid article {
  min-height: 260px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.06);
}

.brief-offer-grid article:nth-child(2) {
  border-top-color: var(--gold);
}

.brief-offer-grid article:nth-child(3) {
  border-top-color: var(--green);
}

.brief-offer-grid article:nth-child(4) {
  border-top-color: var(--coral);
}

.brief-offer-grid span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--teal);
}

.brief-offer-grid h3 {
  font-size: 1.35rem;
}

.brief-offer-grid p {
  margin: 0;
  color: #344054;
}

.enquiry-section {
  background: #ffffff;
}

.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.enquiry-copy h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 0.95;
}

.enquiry-copy > p {
  color: #344054;
  font-size: 1.12rem;
}

.enquiry-steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.enquiry-steps article,
.enquiry-data-note,
.brief-enquiry-form,
.brief-enquiry-status {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.enquiry-steps article {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: var(--paper);
}

.enquiry-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.enquiry-steps strong {
  font-size: 1rem;
  line-height: 1.14;
}

.enquiry-steps p {
  margin: 0;
  color: #344054;
}

.enquiry-data-note {
  margin-top: 14px;
  padding: 20px;
  background: #eefaf6;
  border-color: #a8e8ca;
}

.enquiry-data-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.enquiry-data-note p {
  margin: 0;
  color: #344054;
}

.brief-enquiry-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #f8fbff;
  box-shadow: 0 18px 52px rgba(17, 24, 39, 0.09);
}

.brief-enquiry-status {
  padding: 16px;
  background: #ffffff;
}

.brief-enquiry-status strong {
  display: block;
  margin-bottom: 6px;
}

.brief-enquiry-status p {
  margin: 0;
  color: #344054;
}

.brief-enquiry-status.success {
  background: #eefaf6;
  border-color: #a8e8ca;
}

.brief-enquiry-status.error {
  background: #fff1ef;
  border-color: #ffb8ad;
}

.library-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.library-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.library-panel-heading {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.library-panel-heading h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.05;
}

.library-report-card,
.pain-pattern-card,
.library-empty-state {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.07);
}

.library-report-card.is-active {
  border-color: #9ef4e6;
  box-shadow: 0 0 0 3px rgba(158, 244, 230, 0.26), 0 12px 38px rgba(17, 24, 39, 0.07);
}

.library-report-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.library-report-heading span,
.library-report-meta span,
.library-source-row span,
.pain-pattern-heading span,
.pain-pattern-meta span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.library-report-heading h3 {
  margin: 6px 0 0;
  font-size: 1.55rem;
  line-height: 1.08;
}

.library-report-heading small {
  color: var(--muted);
  font-weight: 850;
  text-align: right;
}

.library-report-card > p {
  color: #344054;
}

.library-report-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.library-report-meta div {
  min-height: 104px;
  padding: 14px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.library-report-meta span {
  display: block;
  margin-bottom: 10px;
}

.library-report-meta strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.16;
}

.library-source-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.library-source-row strong {
  color: #087443;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.library-card-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.library-card-actions .button {
  min-height: 44px;
  padding: 0 12px;
  font-size: 0.88rem;
}

.pain-pattern-list {
  display: grid;
  gap: 12px;
}

.pain-pattern-card,
.brief-enquiry-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.07);
}

.pain-pattern-heading {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.pain-pattern-heading span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.pain-pattern-heading strong {
  font-size: 1.12rem;
  line-height: 1.12;
}

.pain-pattern-card p,
.brief-enquiry-card p {
  margin: 0;
  color: #344054;
}

.pain-pattern-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pain-pattern-meta span {
  min-height: 30px;
  padding: 6px 8px;
  color: #344054;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
}

.pain-pattern-card small,
.brief-enquiry-card small {
  color: var(--muted);
  font-weight: 800;
}

.library-empty-state {
  display: grid;
  gap: 12px;
}

.library-empty-state.compact {
  box-shadow: none;
}

.library-empty-state p {
  margin: 0;
  color: #344054;
}

.submission-list {
  display: grid;
  gap: 14px;
}

.submission-card,
.empty-state {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 24, 39, 0.07);
}

.submission-card h2 {
  margin-bottom: 4px;
  font-size: 1.55rem;
}

.submission-card span,
.submission-card small {
  color: var(--muted);
}

.submission-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.submission-meta span {
  padding: 6px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 750;
}

.empty-state p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .nav-links {
    order: 3;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    gap: 14px;
    padding: 8px 0 2px;
    overflow-x: auto;
    border-top: 1px solid rgba(17, 24, 39, 0.1);
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 72px 0 34px;
  }

  .landing-hero .hero-stage {
    min-height: auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero-copy,
  .hero-note {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-card {
    min-height: 430px;
  }

  .hero-card h2 {
    font-size: 3.2rem;
  }

  .intro-grid,
  .spotlight-grid,
  .capability-hero .hero-stage,
  .voice-hero-grid,
  .review-layout,
  .stance-grid,
  .analyst-grid,
  .voice-layout,
  .course-promo-grid,
  .enterprise-teaser-grid,
  .lead-hero-grid,
  .lead-grid,
  .lead-next-grid,
  .download-grid,
  .decision-layout,
  .article-introduction-grid,
  .article-layout,
  .article-link-band,
  .difference-grid,
  .faq-grid,
  .scanner-layout,
  .report-doc-grid,
  .brief-layout,
  .brief-intro-grid,
  .brief-offer-hero-grid,
  .enquiry-layout,
  .library-dashboard-grid,
  .logo-usage-grid,
  .package-grid,
  .about-grid,
  .course-positioning,
  .offer-grid,
  .diagnostic-grid,
  .script-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .steps-grid,
  .request-grid,
  .plans-grid,
  .assets-grid,
  .template-grid,
  .board-template,
  .prompt-table > div,
  .artifact-grid,
  .article-intro-points,
  .evidence-grid,
  .library-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .brief-sidebar,
  .review-side-panel {
    position: static;
  }

  .brief-hero-strip,
  .signal-grid,
  .brief-offer-grid,
  .brief-result-grid,
  .boundary-grid,
  .capability-path-report,
  .support-options-grid,
  .library-report-meta,
  .voice-architecture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voice-brief-preview {
    position: static;
  }

  .curriculum-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .enquiry-steps article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .enquiry-steps p {
    grid-column: 2;
  }

  .about-card.dark {
    grid-row: auto;
  }

  .plan {
    min-height: auto;
  }

  .hero-queue {
    grid-template-columns: repeat(2, 1fr);
  }

  .spotlight-hero {
    min-height: auto;
    padding: 78px 0 64px;
  }

  .spotlight-copy {
    text-align: center;
  }

  .spotlight-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .article-aside {
    position: static;
  }

  .tree-toolbar,
  .tree-workspace {
    grid-template-columns: 1fr;
  }

  .outcome-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interactive-skill-map {
    min-height: 680px;
  }

  .path-panel {
    position: static;
  }

  .pillar-grid,
  .entry-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .learning-loop {
    grid-template-columns: 1fr;
  }

  .model-card,
  .pillar-grid article,
  .entry-grid a,
  .audience-grid article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(1120px, calc(100% - 28px));
  }

  .site-header {
    min-height: 64px;
    padding: 12px 14px;
  }

  .brand span:last-child {
    max-width: 116px;
    line-height: 1.1;
  }

  .brand {
    width: 192px;
    height: 44px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-stage {
    width: min(1120px, calc(100% - 28px));
    padding: 48px 0 28px;
  }

  .hero-content {
    padding: 0;
  }

  h1 {
    font-size: 3.2rem;
    line-height: 0.94;
  }

  .landing-hero h1,
  .capability-hero h1,
  .analyst-voice-hero h1,
  .spotlight-copy h1,
  .course-hero h1 {
    font-size: 3.45rem;
  }

  .capability-hero .hero-stage {
    padding: 40px 0 46px;
  }

  .capability-hero h1 {
    font-size: 2.95rem;
  }

  .capability-hero .hero-note,
  .capability-map {
    display: none;
  }

  .map-grid,
  .model-pair,
  .brief-list,
  .brief-offer-grid,
  .generated-brief-header,
  .signal-grid,
  .brief-result-grid,
  .pain-map-grid,
  .boundary-grid,
  .capability-path-report,
  .support-options-grid,
  .library-report-meta,
  .library-card-actions,
  .voice-controls,
  .voice-architecture-grid,
  .logo-grid,
  .logo-usage-grid,
  .logo-mini-system div,
  .pillar-grid,
  .entry-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .generated-brief-header {
    display: grid;
  }

  .enquiry-steps article {
    grid-template-columns: 1fr;
  }

  .enquiry-steps p {
    grid-column: auto;
  }

  .review-form-heading,
  .saved-reports-header {
    display: grid;
  }

  .generated-brief-actions {
    justify-content: stretch;
    min-width: 0;
  }

  .generated-brief-actions .button {
    width: 100%;
  }

  .report-brief-hero {
    padding: 42px 0 34px;
  }

  .report-brief-hero h1 {
    font-size: 2.45rem;
  }

  .brief-hero-strip div {
    min-height: auto;
  }

  .brief-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .brief-callout,
  .boundary-section {
    padding: 22px;
  }

  .opportunity-map-board {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 16px;
  }

  .map-axis.left,
  .map-axis.right {
    display: none;
  }

  .map-quadrant {
    min-height: auto;
  }

  .next-move {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tree-toolbar {
    padding: 16px;
  }

  .outcome-buttons {
    grid-template-columns: 1fr;
  }

  .outcome-button {
    min-height: auto;
  }

  .interactive-skill-map {
    min-height: 620px;
  }

  .game-node {
    width: 138px;
    min-height: 104px;
    padding: 10px;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-card {
    min-height: 360px;
    padding: 20px;
  }

  .hero-card h2 {
    margin-top: 58px;
    font-size: 2.5rem;
  }

  .card-requests {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .card-requests span:nth-of-type(n + 3) {
    display: none;
  }

  .route-panel,
  .impact-panel,
  .builder-panel {
    padding: 14px;
  }

  .route-strip,
  .builder-step,
  .impact-stat {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .route-strip span,
  .builder-step span {
    grid-column: 1;
  }

  .primary-stat strong {
    font-size: 4rem;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
  }

  .hero-queue {
    grid-template-columns: 1fr;
  }

  .hero-board {
    width: min(1120px, calc(100% - 28px));
    margin-bottom: 30px;
    padding: 14px;
  }

  .board-intro {
    display: grid;
    gap: 4px;
  }

  .hero-queue div {
    min-height: 72px;
    padding: 14px;
  }

  .hero-queue div:nth-child(n + 3) {
    display: none;
  }

  .intro-band,
  .spotlight-hero,
  .scanner-section,
  .stance-section,
  .pathway-section,
  .framework-section,
  .audience-section,
  .analyst-section,
  .voice-agent-section,
  .voice-architecture-section,
  .admin-section,
  .logo-lab-section,
  .logo-usage-section,
  .review-section,
  .process-section,
  .course-promo,
  .enterprise-teaser,
  .assets-section,
  .requests-section,
  .difference-section,
  .plans-section,
  .faq-section,
  .final-cta,
  .library-section,
  .about-section,
  .legal-section,
  .course-section,
  .lead-section,
  .download-section,
  .enterprise-section,
  .article-hero,
  .article-introduction,
  .article-section,
  .article-products {
    padding: 64px 0;
  }

  .scanner-form,
  .report-panel,
  .voice-console,
  .voice-brief-preview,
  .generated-brief-panel,
  .brief-offer-card,
  .brief-offer-grid article,
  .brief-enquiry-form,
  .enquiry-data-note,
  .enquiry-steps article,
  .library-panel-heading,
  .library-report-card,
  .pain-pattern-card,
  .brief-enquiry-card,
  .library-empty-state,
  .review-side-panel,
  .review-form-card,
  .steps-grid article,
  .request-grid article,
  .assets-grid a,
  .library-band,
  .library-grid article,
  .about-card,
  .legal-doc,
  .course-card,
  .lead-form,
  .download-card,
  .download-next,
  .evidence-card,
  .decision-list article,
  .article-card,
  .article-body,
  .article-decision-list section,
  .artifact-grid article,
  .curriculum-list article,
  .plan {
    padding: 18px;
  }

  .field.two-col {
    grid-template-columns: 1fr;
  }

  .report-panel {
    min-height: auto;
  }

  .report-doc,
  .prompt-table,
  .package-card,
  .template-grid article {
    padding: 20px;
  }

  .compact-asset h1 {
    font-size: 3rem;
  }

  .kit-preview {
    min-height: 380px;
  }

  .kit-preview strong {
    font-size: 2rem;
  }

  .report-metrics {
    grid-template-columns: 1fr;
  }

  .score-row {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-actions .button {
    width: 100%;
  }

  .footer-grid {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media print {
  .site-header,
  .site-footer,
  .brief-nav,
  .doc-cta {
    display: none;
  }

  body {
    background: #ffffff;
  }

  .report-brief-hero {
    color: var(--ink);
    background: #ffffff;
    padding: 0 0 24px;
  }

  .report-brief-hero h1,
  .report-brief-hero p,
  .brief-hero-strip strong {
    color: var(--ink);
  }

  .brief-hero-strip,
  .brief-hero-strip div {
    color: var(--ink);
    background: #ffffff;
    border-color: var(--line);
  }

  .opportunity-brief {
    padding: 0;
  }

  .brief-layout {
    display: block;
  }

  .brief-sidebar {
    position: static;
    margin-bottom: 24px;
  }

  .brief-side-card {
    color: var(--ink);
    background: #ffffff;
  }

  .brief-side-card p {
    color: #344054;
  }

  .brief-section,
  .next-move,
  .map-opportunity,
  .signal-card,
  .pain-map-grid article,
  .boundary-grid article,
  .capability-path-report article,
  .support-options-grid article,
  .benefit-primary,
  .benefit-detail {
    break-inside: avoid;
  }
}
