:root {
  --deck-w: 1920px;
  --deck-h: 1080px;
  --paper: #f8f7f3;
  --paper-soft: #f1eee8;
  --ink: #13202c;
  --muted: #617086;
  --navy: #092b4c;
  --navy-2: #123b67;
  --navy-3: #1a4776;
  --gold: #b78a43;
  --gold-2: #d8bd7b;
  --rose: #eedbd8;
  --steel: #5f6f82;
  --line: rgba(19, 32, 44, 0.12);
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(9, 43, 76, 0.16);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(183, 138, 67, 0.18), transparent 31%),
    radial-gradient(circle at 88% 76%, rgba(9, 43, 76, 0.22), transparent 34%),
    #e9e6de;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
}

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

button {
  border: 0;
}

.stage-shell {
  position: fixed;
  left: 50%;
  top: 50%;
  width: var(--deck-w);
  height: var(--deck-h);
  transform-origin: 0 0;
}

.deck {
  position: relative;
  width: var(--deck-w);
  height: var(--deck-h);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 36px 140px rgba(12, 28, 44, 0.24);
  isolation: isolate;
  transform-origin: 0 0;
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 56px 56px;
  mix-blend-mode: soft-light;
}

.slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  padding: 118px 86px 86px;
  opacity: 0;
  transform: translate3d(72px, 0, 0) scale(0.985);
  pointer-events: none;
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--ease),
    filter 720ms var(--ease);
  filter: blur(6px);
  background: var(--paper);
}

.slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
  filter: blur(0);
}

.slide.is-prev {
  transform: translate3d(-72px, 0, 0) scale(0.985);
}

.slide.dark {
  color: var(--white);
  background: var(--navy);
}

.slide-source {
  position: absolute;
  inset: 0;
  z-index: 28;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.025);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
  background: rgba(6, 18, 31, 0.72);
}

.slide-source img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deck.source-visible .slide.is-active .slide-source {
  opacity: 1;
  transform: scale(1);
}

.slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.slide-topline {
  margin: 0 0 34px;
  color: var(--gold);
  font-weight: 760;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 22px;
}

.slide-title {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 760;
}

.dark .slide-title,
.dark .slide-topline {
  color: var(--white);
}

.dark .slide-topline {
  color: var(--gold-2);
}

.copy {
  margin: 0;
  font-size: 24px;
  line-height: 1.55;
  color: var(--ink);
}

.copy.small {
  font-size: 20px;
  line-height: 1.55;
}

.copy.italic {
  font-style: italic;
  color: var(--steel);
}

.dark .copy {
  color: rgba(255, 255, 255, 0.82);
}

.footer-mark {
  position: absolute;
  left: 72px;
  right: 72px;
  bottom: 31px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #5b6d82;
  font-size: 14px;
  letter-spacing: 0.31em;
  text-transform: uppercase;
  font-weight: 680;
}

.footer-mark span:last-child {
  color: var(--gold);
  letter-spacing: 0.04em;
}

.dark .footer-mark {
  color: rgba(255, 255, 255, 0.74);
}

.status-panel {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 44px;
  min-width: 520px;
  max-width: 860px;
  padding: 0 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 48px rgba(9, 43, 76, 0.14);
  backdrop-filter: blur(18px);
  color: var(--ink);
  transition:
    color 320ms var(--ease),
    background 320ms var(--ease),
    border-color 320ms var(--ease);
}

.deck.dark-status .status-panel {
  color: var(--white);
  background: rgba(7, 29, 50, 0.52);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.22);
}

.status-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(183, 138, 67, 0.42);
  animation: pulseStatus 1.9s infinite;
}

.status-section {
  font-size: 12px;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 780;
  white-space: nowrap;
}

.status-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 760;
}

.status-count,
.status-percent {
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 12px;
  color: inherit;
  opacity: 0.82;
}

.deck-progress {
  position: absolute;
  left: 86px;
  right: 86px;
  bottom: 58px;
  z-index: 30;
  pointer-events: none;
}

.progress-line {
  position: relative;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(95, 111, 130, 0.16);
}

