:root {
  --ink: #201a17;
  --muted: #6e625b;
  --line: #e6ded7;
  --paper: #fffdf9;
  --soft: #f7f2ec;
  --field-orange: #f26a1b;
  --field-orange-dark: #9f3f10;
  --field-orange-soft: #fff0e5;
  --classroom-blue: #2563eb;
  --classroom-blue-soft: #eaf1ff;
  --green: #13795b;
  --green-soft: #e8f6ef;
  --danger: #a83d35;
  --shadow: 0 20px 60px rgba(54, 35, 19, 0.11);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
article[id] {
  scroll-margin-top: 9rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

p,
li {
  font-size: 1rem;
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 7rem);
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  overflow-wrap: break-word;
}

h3 {
  font-size: 1.08rem;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 13rem;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.5rem;
  background: var(--field-orange);
  color: #fff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}

.top-nav a,
.button,
.filter-button,
.copy-button,
.copy-chip,
.copy-card {
  min-height: 2.55rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.top-nav a:hover,
.filter-button:hover,
.copy-chip:hover,
.copy-card:hover {
  border-color: var(--field-orange);
  color: var(--field-orange-dark);
}

.top-nav .nav-cta {
  border-color: var(--classroom-blue);
  background: var(--classroom-blue);
  color: #fff;
  font-weight: 850;
}

.top-nav .nav-cta:hover {
  border-color: var(--classroom-blue);
  color: #fff;
}

.section-band {
  width: 100%;
  padding: clamp(3rem, 8vw, 6.5rem) clamp(1rem, 4vw, 4rem);
}

.wide-wrap {
  width: min(100%, 1440px);
  margin: 0 auto;
  min-width: 0;
}

.hero {
  display: grid;
  align-items: center;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.hero-grid {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(21rem, 0.85fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  min-width: 0;
}

.eyebrow,
.chapter-label,
.rail-title {
  margin: 0 0 0.8rem;
  color: var(--field-orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 44rem;
  margin: 1.5rem 0 0;
  color: #463b35;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  padding: 0.85rem 1.1rem;
  font-weight: 800;
}

.button.primary {
  border-color: var(--field-orange);
  background: var(--field-orange);
  color: #fff;
}

.button.secondary {
  background: var(--field-orange-soft);
  color: var(--field-orange-dark);
}

.classroom-button {
  border-color: var(--classroom-blue);
  background: var(--classroom-blue);
  color: #fff;
}

.blue-secondary {
  border-color: #bed1ff;
  background: #f6f9ff;
  color: #1c4db6;
}

.disabled-button {
  border-color: #d4cec7;
  background: #efebe6;
  color: #7a7068;
  cursor: default;
  pointer-events: none;
}

.fine-print {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-path-strip {
  display: grid;
  gap: 0.75rem;
  max-width: 45rem;
  margin-top: 1.1rem;
  padding: 0.85rem;
  border: 1px solid #efd5bf;
  border-radius: 0.65rem;
  background: #fffaf4;
}

.hero-path-strip p {
  margin: 0;
  color: var(--field-orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-path-strip div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.hero-path-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid #ead4c4;
  border-radius: 0.45rem;
  background: #fff;
  color: #43352d;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-path-strip a:hover {
  border-color: var(--field-orange);
  color: var(--field-orange-dark);
}

.recording-path-band {
  background: #fffaf4;
  border-top: 1px solid #efd5bf;
  border-bottom: 1px solid #efd5bf;
}

.recording-path-card {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid #ead4c4;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 16px 45px rgba(61, 42, 25, 0.07);
}

.recording-path-card h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.recording-path-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.recording-path-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recording-path-list a {
  display: grid;
  min-height: 10rem;
  align-content: start;
  gap: 0.55rem;
  padding: 0.85rem;
  border: 1px solid #ead4c4;
  border-radius: 0.55rem;
  background: #fffaf4;
}

.recording-path-list a:hover {
  border-color: var(--field-orange);
}

.recording-path-list span {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border-radius: 0.45rem;
  background: var(--field-orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
}

.recording-path-list strong,
.recording-path-list small {
  display: block;
}

.recording-path-list strong {
  line-height: 1.15;
}

.recording-path-list small {
  color: var(--muted);
  line-height: 1.4;
}

.recording-path-mini {
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
  margin-top: 1.1rem;
  padding: 0.85rem;
  border: 1px solid #efd5bf;
  border-radius: 0.65rem;
  background: rgba(255, 250, 244, 0.82);
}

.recording-path-mini p {
  margin: 0;
  color: var(--field-orange-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recording-path-mini div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.recording-path-mini a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid #ead4c4;
  border-radius: 0.45rem;
  background: #fff;
  color: #43352d;
  font-size: 0.86rem;
  font-weight: 850;
}

.recording-path-mini a:hover {
  border-color: var(--field-orange);
  color: var(--field-orange-dark);
}

.voice-band {
  background: #fffdf9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.voice-card {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1rem, 3vw, 1.7rem);
  border: 1px solid #ead4c4;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 16px 45px rgba(61, 42, 25, 0.07);
}

.voice-card.compact-voice-card {
  align-items: center;
}

.voice-card h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.voice-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.voice-grid article {
  min-height: 10rem;
  padding: 1rem;
  border: 1px solid #ead4c4;
  border-radius: 0.55rem;
  background: #fffaf4;
}

.voice-grid span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.35rem;
  background: var(--field-orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
}

.voice-grid p {
  color: #51463f;
  line-height: 1.55;
}

.classroom-page .voice-band {
  background: #071533;
  border-color: rgba(255, 255, 255, 0.12);
}

.classroom-page .voice-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.classroom-page .voice-card h2 {
  color: #fff;
}

.classroom-page .voice-card p,
.classroom-page .voice-grid p {
  color: #dfe9ff;
}

.classroom-page .voice-grid article {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.classroom-page .voice-grid span {
  background: var(--classroom-blue);
}

.classroom-workbook-band {
  background:
    radial-gradient(circle at 14% 0%, rgba(37, 99, 235, 0.18), transparent 24rem),
    linear-gradient(180deg, #071532 0%, #0b1f4c 100%);
  color: #fff;
}

.classroom-workbook-band .section-heading p,
.classroom-workbook-band .split-heading > p {
  color: #dce8ff !important;
}

.workbook-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.workbook-card {
  display: grid;
  gap: 0.75rem;
  min-height: 16rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.workbook-card > span {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 999px;
  background: var(--classroom-blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 950;
}

.workbook-card h3,
.workbook-card p {
  margin: 0;
}

.workbook-card p {
  color: #dce8ff;
}

.workbook-mini {
  display: grid;
  gap: 0.3rem;
  align-self: end;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.workbook-mini strong {
  color: #fff;
}

.workbook-mini small {
  color: #b9caff;
  line-height: 1.45;
}

.workbook-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.workbook-flow div {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.07);
}

.workbook-flow strong {
  color: #fff;
}

.workbook-flow span {
  color: #dce8ff;
}

.guide-cover {
  width: 100%;
  min-width: 0;
  min-height: 36rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #1f1814;
  border: 1px solid #3a2b22;
  border-radius: 0.75rem;
  color: #fff8f1;
  box-shadow: var(--shadow);
}

.cover-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cover-topline span {
  color: #ffb37c;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-cover h2 {
  max-width: 8ch;
  margin: 1.2rem 0;
}

.guide-cover p {
  color: #f4d8c6;
}

.cover-kicker {
  display: inline-flex;
  padding: 0.35rem 0.55rem;
  border-radius: 0.35rem;
  background: var(--field-orange);
  color: #fff !important;
  font-weight: 900;
}

.cover-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.cover-proof div {
  padding: 0.75rem;
  border: 1px solid #4d392e;
  border-radius: 0.5rem;
  background: #2a211c;
}

.cover-proof strong,
.cover-proof span {
  display: block;
}

.cover-proof strong {
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
}

.cover-proof span {
  margin-top: 0.35rem;
  color: #eecdb8;
  font-size: 0.78rem;
}

.cover-rule {
  width: 100%;
  height: 1px;
  margin: 2rem 0;
  background: #6f4b35;
}

.cover-label {
  margin: 0 0 0.75rem;
  color: #ffb37c !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-cover ul,
.cover-steps {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-cover li::before,
.cover-steps li::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: var(--field-orange);
}

.route-band {
  padding-top: clamp(2.5rem, 6vw, 5rem);
  background: #fff7ee;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.5fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  max-width: none;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.route-card {
  display: grid;
  min-height: 21rem;
  align-content: start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid #efd5bf;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 12px 35px rgba(61, 42, 25, 0.07);
}

.route-card:hover {
  border-color: var(--field-orange);
  transform: translateY(-2px);
}

.route-card p {
  margin: 0;
  color: var(--muted);
}

.route-card strong {
  align-self: end;
  color: var(--field-orange-dark);
}

.path-index {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #efd5bf;
  border-radius: 0.7rem;
  background: #fffaf4;
}

.path-index h3,
.path-index p {
  margin: 0;
}

.path-index h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.path-index p:not(.path-index-kicker) {
  color: var(--muted);
}

.path-index-kicker {
  margin-bottom: 0.55rem !important;
  color: var(--field-orange-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-index-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.path-index-links a {
  display: grid;
  min-height: 4.8rem;
  align-content: center;
  gap: 0.35rem;
  padding: 0.75rem;
  border: 1px solid #ead4c4;
  border-radius: 0.5rem;
  background: #fff;
  color: #43352d;
  font-weight: 850;
}

.path-index-links a:hover {
  border-color: var(--field-orange);
  color: var(--field-orange-dark);
}

.path-index-links span {
  color: var(--field-orange-dark);
  font-size: 0.78rem;
  font-weight: 950;
}

.route-number {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 0.55rem;
  background: var(--field-orange-soft);
  color: var(--field-orange-dark);
  font-weight: 950;
}

.business-route {
  border-color: #d8dfce;
  background: #fbfff6;
}

.offer-band {
  background: var(--ink);
  color: #fff8ef;
}

.offer-band .eyebrow {
  color: #ffb37c;
}

.offer-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.offer-copy p,
.final-grid p {
  margin-top: 0;
  color: #f2dfd2;
  font-size: 1.08rem;
}

.ladder-band {
  background: #fffaf4;
}

.ladder-map,
.ladder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.ladder-card {
  display: grid;
  min-height: 25rem;
  align-content: start;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(61, 42, 25, 0.06);
}

.ladder-card .button {
  align-self: end;
  justify-self: start;
  margin-top: 0.75rem;
}

.ladder-card p {
  margin: 0;
  color: #51463f;
}

.ladder-step {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 0.5rem;
  background: var(--field-orange-soft);
  color: var(--field-orange-dark);
  font-size: 1.3rem;
  font-weight: 950;
}

.classroom-card {
  border-color: #bed1ff;
  background: #f6f9ff;
}

.free-card {
  background: #fff;
}

.classroom-card .ladder-step {
  background: var(--classroom-blue);
  color: #fff;
}

.boardroom-card {
  background: #f5f2ee;
}

.ladder-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.ladder-summary article {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid #e5d9cf;
  border-radius: 0.65rem;
  background: #fff;
}

.ladder-summary span {
  color: var(--field-orange-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ladder-summary p {
  margin: 0;
  color: var(--muted);
}

.blue-eyebrow {
  color: var(--classroom-blue);
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow),
.prompt-heading > p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.ladder-card,
.chapter,
.prompt-card,
.work-example {
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(61, 42, 25, 0.06);
}

.feature-card {
  min-height: 15rem;
  padding: 1.4rem;
}

.compact-feature {
  min-height: 13rem;
}

.number {
  display: inline-flex;
  margin-bottom: 2.4rem;
  color: var(--field-orange-dark);
  font-weight: 900;
}

.sample-band {
  background: #fff7ee;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sample-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) minmax(19rem, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}

.sample-intro,
.sample-steps,
.sample-prompt,
.sample-check {
  min-width: 0;
}

.sample-intro {
  display: grid;
  grid-row: 1 / span 2;
  align-content: start;
  gap: 1.1rem;
  padding-right: clamp(0rem, 2vw, 1rem);
}

.sample-intro p {
  margin: 0;
  color: #51463f;
  font-size: 1.08rem;
}

.sample-intro .button {
  justify-self: start;
  margin-top: 0.4rem;
}

.sample-steps {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.sample-steps > div,
.sample-prompt,
.sample-check {
  padding: 1.1rem;
  border: 1px solid #efd5bf;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(61, 42, 25, 0.06);
}

.sample-steps span {
  display: inline-flex;
  margin-bottom: 1.25rem;
  color: var(--field-orange-dark);
  font-weight: 950;
}

.sample-steps p,
.sample-check li {
  color: #51463f;
}

.sample-steps p {
  margin-bottom: 0;
}

.sample-prompt {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: start;
}

.sample-prompt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.sample-prompt-head span {
  color: var(--field-orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-prompt-head strong {
  color: #51463f;
}

.sample-check {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  border-color: #bfdccf;
  background: #fbfff6;
}

.sample-check h3 {
  color: var(--green);
}

.muted-band {
  background: var(--soft);
}

.guide-shell {
  display: grid;
  grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.chapter-rail {
  position: sticky;
  top: 5.8rem;
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(255, 253, 249, 0.9);
}

.chapter-rail a {
  padding: 0.65rem 0.75rem;
  border-radius: 0.4rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.chapter-rail a:hover,
.chapter-rail a.active {
  background: var(--field-orange-soft);
  color: var(--field-orange-dark);
}

.chapter-stack {
  display: grid;
  gap: 1rem;
}

.chapter-page {
  background: var(--paper);
}

.chapter-page-hero {
  background: #fff7ee;
  border-bottom: 1px solid var(--line);
}

.chapter-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.55fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
}

.chapter-page h1 {
  max-width: 13ch;
}

.chapter-page-panel {
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid #efd5bf;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.chapter-page-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.chapter-page-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.2rem;
}

.chapter-page-list li::marker {
  color: var(--field-orange);
  font-weight: 900;
}

.lesson-band {
  background: var(--soft);
}

.lesson-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.lesson-nav {
  position: sticky;
  top: 5.8rem;
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(255, 253, 249, 0.92);
}

.lesson-nav a {
  padding: 0.65rem 0.75rem;
  border-radius: 0.4rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.lesson-nav a:hover {
  background: var(--field-orange-soft);
  color: var(--field-orange-dark);
}

.lesson-stack {
  display: grid;
  gap: 1rem;
}

.lesson-card {
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(61, 42, 25, 0.06);
  scroll-margin-top: 6rem;
}

.lesson-card p {
  max-width: 72ch;
}

.next-step-card {
  background: #fffaf4;
}

.chapter {
  padding: clamp(1.25rem, 4vw, 3rem);
  scroll-margin-top: 6rem;
}

.chapter p {
  max-width: 72ch;
}

.callout {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.55rem;
  background: var(--field-orange-soft);
  color: var(--field-orange-dark);
}

.plain-rule-strip,
.beginner-script,
.starter-example-grid,
.rescue-loop,
.save-card {
  margin-top: 1rem;
}

.plain-rule-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.plain-rule-strip span {
  padding: 0.75rem;
  border: 1px solid #ead4c4;
  border-radius: 0.5rem;
  background: #fff8f1;
  color: var(--field-orange-dark);
  font-weight: 850;
}

.beginner-script,
.save-card {
  padding: 1rem;
  border: 1px solid #ead4c4;
  border-radius: 0.65rem;
  background: #fffaf4;
}

.beginner-script h3,
.save-card h3 {
  margin-top: 0;
}

.beginner-script ol {
  display: grid;
  gap: 0.55rem;
  margin: 0.7rem 0 0;
  padding-left: 1.3rem;
}

.starter-example-grid,
.rescue-loop {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.starter-example-grid > div,
.rescue-loop > div {
  padding: 1rem;
  border: 1px solid #ead4c4;
  border-radius: 0.65rem;
  background: #fff8f1;
}

.starter-example-grid span,
.rescue-loop strong {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.5rem;
  border-radius: 0.35rem;
  background: var(--field-orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.starter-example-grid h3,
.rescue-loop p,
.save-card p {
  margin-top: 0;
}

.starter-example-grid p:last-child,
.rescue-loop p:last-child,
.save-card p:last-child {
  margin-bottom: 0;
}

.field-exercise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.field-exercise-card {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding: 1rem;
  border: 1px solid #ead4c4;
  border-radius: 0.65rem;
  background: #fffdf9;
}

.field-exercise-card.strong {
  border-color: rgba(240, 120, 34, 0.45);
  background: #fff8f1;
}

.field-exercise-card span {
  width: fit-content;
  padding: 0.28rem 0.5rem;
  border-radius: 0.35rem;
  background: var(--field-orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-exercise-card h3,
.field-exercise-card p {
  margin: 0;
}

.field-exercise-card small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.proof-lab-grid,
.trust-scale-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.proof-lab-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-scale-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-lab-card,
.trust-scale-grid > div {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding: 1rem;
  border: 1px solid #ead4c4;
  border-radius: 0.65rem;
  background: #fffdf9;
}

.proof-lab-card.risky {
  border-color: rgba(185, 60, 37, 0.35);
  background: #fff5f2;
}

.proof-lab-card.safe {
  border-color: rgba(34, 133, 86, 0.34);
  background: #f3fff8;
}

.proof-lab-card.notes {
  background: #fff8f1;
}

.proof-lab-card span,
.trust-scale-grid span {
  width: fit-content;
  padding: 0.28rem 0.5rem;
  border-radius: 0.35rem;
  background: var(--field-orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-lab-card.risky span,
.trust-scale-grid > div:last-child span {
  background: #b93c25;
}

.proof-lab-card.safe span {
  background: #228556;
}

.proof-lab-card h3,
.proof-lab-card p,
.trust-scale-grid h3,
.trust-scale-grid p {
  margin: 0;
}

.proof-lab-card small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.copy-block {
  position: relative;
  margin: 1rem 0 1.5rem;
}

pre {
  overflow-x: auto;
  margin: 0;
  padding: 1.2rem;
  border: 1px solid #ead4c4;
  border-radius: 0.6rem;
  background: #2a211c;
  color: #fff7ef;
  white-space: pre-wrap;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.55;
}

p code {
  padding: 0.1rem 0.25rem;
  border-radius: 0.25rem;
  background: #fff1e6;
  color: var(--field-orange-dark);
}

.copy-button {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  background: #fff8f1;
  color: var(--field-orange-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.copy-block.compact pre {
  padding-top: 3rem;
}

.prompt-walkthrough,
.expected-answer {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid #ead4c4;
  border-radius: 0.65rem;
  background: #fff7ee;
}

.line-breakdown {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.9rem;
}

.line-breakdown span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.3rem 0.5rem;
  border-radius: 0.35rem;
  background: var(--field-orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.line-breakdown p,
.expected-answer p {
  margin: 0;
}

.answer-demo-grid,
.answer-scorecard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.fix-list {
  display: grid;
  gap: 0.65rem;
  margin: 0.8rem 0 0;
  padding-left: 1.3rem;
}

.question-grid,
.recipe-grid,
.safety-grid,
.tool-choice,
.claude-grid,
.claude-structure,
.codex-use-grid,
.codex-guardrails,
.compare-grid,
.access-grid,
.plan-grid,
.answer-grid,
.screen-grid,
.safe-rewrite,
.line-breakdown,
.answer-demo-grid,
.answer-scorecard,
.business-playbook,
.routine-grid,
.business-prompt-grid {
  display: grid;
  gap: 0.8rem;
}

.question-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.2rem 0;
}

.question-grid span,
.recipe-grid > div,
.safety-grid > div,
.tool-choice > div,
.claude-grid > div,
.claude-structure > div,
.codex-use-grid > div,
.codex-guardrails > div,
.access-grid > div,
.plan-grid > div,
.screen-grid > div,
.safe-rewrite > div,
.line-breakdown > div,
.workflow-step,
.routine-grid > div,
.answer-card,
.bad-example,
.good-example {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: #fffaf4;
}

.answer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.access-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.2rem 0;
}

.plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.2rem 0;
}

.screen-walkthrough {
  margin-top: 1.4rem;
  padding: 1rem;
  border: 1px solid #ead4c4;
  border-radius: 0.65rem;
  background: #fff7ee;
}

.screen-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0.9rem;
}

.screen-grid span {
  display: grid;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.6rem;
  place-items: center;
  border-radius: 0.45rem;
  background: var(--field-orange);
  color: #fff;
  font-weight: 900;
}

.screen-grid p,
.safe-rewrite p {
  margin: 0;
}

.safe-rewrite {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.safe-rewrite > div:first-child {
  border-color: #efc0ba;
  background: #fff2f0;
}

.safe-rewrite > div:last-child {
  border-color: #bfdccf;
  background: var(--green-soft);
}

.warning-card {
  border-color: #efc0ba;
  background: #fff2f0;
}

.mini-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.copy-chip {
  padding: 0.65rem 0.85rem;
  background: #fff;
  color: var(--field-orange-dark);
  font-weight: 750;
}

.recipe-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 1.2rem 0;
}

.compare-grid,
.safety-grid,
.tool-choice {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.claude-next {
  background: #fffaf4;
}

.claude-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.claude-structure {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #ead4c4;
  border-radius: 0.65rem;
  background: #fff7ee;
}

.claude-structure h3 {
  grid-column: 1 / -1;
}

.claude-structure span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.65rem;
  place-items: center;
  border-radius: 0.4rem;
  background: var(--field-orange-soft);
  color: var(--field-orange-dark);
  font-weight: 950;
}

.claude-structure p {
  margin: 0;
}

.codex-next {
  background: #fffaf4;
}

.codex-use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.codex-guardrails {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.codex-use-grid > div {
  background: #fff;
}

.codex-guardrails > div:last-child {
  border-color: #efc0ba;
  background: #fff2f0;
}

.bad-example {
  border-color: #efc0ba;
  background: #fff2f0;
}

.good-example {
  border-color: #bfdccf;
  background: var(--green-soft);
}

.example-list {
  display: grid;
  gap: 1rem;
}

.business-workflow {
  background: #fbfff6;
}

.business-playbook {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.workflow-step {
  background: #fff;
}

.workflow-step span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 0.45rem;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 950;
}

.business-routine {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #d8dfce;
  border-radius: 0.65rem;
  background: #f5fbef;
}

.routine-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0.8rem;
}

.routine-grid strong {
  display: inline-flex;
  margin-bottom: 0.4rem;
  color: var(--green);
}

.routine-grid p {
  margin: 0;
}

.business-prompt-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.business-classroom-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #bed1ff;
  border-radius: 0.65rem;
  background: #f6f9ff;
}

.business-classroom-bridge p {
  margin: 0.45rem 0 0;
}

.business-classroom-bridge .button {
  white-space: nowrap;
}

.business-decision-grid,
.business-scorecard-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.business-decision-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-scorecard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-decision-grid > div,
.business-scorecard-grid > div {
  padding: 1rem;
  border: 1px solid #d8dfce;
  border-radius: 0.65rem;
  background: #f7fcf2;
}

.business-decision-grid span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.28rem 0.5rem;
  border-radius: 0.35rem;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.business-scorecard-grid strong {
  display: inline-flex;
  margin-bottom: 0.4rem;
  color: var(--green);
}

.business-decision-grid p,
.business-scorecard-grid p {
  margin-bottom: 0;
}

.bridge-kicker {
  color: var(--classroom-blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-example {
  padding: 1.2rem;
}

.weak-line {
  color: var(--muted);
}

.sample-answer {
  margin-bottom: 0;
  padding: 1rem;
  border-left: 4px solid var(--green);
  background: var(--green-soft);
}

.check-list {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
}

.check-list li::marker {
  color: var(--green);
}

.check-list.danger li::marker {
  color: var(--danger);
}

.classroom-band {
  background: #0f2f78;
  color: #f6f9ff;
}

.classroom-band .eyebrow,
.classroom-band .blue-eyebrow {
  color: #a8c2ff;
}

.classroom-band p {
  color: #dfe9ff;
}

.classroom-wrap {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.classroom-intro,
.classroom-layout,
.classroom-fit-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
}

.classroom-intro {
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.55fr);
  align-items: end;
}

.classroom-intro p {
  margin-top: 0;
}

.classroom-layout {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.42fr);
  align-items: start;
}

.classroom-main {
  display: grid;
  gap: 1rem;
}

.classroom-program {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.classroom-program article,
.classroom-fit-grid > div {
  min-height: 14rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.09);
}

.classroom-program span {
  display: inline-flex;
  margin-bottom: 1.7rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.35rem;
  background: #fff;
  color: var(--classroom-blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.classroom-program h3,
.classroom-fit-grid h3 {
  color: #fff;
}

.classroom-fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.classroom-panel {
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.classroom-panel h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.panel-kicker {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.35rem 0.55rem;
  border-radius: 0.35rem;
  background: #fff;
  color: var(--field-orange-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.classroom-page .panel-kicker,
.classroom-band .panel-kicker,
.classroom-panel .panel-kicker,
.classroom-status-card .panel-kicker {
  color: var(--classroom-blue);
}

.classroom-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.classroom-list li {
  padding: 0.7rem 0.8rem;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.1);
}

.classroom-join-box {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.13);
}

.classroom-join-box span {
  color: #a8c2ff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.classroom-join-box strong {
  color: #fff;
}

.community-onramp {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
}

.community-onramp h3 {
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.community-onramp p {
  margin: 0 0 1rem;
}

.community-onramp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.community-onramp-grid article {
  min-height: 10.25rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.1);
}

.community-onramp-grid span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.32rem 0.5rem;
  border-radius: 0.35rem;
  background: #fff;
  color: var(--classroom-blue);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.community-onramp-grid p {
  margin: 0;
  color: #dfe9ff;
  line-height: 1.45;
}

.bookshelf-hero {
  background:
    linear-gradient(180deg, rgba(242, 106, 27, 0.1), transparent 62%),
    var(--paper);
}

.bookshelf-hero-grid,
.first-wins-layout,
.held-back-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.65fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.shelf-card {
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.shelf-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.shelf-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.shelf-status-grid div {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: var(--soft);
}

.shelf-status-grid strong,
.shelf-status-grid span {
  display: block;
}

.shelf-status-grid span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.shelf-band,
.held-back-band {
  background: var(--soft);
}

.bookshelf-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.book-card,
.wins-list article,
.held-back-list article {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 14px 35px rgba(54, 35, 19, 0.06);
}

.book-card {
  min-height: 21rem;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.featured-book {
  border-color: rgba(242, 106, 27, 0.45);
  background:
    linear-gradient(135deg, rgba(242, 106, 27, 0.14), transparent 44%),
    #fff;
}

.book-label,
.wins-list span {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.55rem;
  border-radius: 0.35rem;
  background: var(--field-orange-soft);
  color: var(--field-orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.book-card p,
.wins-list p,
.held-back-list p {
  margin: 0;
  color: var(--muted);
}

.book-card .button {
  align-self: end;
  width: fit-content;
}

.first-wins-band {
  background: #201a17;
  color: #fffdf9;
}

.first-wins-band .eyebrow {
  color: #ffb47e;
}

.first-wins-band p {
  color: #e8ded5;
}

.wins-list {
  display: grid;
  gap: 0.75rem;
}

.wins-list article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.wins-list strong {
  display: block;
  margin: 0.75rem 0 0.35rem;
  color: #fff;
  font-size: 1.06rem;
}

.held-back-list {
  display: grid;
  gap: 0.85rem;
}

.held-back-list h3 {
  margin-bottom: 0.45rem;
}

.classroom-page {
  background: #071533;
  color: #f6f9ff;
}

.classroom-page .site-header {
  background: rgba(7, 21, 51, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.classroom-page .brand strong {
  color: #fff;
}

.classroom-page .brand small {
  color: #a8c2ff;
}

.classroom-page .top-nav a:not(.nav-cta) {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #dfe9ff;
}

.classroom-page .top-nav a:not(.nav-cta):hover {
  border-color: rgba(168, 194, 255, 0.6);
  color: #fff;
}

.classroom-page-hero {
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.2), transparent 70%),
    #071533;
  color: #fff;
}

.classroom-recording-path {
  background: #0c1c43;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.classroom-page .recording-path-card {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.classroom-page .recording-path-card p,
.classroom-page .recording-path-list small {
  color: #dfe9ff;
}

.classroom-page .recording-path-list a {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.classroom-page .recording-path-list a:hover {
  border-color: rgba(168, 194, 255, 0.7);
}

.classroom-page .recording-path-list span {
  background: var(--classroom-blue);
}

.classroom-hero-grid,
.live-room-grid,
.join-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.62fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.classroom-page-hero h1 {
  max-width: 11ch;
}

.classroom-page-hero .hero-lede,
.classroom-deep-blue p,
.live-room-band p,
.classroom-tools-band p,
.classroom-join-page p {
  color: #dfe9ff;
}

.classroom-status-card,
.join-decision-card {
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.classroom-status-card h2,
.join-decision-card h3 {
  color: #fff;
}

.classroom-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.classroom-status-grid div {
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.09);
}

.classroom-status-grid strong,
.classroom-status-grid span {
  display: block;
}

.classroom-status-grid span {
  margin-top: 0.25rem;
  color: #a8c2ff;
  font-size: 0.82rem;
}

.classroom-fit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.classroom-fit-strip span,
.classroom-status-list li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #dfe9ff;
  font-size: 0.84rem;
  font-weight: 800;
}

.classroom-fit-strip span {
  padding: 0.45rem 0.68rem;
}

.classroom-status-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.classroom-status-list li {
  padding: 0.55rem 0.75rem;
  border-radius: 0.55rem;
}

.classroom-deep-blue {
  background: #0f2f78;
}

.classroom-portal-page {
  background: #091a3e;
  color: #fff;
}

.portal-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.portal-page-grid p {
  color: #dfe9ff;
}

.portal-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.portal-tool-grid article {
  min-height: 13.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.09);
}

.portal-tool-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.34rem 0.52rem;
  border-radius: 0.35rem;
  background: #fff;
  color: var(--classroom-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-tool-grid h3 {
  color: #fff;
}

.portal-tool-grid p {
  margin-bottom: 0;
}

.classroom-offer-shell {
  background: #071533;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-shell-grid,
.first-post-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.offer-shell-grid > div > p,
.first-post-page-grid > div > p {
  color: #dfe9ff;
}

.offer-stack,
.post-template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.offer-stack article,
.post-template-grid article {
  min-height: 12rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.09);
}

.offer-stack span,
.post-template-grid span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.34rem 0.52rem;
  border-radius: 0.35rem;
  background: #fff;
  color: var(--classroom-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-stack h3,
.post-template-grid h3 {
  color: #fff;
}

.offer-stack p,
.post-template-grid p {
  color: #dfe9ff;
}

.first-wins-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
}

.first-wins-page-grid,
.classroom-week-grid,
.live-format-grid,
.classroom-tools-grid,
.classroom-tab-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.first-wins-page-grid article,
.classroom-week-grid article,
.live-format-grid article,
.classroom-tools-grid article,
.classroom-tab-grid article {
  min-height: 13rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.09);
}

.first-wins-page-grid span,
.classroom-week-grid span,
.live-format-grid span,
.classroom-tab-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.34rem 0.52rem;
  border-radius: 0.35rem;
  background: #fff;
  color: var(--classroom-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.first-wins-page-grid h3,
.classroom-week-grid h3,
.live-format-grid h3,
.classroom-tools-grid h3,
.classroom-tab-grid h3 {
  color: #fff;
}

.classroom-path-page,
.classroom-tools-band {
  background: #0a1d46;
}

.classroom-week-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.classroom-tab-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.classroom-tab-grid strong {
  display: block;
  margin-top: 1rem;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.45;
}

.live-room-band {
  background: #fffdf9;
  color: var(--ink);
}

.live-room-band .eyebrow {
  color: var(--field-orange-dark);
}

.live-room-band p {
  color: var(--muted);
}

.live-format-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.classroom-rhythm-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.first-post-page-band {
  background: #0c1c43;
  color: #fff;
}

.proof-board-page-band {
  background: #091a3e;
  color: #fff;
}

.proof-board-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.proof-board-grid article {
  min-height: 13rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.09);
}

.proof-board-grid span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.34rem 0.52rem;
  border-radius: 0.35rem;
  background: #fff;
  color: var(--classroom-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-board-grid h3,
.proof-board-grid strong {
  color: #fff;
}

.proof-board-grid p {
  color: #dfe9ff;
}

.proof-board-grid strong {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.86rem;
}

.live-format-grid article {
  border-color: var(--line);
  background: #fff;
  box-shadow: 0 14px 35px rgba(54, 35, 19, 0.06);
}

.live-format-grid h3 {
  color: var(--ink);
}

.live-format-grid span {
  background: var(--field-orange-soft);
  color: var(--field-orange-dark);
}

.classroom-tools-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.classroom-join-page {
  background: #071533;
}

.join-page-grid {
  align-items: center;
}

.join-page-grid h2 {
  color: #fff;
}

.invite-checklist {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.invite-checklist article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
}

.invite-checklist span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999px;
  background: var(--classroom-blue);
  color: #fff;
  font-weight: 900;
}

.invite-checklist p {
  margin: 0;
  color: #dfe9ff;
}

.join-hold-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}

.join-hold-box strong,
.join-hold-box span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.64rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.join-hold-box strong {
  background: #fff;
  color: var(--classroom-blue);
}

.join-hold-box span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #dfe9ff;
}

.boardroom-band {
  background: #f1ede7;
}

.boardroom-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
}

.boardroom-copy {
  display: grid;
  gap: 1rem;
}

.boardroom-copy p {
  margin: 0;
}

.boardroom-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.boardroom-notes span {
  padding: 0.8rem;
  border: 1px solid #d4cec7;
  border-radius: 0.55rem;
  background: #fff;
  color: #514941;
  font-weight: 850;
}

.boardroom-quiet {
  color: #6c625a;
}

.coming-soon-pill {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.5rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid #d4cec7;
  border-radius: 0.45rem;
  background: #fff;
  color: #6c625a;
  font-weight: 900;
}

.boardroom-page {
  background: #f7f3ee;
}

.boardroom-hero {
  background: #15120f;
  color: #fff8ef;
}

.boardroom-hero-grid,
.workspace-compare,
.boardroom-fit-grid,
.proof-grid,
.boardroom-status-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
}

.boardroom-hero h1 {
  max-width: 11ch;
}

.boardroom-hero .hero-lede,
.boardroom-hero .fine-print {
  color: #eadfd5;
}

.boardroom-status-card,
.status-panel {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid #4e433b;
  border-radius: 0.75rem;
  background: #211b17;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.boardroom-status-card h2,
.status-panel h3 {
  color: #fff;
}

.boardroom-status-card p,
.status-panel p {
  color: #e3d6cb;
}

.boardroom-status-list {
  display: grid;
  gap: 0.6rem;
}

.boardroom-status-list span {
  padding: 0.75rem 0.8rem;
  border: 1px solid #5b4d43;
  border-radius: 0.55rem;
  background: #2b231f;
  color: #fff4ea;
  font-weight: 850;
}

.workspace-band {
  background: #fffdf9;
}

.workspace-compare {
  align-items: stretch;
  margin-bottom: 1rem;
}

.workspace-compare article,
.workspace-steps article,
.boardroom-fit-list article,
.proof-cards article {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 16px 40px rgba(54, 35, 19, 0.06);
}

.workspace-compare article:first-child {
  background: #fbf6ef;
}

.workspace-compare span,
.workspace-steps span,
.proof-cards span {
  width: fit-content;
  padding: 0.35rem 0.55rem;
  border-radius: 0.4rem;
  background: var(--field-orange-soft);
  color: var(--field-orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.workspace-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.8rem;
}

.workspace-steps article {
  min-height: 18rem;
}

.boardroom-fit-band {
  background: #f0ebe4;
}

.boardroom-fit-grid {
  align-items: start;
}

.boardroom-fit-list,
.proof-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.proof-band {
  background: #fffdf9;
}

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

.proof-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-cards article {
  min-height: 14rem;
}

.boardroom-readiness-band {
  background: #f0ebe4;
}

.boardroom-readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.boardroom-readiness-grid article,
.boardroom-packet,
.boardroom-packet-list article {
  border: 1px solid #ded3c6;
  border-radius: 0.75rem;
  background: #fffdf9;
  box-shadow: 0 16px 40px rgba(54, 35, 19, 0.06);
}

.boardroom-readiness-grid article {
  display: grid;
  gap: 0.65rem;
  min-height: 15rem;
  padding: 1rem;
}

.boardroom-readiness-grid span {
  width: fit-content;
  padding: 0.35rem 0.55rem;
  border-radius: 0.4rem;
  background: #ede2d6;
  color: #6f4a2d;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.boardroom-packet {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: start;
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.boardroom-packet-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.boardroom-packet-list article {
  padding: 1rem;
}

.boardroom-packet-list strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #6f4a2d;
}

.boardroom-packet-list p {
  margin: 0;
  color: var(--muted);
}

.boardroom-status-band {
  background: #211b17;
  color: #fff8ef;
}

.boardroom-status-band p {
  color: #e3d6cb;
}

.tool-note {
  background: #fffaf4;
}

.tool-note-line {
  color: var(--field-orange-dark);
}

.prompt-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.55fr);
  gap: 2rem;
  align-items: end;
  max-width: none;
}

.prompt-path-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.path-button {
  display: grid;
  min-height: 7rem;
  align-content: start;
  gap: 0.4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.path-button:hover,
.path-button.active {
  border-color: var(--field-orange);
  background: var(--field-orange-soft);
}

.path-button span {
  font-weight: 900;
}

.path-button small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.prompt-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.control-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-button {
  padding: 0.6rem 0.85rem;
  color: var(--muted);
}

.filter-button.active {
  border-color: var(--field-orange);
  background: var(--field-orange);
  color: #fff;
}

.prompt-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.prompt-public-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.46fr);
  gap: 1rem;
  align-items: start;
}

.public-prompt-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prompt-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 17rem;
  padding: 1rem;
}

.featured-prompt {
  border-color: rgba(242, 106, 27, 0.55);
  background: linear-gradient(135deg, #fff, #fff5ed);
}

.prompt-kicker {
  justify-self: start;
  margin-bottom: 0.7rem;
  padding: 0.28rem 0.45rem;
  border-radius: 0.35rem;
  background: var(--field-orange-soft);
  color: var(--field-orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prompt-card p {
  margin-bottom: 1rem;
  color: #51463f;
  font-size: 0.92rem;
}

.copy-card {
  justify-self: start;
  min-height: 2.2rem;
  padding: 0.35rem 0.75rem;
  color: var(--field-orange-dark);
  font-size: 0.85rem;
  font-weight: 800;
}

.prompt-card.is-hidden {
  display: none;
}

.prompt-held-panel,
.starter-worksheet {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.prompt-held-panel h3,
.starter-worksheet h3 {
  max-width: 16ch;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.prompt-held-panel p,
.starter-worksheet p {
  color: var(--muted);
}

.held-pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1rem 0;
}

.held-pack-grid span,
.worksheet-grid span {
  min-height: 2.7rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #fff8f1;
  color: #51463f;
  font-size: 0.88rem;
  font-weight: 800;
}

.offer-status-strip {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0;
  padding: 0.85rem;
  border-radius: 0.55rem;
  background: #1f1814;
  color: #fff8f1;
}

.offer-status-strip span {
  color: #d8cbc0;
  font-size: 0.9rem;
}

.starter-worksheet {
  display: grid;
  grid-template-columns: minmax(16rem, 0.38fr) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.free-guide-worksheet {
  margin-top: 0;
}

.free-guide-worksheet h2 {
  max-width: 15ch;
}

.free-guide-page .lesson-card > .button {
  margin-top: 1rem;
}

.worksheet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.prompt-empty {
  margin: 1rem 0 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: #fffaf4;
  color: var(--muted);
}

.tracker-band {
  background: #1f1814;
  color: #fff8f1;
}

.tracker-band .section-heading p:not(.eyebrow) {
  color: #e8d7ca;
}

.tracker-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.75rem;
}

.tracker-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  min-height: 11rem;
  padding: 1rem;
  border: 1px solid #514036;
  border-radius: 0.65rem;
  background: #2a211c;
}

.tracker-item input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--field-orange);
}

.tracker-item strong {
  display: block;
  margin-bottom: 0.4rem;
}

.final-band {
  background: var(--field-orange-soft);
}

.final-grid p {
  color: #4c3930;
}

.final-grid .button + .button {
  margin-left: 0.6rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--field-orange-dark);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .feature-grid,
  .learning-grid,
  .business-playbook,
  .routine-grid,
  .ladder-grid,
  .ladder-map,
  .ladder-summary,
  .prompt-grid,
  .prompt-path-panel,
  .workspace-steps,
  .proof-cards,
  .route-grid,
  .classroom-program,
  .classroom-tab-grid,
  .classroom-rhythm-grid,
  .portal-tool-grid,
  .business-decision-grid,
  .business-scorecard-grid,
  .boardroom-readiness-grid,
  .boardroom-packet-list,
  .claude-grid,
  .claude-structure {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tracker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .path-index {
    grid-template-columns: 1fr;
  }

  .path-index-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-path-strip div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recording-path-card {
    grid-template-columns: 1fr;
  }

  .voice-card {
    grid-template-columns: 1fr;
  }

  .recording-path-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sample-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  }

  .sample-intro,
  .sample-steps,
  .sample-prompt,
  .sample-check {
    grid-column: auto;
    grid-row: auto;
  }

  .sample-check {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    justify-content: flex-start;
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .bookshelf-hero-grid,
  .boardroom-hero-grid,
  .workspace-compare,
  .boardroom-fit-grid,
  .proof-grid,
  .boardroom-status-grid,
  .first-wins-layout,
  .held-back-grid,
  .classroom-hero-grid,
  .first-wins-page-layout,
  .portal-page-grid,
  .live-room-grid,
  .join-page-grid,
  .offer-shell-grid,
  .first-post-page-grid,
  .chapter-page-grid,
  .offer-grid,
  .final-grid,
  .ladder-grid,
  .classroom-intro,
  .classroom-layout,
  .classroom-fit-grid,
  .business-classroom-bridge,
  .boardroom-notes,
  .boardroom-grid,
  .boardroom-packet,
    .sample-layout,
    .lesson-layout,
    .prompt-heading,
    .split-heading,
    .community-onramp,
    .guide-shell,
    .compare-grid,
    .safety-grid,
    .tool-choice,
    .claude-grid,
    .claude-structure,
    .codex-use-grid,
    .codex-guardrails,
    .access-grid,
    .screen-grid,
    .safe-rewrite,
    .line-breakdown,
    .answer-demo-grid,
    .answer-scorecard,
    .starter-example-grid,
    .rescue-loop,
    .plain-rule-strip,
    .field-exercise-grid,
    .proof-lab-grid,
    .trust-scale-grid,
    .workbook-board,
    .workbook-flow,
  .business-playbook,
  .routine-grid,
  .business-prompt-grid,
  .business-decision-grid,
  .business-scorecard-grid,
  .plan-grid,
    .answer-grid,
    .prompt-public-layout,
    .starter-worksheet {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 14ch;
  }

  .guide-cover {
    min-height: auto;
  }

  .chapter-rail {
    position: static;
  }

  .lesson-nav {
    position: static;
  }

  .recipe-grid,
  .question-grid,
  .held-pack-grid,
  .worksheet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .section-band {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .top-nav {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .top-nav a {
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .top-nav .nav-cta {
    grid-column: 1 / -1;
  }

  .public-prompt-grid,
  .held-pack-grid,
  .worksheet-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 3.2rem);
  }

  .chapter-page h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.2vw, 2.1rem);
    overflow-wrap: anywhere;
  }

  .chapter-page .wide-wrap,
  .chapter-page-grid,
  .chapter-page-grid > *,
  .lesson-layout,
  .lesson-stack,
  .lesson-card,
  .copy-block,
  .chapter-page-panel {
    min-width: 0;
    max-width: 100%;
  }

  .chapter-page .wide-wrap {
    width: min(100%, 22.35rem);
    max-width: 22.35rem;
    margin-left: 0;
    margin-right: auto;
  }

  .chapter-page .hero-lede {
    max-width: 100%;
    font-size: 1.05rem;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .boardroom-page h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 2.85rem);
  }

  .boardroom-page .site-header,
  .boardroom-page .section-band,
  .boardroom-page .wide-wrap,
  .boardroom-page main,
  .boardroom-page section,
  .boardroom-page article,
  .boardroom-page aside {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .boardroom-page .site-header {
    width: 100vw;
  }

  .boardroom-page .wide-wrap,
  .boardroom-page .top-nav,
  .boardroom-page .boardroom-hero-grid,
  .boardroom-page .workspace-compare,
  .boardroom-page .workspace-steps,
  .boardroom-page .boardroom-fit-grid,
  .boardroom-page .proof-grid,
  .boardroom-page .boardroom-status-grid {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    margin-left: 1rem;
    margin-right: auto;
  }

  .boardroom-page .top-nav {
    grid-template-columns: 1fr;
  }

  .boardroom-page .top-nav a,
  .boardroom-page .hero-actions,
  .boardroom-page .hero-actions .button {
    width: 100%;
    max-width: 100%;
  }

  .boardroom-page h2,
  .boardroom-page h3,
  .boardroom-page p,
  .boardroom-page a,
  .boardroom-page span {
    overflow-wrap: anywhere;
  }

  .boardroom-status-card,
  .status-panel,
  .workspace-compare article,
  .workspace-steps article,
  .boardroom-fit-list article,
  .proof-cards article {
    width: 100%;
    min-width: 0;
  }

  .guide-cover {
    display: none;
  }

  .hero-path-strip div {
    grid-template-columns: 1fr;
  }

  .recording-path-list {
    grid-template-columns: 1fr;
  }

  .recording-path-list a {
    min-height: auto;
  }

  .recording-path-mini div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .recording-path-mini a {
    width: 100%;
  }

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

  .voice-grid article {
    min-height: auto;
  }

  .sample-steps {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .learning-grid,
  .business-playbook,
  .routine-grid,
  .field-exercise-grid,
  .proof-lab-grid,
  .trust-scale-grid,
  .workbook-board,
  .workbook-flow,
  .ladder-grid,
  .ladder-map,
  .ladder-summary,
  .bookshelf-grid,
  .first-wins-page-grid,
  .classroom-week-grid,
  .live-format-grid,
  .classroom-tools-grid,
  .classroom-tab-grid,
  .classroom-rhythm-grid,
  .portal-tool-grid,
  .offer-stack,
  .post-template-grid,
  .proof-board-grid,
  .route-grid,
  .classroom-program,
  .workspace-steps,
  .boardroom-fit-list,
  .proof-cards,
  .boardroom-readiness-grid,
  .boardroom-packet-list,
  .prompt-path-panel,
    .prompt-grid,
    .tracker-grid,
    .recipe-grid,
    .community-onramp-grid,
    .question-grid {
    grid-template-columns: 1fr;
  }

  .path-index-links {
    grid-template-columns: 1fr;
  }

  .chapter,
  .feature-card,
  .prompt-card,
  .work-example {
    border-radius: 0.5rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  body,
  main,
  section,
  article,
  aside,
  .site-header,
  .section-band,
  .wide-wrap,
  .hero-grid,
  .bookshelf-hero-grid {
    max-width: 100vw;
    min-width: 0;
    overflow-x: hidden;
  }

  .wide-wrap,
  .hero-grid,
  .bookshelf-hero-grid {
    width: 100%;
  }

  .top-nav {
    grid-template-columns: 1fr;
  }

  .top-nav a {
    width: 100%;
  }

  .hero-lede,
  p,
  li,
  a,
  span,
  strong {
    overflow-wrap: anywhere;
  }

  .hero-actions .button,
  .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .shelf-status-grid {
    grid-template-columns: 1fr;
  }

  .chapter-page .section-band {
    overflow-x: hidden;
  }

  .chapter-page .wide-wrap,
  .chapter-page-grid,
  .chapter-page-grid > *,
  .chapter-page .lesson-layout,
  .chapter-page .lesson-stack,
  .chapter-page .lesson-card,
  .chapter-page .chapter-page-panel,
  .chapter-page .recording-path-mini {
    width: min(100%, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
  }

  .chapter-page h1 {
    width: 100%;
    max-width: calc(100vw - 2rem);
    font-size: clamp(1.9rem, 8.2vw, 2.1rem);
    line-height: 1.08;
  }

  .chapter-page .hero-lede,
  .chapter-page p,
  .chapter-page pre {
    max-width: calc(100vw - 2rem);
  }
}

/* NEW V2 visual facelift: modern product/community portal shell. */
:root {
  --portal-bg: #f5f5f3;
  --portal-card: #ffffff;
  --portal-text: #252527;
  --portal-muted: #767676;
  --portal-line: #dededb;
  --portal-shadow: 0 12px 34px rgba(25, 25, 25, 0.08);
  --origin-dark: #0e0f10;
  --origin-panel: #191a1c;
  --origin-glass: rgba(255, 255, 255, 0.08);
}

body {
  background: var(--portal-bg);
  color: var(--portal-text);
}

.site-header {
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) minmax(18rem, 34rem);
  align-items: center;
  gap: 1.15rem;
  padding: 0.75rem clamp(1rem, 3vw, 2rem) 0;
  background: rgba(14, 15, 16, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: #fff;
  backdrop-filter: blur(22px);
}

.brand-mark {
  border-radius: 0.65rem;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.42), transparent 32%),
    linear-gradient(135deg, #101010, #26333f 48%, var(--field-orange));
}

.brand small {
  color: rgba(255, 255, 255, 0.56);
}

.guide-search {
  position: relative;
  display: block;
}

.guide-search span {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  overflow: hidden;
  color: transparent;
  transform: translateY(-50%);
}

.guide-search span::before {
  content: "";
  position: absolute;
  inset: 0.12rem;
  border: 2px solid #91918f;
  border-radius: 50%;
}

.guide-search span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.05rem;
  width: 0.42rem;
  height: 2px;
  border-radius: 999px;
  background: #91918f;
  transform: rotate(45deg);
}

.guide-search input {
  width: 100%;
  height: 3rem;
  border: 0;
  border-radius: 0.62rem;
  padding: 0 1rem 0 2.85rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: 0;
}

.guide-search input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.top-nav {
  grid-column: 1 / -1;
  align-self: stretch;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
}

.top-nav a {
  position: relative;
  min-height: 3.75rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 1.25rem 0.9rem 0.95rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 780;
  white-space: nowrap;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0;
  height: 0.2rem;
  border-radius: 999px 999px 0 0;
  background: transparent;
}

.top-nav a:hover {
  border-color: transparent;
  color: #fff;
}

.top-nav a:hover::after {
  background: #fff;
}

.top-nav .nav-cta {
  align-self: center;
  min-height: 2.45rem;
  margin-left: 0.45rem;
  border: 0;
  border-radius: 0.55rem;
  padding: 0.72rem 1rem;
  background: var(--classroom-blue);
  color: #fff;
}

.top-nav .nav-cta::after {
  display: none;
}

.hero {
  padding-top: clamp(2rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 74% 22%, rgba(37, 99, 235, 0.22), transparent 34rem),
    radial-gradient(circle at 20% 18%, rgba(240, 120, 34, 0.18), transparent 30rem),
    linear-gradient(180deg, var(--origin-dark) 0, #111315 74%, var(--portal-bg) 100%);
  color: #fff;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 0.86fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

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

.hero-lede {
  color: rgba(255, 255, 255, 0.75);
}

.hero-actions .button,
.button {
  border-radius: 0.55rem;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--portal-shadow);
}

.button.primary {
  border-color: var(--field-orange);
  background: var(--field-orange);
}

.button.secondary,
.blue-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(14px);
}

.hero-path-strip {
  margin-top: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.hero-path-strip p {
  color: rgba(255, 255, 255, 0.64);
}

.hero-path-strip a {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.origin-device-showcase {
  position: relative;
  align-self: stretch;
  min-height: 40rem;
  perspective: 1200px;
}

.device-stage {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.18), transparent 19rem);
  overflow: hidden;
  transform-style: preserve-3d;
}

.device-stage::before {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 120, 34, 0.28), transparent 65%);
  filter: blur(8px);
  transform: translate3d(8rem, -7rem, -6rem);
}

.phone-mockup {
  position: relative;
  width: min(70%, 20.5rem);
  min-width: 17rem;
  border: 0.55rem solid #050505;
  border-radius: 2.4rem;
  background: #050505;
  box-shadow:
    0 32px 78px rgba(0, 0, 0, 0.44),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  transform: rotateY(-18deg) rotateX(7deg) rotateZ(2deg);
  animation: deviceFloat 7s ease-in-out infinite;
}

@keyframes deviceFloat {
  0%, 100% {
    transform: rotateY(-18deg) rotateX(7deg) rotateZ(2deg) translateY(0);
  }

  50% {
    transform: rotateY(-13deg) rotateX(9deg) rotateZ(1deg) translateY(-0.85rem);
  }
}

.phone-top {
  position: absolute;
  left: 50%;
  top: 0.65rem;
  z-index: 3;
  width: 5.7rem;
  height: 1.25rem;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 36rem;
  border-radius: 1.8rem;
  padding: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    #101214;
  overflow: hidden;
}

.screen-nav,
.screen-tabs,
.screen-course,
.screen-list span {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.screen-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.9rem;
  padding: 0.75rem;
}

.screen-nav strong,
.screen-course strong {
  color: #fff;
}

.screen-nav span,
.screen-course span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.screen-hero {
  margin-top: 0.9rem;
  border-radius: 1.3rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(6, 11, 18, 0.12), rgba(6, 11, 18, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 28px),
    radial-gradient(circle at 78% 22%, rgba(37, 99, 235, 0.9), transparent 32%),
    linear-gradient(135deg, #0a4054, #0f172a 64%, #030508);
}

.screen-hero small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 850;
}

.screen-hero h2 {
  max-width: 8ch;
  margin: 5rem 0 0.35rem;
  color: #fff;
  font-size: 2.3rem;
}

.screen-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.screen-tabs {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.9rem;
  border-radius: 999px;
  padding: 0.35rem;
}

.screen-tabs span {
  flex: 1;
  border-radius: 999px;
  padding: 0.48rem 0.25rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 820;
  text-align: center;
}

.screen-course {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.9rem;
  border-radius: 1rem;
  padding: 0.75rem;
}

.screen-course > div:first-child {
  min-height: 4rem;
  border-radius: 0.75rem;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7)),
    radial-gradient(circle at 40% 28%, rgba(240, 120, 34, 0.9), transparent 35%),
    #172033;
}

.screen-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.screen-list span {
  height: 3.1rem;
  border-radius: 0.8rem;
}

.glass-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.glass-card span,
.glass-card strong {
  display: block;
}

.glass-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.glass-card-one {
  right: 6%;
  top: 17%;
}

.glass-card-two {
  left: 8%;
  bottom: 18%;
}

.conversion-flow {
  padding: 0 clamp(1rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem);
  background: var(--portal-bg);
}

.conversion-shell {
  width: min(100%, 1220px);
  margin: -2.6rem auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.25rem;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.2rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #151719;
  color: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.conversion-shell > div:first-child {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.conversion-shell h2 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.conversion-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.conversion-cards article {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  min-height: 13rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.95rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
}

.conversion-cards article.featured {
  background:
    radial-gradient(circle at 80% 0%, rgba(240, 120, 34, 0.26), transparent 9rem),
    rgba(255, 255, 255, 0.09);
  border-color: rgba(240, 120, 34, 0.32);
}

.conversion-cards span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 900;
}

.conversion-cards strong {
  color: #fff;
  font-size: 1.05rem;
}

.conversion-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.45;
}

.conversion-cards a {
  align-self: end;
  justify-self: start;
  border-radius: 999px;
  padding: 0.55rem 0.72rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 850;
}

.section-band:not(.hero) {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.recording-path-card,
.voice-card,
.path-index,
.offer-band,
.ladder-card,
.ladder-summary article,
.feature-card,
.sample-prompt,
.sample-check,
.classroom-program article,
.classroom-side-card,
.chapter-card,
.prompt-card,
.safety-card,
.launch-path-card,
.boardroom-note,
.footer-cta {
  border: 1px solid var(--portal-line);
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: none;
}

.route-grid,
.learning-grid,
.ladder-map,
.chapter-grid,
.prompt-grid {
  gap: 1rem;
}

.route-card,
.feature-card,
.ladder-card,
.chapter-card,
.prompt-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.route-card:hover,
.feature-card:hover,
.ladder-card:hover,
.chapter-card:hover,
.prompt-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--portal-shadow);
  border-color: #cfcfcb;
}

.route-card {
  border-radius: 0.9rem;
  background: #fff;
}

.classroom-band {
  background: #eef4ff;
}

.classroom-wrap,
.community-onramp,
.classroom-program,
.classroom-side-card {
  border-color: rgba(37, 99, 235, 0.16);
}

.classroom-page-hero,
.bookshelf-hero,
.classroom-stream-band,
.bookshelf-stream-band {
  position: relative;
  overflow: hidden;
}

.classroom-page-hero::before,
.bookshelf-hero::before,
.classroom-stream-band::before,
.bookshelf-stream-band::before {
  content: "";
  position: absolute;
  inset: auto -8rem -18rem auto;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.26), transparent 68%);
  pointer-events: none;
}

.bookshelf-hero::before,
.bookshelf-stream-band::before {
  background: radial-gradient(circle, rgba(240, 120, 34, 0.26), transparent 68%);
}

.classroom-screen-card,
.bookshelf-device-card {
  position: relative;
  display: grid;
  gap: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.45rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    #111418;
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.screen-card-top,
.library-device-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.8rem;
  padding: 0.72rem 0.82rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
}

.screen-card-top strong,
.library-device-top strong {
  color: #fff;
}

.screen-player,
.library-feature,
.course-showcase-player {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.05rem;
  padding: 1.15rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.02), rgba(4, 8, 16, 0.86)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 32px),
    radial-gradient(circle at 72% 24%, rgba(37, 99, 235, 0.85), transparent 30%),
    linear-gradient(135deg, #08354b, #101827 60%, #030508);
}

.library-feature {
  min-height: 18rem;
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.02), rgba(4, 8, 16, 0.84)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 30px),
    radial-gradient(circle at 28% 20%, rgba(240, 120, 34, 0.9), transparent 31%),
    linear-gradient(135deg, #55300e, #111827 62%, #030508);
}

.screen-player small,
.screen-player p,
.library-feature small,
.library-feature p,
.course-showcase-player small,
.course-showcase-player p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.screen-player strong,
.library-feature h2,
.course-showcase-player strong {
  max-width: 10ch;
  margin: 0.18rem 0 0.28rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.screen-course-tabs,
.library-mini-shelf {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.library-mini-shelf {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.screen-course-tabs span,
.library-mini-shelf article,
.screen-lesson-stack article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.screen-course-tabs span {
  padding: 0.62rem 0.4rem;
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
}

.library-mini-shelf article,
.screen-lesson-stack article {
  padding: 0.72rem;
}

.library-mini-shelf span,
.screen-lesson-stack span,
.screen-lesson-stack small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 850;
}

.library-mini-shelf strong,
.screen-lesson-stack strong {
  display: block;
  margin-top: 0.18rem;
  color: #fff;
}

.screen-lesson-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
}

.screen-lesson-stack article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.classroom-stream-band,
.bookshelf-stream-band {
  background:
    radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.22), transparent 32rem),
    linear-gradient(180deg, #111827, #07090e 72%);
  color: #fff;
}

.bookshelf-stream-band {
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 120, 34, 0.22), transparent 31rem),
    linear-gradient(180deg, #17120f, #090706 72%);
}

.course-showcase-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(21rem, 0.92fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  padding: clamp(1rem, 2.5vw, 1.4rem);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.course-spotlight-copy {
  align-self: center;
  padding: clamp(0.3rem, 2vw, 1rem);
}

.course-spotlight-copy h2,
.library-head-row h2 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.course-spotlight-copy p,
.library-head-row p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.72);
}

.course-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.continue-strip {
  display: grid;
  grid-template-columns: auto minmax(10rem, 1fr) minmax(8rem, 14rem) auto;
  gap: 0.85rem;
  align-items: center;
  margin: 1rem 0 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.72rem;
  padding: 0.78rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
}

.continue-strip span,
.continue-strip small,
.rail-head span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.continue-strip strong,
.rail-head h3,
.lesson-poster h4 {
  color: #fff;
}

.mini-progress {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.mini-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--field-orange);
}

.lesson-rail {
  position: relative;
  z-index: 1;
  margin-top: 1.2rem;
}

.rail-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.rail-head h3 {
  margin: 0;
  font-size: 1.16rem;
}

.lesson-row {
  display: grid;
  grid-auto-columns: minmax(15rem, 1fr);
  grid-auto-flow: column;
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.lesson-poster {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.poster-art {
  position: relative;
  display: block;
  min-height: 10.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.76rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.02), rgba(4, 8, 16, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 26px),
    radial-gradient(circle at 25% 18%, rgba(37, 99, 235, 0.85), transparent 28%),
    linear-gradient(135deg, #0b4251, #111827 58%, #030508);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.lesson-poster:nth-child(2) .poster-art {
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.02), rgba(4, 8, 16, 0.84)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 72% 18%, rgba(240, 120, 34, 0.88), transparent 29%),
    linear-gradient(135deg, #47340d, #12314a 58%, #030508);
}

.lesson-poster:nth-child(3) .poster-art {
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.02), rgba(4, 8, 16, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 52% 20%, rgba(22, 160, 93, 0.82), transparent 30%),
    linear-gradient(135deg, #0f3b2c, #102235 58%, #030508);
}

.orange-rail .lesson-poster:nth-child(1) .poster-art,
.orange-rail .lesson-poster:nth-child(4) .poster-art {
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.02), rgba(4, 8, 16, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 26px),
    radial-gradient(circle at 30% 18%, rgba(240, 120, 34, 0.9), transparent 30%),
    linear-gradient(135deg, #57310e, #111827 58%, #030508);
}

.poster-art::before {
  content: attr(data-poster);
  position: absolute;
  left: 0.75rem;
  top: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
}

.lesson-poster:hover .poster-art {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.01);
}

.lesson-poster h4 {
  margin: 0;
  font-size: 1rem;
}

.lesson-poster p {
  min-height: 2.7rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.45;
}

.lock-dot {
  position: absolute;
  right: 0.65rem;
  top: 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  padding: 0.32rem 0.58rem;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 4.8rem;
  height: 4.8rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.28rem;
  border-top: 0.72rem solid transparent;
  border-bottom: 0.72rem solid transparent;
  border-left: 1rem solid #161616;
}

.play-button.small {
  width: 2.7rem;
  height: 2.7rem;
}

.play-button.small::before {
  border-top-width: 0.45rem;
  border-bottom-width: 0.45rem;
  border-left-width: 0.64rem;
}

.bookshelf-page {
  background: #0f0c0a;
}

.bookshelf-hero {
  background:
    radial-gradient(circle at 24% 12%, rgba(240, 120, 34, 0.2), transparent 29rem),
    radial-gradient(circle at 78% 20%, rgba(37, 99, 235, 0.14), transparent 30rem),
    linear-gradient(180deg, #0f0c0a, #17100d 72%, #f5f5f3);
  color: #fff;
}

.bookshelf-hero .hero-lede {
  color: rgba(255, 255, 255, 0.76);
}

.bookshelf-hero h1 {
  max-width: 9ch;
}

.product-shelf-band {
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 120, 34, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 28%, rgba(37, 99, 235, 0.12), transparent 30rem),
    linear-gradient(180deg, #090706, #17110d 72%, #221712);
  color: #fff;
}

.product-shelf-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(19rem, 0.48fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.product-shelf-copy,
.field-guide-kit-card,
.offer-lane-grid article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.034)),
    rgba(14, 10, 7, 0.84);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.product-shelf-copy {
  display: grid;
  align-content: center;
  padding: clamp(1.1rem, 3vw, 2rem);
}

.product-shelf-copy h2 {
  max-width: 12ch;
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.96;
}

.product-shelf-copy p {
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.shelf-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.shelf-proof-strip span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.45rem 0.68rem;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 850;
}

.field-guide-kit-card {
  padding: 1rem;
}

.kit-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.78rem;
  padding: 0.72rem 0.85rem;
  background: rgba(255, 255, 255, 0.07);
}

.kit-card-top span,
.offer-lane-grid span {
  color: var(--field-orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kit-card-top strong {
  color: #fff;
}

.kit-checklist {
  display: grid;
  gap: 0.58rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kit-checklist li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 0.72rem;
  padding: 0.78rem;
  background: rgba(255, 255, 255, 0.05);
}

.kit-checklist span {
  color: var(--field-orange);
  font-weight: 950;
}

.kit-checklist strong,
.offer-lane-grid h3 {
  display: block;
  color: #fff;
}

.kit-checklist small {
  display: block;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.35;
}

.offer-lane-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.offer-lane-grid article {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-height: 14rem;
  padding: 1rem;
}

.offer-lane-grid article.featured-lane {
  border-color: rgba(240, 120, 34, 0.48);
  background:
    linear-gradient(135deg, rgba(240, 120, 34, 0.16), transparent 52%),
    rgba(14, 10, 7, 0.88);
}

.offer-lane-grid h3 {
  margin: 0;
  line-height: 1.12;
}

.offer-lane-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.offer-lane-grid a {
  align-self: end;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.offer-lane-grid a:hover {
  border-color: rgba(240, 120, 34, 0.55);
  background: rgba(240, 120, 34, 0.14);
}

.chapter-page .hero-lede {
  color: #5d5147;
}

.chapter-page .button.secondary {
  border-color: #ead4c4;
  background: #fff8f1;
  color: var(--field-orange-dark);
  backdrop-filter: none;
}

.chapter-page .button.secondary:hover {
  border-color: var(--field-orange);
  background: #fff1e6;
}

.library-head-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.68fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 1.2rem;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .guide-search {
    grid-column: 1;
  }

  .top-nav {
    justify-content: flex-start;
  }

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

  .conversion-shell {
    grid-template-columns: 1fr;
  }

  .course-showcase-shell,
  .library-head-row,
  .product-shelf-dashboard {
    grid-template-columns: 1fr;
  }

  .offer-lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.65rem 0.75rem 0;
  }

  .brand small {
    display: none;
  }

  .top-nav a {
    flex: 0 0 auto;
    width: auto;
    min-height: 2.72rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 0.55rem;
    padding: 0.76rem 0.78rem;
    background: rgba(255, 255, 255, 0.07);
    scroll-snap-align: start;
  }

  .top-nav {
    gap: 0.35rem;
    padding: 0.45rem 0 0.6rem;
    scroll-snap-type: x proximity;
  }

  .top-nav a::after {
    display: none;
  }

  .top-nav .nav-cta {
    min-height: 2.72rem;
    margin-left: 0;
    padding: 0.76rem 0.9rem;
  }

  .hero {
    padding-top: 1.5rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .hero-actions {
    display: grid;
  }

  .origin-device-showcase {
    min-height: 34rem;
  }

  .phone-mockup {
    width: min(78%, 18rem);
    min-width: 15rem;
  }

  .phone-screen {
    min-height: 30rem;
  }

  .glass-card {
    display: none;
  }

  .conversion-shell {
    margin-top: -1.4rem;
  }

  .conversion-cards {
    grid-template-columns: 1fr;
  }

  .screen-lesson-stack article,
  .continue-strip {
    grid-template-columns: 1fr;
  }

  .screen-course-tabs,
  .library-mini-shelf {
    grid-template-columns: 1fr 1fr;
  }

  .screen-player,
  .library-feature,
  .course-showcase-player {
    min-height: 17rem;
  }

  .lesson-row {
    grid-auto-columns: minmax(13.5rem, 82%);
  }

  .bookshelf-page {
    overflow-x: hidden;
  }

  .bookshelf-page .wide-wrap,
  .bookshelf-page .bookshelf-hero-grid,
  .bookshelf-page .bookshelf-device-card,
  .bookshelf-page .library-feature,
  .bookshelf-page .product-shelf-dashboard,
  .bookshelf-page .product-shelf-copy,
  .bookshelf-page .field-guide-kit-card,
  .bookshelf-page .offer-lane-grid {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .bookshelf-hero h1 {
    max-width: 8.4ch;
    font-size: clamp(3rem, 16vw, 4rem);
    line-height: 0.98;
  }

  .bookshelf-hero .hero-lede {
    max-width: 30ch;
  }

  .bookshelf-page .hero-actions {
    width: min(100%, 358px);
    max-width: 100%;
  }

  .bookshelf-page .hero-actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .bookshelf-page .bookshelf-device-card {
    width: min(100%, 358px);
  }

  .bookshelf-page .library-feature h2 {
    max-width: 8.2ch;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .product-shelf-dashboard,
  .product-shelf-copy,
  .field-guide-kit-card,
  .offer-lane-grid {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .product-shelf-copy h2 {
    max-width: 8.6ch;
    font-size: clamp(2.45rem, 11vw, 3.25rem);
  }

  .offer-lane-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .boardroom-page .top-nav {
    display: flex;
    grid-template-columns: none;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    overflow-x: auto;
  }

  .boardroom-page .top-nav a,
  .boardroom-page .top-nav .nav-cta {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
}

/* Shared compact product header: one row, no oversized search field. */
body {
  overflow-x: hidden;
  font-family: Aptos, "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
.hero-path-strip p,
.screen-hero h2,
.course-spotlight-copy h2,
.library-feature h2 {
  font-family: "Avenir Next Condensed", "Aptos Display", "Avenir Next", Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 820;
}

.hero-grid,
.hero-copy {
  min-width: 0;
}

.guide-search {
  display: none;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) minmax(0, auto) minmax(6rem, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 0.68rem clamp(0.85rem, 2.5vw, 1.6rem);
}

/* Classroom V12: premium course-theater body, original local-only content. */
.classroom-page {
  background:
    radial-gradient(circle at 72% 0%, rgba(37, 99, 235, 0.22), transparent 34rem),
    radial-gradient(circle at 14% 18%, rgba(240, 120, 34, 0.12), transparent 27rem),
    linear-gradient(180deg, #061022 0%, #071533 26rem, #050910 100%);
}

.classroom-page .classroom-page-hero {
  background:
    radial-gradient(circle at 76% 12%, rgba(37, 99, 235, 0.28), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 60%),
    transparent;
}

.classroom-page .classroom-stream-band {
  background:
    radial-gradient(circle at 78% 0%, rgba(37, 99, 235, 0.24), transparent 32rem),
    radial-gradient(circle at 18% 24%, rgba(240, 120, 34, 0.16), transparent 26rem),
    linear-gradient(180deg, #07111f, #03060b 78%);
}

.classroom-page .course-showcase-shell {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.065);
  box-shadow: 0 32px 84px rgba(0, 0, 0, 0.28);
}

.classroom-theater-console {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.58fr);
  gap: 1rem;
  margin: 1.15rem 0 1.35rem;
}

.theater-now-card,
.theater-queue-card,
.theater-mode-strip article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(9, 14, 24, 0.82);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.theater-now-card {
  display: grid;
  grid-template-columns: minmax(18rem, 0.86fr) minmax(0, 0.7fr);
  gap: 1rem;
  padding: 0.95rem;
}

.theater-frame {
  position: relative;
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0.05), rgba(3, 8, 18, 0.86)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 30px),
    radial-gradient(circle at 72% 22%, rgba(37, 99, 235, 0.9), transparent 29%),
    radial-gradient(circle at 28% 18%, rgba(240, 120, 34, 0.72), transparent 24%),
    linear-gradient(135deg, #0a3044, #111827 62%, #030508);
}

.theater-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 42% 43%, transparent 43% 100%);
  pointer-events: none;
}

.theater-frame-label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.18rem;
  max-width: 22rem;
}

.theater-frame-label small,
.theater-now-copy p,
.theater-meta-row span,
.theater-queue-list small,
.theater-mode-strip p {
  color: rgba(255, 255, 255, 0.68);
}

.theater-frame-label strong {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1;
}

.theater-now-copy {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  padding: 0.5rem;
}

.theater-now-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.theater-now-copy p {
  margin: 0;
  line-height: 1.56;
}

.theater-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.theater-meta-row span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 850;
}

.theater-queue-card {
  padding: 1rem;
}

.queue-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.queue-head p,
.queue-head strong {
  margin: 0;
}

.queue-head strong {
  color: #fff;
}

.theater-queue-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.theater-queue-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.72rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.72rem;
  padding: 0.72rem;
  background: rgba(255, 255, 255, 0.055);
}

.theater-queue-list span {
  color: var(--field-orange);
  font-weight: 950;
}

.theater-queue-list strong,
.theater-mode-strip strong {
  display: block;
  color: #fff;
}

.theater-queue-list small {
  display: block;
  margin-top: 0.12rem;
}

.theater-queue-list em {
  border-radius: 999px;
  padding: 0.28rem 0.52rem;
  background: rgba(37, 99, 235, 0.16);
  color: #bcd0ff;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
}

.theater-mode-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.theater-mode-strip article {
  display: grid;
  gap: 0.45rem;
  min-height: 9rem;
  padding: 0.95rem;
}

.theater-mode-strip span {
  color: var(--field-orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theater-mode-strip p {
  margin: 0;
  line-height: 1.45;
}

.classroom-page .lesson-row {
  scroll-snap-type: x proximity;
}

.classroom-page .lesson-poster {
  scroll-snap-align: start;
}

.classroom-page .poster-art {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045);
}

.classroom-page .lesson-poster h4 {
  font-size: 1.04rem;
}

.classroom-page .lesson-poster p {
  max-width: 23rem;
}

@media (max-width: 1100px) {
  .classroom-theater-console,
  .theater-now-card {
    grid-template-columns: 1fr;
  }

  .theater-mode-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .classroom-page .classroom-stream-band .wide-wrap {
    width: min(100%, 100vw);
  }

  .classroom-page {
    overflow-x: hidden;
  }

  .classroom-page .wide-wrap,
  .classroom-page .classroom-hero-grid,
  .classroom-page .classroom-page-hero,
  .classroom-page .classroom-screen-card,
  .classroom-page .course-showcase-shell,
  .classroom-page .classroom-theater-console,
  .classroom-page .theater-now-card,
  .classroom-page .theater-queue-card {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .classroom-page-hero h1 {
    max-width: 8.1ch;
    font-size: clamp(3rem, 16vw, 4.05rem);
    line-height: 0.96;
  }

  .classroom-page-hero .hero-lede {
    max-width: 30ch;
  }

  .classroom-page .hero-actions {
    width: min(100%, 358px);
    max-width: 100%;
  }

  .classroom-page .hero-actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .classroom-page .course-spotlight-copy h2,
  .classroom-page .theater-now-copy h3 {
    max-width: 8.4ch;
  }

  .classroom-theater-console {
    margin-top: 0.85rem;
  }

  .theater-now-card,
  .theater-queue-card,
  .theater-mode-strip article {
    border-radius: 0.82rem;
  }

  .theater-frame {
    min-height: 18rem;
  }

  .theater-mode-strip {
    grid-template-columns: 1fr;
  }

  .theater-queue-list li {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .theater-queue-list em {
    grid-column: 2;
    width: fit-content;
  }

  .theater-now-copy h3 {
    max-width: 8.5ch;
  }
}

/* Homepage V14: premium beginner entry router near the top of the sales page. */
.entry-router-band {
  position: relative;
  scroll-margin-top: 5.2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(37, 99, 235, 0.22), transparent 28rem),
    radial-gradient(circle at 16% 12%, rgba(240, 120, 34, 0.2), transparent 26rem),
    linear-gradient(180deg, var(--portal-bg) 0%, #111417 4.75rem, #0b0d10 100%);
  color: #fff;
}

.entry-router-shell {
  display: grid;
  gap: 1.2rem;
}

.entry-router-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 0.48fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
}

.entry-router-head h2 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
}

.entry-router-head > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
  line-height: 1.55;
}

.entry-router-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.36fr);
  gap: 1rem;
  align-items: stretch;
}

.entry-router-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(13.5rem, auto);
  gap: 0.8rem;
}

.entry-route-card {
  position: relative;
  display: grid;
  gap: 0.8rem;
  align-content: space-between;
  min-height: 13.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.045);
  color: #fff;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.entry-route-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -46% 34%;
  height: 8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(20px);
  transform: rotate(-9deg);
}

.entry-route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.entry-route-card.beginner,
.entry-route-card.guide {
  grid-column: span 3;
}

.entry-route-card.workspace,
.entry-route-card.next-tools,
.entry-route-card.business {
  grid-column: span 2;
}

.entry-route-card.guide {
  border-color: rgba(240, 120, 34, 0.34);
  background:
    radial-gradient(circle at 88% 10%, rgba(240, 120, 34, 0.28), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.052);
}

.entry-route-card.next-tools {
  border-color: rgba(37, 99, 235, 0.35);
}

.entry-route-card.business {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.12), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.05);
}

.entry-route-number {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.entry-route-card p {
  margin: 0 0 0.22rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.entry-route-card h3 {
  max-width: 18ch;
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.05;
}

.entry-route-card small {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.48;
}

.entry-route-card strong {
  position: relative;
  z-index: 1;
  width: fit-content;
  border-radius: 999px;
  padding: 0.58rem 0.72rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.86rem;
}

.entry-router-dashboard {
  display: grid;
  gap: 1rem;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.05rem;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.052);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.25);
}

.entry-dashboard-top {
  display: grid;
  gap: 0.32rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.85rem;
}

.entry-dashboard-top span,
.entry-dashboard-flow span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.entry-dashboard-top strong {
  color: #fff;
  font-size: 1.25rem;
}

.entry-dashboard-flow {
  display: grid;
  gap: 0.6rem;
}

.entry-dashboard-flow a {
  display: grid;
  gap: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.78rem;
  padding: 0.82rem;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.entry-dashboard-flow a:nth-child(1) {
  border-color: rgba(240, 120, 34, 0.28);
}

.entry-dashboard-flow a:nth-child(3) {
  border-color: rgba(37, 99, 235, 0.3);
}

.entry-dashboard-flow strong {
  color: #fff;
  font-size: 0.98rem;
}

.entry-dashboard-flow small,
.entry-router-dashboard > p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.45;
}

.entry-router-dashboard > p {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0.9rem;
}

.brand {
  min-width: 0;
}

.brand strong {
  color: #fff;
}

.top-nav {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  width: auto;
  max-width: min(100%, 72vw);
  gap: 0.28rem;
  padding: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  overflow-x: auto;
}

.top-nav a {
  min-height: 2.45rem;
  border-radius: 999px;
  padding: 0.62rem 0.82rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
}

.top-nav a::after {
  display: none;
}

.top-nav a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.top-nav .nav-cta {
  min-height: 2.45rem;
  margin-left: 0.15rem;
  border-radius: 999px;
  padding: 0.62rem 0.95rem;
  background: var(--classroom-blue);
  color: #fff;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.24);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(9rem, auto) minmax(0, 1fr);
  }

  .entry-router-head,
  .entry-router-layout {
    grid-template-columns: 1fr;
  }

  .entry-router-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-route-card.beginner,
  .entry-route-card.guide,
  .entry-route-card.workspace,
  .entry-route-card.next-tools,
  .entry-route-card.business {
    grid-column: span 1;
  }

  .brand small {
    display: none;
  }

  .top-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    max-width: 100%;
    border-radius: 0.8rem;
    scroll-snap-type: x proximity;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.62rem 0.75rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .top-nav {
    padding: 0.25rem;
  }

  .top-nav a,
  .top-nav .nav-cta {
    min-height: 2.45rem;
    padding: 0.62rem 0.78rem;
  }

  .hero h1 {
    max-width: min(100%, 9.8ch);
    font-size: clamp(2.55rem, 12.2vw, 3.15rem);
    line-height: 0.96;
  }

  .hero-copy,
  .hero-lede {
    max-width: 100%;
  }

  .hero .hero-lede,
  .hero .fine-print,
  .hero-path-strip a {
    overflow-wrap: normal;
    word-break: normal;
  }

  .entry-router-band {
    background:
      radial-gradient(circle at 82% 10%, rgba(37, 99, 235, 0.18), transparent 20rem),
      radial-gradient(circle at 8% 7%, rgba(240, 120, 34, 0.17), transparent 18rem),
      linear-gradient(180deg, var(--portal-bg) 0%, #111417 2.5rem, #0b0d10 100%);
  }

  .entry-router-head h2 {
    max-width: 10ch;
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .entry-router-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .entry-route-card {
    min-height: 12.25rem;
  }

  .entry-route-card h3 {
    max-width: 14ch;
  }

  .entry-router-dashboard {
    border-radius: 0.9rem;
  }
}

/* Boardroom V16: restrained dark future-business lane, not a live sales page. */
.boardroom-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 0%, rgba(37, 99, 235, 0.18), transparent 34rem),
    radial-gradient(circle at 18% 12%, rgba(240, 120, 34, 0.1), transparent 30rem),
    linear-gradient(180deg, #05070a 0%, #080b10 42rem, #05070a 100%);
  color: #f8f5ef;
}

.boardroom-page .section-band {
  background: transparent;
}

.boardroom-page h1,
.boardroom-page h2,
.boardroom-page h3 {
  color: #fffaf2;
}

.boardroom-page p,
.boardroom-page li {
  color: rgba(248, 245, 239, 0.72);
}

.boardroom-page .eyebrow {
  color: var(--field-orange);
}

.boardroom-page .panel-kicker {
  display: block;
  margin: 0 0 0.85rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--field-orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.boardroom-hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(37, 99, 235, 0.24), transparent 32rem),
    radial-gradient(circle at 8% 12%, rgba(240, 120, 34, 0.14), transparent 24rem),
    linear-gradient(180deg, #070a10 0%, #0b1018 100%);
}

.boardroom-hero-grid,
.boardroom-command-shell,
.workspace-compare,
.boardroom-fit-grid,
.proof-grid,
.boardroom-status-grid {
  max-width: 1320px;
}

.boardroom-hero h1 {
  max-width: 9.6ch;
  font-family: "Avenir Next Condensed", "Aptos Display", "Avenir Next", Aptos, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 820;
  line-height: 0.9;
}

.boardroom-hero .hero-lede,
.boardroom-hero .fine-print {
  color: rgba(248, 245, 239, 0.72);
}

.boardroom-status-card,
.status-panel,
.boardroom-command-center,
.boardroom-command-shell,
.workspace-compare article,
.workspace-steps article,
.boardroom-fit-list article,
.proof-cards article,
.boardroom-readiness-grid article,
.boardroom-packet,
.boardroom-packet-list article,
.boardroom-hold-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.03)),
    rgba(10, 13, 18, 0.84);
  color: #f8f5ef;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.boardroom-status-card,
.status-panel,
.boardroom-command-shell,
.boardroom-packet {
  border-radius: 1rem;
}

.boardroom-status-list span,
.boardroom-readiness-grid span,
.workspace-compare span,
.workspace-steps span,
.proof-cards span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 245, 239, 0.78);
}

.boardroom-command-band {
  background:
    radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.19), transparent 28rem),
    linear-gradient(180deg, #0a0d13, #05070a 88%);
}

.boardroom-command-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr) minmax(18rem, 0.48fr);
  gap: 1rem;
  align-items: stretch;
  padding: clamp(1rem, 3vw, 1.25rem);
}

.boardroom-command-copy {
  display: grid;
  gap: 1rem;
  align-content: space-between;
}

.boardroom-command-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.1rem, 4.2vw, 4.35rem);
  line-height: 0.94;
}

.boardroom-command-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.boardroom-command-grid article,
.boardroom-hold-card {
  display: grid;
  gap: 0.7rem;
  align-content: space-between;
  min-height: 17rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.82rem;
  padding: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
}

.boardroom-command-grid article:nth-child(2) {
  border-color: rgba(240, 120, 34, 0.24);
  background:
    radial-gradient(circle at 88% 12%, rgba(240, 120, 34, 0.16), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
}

.boardroom-command-grid article:nth-child(3) {
  border-color: rgba(93, 188, 136, 0.25);
  background:
    radial-gradient(circle at 78% 12%, rgba(93, 188, 136, 0.16), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
}

.boardroom-command-grid span {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 0.42rem 0.58rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 245, 239, 0.7);
  font-size: 0.78rem;
  font-weight: 950;
}

.boardroom-command-grid h3,
.boardroom-hold-card h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.08;
}

.boardroom-hold-card {
  align-content: start;
}

.boardroom-hold-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}

.boardroom-hold-card li {
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.62rem;
  padding: 0.65rem 0.72rem;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(248, 245, 239, 0.78);
  font-weight: 820;
}

.workspace-band,
.proof-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18rem),
    #05070a;
}

.boardroom-fit-band,
.boardroom-readiness-band {
  background:
    radial-gradient(circle at 12% 0%, rgba(93, 188, 136, 0.12), transparent 24rem),
    #070a0f;
}

.workspace-steps {
  gap: 0.72rem;
}

.workspace-steps article {
  min-height: 16rem;
}

.workspace-compare article:first-child {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.032);
}

.boardroom-packet-list strong {
  color: var(--field-orange);
}

.boardroom-packet-list p {
  color: rgba(248, 245, 239, 0.7);
}

.boardroom-status-band {
  background:
    radial-gradient(circle at 82% 0%, rgba(37, 99, 235, 0.2), transparent 28rem),
    #070a10;
}

@media (max-width: 1100px) {
  .boardroom-command-shell {
    grid-template-columns: 1fr;
  }

  .boardroom-command-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .boardroom-page .wide-wrap,
  .boardroom-page .top-nav,
  .boardroom-page .boardroom-hero-grid,
  .boardroom-page .boardroom-command-shell,
  .boardroom-page .workspace-compare,
  .boardroom-page .workspace-steps,
  .boardroom-page .boardroom-fit-grid,
  .boardroom-page .proof-grid,
  .boardroom-page .boardroom-status-grid {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }

  .boardroom-command-grid,
  .workspace-steps,
  .boardroom-fit-list,
  .proof-cards,
  .boardroom-readiness-grid,
  .boardroom-packet,
  .boardroom-packet-list {
    grid-template-columns: 1fr !important;
  }

  .boardroom-command-grid article,
  .boardroom-hold-card,
  .workspace-steps article,
  .proof-cards article {
    min-height: auto;
  }

  .boardroom-command-copy h2 {
    max-width: 9.5ch;
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .boardroom-page h2,
  .boardroom-page h3,
  .boardroom-page p,
  .boardroom-page a,
  .boardroom-page span {
    overflow-wrap: normal;
    word-break: normal;
  }
}
