:root {
  --ink: #102033;
  --muted: #5f6d7a;
  --line: #d9e2ec;
  --soft: #f4f7fa;
  --panel: #ffffff;
  --blue: #1f6fb2;
  --navy: #0b2545;
  --teal: #177e89;
  --green: #1f7a4d;
  --gold: #a36b00;
  --shadow: 0 18px 46px rgba(12, 32, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fafc;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 236, 0.86);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.brand img {
  width: 92px;
  height: auto;
}

.topbar nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar nav a {
  padding: 8px 10px;
  color: #304457;
  font-size: 14px;
  border-radius: 6px;
}

.topbar nav a:hover {
  background: #eef4f9;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle:hover {
  background: #eef4f9;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.nav-toggle-bars {
  position: relative;
  display: block;
  width: 22px;
  height: 14px;
}

.nav-toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-toggle-bars span:nth-child(1) {
  top: 0;
}

.nav-toggle-bars span:nth-child(2) {
  top: 6px;
}

.nav-toggle-bars span:nth-child(3) {
  top: 12px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: end;
  padding: clamp(88px, 14vh, 138px) clamp(18px, 5vw, 70px) clamp(28px, 5vw, 54px);
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 24, 45, 0.92), rgba(6, 24, 45, 0.68) 42%, rgba(6, 24, 45, 0.16)),
    linear-gradient(0deg, rgba(6, 24, 45, 0.82), rgba(6, 24, 45, 0.08) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: #2f89c8;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ed5ff;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2.2vw, 21px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  font-weight: 700;
}

.button.primary {
  color: #fff;
  background: #1f6fb2;
  border-color: #1f6fb2;
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin-top: clamp(40px, 9vh, 86px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-panel div {
  min-height: 92px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 4px;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.05;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.section,
.simulator-shell {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

.section-heading h2 {
  color: var(--navy);
}

.intro-grid,
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.intro-grid article,
.module-grid article {
  min-height: 210px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(12, 32, 52, 0.06);
}

.intro-grid span,
.module-grid span,
.concept-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-grid p,
.module-grid p,
.concept-card p,
.simulator-head p {
  color: var(--muted);
}

.document-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 10px;
  padding: 8px 12px;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.document-link:hover {
  background: var(--navy);
}

.universe-section {
  background: #eef4f9;
}

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

.concept-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 236, 0.8);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(12, 32, 52, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.concept-card:hover,
.concept-card.active {
  transform: translateY(-3px);
  border-color: rgba(31, 111, 178, 0.62);
  box-shadow: var(--shadow);
}

.concept-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-card div {
  padding: 18px;
}

.concept-detail {
  margin-top: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(12, 32, 52, 0.08);
}

.concept-detail-image {
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 8px;
  background: #e8f2fb;
}

.concept-detail-image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.concept-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.concept-detail-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(25px, 3vw, 38px);
}

.concept-detail-head > span {
  flex: 0 0 auto;
  max-width: 280px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #e8f2fb;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.concept-detail-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.concept-detail h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 15px;
}

.concept-detail p {
  margin-bottom: 0;
  color: var(--muted);
}

.podcast-section {
  background: #fff;
}

.podcast-section .section-heading p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.podcast-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(210px, 0.8fr) minmax(210px, 0.8fr);
  gap: 16px;
  align-items: stretch;
}

.podcast-lead,
.podcast-metric,
.podcast-themes article,
.podcast-presentation,
.podcast-presentation-grid article,
.podcast-control {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(12, 32, 52, 0.08);
}

.podcast-lead {
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(135deg, #0b2545, #177e89);
  color: #fff;
}

.podcast-lead span,
.podcast-metric span,
.podcast-themes span,
.podcast-presentation-grid span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.podcast-lead span {
  color: #8ed5ff;
}

.podcast-lead h3 {
  max-width: 620px;
  font-size: clamp(25px, 3vw, 38px);
}

.podcast-lead p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.podcast-metric {
  display: grid;
  align-content: center;
  min-height: 230px;
  padding: 24px;
}

.podcast-metric span {
  color: var(--teal);
}

.podcast-metric strong {
  color: var(--navy);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
}

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

.podcast-themes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.podcast-presentation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.podcast-themes article,
.podcast-presentation-grid article {
  padding: 18px;
}

.podcast-themes span {
  color: var(--gold);
}

.podcast-themes p,
.podcast-presentation p,
.podcast-control p {
  margin-bottom: 0;
  color: var(--muted);
}

.podcast-presentation {
  margin-top: 16px;
  padding: clamp(20px, 3vw, 30px);
  background: #f8fbfd;
}

.podcast-presentation-lead {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.podcast-presentation-lead .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.podcast-presentation-lead h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 36px);
}

.podcast-presentation-lead p:not(.eyebrow) {
  font-size: 17px;
}

.podcast-presentation-grid article {
  background: #fff;
  box-shadow: none;
}

.podcast-presentation-grid span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 6px;
  background: #e8f2fb;
  color: var(--blue);
}

.podcast-control {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: clamp(20px, 3vw, 28px);
  border-left: 5px solid var(--teal);
  background: #f4f7fa;
}

.podcast-control h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 32px);
}