.progress-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), rgba(216, 189, 123, 0.65));
  transition: width 620ms var(--ease);
}

.progress-nodes {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  margin-top: -9px;
}

.progress-node {
  justify-self: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(248, 247, 243, 0.78);
  border: 1px solid rgba(183, 138, 67, 0.24);
  transform: scale(0.72);
  transition:
    transform 420ms var(--ease),
    background 420ms var(--ease),
    border-color 420ms var(--ease);
}

.progress-node.is-current {
  transform: scale(1);
  background: var(--gold);
  border-color: var(--gold);
}

.dock {
  position: absolute;
  right: 14px;
  top: 50%;
  z-index: 38;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 28px 68px rgba(9, 43, 76, 0.18);
  backdrop-filter: blur(18px);
}

.dock-button,
.close-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition:
    transform 240ms var(--ease),
    background 240ms var(--ease),
    color 240ms var(--ease);
}

.dock-button svg,
.close-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dock-button:hover,
.close-button:hover {
  transform: translateX(-4px) scale(1.05);
  color: var(--white);
  background: var(--navy);
}

.dock-button:active,
.close-button:active {
  transform: translateX(-4px) scale(0.98);
}

.dock-button::before {
  content: attr(data-tip);
  position: absolute;
  right: 54px;
  top: 50%;
  width: max-content;
  padding: 7px 10px;
  transform: translateY(-50%) translateX(8px);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  background: rgba(19, 32, 44, 0.9);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.dock-button:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.navigator {
  position: absolute;
  inset: 0;
  z-index: 42;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms var(--ease);
}

.navigator.is-open {
  opacity: 1;
  pointer-events: auto;
}

.navigator-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 19, 32, 0.58);
  backdrop-filter: blur(18px);
}

.navigator-panel {
  position: absolute;
  inset: 58px 70px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 247, 243, 0.84)),
    var(--paper);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.28);
  transform: translateY(26px) scale(0.985);
  transition: transform 360ms var(--ease);
}

.navigator.is-open .navigator-panel {
  transform: translateY(0) scale(1);
}

.navigator-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.navigator-head p {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.navigator-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
  color: var(--ink);
}

.close-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(9, 43, 76, 0.1);
}

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

.nav-card {
  position: relative;
  display: block;
  min-height: 136px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(9, 43, 76, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 32px rgba(9, 43, 76, 0.08);
  transition:
    transform 300ms var(--ease),
    border-color 300ms var(--ease),
    box-shadow 300ms var(--ease);
}

.nav-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.94);
}

.nav-card footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 12px;
}

.nav-card strong {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--gold);
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 12px;
}

.nav-card span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 720;
}

.nav-card:hover,
.nav-card.is-current {
  transform: translateY(-5px);
  border-color: rgba(183, 138, 67, 0.72);
  box-shadow: 0 24px 52px rgba(9, 43, 76, 0.16);
}

.nav-card.is-current strong {
  background: var(--gold);
  color: var(--white);
}

.cover-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--navy);
}

.cover-bg::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -220px;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: rgba(27, 72, 119, 0.58);
  animation: floatLarge 12s var(--ease) infinite alternate;
}

.orbit {
  position: absolute;
  right: -10px;
  top: -68px;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  opacity: 0.92;
  animation: orbitDrift 12s linear infinite;
}

.orbit::after {
  content: "";
  position: absolute;
  inset: 100px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.cover-layout {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
}

.cover-content {
  padding-left: 44px;
  transform: translateY(16px);
}

.cover-title {
  margin: 56px 0 42px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 100px;
  line-height: 0.98;
  letter-spacing: 0;
}

.cover-copy {
  max-width: 1110px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 26px;
  line-height: 1.58;
}

.brand-row {
  display: flex;
  align-items: flex-end;
  gap: 42px;
  margin-top: 72px;
}

.brand-row img {
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.18));
}

.brand-row img:first-child {
  width: 92px;
  height: auto;
}

.brand-row img:last-child {
  width: 165px;
  height: auto;
}

