:root {
  --ink: #071746;
  --muted: #65749a;
  --line: rgba(75, 101, 158, 0.16);
  --panel: rgba(255, 255, 255, 0.78);
  --blue: #2d6bff;
  --cyan: #08c9df;
  --violet: #7058ff;
  --green: #18ba80;
  --shadow: 0 24px 70px rgba(44, 78, 152, 0.16);
  --soft-shadow: 0 16px 46px rgba(71, 96, 164, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 10%, rgba(116, 98, 255, 0.08), transparent 24%),
    radial-gradient(circle at 78% 38%, rgba(42, 127, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 48%, #f7fbff 100%);
}

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

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(45, 107, 255, 0.5);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: var(--ink);
  box-shadow: var(--soft-shadow);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.skip-target {
  position: relative;
  scroll-margin-top: 20px;
}

.page-shell {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 24px 72px;
  overflow: visible;
  background: transparent;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 120px 0 auto;
  height: 760px;
  pointer-events: none;
  background:
    radial-gradient(circle at 73% 24%, rgba(95, 140, 255, 0.1), transparent 22%),
    radial-gradient(ellipse at 50% 74%, rgba(222, 239, 255, 0.42), transparent 42%);
}

.site-header,
.hero,
.problem-section,
.platform-section,
.feature-grid,
.baseline-section,
.split-section,
.workflow-section,
.progress-section,
.outcome-section,
.readiness-section {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
  height: 48px;
}

.brand-logo {
  width: 172px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  color: #101c46;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(135deg, #69a2ff, #3e42f5 82%);
  box-shadow: 0 14px 30px rgba(63, 87, 239, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 18px 38px rgba(63, 87, 239, 0.36);
}

.button::after {
  content: "->";
  margin-left: 16px;
  font-weight: 800;
}

.button-small {
  min-height: 40px;
  padding: 0 22px;
  font-size: 13px;
}

.button-small::after {
  content: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.menu-button span {
  margin: 4px auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(520px, 580px) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
  min-height: 500px;
  padding: 110px 0 104px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 9px 17px;
  border: 1px solid rgba(111, 91, 255, 0.14);
  border-radius: 999px;
  color: #7058c9;
  font-size: 13px;
  font-weight: 800;
  background: rgba(244, 242, 255, 0.9);
}

.eyebrow > span:first-child {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
}

.eyebrow-text {
  display: inline;
  min-width: 0;
}

.hero h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(44px, 4.5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

.hero h1 span {
  color: var(--violet);
}

.hero h1 .title-line {
  display: block;
  color: inherit;
}

.hero-text {
  width: min(100%, 510px);
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #253259;
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(90, 110, 160, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.secondary-button:hover {
  transform: translateY(-2px);
  border-color: rgba(90, 110, 180, 0.24);
  box-shadow: 0 16px 32px rgba(90, 110, 160, 0.12);
}

.secondary-button span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-left: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-family: Georgia, serif;
}

.trust-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.trust-strip p {
  margin: 0;
}

.trust-strip strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(135deg, #8fc1ff, #8f60ff);
}

.avatars {
  display: flex;
}

.avatars span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: -7px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  background: linear-gradient(135deg, #1d69ff, #11c7cc);
}

.avatars span:first-child {
  margin-left: 0;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 470px;
  transform: translate(-14px, -30px);
}

.product-preview {
  min-height: 510px;
  transform: translateY(-18px);
  animation: dashboardFloat 8s ease-in-out infinite;
}

.dashboard-shell {
  position: absolute;
  inset: 12px 0 0;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 18px;
  border: 1px solid rgba(80, 105, 170, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 255, 0.82)),
    radial-gradient(circle at 72% 24%, rgba(93, 127, 255, 0.12), transparent 34%);
  box-shadow: 0 26px 70px rgba(62, 86, 155, 0.13);
  backdrop-filter: blur(18px);
  animation: panelRise 720ms ease both;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 2px 18px;
}

.dashboard-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.dashboard-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  color: #4452b8;
  font-size: 12px;
  font-weight: 900;
  background: rgba(238, 241, 255, 0.9);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: minmax(142px, auto) minmax(132px, auto) auto;
  gap: 14px;
  flex: 1;
}

.session-panel,
.score-panel,
.feedback-panel,
.team-panel {
  border: 1px solid rgba(75, 101, 158, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 32px rgba(73, 96, 158, 0.06);
}

.session-panel {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.panel-header {
  display: grid;
  gap: 6px;
}

.panel-header span,
.score-panel p,
.team-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.panel-header strong {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.voice-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 96px;
  margin: 18px 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(72, 100, 255, 0.14), transparent 52%),
    linear-gradient(135deg, rgba(238, 246, 255, 0.96), rgba(248, 251, 255, 0.72));
}

.competency-radar {
  position: relative;
  display: grid;
  place-items: center;
  flex: 1 1 150px;
  min-height: 150px;
  margin: 16px 0;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(102, 126, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(102, 126, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(72, 100, 255, 0.12), transparent 58%),
    linear-gradient(135deg, rgba(238, 246, 255, 0.96), rgba(248, 251, 255, 0.72));
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.competency-radar::before {
  content: "";
  width: 112px;
  height: 112px;
  border: 1px solid rgba(95, 119, 217, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(255, 255, 255, 0.36),
    inset 0 0 0 28px rgba(255, 255, 255, 0.28);
}

.competency-radar span {
  position: absolute;
  width: 118px;
  height: 104px;
  background: linear-gradient(135deg, rgba(44, 107, 255, 0.9), rgba(8, 201, 223, 0.66));
  clip-path: polygon(50% 0, 86% 24%, 78% 72%, 48% 100%, 16% 75%, 8% 30%);
  opacity: 0.88;
  filter: drop-shadow(0 16px 24px rgba(44, 107, 255, 0.16));
  animation: radarBreathe 4.8s ease-in-out infinite;
}

.voice-wave i {
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  animation: voicePulse 1.9s ease-in-out infinite;
}

.voice-wave i:nth-child(2),
.voice-wave i:nth-child(6) {
  animation-delay: 120ms;
}

.voice-wave i:nth-child(3),
.voice-wave i:nth-child(5) {
  animation-delay: 240ms;
}

.voice-wave i:nth-child(4) {
  animation-delay: 360ms;
}

.voice-wave i:nth-child(1),
.voice-wave i:nth-child(7) {
  height: 24px;
}

.voice-wave i:nth-child(2),
.voice-wave i:nth-child(6) {
  height: 42px;
}

.voice-wave i:nth-child(3),
.voice-wave i:nth-child(5) {
  height: 64px;
}

.voice-wave i:nth-child(4) {
  height: 78px;
}

.transcript-card {
  display: grid;
  gap: 10px;
}

.transcript-card p,
.feedback-panel p {
  margin: 0;
  color: #53628b;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.transcript-card strong {
  color: var(--ink);
}

.score-panel {
  position: relative;
  min-height: 140px;
  padding: 18px;
  overflow: hidden;
}

.score-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.score-panel span {
  display: block;
  margin-top: 8px;
  min-height: 31px;
  padding-right: 70px;
  color: var(--green);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
}

.mini-ring {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: conic-gradient(var(--violet) 0 78%, rgba(216, 226, 255, 0.9) 78%);
}

.mini-ring::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #fff;
}

.feedback-panel {
  display: grid;
  gap: 12px;
  min-height: 132px;
  padding: 18px;
}

.feedback-panel div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feedback-panel p {
  font-size: 12px;
  line-height: 1.48;
}

.feedback-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
}

.team-panel {
  grid-column: 1 / -1;
  padding: 18px;
}

.progress-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #53628b;
  font-size: 12px;
  font-weight: 800;
}

.progress-row b {
  font-size: 10px;
  text-align: right;
}

.progress-row i {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) var(--value), rgba(225, 232, 255, 0.9) var(--value));
}

.visual-orbit {
  position: absolute;
  inset: 8px 4px 8px;
  display: grid;
  place-items: center;
}

.glass-emblem {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 292px;
  height: 292px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.96) 0 29%, rgba(213, 232, 255, 0.82) 47%, rgba(89, 139, 255, 0.62) 72%, rgba(255, 255, 255, 0.72) 100%),
    conic-gradient(from 205deg, rgba(52, 98, 255, 0.42), rgba(255, 255, 255, 0.76), rgba(9, 203, 222, 0.38), rgba(116, 88, 255, 0.36), rgba(52, 98, 255, 0.42));
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.92),
    inset 0 18px 44px rgba(255, 255, 255, 0.76),
    inset 0 -34px 54px rgba(31, 98, 245, 0.2),
    0 24px 54px rgba(55, 89, 180, 0.18);
  animation: float 5s ease-in-out infinite;
}