.simulator-shell {
  background: #fff;
}

.simulator-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.simulator-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.control-panel,
.results-panel,
.chart-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(12, 32, 52, 0.08);
}

.control-panel {
  position: sticky;
  top: 84px;
  padding: 20px;
}

.control-group + .control-group {
  margin-top: 22px;
}

.control-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.control-label label {
  color: #31485b;
  font-size: 14px;
  font-weight: 700;
}

.control-label strong {
  color: var(--navy);
  font-size: 14px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

input[type="number"] {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cbd9e6;
  border-radius: 8px;
  background: #f8fbfd;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
}

input[type="number"]:focus {
  outline: 2px solid rgba(27, 111, 176, 0.18);
  border-color: var(--blue);
  background: #fff;
}

.number-stepper {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 8px;
}

.number-stepper input[type="number"] {
  text-align: center;
}

.number-stepper button {
  min-height: 44px;
  border: 1px solid #cbd9e6;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.number-stepper button:hover {
  border-color: var(--blue);
  background: #edf6fd;
}

.range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.results-panel {
  padding: 20px;
}

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

.kpi-grid article {
  min-height: 118px;
  padding: 18px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid #e5edf4;
}

.kpi-grid span,
.scenario-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.kpi-grid strong {
  display: block;
  color: var(--navy);
  font-size: clamp(20px, 2.4vw, 31px);
  line-height: 1.05;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 12px;
  margin-top: 12px;
}

.chart-card {
  padding: 20px;
  box-shadow: none;
}

.card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.card-title h3 {
  margin: 0;
  color: var(--navy);
}

.card-title span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #e8f2fb;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.bar-chart {
  display: grid;
  gap: 15px;
}

.bar-row {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr) 64px;
  gap: 12px;
  align-items: center;
}

.bar-row span {
  color: #31485b;
  font-size: 13px;
  font-weight: 700;
}

.bar-row div {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9eff5;
}

.bar-row i {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transition: width 180ms ease;
}

.bar-row strong {
  color: var(--navy);
  font-size: 13px;
  text-align: right;
}

.valuation-card {
  display: grid;
}

.ownership-ring {
  --share: 0.03%;
  display: grid;
  place-items: center;
  width: min(220px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 var(--share), #e9eff5 var(--share) 100%);
}

.ownership-ring > div {
  display: grid;
  place-items: center;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}

.ownership-ring strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.05;
}

.ownership-ring span,
.valuation-card p {
  color: var(--muted);
  font-size: 13px;
}

.valuation-card p {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: #f4f7fa;
  text-align: center;
  font-weight: 700;
}

.valuation-card .shares-note {
  margin: -4px 0 8px;
  padding: 0;
  background: transparent;
  color: #31485b;
  font-weight: 700;
}

.valuation-card p + p {
  margin-top: 8px;
}

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

.deal-grid div {
  min-height: 76px;
  padding: 12px;
  border: 1px solid #e5edf4;
  border-radius: 8px;
  background: #fff;
}

.deal-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.deal-grid strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.15;
}

.scenario-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.scenario-strip article {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.scenario-strip strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.1;
}

.portal-section {
  background: #0b2545;
  color: #fff;
}

.discussion-section {
  background: #f7fafc;
}

.discussion-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.discussion-layout > *,
.discussion-panel,
.answer-box,
.answer-section {
  min-width: 0;
}

.discussion-layout .section-heading {
  margin-bottom: 0;
}

.discussion-layout .section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.discussion-panel {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.discussion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.discussion-head span,
.answer-kicker {
  display: block;
  margin: 0 0 4px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.discussion-head strong {
  color: var(--navy);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.1;
}

.discussion-head small {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 6px;
  background: #e9f7f4;
  color: var(--green);
  font-weight: 800;
}

.expert-toggle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid #d8e6ef;
  border-radius: 8px;
  background: #f6fafc;
  color: #31485b;
  cursor: pointer;
}

.expert-toggle input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--blue);
}

.expert-toggle strong,
.expert-toggle small {
  display: block;
}

.expert-toggle strong {
  color: var(--navy);
  font-size: 14px;
}

.expert-toggle small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.question-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.question-chips button {
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid #cfe0ed;
  border-radius: 999px;
  background: #f4f8fb;
  color: #31485b;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.question-chips button:hover {
  border-color: rgba(31, 111, 178, 0.52);
  background: #e8f2fb;
  color: var(--blue);
}

textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  padding: 14px;
  border: 1px solid #cbd9e6;
  border-radius: 8px;
  background: #f8fbfd;
  color: var(--navy);
  font: inherit;
}

textarea:focus {
  outline: 3px solid rgba(31, 111, 178, 0.18);
  border-color: var(--blue);
  background: #fff;
}

.discussion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

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

.discussion-button.soft {
  color: var(--navy);
  background: #eef4f9;
  border-color: #d4e1ec;
}

.answer-box {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid #d9e8ef;
  border-radius: 8px;
  background: #f4f7fa;
}

.answer-box h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(19px, 2vw, 25px);
}

.answer-box p {
  margin-bottom: 12px;
  color: #415365;
}

.answer-section {
  margin: 0 0 18px;
  padding: 0 0 16px;
  border-bottom: 1px solid #d9e8ef;
}

.answer-section h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}

.answer-table-wrap {
  width: 100%;
  max-width: 100%;
  margin-top: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #d3e2ec;
  border-radius: 8px;
  background: #fff;
}

.answer-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}

.answer-table th,
.answer-table td {
  padding: 9px 10px;
  border-bottom: 1px solid #e1ebf2;
  text-align: left;
  white-space: nowrap;
}

.answer-table th {
  color: var(--navy);
  background: #eef5fa;
  font-size: 12px;
}

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

.answer-disclaimer {
  margin-bottom: 0;
  padding: 12px;
  border-left: 4px solid var(--gold);
  background: #fff8ea;
}

.answer-box p:last-child {
  margin-bottom: 0;
}

.answer-box strong {
  color: var(--navy);
}

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

.portal-section .section-heading h2,
.portal-section h3 {
  color: #fff;
}

.portal-section .eyebrow {
  color: #8ed5ff;
}

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

.module-grid span {
  color: #8ed5ff;
}

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

.contract-room {
  margin-top: clamp(28px, 5vw, 54px);
  padding-top: clamp(28px, 5vw, 54px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contract-room-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: end;
  margin-bottom: 22px;
}

.contract-room-head h2 {
  color: #fff;
}

.contract-room-head > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
}

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

.contract-card,
.contract-detail,
.contact-block {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.contract-card {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 24px);
}

.contract-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contract-card-head span {
  color: #8ed5ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contract-card-head strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.contract-card h3 {
  margin-bottom: 0;
}

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

.contract-terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.contract-terms div {
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contract-terms dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.contract-terms dd {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.contract-download {
  width: fit-content;
  margin-top: 2px;
}

.contract-detail {
  margin-top: 16px;
  padding: clamp(18px, 3vw, 24px);
}

.contract-detail h3 {
  margin-bottom: 14px;
}

.contract-detail ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.contract-detail li {
  padding-left: 4px;
}

.contact-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  margin-top: 16px;
  padding: clamp(18px, 3vw, 26px);
}

.contact-block h2 {
  color: #fff;
}

.contact-block p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-card {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
}

.contact-card span {
  color: #8ed5ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.contact-card a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.contact-card a:hover {
  color: #8ed5ff;
}

@media (max-width: 1120px) {
  .intro-grid,
  .module-grid,
  .concept-grid,
  .podcast-themes,
  .podcast-presentation-grid,
  .kpi-grid,
  .contract-grid,
  .contract-detail ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .simulator-layout,
  .simulator-head,
  .visual-grid,
  .podcast-hero-grid,
  .podcast-control,
  .podcast-presentation-lead,
  .concept-detail-body,
  .discussion-layout,
  .contract-room-head,
  .contact-block {
    grid-template-columns: 1fr;
  }

  .control-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .topbar nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .topbar nav.open {
    display: flex;
  }

  .topbar nav a {
    padding: 12px 10px;
    font-size: 15px;
    border-radius: 8px;
  }

  .hero {
    min-height: 760px;
    padding-top: 72px;
  }

  .hero-panel,
  .intro-grid,
  .module-grid,
  .concept-grid,
  .podcast-themes,
  .podcast-presentation-grid,
  .kpi-grid,
  .scenario-strip,
  .contract-grid,
  .contract-terms,
  .contract-detail ul {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    min-height: 78px;
  }

  .concept-card {
    grid-template-rows: 170px 1fr;
  }

  .concept-detail-image img {
    aspect-ratio: 4 / 3;
  }

  .concept-detail-head {
    display: grid;
  }

  .concept-detail-head > span {
    max-width: none;
    width: fit-content;
    text-align: left;
  }

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

  .bar-row {
    grid-template-columns: 86px minmax(0, 1fr) 54px;
  }

  .discussion-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .discussion-panel,
  .answer-box {
    width: 100%;
  }

  .answer-box {
    padding: 14px;
  }
}