.developed {
  margin-top: 50px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 780;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: start;
  margin-top: 52px;
}

.quote-panel {
  padding: 36px 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  font-style: italic;
  color: rgba(255, 255, 255, 0.86);
}

.objective-copy {
  display: grid;
  gap: 24px;
}

.number-list {
  display: grid;
  gap: 16px;
}

.number-item {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 70px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-soft);
  color: var(--ink);
  transition:
    transform 260ms var(--ease),
    background 260ms var(--ease),
    color 260ms var(--ease);
}

.number-item strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-left: 13px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 15px;
}

.number-item span {
  font-size: 18px;
  font-weight: 760;
}

.number-item:hover {
  transform: translateX(8px);
  background: var(--navy);
  color: var(--white);
}

.market-copy {
  max-width: 1690px;
  margin-top: 52px;
}

.flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 30px 0 30px;
}

.flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--navy), var(--gold));
  opacity: 0.28;
}

.flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 82px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  font-weight: 760;
  overflow: visible;
  cursor: pointer;
  text-align: center;
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.flow-step:nth-child(even) {
  background: var(--gold);
}

.flow-step::after {
  content: "›";
  position: absolute;
  right: -21px;
  color: var(--ink);
  font-size: 48px;
  font-weight: 300;
}

.flow-step:last-child::after {
  display: none;
}

.flow-step:hover {
  transform: translateY(-7px);
  z-index: 6;
}

.flow-step:focus-visible {
  outline: 3px solid rgba(183, 138, 67, 0.42);
  outline-offset: 5px;
  z-index: 6;
}

.flow-step > span:first-child {
  position: relative;
  z-index: 2;
}

.flow-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 18px);
  width: 382px;
  padding: 20px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(19, 32, 44, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 58px rgba(9, 43, 76, 0.24);
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 520;
  line-height: 1.45;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 14px, 0) scale(0.96);
  transform-origin: 50% 100%;
  transition:
    opacity 240ms var(--ease),
    transform 240ms var(--ease);
}

.flow-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 16px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(19, 32, 44, 0.96);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.flow-tooltip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.flow-step:hover .flow-tooltip,
.flow-step:focus .flow-tooltip {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.region-box {
  margin-top: 38px;
}

.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 18px 0;
}

.region {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 4px;
  background: var(--paper-soft);
  color: var(--ink);
  font-size: 18px;
  font-weight: 740;
  transition: transform 260ms var(--ease), background 260ms var(--ease), color 260ms var(--ease);
}

.region:hover {
  transform: translateY(-5px);
  background: var(--navy);
  color: var(--white);
}

.two-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 62px;
}

.panel {
  min-height: 278px;
  padding: 34px 36px;
  border-radius: 4px;
  background: var(--paper-soft);
  color: var(--ink);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.panel.navy {
  background: var(--navy);
  color: var(--white);
}

.panel.gold {
  background: var(--gold);
  color: var(--white);
}

.panel.rose {
  background: var(--rose);
}

.panel:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.panel h3,
.mini-card h3,
.video-card h3,
.op-card h3 {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel.navy h3,
.panel.gold h3,
.dark-card h3 {
  color: var(--gold-2);
}

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

.bullet-list li {
  position: relative;
  padding-left: 22px;
  font-size: 20px;
  line-height: 1.35;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.72;
}

.wide-callout {
  margin-top: 26px;
  padding: 24px 30px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--white);
  font-size: 20px;
  line-height: 1.45;
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 58px;
}

.mini-card {
  position: relative;
  min-height: 440px;
  padding: 40px 36px;
  border-radius: 4px;
  background: var(--paper-soft);
  overflow: hidden;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.mini-card.dark-card {
  background: var(--navy);
  color: var(--white);
}

.mini-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-weight: 780;
}

.mini-card p,
.video-card p,
.op-card p {
  margin: 0;
  font-size: 19px;
  line-height: 1.48;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 70px;
}

.compare-panel {
  min-height: 570px;
  padding: 45px 48px;
  border-radius: 8px;
  background: var(--paper-soft);
  display: flex;
  flex-direction: column;
}

.compare-panel.recommended {
  background: var(--navy);
  color: var(--white);
}

.compare-title {
  margin: 0;
  text-align: center;
  color: var(--steel);
  font-size: 33px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 790;
}

.recommended .compare-title {
  color: var(--gold-2);
}

.compare-center {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
}

.compare-center .copy {
  max-width: 700px;
}

.recommended .bullet-list {
  justify-self: start;
  gap: 28px;
}

.recommended .bullet-list li {
  font-size: 24px;
}

.bio-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 44px;
}

