:root {
  color-scheme: light;
  --star-blue: #1b4f91;
  --star-blue-strong: #143f78;
  --star-blue-bright: #70a6e6;
  --star-blue-soft: #dfeaf7;
  --star-ink: #0d1b2a;
  --star-steel: #5e6b78;
  --star-silver: #b7c0ca;
  --star-platinum: #f4f6f8;
  --star-white: #fbfcfd;
  --star-line: #aab7c4;
  --star-danger: #9a2f2f;
  --shadow-soft: 0 24px 70px rgb(13 27 42 / 14%);
  --page-width: 1240px;
  --radius-control: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--star-platinum);
  color: var(--star-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.quiz-is-immersive {
  overflow: hidden;
}

body.quiz-is-immersive::before {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgb(248 249 251 / 98%);
  content: "";
}

body.quiz-is-closing .quiz-shell.is-immersive {
  pointer-events: none;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 16px;
  min-height: 72px;
  padding: 0 32px;
  border-bottom: 1px solid var(--star-blue-strong);
  background: var(--star-blue);
  transition:
    min-height 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.header-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-header.is-scrolled {
  min-height: 56px;
  border-bottom-color: rgb(255 255 255 / 14%);
  background: rgb(27 79 145 / 62%);
  box-shadow: 0 12px 28px rgb(8 21 35 / 16%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  color: var(--star-ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand i {
  color: var(--star-blue);
  font-size: 28px;
}

.brand-logo {
  display: block;
  width: 148px;
  height: auto;
  transition: width 180ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: 120px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.desktop-nav a {
  color: var(--star-white);
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--star-blue-soft);
}

.header-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid var(--star-blue);
  border-radius: var(--radius-control);
  background: var(--star-blue);
  color: var(--star-white);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.header-cta {
  justify-self: end;
  border-color: var(--star-white);
  background: var(--star-white);
  color: var(--star-blue);
  transition:
    min-height 180ms ease,
    padding 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.site-header.is-scrolled .header-cta {
  min-height: 38px;
  padding-inline: 18px;
}

.primary-cta:hover {
  background: var(--star-blue-strong);
}

.header-cta:hover {
  border-color: #e5eef8;
  background: #e5eef8;
  color: var(--star-blue-strong);
}

.header-cta:active,
.primary-cta:active,
.next-button:active,
.quiz-cancel-button:active,
.quiz-option:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100dvh - 72px);
  place-items: center;
  overflow: hidden;
  background: #081523;
  color: var(--star-white);
}

.hero-reels {
  --hero-card-width: clamp(160px, 15.8vw, 250px);
  --hero-card-gap: clamp(10px, 1vw, 16px);
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  width: max-content;
  height: 100%;
  gap: var(--hero-card-gap);
  overflow: hidden;
  transform: translateX(-50%);
}

.hero-reel-column {
  flex: 0 0 var(--hero-card-width);
  height: 100%;
  overflow: hidden;
}

.hero-reel-track {
  display: flex;
  flex-direction: column;
  gap: var(--hero-card-gap);
  will-change: transform;
}

.hero-video-card {
  flex: 0 0 auto;
  width: var(--hero-card-width);
  aspect-ratio: 9 / 16;
  margin: 0;
  overflow: hidden;
  background: #0d1721;
  box-shadow:
    0 22px 52px rgb(0 0 0 / 52%),
    inset 0 0 0 1px rgb(255 255 255 / 8%);
}

.hero-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(4 10 16 / 30%), rgb(4 10 16 / 56%) 42%, rgb(4 10 16 / 78%)),
    radial-gradient(circle at center 42%, rgb(4 10 16 / 12%), rgb(4 10 16 / 62%) 76%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(1120px, calc(100% - 40px));
  padding: 72px 0;
  text-align: center;
}

.hero h1 {
  width: max-content;
  max-width: 1120px;
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 span,
.hero h1 strong,
.hero p span {
  display: block;
}

.hero h1 span,
.hero h1 strong {
  white-space: nowrap;
}

.hero h1 strong {
  color: var(--star-blue-bright);
  font-weight: inherit;
}

.hero p {
  width: 100%;
  max-width: 560px;
  margin: 42px 0 0;
  color: #b8c2cc;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.45;
}

.primary-cta {
  min-height: 58px;
  margin-top: 36px;
  padding-inline: 32px;
}

.hero .primary-cta {
  border-color: var(--star-blue);
  background: var(--star-blue);
  color: var(--star-white);
  box-shadow: 0 16px 34px rgb(4 10 16 / 24%);
}

.hero .primary-cta:hover {
  border-color: var(--star-blue-strong);
  background: var(--star-blue-strong);
  color: var(--star-white);
}

.hero-actions {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 54px;
}

.hero-actions .primary-cta {
  margin-top: 0;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c7d0da;
  font-size: 0.9rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.secondary-cta:hover {
  color: var(--star-white);
}

.primary-cta i {
  font-size: 20px;
  transition: transform 180ms ease;
}

.primary-cta:hover i {
  transform: translateX(3px);
}

.quiz-stage {
  padding: 88px 24px 112px;
  background:
    linear-gradient(rgb(13 27 42 / 70%), rgb(13 27 42 / 70%)),
    repeating-linear-gradient(125deg, #172b3e 0 48px, #1c344b 49px 96px);
}

.quiz-intro {
  display: grid;
  justify-items: center;
  max-width: 1040px;
  margin: 0 auto 28px;
  color: var(--star-white);
  text-align: center;
}

.quiz-intro h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.quiz-intro strong {
  color: #70a6e6;
}

.quiz-arrow {
  margin-top: 22px;
  color: #8db8eb;
  font-size: 58px;
}

.quiz-shell {
  position: relative;
  width: min(1180px, 100%);
  min-height: 600px;
  margin: 0 auto;
  padding: 42px 52px 50px;
  border: 1px solid #d5dde6;
  border-radius: 18px;
  background: var(--star-platinum);
  box-shadow: var(--shadow-soft);
}

.quiz-modal-nav {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  min-height: 76px;
  padding: 10px clamp(16px, 4vw, 48px);
  background: var(--star-white);
}

.quiz-modal-logo {
  display: block;
  width: 150px;
  height: auto;
  justify-self: center;
}

.quiz-nav-button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #40546a;
  cursor: pointer;
  font-size: 28px;
}

.quiz-nav-button:hover {
  background: #e8edf2;
  color: var(--star-blue);
}

.quiz-shell.is-immersive {
  --quiz-modal-edge: clamp(8px, 4dvh, 32px);
  --quiz-modal-inline-edge: 8px;
  position: fixed;
  top: 50%;
  right: auto;
  left: 50%;
  z-index: 100;
  display: flex;
  width: min(
    var(--quiz-origin-width, 760px),
    calc(100vw - var(--quiz-modal-inline-edge) - var(--quiz-modal-inline-edge))
  );
  height: auto;
  min-height: min(
    var(--quiz-origin-height, 0px),
    calc(100dvh - var(--quiz-modal-edge) - var(--quiz-modal-edge))
  );
  max-height: calc(100dvh - var(--quiz-modal-edge) - var(--quiz-modal-edge));
  flex-direction: column;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  border: 1px solid #d5dde6;
  border-radius: 18px;
  background: var(--star-platinum);
  box-shadow: 0 24px 70px rgb(13 27 42 / 16%);
  translate: -50% -50%;
}

.quiz-shell.is-immersive .quiz-modal-nav {
  position: sticky;
  top: 0;
  z-index: 2;
  flex: 0 0 auto;
}

.quiz-progress {
  width: 100%;
  color: #40546a;
  font-size: 1rem;
}

.quiz-shell.is-immersive .quiz-progress {
  flex: 0 0 auto;
}

.quiz-progress-track {
  height: 6px;
  overflow: hidden;
  background: #d8e0e8;
}

.quiz-progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--star-blue);
  transition: width 260ms ease;
}

.quiz-step {
  width: min(1040px, 100%);
  margin-inline: auto;
}

.quiz-shell.is-immersive .quiz-step.is-active {
  display: grid;
  width: min(760px, 100%);
  flex: 0 0 auto;
  align-content: start;
  padding: clamp(26px, 4dvh, 40px) 28px 28px;
}

.quiz-step h3,
.quiz-complete h3 {
  margin: 56px 0 38px;
  font-size: clamp(2rem, 4.3vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.05;
  text-align: center;
}

.quiz-step h3:focus,
.quiz-complete h3:focus {
  outline: none;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quiz-option {
  display: grid;
  grid-template-rows: auto auto;
  min-height: 240px;
  padding: 26px 22px;
  place-items: center;
  gap: 22px;
  border: 2px solid #a7b5c4;
  border-radius: var(--radius-control);
  background: var(--star-white);
  color: var(--star-ink);
  cursor: pointer;
  text-align: center;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.quiz-option:hover {
  border-color: var(--star-blue);
  background: #f7faff;
}

.quiz-option[aria-pressed="true"] {
  border-color: var(--star-blue);
  background: var(--star-blue-soft);
  box-shadow: inset 0 0 0 1px var(--star-blue);
}

.quiz-option i {
  color: var(--star-blue);
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 1;
}

.quiz-option span {
  max-width: 13ch;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
}

.field-label,
.contact-fields label {
  display: grid;
  gap: 9px;
  color: #25384b;
  font-weight: 700;
}

textarea,
input {
  width: 100%;
  border: 2px solid #8ea0b2;
  border-radius: var(--radius-control);
  background: var(--star-white);
  color: var(--star-ink);
}

textarea {
  min-height: 180px;
  padding: 18px;
  resize: vertical;
}

input {
  min-height: 54px;
  padding: 0 15px;
}

textarea::placeholder,
input::placeholder {
  color: #5b6b7c;
}

textarea:focus,
input:focus {
  border-color: var(--star-blue);
  outline: 3px solid rgb(27 79 145 / 22%);
  outline-offset: 2px;
}

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

.quiz-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 48px;
}

.quiz-shell.is-immersive .quiz-actions {
  position: sticky;
  bottom: 0;
  z-index: 1;
  width: min(760px, 100%);
  flex: 0 0 auto;
  margin: auto auto 0;
  padding: 22px 28px 24px;
  background: var(--star-platinum);
}

.quiz-exit-confirmation {
  position: relative;
  display: flex;
  width: min(760px, 100%);
  flex: 1 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: clamp(22px, 4dvh, 34px);
  margin: auto;
  padding: clamp(42px, 7dvh, 72px) clamp(28px, 6vw, 64px) clamp(28px, 5dvh, 48px);
  text-align: center;
}

.quiz-exit-dismiss {
  position: absolute;
  top: 12px;
  right: 12px;
}

.quiz-exit-copy {
  display: grid;
  gap: 16px;
}

.quiz-exit-copy h3 {
  max-width: 18ch;
  margin: 0;
  margin-inline: auto;
  font-size: clamp(2.2rem, 4.4vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.quiz-exit-copy h3:focus {
  outline: none;
}

.quiz-exit-copy p {
  max-width: 620px;
  margin: 0 auto;
  color: #33485c;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  line-height: 1.5;
  text-wrap: pretty;
}

.quiz-exit-sentence {
  display: block;
}

.quiz-exit-actions {
  display: grid;
  width: min(560px, 100%);
  gap: 12px;
  margin: 0 auto;
}

.quiz-cancel-button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 18px;
  background: #eef1f4;
  box-shadow:
    inset 0 0 0 1px rgb(94 107 120 / 45%),
    0 1px 2px rgb(13 27 42 / 6%);
  color: var(--star-steel);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.quiz-cancel-button:hover {
  background: #e4e9ee;
  box-shadow:
    inset 0 0 0 1px rgb(94 107 120 / 62%),
    0 1px 3px rgb(13 27 42 / 9%);
}

.next-button {
  min-height: 68px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.next-button {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(430px, 100%);
  padding: 0 12px 0 32px;
  border: 0;
  background: var(--star-blue);
  color: var(--star-white);
  font-size: 1.35rem;
}

.next-button i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgb(251 252 253 / 15%);
  font-size: 24px;
}

.quiz-return-button {
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
  font-size: 1.15rem;
}

.quiz-return-button:hover {
  background: var(--star-blue-strong);
}

.next-button:disabled {
  background: #8fa7c3;
  cursor: not-allowed;
}

.quiz-security {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #526174;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.quiz-security i {
  flex: 0 0 auto;
  font-size: 1.05rem;
}

.quiz-error {
  margin: 20px auto 0;
  color: var(--star-danger);
  font-weight: 700;
  text-align: center;
}

.quiz-complete {
  display: grid;
  justify-items: center;
  padding: 72px 16px;
  text-align: center;
}

.quiz-shell.is-immersive .quiz-complete {
  flex: 1 0 auto;
  align-content: center;
}

.quiz-complete[hidden] {
  display: none;
}

.quiz-complete > i {
  color: var(--star-blue);
  font-size: 88px;
}

.quiz-complete h3 {
  margin: 24px 0 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.035em;
}

.quiz-complete p {
  max-width: 600px;
  margin: 0;
  color: var(--star-steel);
}

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

.section-intro {
  width: min(820px, 100%);
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow,
.package-kicker {
  margin: 0 0 16px;
  color: var(--star-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.section-intro h2,
.close-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-intro > p:last-child,
.close-copy > p:last-child {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--star-steel);
  font-size: 1.15rem;
}

.process-section {
  padding: 112px 24px 132px;
  overflow: clip;
  background: #050b12;
  color: var(--star-white);
}

.process-intro {
  width: min(760px, 100%);
  margin: 0 auto 88px;
  text-align: left;
}

.process-intro h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.process-intro h2 span {
  color: var(--star-blue-bright);
}

.process-journey {
  position: relative;
  width: min(760px, 100%);
  margin: 0 auto;
}

.process-stage {
  position: relative;
  z-index: 1;
  min-height: 632px;
  padding-left: 64px;
}

.process-stage-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 17px;
  z-index: 2;
  display: block;
  width: 3px;
  pointer-events: none;
}

.process-stage-track,
.process-stage-fill {
  position: absolute;
  inset: 0;
  display: block;
  width: 3px;
}

.process-stage-track {
  background: rgb(255 255 255 / 32%);
}

.process-stage-fill {
  background: var(--star-blue);
  transform: scaleY(0);
  transform-origin: top;
}

@supports (animation-timeline: view(block)) {
  .process-stage-fill {
    animation: process-segment-fill linear both;
    animation-range: entry 54% exit 46%;
    animation-timeline: view(block);
  }
}

@supports not (animation-timeline: view(block)) {
  .process-stage.is-active .process-stage-fill {
    transform: scaleY(1);
  }
}

@keyframes process-segment-fill {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.process-stage-camera-lane {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -17px;
  display: block;
  width: 37px;
}

.process-stage-camera {
  position: sticky;
  top: calc(50dvh - 18px);
  display: grid;
  width: 37px;
  height: 36px;
  place-items: center;
  color: var(--star-blue-bright);
}

.process-stage-camera i {
  display: block;
  font-size: 30px;
  filter: drop-shadow(0 2px 8px rgb(0 0 0 / 70%));
}

.process-stage-content {
  width: min(560px, 100%);
  padding: 54px 0 72px;
  background: none;
  box-shadow: none;
}

.process-stage-title {
  margin: 0;
  color: var(--star-white);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
}

.process-stage-summary {
  max-width: 36ch;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 48%);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.444;
  text-wrap: pretty;
}

.process-stage-time {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 17px 0 0;
  color: var(--star-blue-bright);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

.process-stage-time i {
  font-size: 20px;
}

.process-media {
  width: min(280px, 100%);
  margin: 28px 0 0;
}

.process-media-shell {
  position: relative;
  width: min(280px, 100%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px;
  background: #111c27;
}

.process-media-shell::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(5 15 25 / 4%), transparent 60%, rgb(5 15 25 / 24%));
  content: "";
  pointer-events: none;
}

.process-media-shell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.98);
  transition:
    filter 360ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-stage.is-active .process-media-shell img,
.process-journey[data-active-step="1"] .process-stage[data-process-step="1"] .process-media-shell img,
.process-journey[data-active-step="2"] .process-stage[data-process-step="2"] .process-media-shell img,
.process-journey[data-active-step="3"] .process-stage[data-process-step="3"] .process-media-shell img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.025);
}

.package-section {
  padding: 112px 24px 124px;
  background: var(--star-ink);
  color: var(--star-white);
}

.package-intro .eyebrow,
.package-kicker {
  color: #84b5ed;
}

.package-intro > p:last-child {
  color: #c4d0dc;
}

.package-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(960px, 100%);
  margin: 0 auto 28px;
  border: 1px solid #647383;
}

.package-selector button {
  position: relative;
  display: grid;
  min-height: 220px;
  align-content: center;
  justify-items: center;
  padding: 24px;
  border: 0;
  border-right: 1px solid #647383;
  background: #17283a;
  color: var(--star-white);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.package-selector button:last-child {
  border-right: 0;
}

.package-selector button:hover {
  background: #21384f;
}

.package-selector button[aria-pressed="true"] {
  background: var(--star-white);
  color: var(--star-ink);
  box-shadow: inset 0 5px 0 var(--star-blue);
}

.package-count {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.package-name {
  margin-top: 16px;
  font-size: 1.25rem;
  font-weight: 700;
}

.package-price {
  margin-top: 5px;
  color: #b5c4d4;
}

.package-selector button[aria-pressed="true"] .package-price {
  color: var(--star-blue);
}

.package-badge {
  position: absolute;
  top: 20px;
  color: #85b5eb;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-selector button[aria-pressed="true"] .package-badge {
  color: var(--star-blue);
}

.package-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  width: min(var(--page-width), 100%);
  margin: 0 auto;
  border: 1px solid #81909e;
  background: var(--star-white);
  color: var(--star-ink);
}

.asset-stack {
  display: grid;
  grid-template-columns: repeat(var(--asset-columns, 4), minmax(42px, 1fr));
  gap: 10px;
  min-height: 570px;
  align-content: center;
  padding: 38px;
  border-right: 1px solid #a5b0bb;
  background: #d7dde3;
}

.asset-stack span {
  display: block;
  min-height: 150px;
  border: 1px solid #6f7e8c;
  background:
    linear-gradient(160deg, rgb(255 255 255 / 80%), rgb(136 149 162 / 35%)),
    repeating-linear-gradient(0deg, transparent 0 20px, rgb(13 27 42 / 8%) 21px 22px);
  box-shadow: 0 7px 14px rgb(13 27 42 / 11%);
}

.package-copy {
  display: grid;
  align-content: center;
  padding: 52px;
}

.package-copy h3 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.package-copy > p:not(.package-kicker) {
  margin: 24px 0 0;
  color: var(--star-steel);
  font-size: 1.12rem;
}

.package-copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.package-copy li {
  position: relative;
  padding-left: 28px;
}

.package-copy li::before {
  position: absolute;
  left: 0;
  color: var(--star-blue);
  content: "✓";
  font-weight: 700;
}

.package-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
}

.package-action-row .primary-cta {
  margin-top: 0;
}

.package-total {
  color: var(--star-ink);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.working-price-note {
  width: min(var(--page-width), 100%);
  margin: 16px auto 0;
  color: #91a2b3;
  font-size: 0.76rem;
  text-align: right;
}

.close-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 72px;
  align-items: center;
  padding: 112px max(24px, calc((100vw - var(--page-width)) / 2));
  background: #e1e7ed;
}

.close-copy > p:last-child {
  margin-inline: 0;
}

.strategy-form {
  display: grid;
  gap: 18px;
  padding: 38px;
  border: 1px solid #a7b1bb;
  background: var(--star-white);
  box-shadow: var(--shadow-soft);
}

.strategy-form label {
  display: grid;
  gap: 8px;
  color: #2e4255;
  font-weight: 700;
}

.session-button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 64px;
  margin-top: 8px;
  padding: 0 12px 0 24px;
  border: 0;
  border-radius: var(--radius-control);
  background: var(--star-blue);
  color: var(--star-white);
  font-weight: 700;
  cursor: pointer;
}

.session-button i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgb(251 252 253 / 14%);
  font-size: 22px;
}

.form-note,
.strategy-message {
  margin: 0;
  color: var(--star-steel);
  font-size: 0.82rem;
}

.strategy-message {
  color: var(--star-blue-strong);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 108px;
  padding: 24px max(24px, calc((100vw - var(--page-width)) / 2));
  background: #081523;
  color: var(--star-white);
}

.footer-brand {
  color: var(--star-white);
}

.site-footer p {
  margin: 0;
  color: #aebdcb;
  text-align: center;
}

.site-footer > a:last-child {
  justify-self: end;
  color: #8bb7e8;
  font-weight: 700;
  text-decoration: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #74a8e3;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .quiz-arrow {
    animation: arrow-cue 1.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  }

  body.quiz-is-immersive::before {
    animation: quiz-backdrop-in 260ms ease-out both;
  }

  body.quiz-is-immersive.quiz-is-closing::before {
    animation: quiz-backdrop-out 180ms cubic-bezier(0.4, 0, 1, 1) both;
  }

  @keyframes arrow-cue {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
  }

  @keyframes quiz-backdrop-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes quiz-backdrop-out {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 20px;
  }

  .desktop-nav {
    display: none;
  }

  .quiz-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .quiz-option {
    min-height: 190px;
  }

  .contact-fields {
    grid-template-columns: 1fr;
  }

  .process-intro,
  .process-journey {
    width: min(640px, 100%);
  }

  .package-preview,
  .close-section {
    grid-template-columns: 1fr;
  }

  .asset-stack {
    min-height: 440px;
    border-right: 0;
    border-bottom: 1px solid #a5b0bb;
  }

  .close-section {
    gap: 48px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer > a:last-child {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 64px;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 16px;
  }

  .site-header.is-scrolled {
    min-height: 52px;
  }

  .brand span {
    font-size: 0.86rem;
  }

  .brand-logo {
    width: 112px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 92px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .site-header.is-scrolled .header-cta {
    min-height: 36px;
    padding-inline: 10px;
  }

  .hero {
    min-height: calc(100dvh - 64px);
    place-items: start center;
  }

  .hero-reels {
    --hero-card-width: 130px;
    --hero-card-gap: 12px;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgb(4 10 16 / 34%), rgb(4 10 16 / 58%) 42%, rgb(4 10 16 / 80%)),
      radial-gradient(circle at center 38%, rgb(4 10 16 / 14%), rgb(4 10 16 / 60%) 78%);
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: clamp(178px, 25dvh, 212px) 0 50px;
  }

  .hero h1 {
    max-width: calc(100vw - 20px);
    font-size: clamp(1.9rem, 9.35vw, 2.3rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.92;
  }

  .hero p {
    max-width: 300px;
    margin-top: 42px;
    color: #b8c2cc;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 16px;
    margin-top: 42px;
  }

  .primary-cta {
    width: min(260px, 78vw);
    min-height: 56px;
    margin-top: 28px;
    padding: 0 18px 0 24px;
    font-size: 0.9rem;
  }

  .quiz-stage {
    min-height: calc(100dvh - 64px);
    padding: clamp(22px, 4dvh, 34px) 14px 30px;
  }

  .quiz-intro {
    margin-bottom: 14px;
  }

  .quiz-intro h2 {
    max-width: 350px;
    font-size: 1.8rem;
    line-height: 1.02;
  }

  .quiz-arrow {
    margin-top: 8px;
    font-size: 32px;
  }

  .quiz-shell {
    min-height: 0;
    padding: 18px 14px 20px;
    border-radius: 12px;
  }

  .quiz-modal-nav {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    min-height: 64px;
    padding: 8px 14px;
  }

  .quiz-modal-logo {
    width: 116px;
  }

  .quiz-nav-button {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .quiz-shell.is-immersive .quiz-step.is-active {
    width: 100%;
    padding: clamp(20px, 3dvh, 28px) 16px 20px;
  }

  .quiz-step h3,
  .quiz-complete h3 {
    margin: 0 0 16px;
    font-size: 1.65rem;
    line-height: 1.05;
  }

  .quiz-shell.is-immersive .quiz-step h3,
  .quiz-shell.is-immersive .quiz-complete h3 {
    margin-bottom: 18px;
    font-size: 1.75rem;
  }

  .quiz-options {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .quiz-option {
    min-height: 142px;
    padding: 14px 10px;
    gap: 10px;
  }

  .quiz-option i {
    font-size: 2.7rem;
  }

  .quiz-option span {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.15;
  }

  textarea {
    min-height: 128px;
  }

  .quiz-actions {
    align-items: stretch;
    margin-top: 20px;
  }

  .quiz-shell.is-immersive .quiz-actions {
    width: 100%;
    margin-top: 0;
    padding: 16px 16px max(16px, env(safe-area-inset-bottom));
  }

  .next-button {
    width: 100%;
    min-height: 58px;
    font-size: 1.1rem;
  }

  .next-button i {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }

  .quiz-security {
    font-size: 0.82rem;
  }

  .quiz-exit-confirmation {
    gap: 18px;
    padding: 34px 16px 18px;
  }

  .quiz-exit-dismiss {
    top: 6px;
    right: 6px;
  }

  .quiz-exit-copy {
    gap: 10px;
  }

  .quiz-exit-copy h3 {
    font-size: 1.75rem;
  }

  .quiz-exit-copy p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .quiz-cancel-button {
    min-height: 48px;
    font-size: 0.95rem;
  }

  .quiz-return-button {
    min-height: 52px;
  }

  .process-section,
  .package-section,
  .close-section {
    padding: 72px 14px;
  }

  .section-intro {
    margin-bottom: 38px;
  }

  .section-intro h2,
  .close-copy h2 {
    font-size: 2.75rem;
  }

  .process-section {
    padding: 72px 12px 96px;
  }

  .process-intro,
  .process-journey {
    width: min(366px, 100%);
  }

  .process-intro {
    margin-bottom: 72px;
  }

  .process-intro h2 {
    max-width: 350px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.3;
  }

  .process-stage {
    min-height: 632px;
    padding-left: 37px;
  }

  .process-stage-rail {
    left: 17px;
    width: 3px;
  }

  .process-stage-content {
    width: 100%;
    padding: 38px 0 54px;
    background: transparent;
    box-shadow: none;
  }

  .process-media {
    margin-top: 28px;
  }

  .package-selector button {
    min-height: 160px;
    padding: 20px 8px;
  }

  .package-count {
    font-size: 3.2rem;
  }

  .package-name {
    font-size: 1rem;
  }

  .package-price {
    font-size: 0.82rem;
  }

  .package-badge {
    top: 9px;
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .asset-stack {
    gap: 7px;
    min-height: 330px;
    padding: 20px;
  }

  .asset-stack span {
    min-height: 105px;
  }

  .package-copy,
  .strategy-form {
    padding: 26px 20px;
  }

  .package-action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .package-total {
    order: -1;
  }

  .working-price-note {
    text-align: left;
  }

  .site-footer {
    padding: 42px 20px;
  }
}

@media (max-width: 620px) and (max-height: 700px) {
  .quiz-stage {
    padding: 14px 10px 18px;
  }

  .quiz-intro {
    margin-bottom: 8px;
  }

  .quiz-intro h2 {
    max-width: 300px;
    font-size: 1.42rem;
  }

  .quiz-arrow {
    display: none;
  }

  .quiz-shell {
    padding: 12px 10px 14px;
  }

  .quiz-step h3,
  .quiz-complete h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
  }

  .quiz-options {
    gap: 6px;
  }

  .quiz-option {
    min-height: 112px;
    padding: 8px 6px;
    gap: 5px;
  }

  .quiz-option i {
    font-size: 2.15rem;
  }

  .quiz-option span {
    font-size: 0.79rem;
    line-height: 1.1;
  }

  .quiz-shell.is-immersive .quiz-modal-nav {
    min-height: 56px;
    padding-block: 4px;
  }

  .quiz-shell.is-immersive {
    --quiz-modal-edge: 8px;
  }

  .quiz-shell.is-immersive .quiz-step.is-active {
    padding: 18px 12px 14px;
  }

  .quiz-shell.is-immersive .quiz-step h3,
  .quiz-shell.is-immersive .quiz-complete h3 {
    margin-bottom: 14px;
    font-size: 1.55rem;
  }

  .quiz-shell.is-immersive .quiz-actions {
    padding-inline: 12px;
    padding-block: 12px max(12px, env(safe-area-inset-bottom));
  }

  .next-button {
    min-height: 52px;
  }

  .quiz-security {
    gap: 5px;
    font-size: 0.76rem;
  }

  .quiz-exit-confirmation {
    gap: 12px;
    padding: 28px 12px 12px;
  }

  .quiz-exit-copy h3 {
    font-size: 1.5rem;
  }

  .quiz-exit-copy p {
    font-size: 0.84rem;
  }

  .quiz-exit-actions {
    gap: 8px;
  }

  .quiz-cancel-button {
    min-height: 46px;
  }

  .quiz-return-button {
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .brand-logo,
  .header-cta,
  .process-media-shell img {
    transition: none;
  }

  .process-stage-fill {
    animation: none;
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