.glass-emblem::before,
.glass-emblem::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.glass-emblem::before {
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), transparent 42%),
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.72), transparent 28%);
  mix-blend-mode: screen;
}

.glass-emblem::after {
  inset: -8px;
  border: 1px solid rgba(118, 147, 255, 0.22);
}

.glass-emblem img {
  position: relative;
  z-index: 2;
  width: 188px;
  height: auto;
  filter:
    drop-shadow(0 8px 14px rgba(37, 62, 173, 0.18))
    drop-shadow(0 18px 28px rgba(7, 195, 212, 0.16));
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(83, 119, 255, 0.09);
  border-radius: 50%;
  animation: none;
}

.ring-one {
  width: 350px;
  height: 350px;
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 1px rgba(96, 124, 225, 0.05);
}

.ring-two {
  width: 420px;
  height: 420px;
  border-style: dashed;
  opacity: 0.42;
}

.ring-three {
  display: none;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(97, 122, 189, 0.12);
  border-radius: 999px;
  color: #172854;
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(67, 83, 151, 0.09);
  backdrop-filter: blur(12px);
}

.chip-top {
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.chip-left {
  top: 184px;
  left: -22px;
}

.chip-right {
  right: 12px;
  bottom: 30px;
}

.chip-icon,
.feature-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(111, 105, 255, 0.13);
}