.phone {
  width: 220px;
  height: 440px;
  margin-left: 12px;
  padding: 18px;
  border: 11px solid #111c28;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 22px 44px rgba(18, 32, 44, 0.18);
}

.phone-avatar {
  width: 92px;
  height: 92px;
  margin: 20px auto 10px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: inset 0 0 0 7px #f6f2e9;
}

.phone-name {
  margin: 0 0 16px;
  text-align: center;
  color: var(--navy);
  font-size: 12px;
  font-weight: 780;
}

.phone-line {
  height: 3px;
  margin: 10px auto;
  border-radius: 999px;
  background: #d7dce2;
}

.phone-line:nth-child(4) {
  width: 76%;
}

.phone-line:nth-child(5) {
  width: 62%;
}

.phone-line:nth-child(6) {
  width: 82%;
}

.bio-panels {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
}

.bio-today,
.bio-efficient {
  min-height: 160px;
  padding: 28px;
  background: var(--paper-soft);
  border-radius: 4px;
}

.bio-efficient {
  background: var(--navy);
  color: var(--white);
}

.bio-proposal {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding: 34px 38px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--white);
}

.bio-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bio-efficient .bio-label,
.bio-proposal .bio-label {
  color: var(--gold-2);
}

.bio-proposal blockquote {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.35;
  font-style: italic;
}

.highlight-copy {
  max-width: 1690px;
  margin-top: 48px;
}

.highlight-sequence {
  margin: 48px auto 24px;
  width: 760px;
  text-align: center;
}

.highlight-circles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: center;
}

.highlight-circle {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 13px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-weight: 780;
  box-shadow: 0 0 0 5px var(--paper), 0 0 0 9px var(--gold);
  transition: transform 260ms var(--ease);
}

.highlight-item:hover .highlight-circle {
  transform: translateY(-7px) scale(1.05);
}

.highlight-item span {
  font-size: 14px;
  font-weight: 760;
}

.soft-band {
  padding: 24px 34px;
  border-radius: 4px;
  background: var(--paper-soft);
  color: var(--steel);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 54px;
}

.donut-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.donut {
  width: 430px;
  height: 430px;
  overflow: visible;
  transform: rotate(-90deg);
}

.donut-seg {
  cursor: pointer;
  transition: opacity 220ms var(--ease), stroke-width 220ms var(--ease), transform 220ms var(--ease);
  transform-origin: 250px 250px;
}

.donut-seg:hover,
.donut-seg.is-hot {
  stroke-width: 82;
  opacity: 1;
  transform: scale(1.02);
}

.donut-hole {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(9, 43, 76, 0.08);
}

.chart-readout {
  position: absolute;
  display: grid;
  place-items: center;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  text-align: center;
  color: var(--navy);
  font-size: 16px;
  font-weight: 790;
  line-height: 1.2;
}

.pillar-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 36px;
}

.pillar-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  font-size: 18px;
  font-weight: 720;
}

.pillar-swatch {
  width: 13px;
  height: 13px;
  border-radius: 2px;
}

.video-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 42px;
}

.video-wide {
  grid-column: 1 / -1;
}

.video-card {
  min-height: 162px;
  padding: 28px 32px;
  border-radius: 4px;
  background: var(--paper-soft);
}

.video-card.dark-card {
  background: var(--navy);
  color: var(--white);
}

.video-card.gold {
  background: var(--gold);
  color: var(--white);
}

.workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 78px 0 48px;
}