.chip-icon::before,
.feature-icon::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.calendar::before {
  clip-path: polygon(11% 18%, 28% 18%, 28% 0, 39% 0, 39% 18%, 61% 18%, 61% 0, 72% 0, 72% 18%, 89% 18%, 89% 100%, 11% 100%);
}

.bolt::before {
  clip-path: polygon(48% 0, 15% 55%, 45% 55%, 34% 100%, 84% 38%, 54% 38%);
}

.bars::before {
  clip-path: polygon(0 45%, 22% 45%, 22% 100%, 0 100%, 0 45%, 39% 18%, 61% 18%, 61% 100%, 39% 100%, 39% 18%, 78% 0, 100% 0, 100% 100%, 78% 100%);
}

.problem-section,
.platform-section,
.outcome-section {
  padding: 76px 4px;
  border-top: 1px solid rgba(87, 111, 176, 0.14);
}

.platform-section {
  padding-top: 82px;
}

.centered {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

.centered .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.problem-grid,
.outcome-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

.problem-grid::before {
  content: "";
  position: absolute;
  top: 47px;
  right: 13%;
  left: 13%;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 107, 255, 0.12), rgba(8, 201, 223, 0.62), rgba(112, 88, 255, 0.12));
}

.problem-card,
.outcome-card,
.readiness-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(73, 96, 158, 0.06);
  backdrop-filter: blur(16px);
}

.problem-card {
  min-height: 220px;
  padding: 28px;
}

.problem-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.problem-card h3,
.outcome-card strong,
.readiness-card h3 {
  display: block;
  margin: 24px 0 10px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.problem-card p,
.outcome-card p,
.readiness-card p,
.cta-section p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr 1.1fr;
  gap: 18px;
  padding: 38px 0 20px;
}

.feature-card,
.scenario-card,
.metric-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(73, 96, 158, 0.06);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.scenario-card:hover,
.metric-card:hover,
.workflow-grid article:hover,
.competency-card:hover,
.assessment-card:hover,
.problem-card:hover,
.outcome-card:hover,
.readiness-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 117, 190, 0.22);
  box-shadow: 0 18px 42px rgba(73, 96, 158, 0.1);
}

.feature-card {
  display: flex;
  gap: 18px;
  min-height: 126px;
  padding: 26px 22px;
}

.feature-card:nth-child(1),
.feature-card:nth-child(4) {
  min-height: 156px;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  transform: translateY(26px);
}

.feature-card:nth-child(2):hover,
.feature-card:nth-child(3):hover {
  transform: translateY(23px);
}

.feature-card h2,
.scenario-card h3,
.metric-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
}

.feature-card p,
.scenario-card p,
.section-copy p,
.metric-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.feature-card p,
.scenario-card p {
  margin: 9px 0 0;
}

.chat::before {
  clip-path: polygon(0 13%, 100% 13%, 100% 72%, 57% 72%, 30% 100%, 34% 72%, 0 72%);
}

.spark::before {
  clip-path: polygon(50% 0, 62% 35%, 100% 50%, 62% 65%, 50% 100%, 38% 65%, 0 50%, 38% 35%);
}

.trend::before {
  clip-path: polygon(0 73%, 12% 61%, 33% 80%, 70% 35%, 58% 25%, 100% 16%, 88% 58%, 78% 46%, 36% 100%);
}

.clock::before {
  border-radius: 50%;
  clip-path: none;
  box-shadow: inset 0 0 0 4px #7868ff;
  background: transparent;
}

.split-section,
.progress-section {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  padding: 70px 4px;
  border-top: 1px solid rgba(87, 111, 176, 0.14);
}

.split-section {
  align-items: stretch;
}

.split-section .section-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 8%, rgba(8, 201, 223, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(7, 23, 70, 0.96), rgba(14, 30, 82, 0.92));
}

.split-section .section-copy h2 {
  color: #fff;
}

.split-section .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.split-section .section-copy .eyebrow {
  width: fit-content;
  color: #d8dcff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

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

.compact {
  margin-bottom: 22px;
  padding: 8px 14px;
  font-size: 12px;
}

.section-copy h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 900;
}

.section-copy p {
  margin: 20px 0 0;
  font-size: 16px;
}

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

.audience-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1.28fr;
  align-items: center;
  gap: 42px;
  margin: -24px 4px 0;
  padding: 26px 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(244, 249, 255, 0.96), rgba(255, 255, 255, 0.82));
  box-shadow: 0 14px 34px rgba(73, 96, 158, 0.06);
}

.audience-strip .eyebrow { margin: 0 0 10px; }
.audience-strip > div > p:last-child { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; font-weight: 650; }
.audience-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.audience-list strong { padding: 13px 15px; border: 1px solid rgba(75, 101, 158, 0.1); border-radius: 12px; color: #33456f; font-size: 13px; line-height: 1.35; font-weight: 850; background: rgba(255, 255, 255, 0.78); }

.baseline-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  padding: 78px 38px;
  border-top: 1px solid rgba(87, 111, 176, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(95, 112, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(238, 247, 255, 0.52));
}

.baseline-section::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(92, 118, 190, 0.08);
  border-radius: 22px;
  pointer-events: none;
}

.baseline-board {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.competency-card,
.assessment-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 36px rgba(73, 96, 158, 0.07);
}