.workflow::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--navy), var(--gold));
  opacity: 0.3;
}

.workflow-step {
  position: relative;
  min-height: 112px;
  padding: 22px 26px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  transition: transform 280ms var(--ease);
}

.workflow-step:last-child {
  background: var(--gold);
}

.workflow-step:hover {
  transform: translateY(-9px);
}

.workflow-step strong {
  display: block;
  color: var(--gold-2);
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 20px;
  margin-bottom: 17px;
}

.workflow-step span {
  font-size: 19px;
  font-weight: 760;
}

.ux-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 52px;
}

.ux-card {
  min-height: 530px;
  padding: 42px 50px;
  border-radius: 8px;
  background: var(--rose);
}

.ux-card.dark-card {
  background: var(--navy);
  color: var(--white);
}

.ux-label {
  margin: 0 0 58px;
  color: #bd5e55;
  font-size: 22px;
  font-weight: 790;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.dark-card .ux-label {
  color: var(--gold-2);
}

.generic-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 34px;
  align-items: center;
}

.generic-quotes {
  display: grid;
  gap: 66px;
  font-family: Georgia, "Times New Roman", serif;
  color: #8e4139;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 760;
}

.attention-img {
  width: 255px;
  height: auto;
  box-shadow: 0 18px 36px rgba(9, 43, 76, 0.18);
}

.recommended-quotes {
  display: grid;
  gap: 76px;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.24;
  font-weight: 760;
  font-style: italic;
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  gap: 32px;
  margin-top: 70px;
}

.strategy-stack {
  min-height: 390px;
  padding: 36px 40px;
  border-radius: 4px;
  background: var(--paper-soft);
}

.strategy-stack.dark-card {
  background: var(--navy);
  color: var(--white);
}

.strategy-pills {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.strategy-pill {
  display: grid;
  place-items: center;
  min-height: 50px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 760;
  box-shadow: inset 0 0 0 1px rgba(9, 43, 76, 0.08);
}

.dark-card .strategy-pill {
  background: rgba(27, 72, 119, 0.9);
  color: var(--white);
}

.strategy-arrow {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: auto;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 42px;
  animation: arrowPulse 2.8s var(--ease) infinite;
}

.opportunities {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 58px;
}

.op-card {
  min-height: 230px;
  padding: 30px 32px;
  border-radius: 4px;
  background: var(--paper-soft);
  transition: transform 280ms var(--ease), background 280ms var(--ease), color 280ms var(--ease);
}

.op-card:nth-child(4) {
  grid-column: 2;
}

.op-card:nth-child(5) {
  background: var(--navy);
  color: var(--white);
}

.op-card:hover {
  transform: translateY(-8px);
  background: var(--navy);
  color: var(--white);
}

.op-card h3 {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  color: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.op-card h3 strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 16px;
}

.conclusion {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  height: 100%;
  align-items: center;
}

.conclusion-copy {
  max-width: 980px;
  margin-top: 68px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.52;
  font-style: italic;
  color: rgba(255, 255, 255, 0.84);
}

.conclusion-line {
  margin-top: 50px;
  color: var(--gold-2);
  font-size: 18px;
  font-weight: 760;
}

.conclusion-brand {
  margin-top: 54px;
  color: var(--gold-2);
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 780;
}

.conclusion-visual {
  position: relative;
  height: 100%;
}

.conclusion-visual::before,
.conclusion-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.62;
}

.conclusion-visual::before {
  right: -40px;
  bottom: -110px;
  width: 520px;
  height: 520px;
}

.conclusion-visual::after {
  right: 110px;
  bottom: 46px;
  width: 250px;
  height: 250px;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}

.slide.is-active [data-reveal] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes pulseStatus {
  0% {
    box-shadow: 0 0 0 0 rgba(183, 138, 67, 0.42);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(183, 138, 67, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(183, 138, 67, 0);
  }
}

@keyframes floatLarge {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-22px, 26px, 0) scale(1.035);
  }
}

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

@keyframes arrowPulse {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(8px) scale(1.06);
  }
}

@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;
  }
}