.competency-card {
  padding: 26px;
}

.competency-card h3 {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.skill-list {
  display: grid;
  gap: 18px;
}

.skill-list div {
  display: grid;
  gap: 8px;
}

.skill-list span {
  color: #34446f;
  font-size: 13px;
  font-weight: 900;
}

.skill-list i {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) var(--value), rgba(225, 232, 255, 0.9) var(--value));
}

.assessment-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 18%, rgba(112, 88, 255, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.76);
}

.assessment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.assessment-card strong {
  display: block;
  margin-top: 16px;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
}

.assessment-card span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.scenario-card {
  position: relative;
  min-height: 170px;
  padding: 28px 24px;
  overflow: hidden;
}

.scenario-card:nth-child(2),
.scenario-card:nth-child(4) {
  transform: translateY(34px);
}

.scenario-card:nth-child(2):hover,
.scenario-card:nth-child(4):hover {
  transform: translateY(31px);
}

.scenario-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -48px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 105, 255, 0.14), transparent 68%);
}

.scenario-person {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 120px;
  height: 128px;
  border-radius: 68px 68px 28px 28px;
  background:
    radial-gradient(circle at 50% 24%, #f3c9a9 0 17%, transparent 18%),
    linear-gradient(90deg, transparent 0 34%, #111a42 34% 68%, transparent 68%),
    linear-gradient(135deg, #e9f7ff, #8cd5ff);
  box-shadow: inset 0 -32px 0 rgba(255, 255, 255, 0.42);
}

.person-two {
  background:
    radial-gradient(circle at 50% 24%, #d9a47a 0 17%, transparent 18%),
    linear-gradient(90deg, transparent 0 34%, #20243f 34% 68%, transparent 68%),
    linear-gradient(135deg, #eff5ff, #5fa8ff);
}

.person-three {
  background:
    radial-gradient(circle at 50% 24%, #efbea4 0 17%, transparent 18%),
    linear-gradient(90deg, transparent 0 34%, #26254c 34% 68%, transparent 68%),
    linear-gradient(135deg, #fff3f8, #8d86ff);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.outcome-grid {
  grid-template-columns: repeat(4, 1fr);
}

.outcome-card {
  min-height: 178px;
  padding: 26px;
}

.outcome-card strong {
  margin-top: 0;
}

.readiness-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  padding: 78px 38px;
  border-top: 1px solid rgba(87, 111, 176, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 24%, rgba(8, 201, 223, 0.11), transparent 29%),
    linear-gradient(135deg, rgba(7, 23, 70, 0.97), rgba(18, 31, 82, 0.93));
}

.readiness-section .section-copy h2 {
  color: #fff;
}

.readiness-section .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.readiness-section .eyebrow {
  color: #d8dcff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.readiness-section .text-action {
  color: #a9eaf5;
}

.rollout-orbit {
  position: relative;
  min-height: 262px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: radial-gradient(circle at 50% 50%, rgba(84, 219, 239, 0.22), transparent 18%), rgba(255, 255, 255, 0.05);
}

.rollout-orbit::before,
.rollout-orbit::after,
.rollout-orbit i {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(126, 221, 255, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.rollout-orbit::before { width: 178px; height: 178px; }
.rollout-orbit::after { width: 112px; height: 112px; border-style: dashed; }
.rollout-orbit i { width: 34px; height: 34px; border: 0; background: linear-gradient(135deg, var(--cyan), #8f7eff); box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.05); }
.rollout-orbit span { position: absolute; padding: 9px 13px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 999px; color: rgba(255, 255, 255, 0.86); font-size: 11px; font-weight: 800; background: rgba(15, 37, 98, 0.76); }
.rollout-orbit span:nth-child(1) { top: 31px; left: 50%; transform: translateX(-50%); }
.rollout-orbit span:nth-child(2) { right: 34px; bottom: 40px; }
.rollout-orbit span:nth-child(3) { bottom: 40px; left: 34px; }

.readiness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.readiness-card {
  min-height: 170px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.readiness-card h3 {
  margin-top: 0;
  color: #fff;
}

.readiness-card p {
  color: rgba(255, 255, 255, 0.68);
}

.metric-card:first-child {
  min-height: 190px;
  background:
    radial-gradient(circle at 82% 32%, rgba(112, 88, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.78);
}

.metric-card:first-child strong {
  font-size: 46px;
}

.workflow-section {
  position: relative;
  padding: 76px 4px;
  border-top: 1px solid rgba(87, 111, 176, 0.14);
}

.workflow-section .section-copy {
  max-width: 700px;
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.workflow-grid::before {
  content: "";
  position: absolute;
  left: 42px;
  right: 42px;
  top: 49px;
  height: 2px;
  background: linear-gradient(90deg, rgba(45, 107, 255, 0.18), rgba(112, 88, 255, 0.26), rgba(8, 201, 223, 0.14));
}

.workflow-grid article {
  position: relative;
  z-index: 1;
  min-height: 218px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 34px rgba(73, 96, 158, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.workflow-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.workflow-grid h3 {
  margin: 24px 0 10px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.workflow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

.metric-card {
  position: relative;
  min-height: 156px;
  padding: 28px 26px;
  overflow: hidden;
}

.metric-card strong {
  display: block;
  margin-top: 18px;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.score-panel .signal-word,
.metric-card .signal-word,
.metric-card:first-child .signal-word {
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.15;
}

.metric-card span {
  display: block;
  margin-top: 14px;
  font-size: 12px;
}

.positive {
  color: var(--green) !important;
}

.score-ring {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: conic-gradient(var(--violet) 0 72%, var(--cyan) 72% 88%, #e7edff 88%);
  animation: ringBreathe 4.6s ease-in-out infinite;
}

.score-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fff;
}

.bar-chart {
  position: absolute;
  right: 24px;
  bottom: 28px;
  display: flex;
  align-items: end;
  gap: 13px;
  height: 72px;
}

.bar-chart i {
  width: 11px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #7a67ff, rgba(122, 103, 255, 0.18));
  transform-origin: bottom;
  animation: barPulse 2.8s ease-in-out infinite;
}

.bar-chart i:nth-child(2) {
  animation-delay: 120ms;
}

.bar-chart i:nth-child(3) {
  animation-delay: 240ms;
}

.bar-chart i:nth-child(4) {
  animation-delay: 360ms;
}

.bar-chart i:nth-child(1) {
  height: 32px;
  opacity: 0.35;
}

.bar-chart i:nth-child(2) {
  height: 46px;
  opacity: 0.55;
}

.bar-chart i:nth-child(3) {
  height: 64px;
}

.bar-chart i:nth-child(4) {
  height: 40px;
  opacity: 0.48;
}

.metric-card svg {
  position: absolute;
  right: 16px;
  bottom: 20px;
  width: 130px;
  height: 58px;
}

.metric-card polyline {
  fill: none;
  stroke: #4368ff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: drawLine 1.4s ease forwards 260ms;
}

.cta-section {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 42px;
  padding: 38px;
  border: 1px solid rgba(75, 101, 158, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 20%, rgba(91, 108, 255, 0.15), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 248, 255, 0.82));
  box-shadow: 0 18px 52px rgba(73, 96, 158, 0.08);
}

.cta-section h2 {
  max-width: 760px;
  margin: 0;
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 900;
}

.cta-section p {
  max-width: 680px;
  margin-top: 14px;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin: 72px 0 -72px calc(50% - 50vw);
  padding: 54px max(32px, calc((100vw - 1240px) / 2 + 24px)) 34px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 76% 0%, rgba(87, 105, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #020308 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.82fr 0.82fr 1.25fr;
  gap: 38px;
}

.footer-brand img {
  display: block;
  width: 164px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p,
.footer-subscribe p,
.footer-links a,
.footer-brand address {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 650;
}

.footer-brand p {
  max-width: 360px;
  margin: 0 0 22px;
}

.footer-brand address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-brand address strong,
.footer-links h2,
.footer-subscribe h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-links h2 {
  margin-bottom: 4px;
}

.footer-links a,
.footer-brand a {
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-brand a:hover {
  color: #fff;
}

.footer-subscribe p {
  margin: 0 0 22px;
  max-width: 410px;
}

.footer-subscribe form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.footer-subscribe input {
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  color: #fff;
  font: inherit;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.footer-subscribe button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  color: #071746;
  font: inherit;
  font-weight: 900;
  background: #fff;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes panelRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dashboardFloat {
  0%,
  100% {
    transform: translateY(-18px);
  }

  50% {
    transform: translateY(-24px);
  }
}

@keyframes voicePulse {
  0%,
  100% {
    transform: scaleY(0.82);
    opacity: 0.72;
  }

  50% {
    transform: scaleY(1.06);
    opacity: 1;
  }
}

@keyframes radarBreathe {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.02);
    opacity: 0.94;
  }
}

@keyframes ringBreathe {
  0%,
  100% {
    filter: saturate(1);
    transform: scale(1);
  }

  50% {
    filter: saturate(1.12);
    transform: scale(1.025);
  }
}

@keyframes barPulse {
  0%,
  100% {
    transform: scaleY(0.92);
  }

  50% {
    transform: scaleY(1.04);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1180px) {
  .page-shell {
    padding: 32px 20px 58px;
  }

  .hero {
    grid-template-columns: minmax(460px, 520px) minmax(0, 1fr);
    gap: 30px;
  }
}

@media (max-width: 940px) {
  .page-shell {
    width: min(100% - 28px, 760px);
    margin: 24px auto;
    padding: 22px 22px 42px;
    border-radius: 28px;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .nav-open .nav-links {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(75, 101, 158, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(16px);
  }

  .nav-open .nav-links a {
    padding: 13px 14px;
    border-radius: 12px;
    text-align: left;
  }

  .nav-open .nav-links a:hover {
    background: rgba(238, 243, 255, 0.88);
  }

  .menu-button {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding: 56px 0 34px;
    text-align: center;
  }

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

  .hero-actions,
  .trust-strip {
    justify-content: center;
  }

  .hero-visual {
    min-height: 470px;
    transform: none;
  }

  .product-preview {
    max-width: 620px;
    margin: 0 auto;
  }

  .dashboard-shell {
    inset: 0;
  }

  .visual-orbit {
    inset: 10px 0 0;
  }

  .glass-emblem {
    width: 238px;
    height: 238px;
  }

  .glass-emblem img {
    width: 156px;
  }

  .ring-one {
    width: 292px;
    height: 292px;
  }

  .ring-two {
    width: 342px;
    height: 342px;
  }

  .ring-three {
    width: 384px;
    height: 384px;
  }

  .floating-chip {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .chip-top {
    left: 50%;
    transform: translateX(-50%);
  }

  .chip-left {
    left: 6px;
    top: 170px;
  }

  .chip-right {
    right: 6px;
    bottom: 42px;
  }

  .feature-grid,
  .problem-grid,
  .baseline-board,
  .scenario-grid,
  .metric-grid,
  .workflow-grid,
  .outcome-grid,
  .readiness-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .scenario-card:nth-child(2),
  .scenario-card:nth-child(4) {
    transform: none;
  }

  .workflow-grid::before {
    display: none;
  }

  .baseline-section,
  .split-section,
  .progress-section,
  .readiness-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 46px 0;
  }

  .audience-strip { grid-template-columns: 1fr; gap: 20px; margin-top: -12px; text-align: center; }
  .audience-strip .eyebrow { margin-right: auto; margin-left: auto; }

  .section-copy {
    text-align: center;
  }

  .split-section .section-copy .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .workflow-section {
    padding: 46px 0;
  }

  .problem-section,
  .platform-section,
  .outcome-section {
    padding: 46px 0;
  }

  .problem-section {
    margin-top: 28px;
  }

  .cta-section {
    display: grid;
    text-align: center;
  }

  .cta-section .button {
    width: fit-content;
    margin: 0 auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 32px;
  }

  .footer-subscribe form {
    grid-template-columns: 1fr;
  }

  .footer-subscribe button {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 18px 16px 34px;
  }

  .brand {
    width: 146px;
    height: 41px;
  }

  .brand-logo {
    width: 146px;
    height: 41px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .eyebrow {
    display: flex;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    justify-content: center;
    text-align: center;
    font-size: 11px;
  }

  .hero-text {
    font-size: 15px;
  }

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

  .button,
  .secondary-button {
    width: 100%;
  }

  .trust-strip {
    flex-direction: column;
    align-items: center;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    gap: 10px;
  }

  .trust-strip strong {
    padding: 8px 15px;
    font-size: 12px;
  }

  .trust-strip p {
    flex: none;
    min-width: 0;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero-visual {
    min-height: 0;
    overflow: visible;
  }

  .product-preview {
    min-height: 0;
    transform: none;
    animation: none;
    overflow: visible;
  }

  .dashboard-shell {
    position: relative;
    inset: auto;
    min-height: 0;
    padding: 14px;
    border-radius: 20px;
  }

  .dashboard-topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .dashboard-brand span {
    font-size: 12px;
  }

  .live-pill {
    min-height: 28px;
    padding: 0 10px;
    font-size: 10px;
  }

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

  .session-panel {
    grid-row: auto;
  }

  .team-panel {
    grid-column: auto;
  }

  .voice-wave {
    height: 76px;
  }

  .visual-orbit {
    inset: 0 -8px 0;
  }

  .glass-emblem {
    width: 212px;
    height: 212px;
  }

  .glass-emblem img {
    width: 138px;
  }

  .ring-one {
    width: 260px;
    height: 260px;
  }

  .ring-two {
    width: 310px;
    height: 310px;
  }

  .ring-three {
    width: 350px;
    height: 350px;
  }

  .floating-chip {
    min-height: 34px;
    gap: 7px;
    padding: 0 10px;
    font-size: 10px;
    max-width: max-content;
  }

  .chip-icon,
  .feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
  }

  .chip-top {
    top: 18px;
    left: 50%;
  }

  .chip-left {
    top: 214px;
    left: 18px;
  }

  .chip-right {
    right: 18px;
    bottom: 18px;
  }

  .feature-grid,
  .problem-grid,
  .baseline-board,
  .scenario-grid,
  .metric-grid,
  .workflow-grid,
  .outcome-grid,
  .readiness-grid {
    grid-template-columns: 1fr;
  }

  .audience-strip { margin: 0; padding: 24px 20px; }
  .audience-list { grid-template-columns: 1fr; }

  .feature-card:nth-child(1),
  .feature-card:nth-child(4) {
    min-height: auto;
  }

  .split-section .section-copy {
    padding: 28px 22px;
  }

  .baseline-section {
    padding: 44px 0;
  }

  .readiness-section {
    padding: 34px 22px;
    border-radius: 22px;
  }

  .problem-card,
  .outcome-card,
  .readiness-card {
    min-height: auto;
  }

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

  .cta-section {
    padding: 28px 20px;
  }

  .cta-section h2 {
    font-size: 24px;
  }

  .site-footer {
    margin-top: 54px;
    padding-top: 42px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand img {
    width: 148px;
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
  }

  .feature-card {
    min-height: auto;
  }

  .scenario-card {
    min-height: 190px;
  }

  .scenario-person {
    width: 96px;
    height: 104px;
  }
}
