:root {
  --navy: #061d34;
  --navy-deep: #031526;
  --navy-soft: #0c3152;
  --navy-lift: #123d61;
  --gold: #e5ac63;
  --yellow: #f4bd55;
  --cream: #fff7e9;
  --white: #ffffff;
  --ink: #10243a;
  --muted: #b8c6d6;
  --muted-dark: #5c7085;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(8, 57, 95, 0.14);
  --success: #67bd9e;
  --focus: #ffe29a;
  --shadow: 0 24px 70px rgba(1, 14, 28, 0.2);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shell: min(1348px, calc(100% - 48px));
  --font: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
  scroll-behavior: auto !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--cream);
  color: var(--navy);
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.motion-toggle {
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(3, 21, 38, 0.88);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.motion-toggle svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.motion-toggle[aria-pressed="true"] svg {
  fill: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms var(--ease),
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.button svg,
.text-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: linear-gradient(135deg, #f1b55e 0%, #ffd078 100%);
  box-shadow: 0 14px 34px rgba(229, 172, 99, 0.2);
  color: var(--navy-deep);
}

.button-primary:hover:not(:disabled) {
  box-shadow: 0 18px 38px rgba(229, 172, 99, 0.3);
}

.button-outline {
  border-color: rgba(229, 172, 99, 0.68);
  background: transparent;
  color: var(--gold);
}

.button-outline:hover:not(:disabled) {
  background: rgba(229, 172, 99, 0.08);
}

.button-quiet {
  min-height: 48px;
  padding-inline: 12px;
  background: transparent;
  color: var(--muted);
}

.button-quiet:hover:not(:disabled) {
  color: var(--white);
}

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

.button-whatsapp {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(229, 172, 99, 0.4);
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.text-link.light {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(130deg, #061e36 0%, #03182d 48%, #021836 62%, #021836 100%);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0.45px, transparent 0.45px);
  background-size: 5px 5px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero::after {
  display: none;
}

.hero-nav {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 122px;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  text-decoration: none;
}

.brand-lockup img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 500;
}

.campaign-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(229, 172, 99, 0.65);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.campaign-chip svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: center;
  min-height: calc(100svh - 162px);
  padding: 30px 0 110px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-right: 24px;
}

.hero h1 {
  max-width: 870px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 4.7vw, 68px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero-title-line {
  display: block;
}

.hero-copy > p:not(.hero-meta) {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
}

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

.hero-actions .button {
  min-width: 366px;
  min-height: 62px;
  font-size: 16px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-meta svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-art {
  position: absolute;
  z-index: 1;
  top: -122px;
  right: -1vw;
  width: min(44vw, 660px);
  height: calc(100% + 122px);
  overflow: hidden;
  pointer-events: none;
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: inset(0 0 5% 0);
  object-fit: contain;
  object-position: center top;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 10%, black 100%),
    linear-gradient(to bottom, transparent 0%, black 14%, black 80%, transparent 96%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, black 10%, black 100%),
    linear-gradient(to bottom, transparent 0%, black 14%, black 80%, transparent 96%);
  mask-composite: intersect;
}

.hero-scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 23px;
  left: 50%;
  width: 26px;
  height: 43px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.hero-scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--gold);
  animation: scroll-cue 1.8s ease infinite;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes scroll-cue {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 17px);
    opacity: 0;
  }
}

.experience-intro {
  position: relative;
  padding: 118px 0 104px;
  background: var(--cream);
  color: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 8vw, 120px);
}

.section-number {
  margin: 0 0 20px;
  color: #967046;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-grid h2,
.sources-section h2 {
  max-width: 700px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.intro-copy {
  align-self: end;
}

.intro-copy p {
  margin: 0 0 26px;
  color: #40566c;
  font-size: 18px;
}

.intro-copy .button-outline {
  border-color: rgba(8, 57, 95, 0.38);
  color: var(--navy);
}

.journey-map {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin-top: 76px;
  border-top: 1px solid rgba(8, 57, 95, 0.18);
}

.map-item {
  position: relative;
  min-width: 0;
  padding: 29px 14px 0 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.map-item::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.map-item strong {
  display: block;
  color: #967046;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-item span {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.map-item:disabled {
  cursor: default;
  opacity: 0.48;
}

.journey-app {
  position: relative;
  background: var(--navy);
}

.progress-dock {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 21, 38, 0.92);
  backdrop-filter: blur(18px);
}

.progress-inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.62fr) 1.4fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.progress-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.progress-copy strong {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.progress-copy span {
  overflow: hidden;
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progress-track {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
}

.progress-segment {
  height: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.progress-segment.is-complete,
.progress-segment.is-active {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 18px rgba(229, 172, 99, 0.35);
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-step {
  min-height: calc(100svh - 76px);
  padding: clamp(80px, 9vw, 128px) 0;
  background:
    radial-gradient(circle at 94% 12%, rgba(229, 172, 99, 0.09), transparent 28%),
    linear-gradient(155deg, #061d34 0%, #082743 62%, #061d34 100%);
}

.journey-step:nth-of-type(even) {
  background:
    radial-gradient(circle at 5% 87%, rgba(28, 102, 144, 0.18), transparent 34%),
    linear-gradient(145deg, #03182d 0%, #08243d 100%);
}

.journey-step[hidden] {
  display: none;
}

.journey-step.is-active .step-shell {
  animation: step-enter 550ms var(--ease) both;
}

@keyframes step-enter {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.step-shell {
  max-width: 1080px;
}

.step-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.step-heading-split {
  display: grid;
  max-width: none;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
}

.step-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.step-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.step-heading > p:not(.step-kicker),
.step-heading-split > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.step-heading-split > p {
  margin: 0;
}

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

.mood-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 174px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition:
    transform 200ms var(--ease),
    border-color 200ms ease,
    background 200ms ease;
}

.mood-option:hover,
.mood-option[aria-pressed="true"] {
  transform: translateY(-4px);
  border-color: rgba(229, 172, 99, 0.78);
  background: rgba(229, 172, 99, 0.1);
}

.mood-option[aria-pressed="true"]::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.mood-symbol {
  position: relative;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border: 1px solid rgba(229, 172, 99, 0.5);
  border-radius: 50%;
}

.mood-symbol::before,
.mood-symbol::after {
  position: absolute;
  top: 19px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.mood-symbol::before {
  left: 15px;
}

.mood-symbol::after {
  right: 15px;
}

.mood-symbol span {
  position: absolute;
  right: 13px;
  bottom: 12px;
  left: 13px;
  height: 8px;
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 50% 50%;
}

.tone-neutral .mood-symbol span {
  bottom: 14px;
  height: 0;
  border-radius: 0;
}

.tone-tired .mood-symbol span,
.tone-care .mood-symbol span {
  bottom: 8px;
  transform: rotate(180deg);
}

.mood-option strong {
  max-width: 150px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.response-panel,
.result-panel {
  margin-top: 24px;
  padding: 24px 26px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.06);
}

.response-panel p,
.result-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.result-panel h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 25px;
}

.result-panel .result-disclaimer {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.education-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-bottom: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(229, 172, 99, 0.36);
  border-radius: var(--radius-sm);
  background: rgba(229, 172, 99, 0.07);
}

.education-notice svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.education-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.question-block {
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.question-block fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.question-block legend {
  width: 100%;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.question-number {
  margin-right: 9px;
  color: var(--gold);
  font-size: 12px;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.answer-option {
  position: relative;
}

.answer-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.answer-option span {
  display: grid;
  min-height: 46px;
  padding: 9px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.answer-option input:checked + span {
  border-color: var(--gold);
  background: rgba(229, 172, 99, 0.12);
  color: var(--white);
}

.answer-option input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.assessment-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.accordion-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.accordion-trigger {
  display: grid;
  width: 100%;
  min-height: 86px;
  padding: 20px 0;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 650;
  text-align: left;
}

.accordion-trigger svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: transform 180ms ease;
}

.accordion-trigger[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.accordion-panel {
  max-width: 800px;
  padding: 0 0 28px;
  color: var(--muted);
}

.accordion-panel p {
  margin: 0 0 14px;
}

.source-link {
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.data-band {
  margin: 84px calc(50% - 50vw) 0;
  padding: 72px max(24px, calc((100vw - 1080px) / 2));
  background: var(--cream);
  color: var(--ink);
}

.band-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.band-heading h3,
.subsection-heading h3,
.video-copy h3,
.passport h3,
.support-panel h3,
.completion-panel h3 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 640;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.band-heading h3 {
  color: var(--navy);
}

.band-heading p {
  max-width: 430px;
  margin: 0;
  color: #556a7f;
}

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

.data-item {
  padding-top: 22px;
  border-top: 2px solid var(--gold);
}

.data-item strong {
  display: block;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.05em;
}

.data-item p {
  min-height: 54px;
  margin: 5px 0 13px;
  color: #40566c;
  font-size: 14px;
}

.data-item .source-link {
  color: #78572f;
}

.signals-section {
  margin-top: 92px;
}

.subsection-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.subsection-heading p {
  margin: 0;
  color: var(--muted);
}

.signals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
}

.signal-button {
  display: grid;
  min-height: 82px;
  padding: 20px 22px;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 16px;
  border: 0;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.signal-button:hover,
.signal-button[aria-expanded="true"] {
  background: var(--navy-soft);
}

.signal-index {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.signal-copy strong {
  display: block;
  font-size: 14px;
}

.signal-copy span {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  opacity: 0;
  transition:
    max-height 220ms ease,
    opacity 220ms ease,
    margin-top 220ms ease;
}

.signal-button[aria-expanded="true"] .signal-copy span {
  max-height: 90px;
  margin-top: 8px;
  opacity: 1;
}

.signal-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.context-note {
  max-width: 840px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.professionals-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.professional {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 54px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.professional h3 {
  margin: 0;
  color: var(--white);
  font-size: 26px;
  letter-spacing: -0.03em;
}

.professional-copy p {
  margin: 0 0 11px;
  color: var(--muted);
}

.professional-copy strong {
  color: var(--gold);
}

.supervision-card {
  display: grid;
  margin-top: 44px;
  padding: 26px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(229, 172, 99, 0.4);
  border-radius: var(--radius-md);
  background: rgba(229, 172, 99, 0.08);
}

.supervision-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

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

.supervision-card strong {
  display: block;
  color: var(--white);
  font-size: 16px;
}

.myth-game {
  position: relative;
  min-height: 330px;
  padding: 46px;
  overflow: hidden;
  border: 1px solid rgba(229, 172, 99, 0.3);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(229, 172, 99, 0.16), transparent 33%),
    rgba(255, 255, 255, 0.04);
}

.myth-game::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(229, 172, 99, 0.15);
  border-radius: 50%;
  content: "";
}

.myth-card {
  position: relative;
  z-index: 1;
}

.myth-card > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.myth-card h3 {
  max-width: 780px;
  margin: 18px 0 36px;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 580;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

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

.myth-answer {
  min-width: 150px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.myth-answer:hover {
  border-color: var(--gold);
}

.myth-feedback {
  max-width: 760px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
}

.myth-feedback strong {
  color: var(--gold);
}

.myth-counter {
  margin-top: 15px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.video-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 50px;
  margin-top: 88px;
}

.video-copy p:not(.step-kicker) {
  color: var(--muted);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  background: var(--navy-deep);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-local-fallback {
  display: flex;
  height: 100%;
  padding: clamp(28px, 5vw, 54px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background:
    radial-gradient(circle at 88% 15%, rgba(229, 172, 99, 0.18), transparent 34%),
    linear-gradient(135deg, #0a3153, #061a31);
}

.video-local-fallback[hidden] {
  display: none;
}

.video-local-fallback strong {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.video-local-fallback p {
  max-width: 530px;
  margin: 14px 0 24px;
  color: var(--muted);
}

.quiz-form .question-block {
  margin-bottom: 14px;
}

.quiz-form .answer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quiz-explanation {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.commitment-option {
  display: grid;
  min-height: 82px;
  padding: 18px 20px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.commitment-option:hover,
.commitment-option[aria-checked="true"] {
  border-color: var(--gold);
  background: rgba(229, 172, 99, 0.09);
}

.commitment-radio {
  width: 21px;
  height: 21px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.commitment-option[aria-checked="true"] .commitment-radio {
  border: 6px solid var(--gold);
  background: var(--navy);
}

.commitment-card {
  position: relative;
  margin-top: 34px;
  padding: clamp(34px, 6vw, 66px);
  overflow: hidden;
  border: 1px solid rgba(229, 172, 99, 0.45);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, #0a3153, #061a31);
  box-shadow: var(--shadow);
}

.commitment-card > img {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 250px;
  height: 250px;
  object-fit: contain;
  opacity: 0.08;
}

.commitment-card > p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.commitment-card > strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 750px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.commitment-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.participation-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.participation-form label:not(.check-field) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.participation-form label > span {
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
}

.participation-form label small {
  color: var(--muted);
  font-weight: 500;
}

.participation-form input[type="text"],
.participation-form input[type="tel"] {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(3, 21, 38, 0.54);
  color: var(--white);
}

.participation-form input[type="text"]:focus,
.participation-form input[type="tel"]:focus {
  border-color: var(--gold);
}

.honeypot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.privacy-note {
  grid-column: 1 / -1;
  padding: 20px 22px;
  border: 1px solid rgba(229, 172, 99, 0.3);
  border-radius: 12px;
  background: rgba(229, 172, 99, 0.07);
}

.privacy-note strong {
  display: block;
  margin-bottom: 9px;
  color: var(--white);
}

.privacy-note p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.6;
}

.privacy-note a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.check-field {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
}

.check-field input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.participation-form .button,
.form-mode,
.form-status {
  grid-column: 1 / -1;
}

.form-mode {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  min-height: 18px;
  margin: -8px 0 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.completion-submission-status {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(6, 29, 52, 0.1);
  font-size: 13px;
  font-weight: 700;
}

.completion-panel {
  position: relative;
  margin-top: 34px;
  padding: 52px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold), #f5c982);
  color: var(--navy-deep);
  box-shadow: var(--shadow);
}

.completion-panel::after {
  position: absolute;
  top: -42%;
  right: -12%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(6, 29, 52, 0.18);
  border-radius: 50%;
  content: "";
}

.completion-panel .step-kicker {
  color: var(--navy);
}

.completion-panel > p:not(.step-kicker) {
  position: relative;
  z-index: 1;
  max-width: 670px;
}

.completion-mark {
  position: absolute;
  z-index: 0;
  right: 32px;
  bottom: 20px;
}

.completion-mark img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  opacity: 0.12;
  filter: brightness(0) saturate(100%) invert(11%) sepia(29%) saturate(1462%) hue-rotate(170deg);
}

.completion-panel .button {
  position: relative;
  z-index: 2;
}

.seal-result {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 800px;
  margin-top: 28px;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 26px;
}

.seal-result > img {
  display: block;
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid rgba(6, 29, 52, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(6, 29, 52, 0.2);
  object-fit: cover;
}

.seal-result > img[hidden] {
  display: none;
}

.seal-save > p {
  margin: 0 0 16px;
  color: var(--navy-deep);
  font-weight: 700;
}

.seal-save > small {
  display: block;
  max-width: 520px;
  margin-top: 12px;
  color: rgba(6, 29, 52, 0.72);
  font-size: 12px;
}

.seal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-seal-secondary {
  border: 1px solid rgba(6, 29, 52, 0.34);
  background: transparent;
  color: var(--navy-deep);
}

.button-seal-secondary:hover:not(:disabled) {
  border-color: var(--navy-deep);
  background: rgba(6, 29, 52, 0.08);
}

.passport {
  margin-top: 48px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(229, 172, 99, 0.42);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 2%, rgba(229, 172, 99, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.035);
}

.passport-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}

.passport-heading > strong {
  padding-top: 10px;
  color: var(--gold);
  font-size: 14px;
}

.passport-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.passport-slot {
  position: relative;
  display: grid;
  min-height: 175px;
  padding: 16px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.44);
  text-align: center;
}

.passport-slot img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.25;
}

.passport-slot span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.passport-slot.is-earned {
  border-style: solid;
  border-color: var(--gold);
  background: rgba(229, 172, 99, 0.1);
  color: var(--white);
}

.passport-slot.is-earned img {
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(229, 172, 99, 0.45));
}

.reward-copy {
  max-width: 820px;
  margin: 30px 0 22px;
}

.reward-copy h4 {
  margin: 0 0 9px;
  color: var(--white);
  font-size: 20px;
}

.reward-copy p,
.reward-copy small {
  color: var(--muted);
  font-size: 12px;
}

.reward-copy p {
  margin: 0 0 8px;
}

.support-panel {
  display: grid;
  margin-top: 48px;
  padding: clamp(30px, 5vw, 52px);
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  color: var(--navy);
}

.support-panel .step-kicker {
  color: #8a6337;
}

.support-panel h3 {
  color: var(--navy);
}

.support-panel p {
  color: #455a70;
}

.support-action {
  padding-left: 40px;
  border-left: 1px solid rgba(8, 57, 95, 0.18);
}

.support-action > div {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.support-action .button-light {
  background: var(--navy);
  color: var(--white);
}

.support-action .text-link {
  color: var(--navy);
  border-color: rgba(8, 57, 95, 0.35);
}

.final-actions {
  justify-content: space-between;
}

.sources-section {
  padding: 110px 0;
  background: var(--white);
  color: var(--ink);
}

.sources-section .subsection-heading {
  display: block;
}

.sources-list {
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.sources-list li {
  border-bottom: 1px solid var(--line-dark);
}

.sources-list a {
  display: grid;
  padding: 20px 0;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  text-decoration: none;
}

.sources-list .source-index {
  color: #977047;
  font-size: 11px;
  font-weight: 900;
}

.sources-list strong {
  font-size: 14px;
}

.sources-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #977047;
  stroke-width: 1.6;
}

.site-footer {
  padding: 76px 0 22px;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.75fr;
  gap: 70px;
}

.footer-grid > div:first-child img {
  width: 210px;
}

.footer-grid p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid strong {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-links a {
  color: var(--white);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 78px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 13px 16px;
  transform: translateY(18px);
  border: 1px solid rgba(229, 172, 99, 0.4);
  border-radius: 10px;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
  color: var(--white);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.hidden-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 40px, 860px);
  }

  .hero-content {
    grid-template-columns: 1.25fr minmax(250px, 0.55fr);
  }

  .hero-art {
    right: -15vw;
    width: 58vw;
    opacity: 0.82;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(46px, 6.5vw, 66px);
  }

  .hero-title-line {
    display: inline;
  }

  .journey-map {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 28px;
  }

  .map-item:nth-child(n + 5) {
    border-top: 1px solid rgba(8, 57, 95, 0.18);
    padding-top: 29px;
  }

  .map-item:nth-child(n + 5)::before {
    top: -6px;
  }

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

  .data-band {
    padding-inline: max(20px, calc((100vw - 860px) / 2));
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-lg: 22px;
  }

  .motion-toggle {
    right: 12px;
    bottom: 12px;
    min-height: 38px;
  }

  .motion-toggle span {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-nav {
    min-height: 94px;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-lockup img {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .campaign-chip {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .campaign-chip svg {
    width: 17px;
    height: 17px;
  }

  .hero-content {
    display: block;
    min-height: calc(100svh - 94px);
    padding: 8vh 0 74px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(40px, 11vw, 58px);
  }

  .hero-copy > p:not(.hero-meta) {
    max-width: 540px;
    margin-top: 24px;
    padding-right: 15vw;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
  }

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

  .hero-meta {
    align-items: flex-start;
    max-width: 300px;
    margin-top: 25px;
    font-size: 12px;
  }

  .hero-art {
    z-index: -1;
    top: 8%;
    right: -6%;
    width: 92vw;
    height: 82%;
    opacity: 0.34;
  }

  .hero-art img {
    object-position: center top;
  }

  .hero-scroll-cue {
    display: none;
  }

  .experience-intro {
    padding: 84px 0 76px;
  }

  .intro-grid,
  .step-heading-split,
  .video-section,
  .support-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-grid h2,
  .sources-section h2 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .journey-map {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 52px;
  }

  .map-item:nth-child(n + 3) {
    border-top: 1px solid rgba(8, 57, 95, 0.18);
    padding-top: 29px;
  }

  .map-item:nth-child(n + 3)::before {
    top: -6px;
  }

  .progress-inner {
    min-height: 68px;
    grid-template-columns: 1fr auto;
    gap: 15px;
  }

  .progress-track {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: -16px;
    padding-bottom: 10px;
  }

  .progress-copy span {
    max-width: 250px;
  }

  .journey-step {
    min-height: calc(100svh - 68px);
    padding: 72px 0;
  }

  .step-heading {
    margin-bottom: 36px;
  }

  .step-heading h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .step-heading > p:not(.step-kicker),
  .step-heading-split > p {
    font-size: 15px;
  }

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

  .mood-option {
    min-height: 148px;
    padding: 18px;
  }

  .mood-symbol {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
  }

  .mood-symbol::before,
  .mood-symbol::after {
    top: 17px;
  }

  .answer-grid,
  .quiz-form .answer-grid {
    grid-template-columns: 1fr;
  }

  .answer-option span {
    justify-items: start;
    min-height: 44px;
    padding-inline: 14px;
  }

  .assessment-actions,
  .commitment-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .step-actions {
    align-items: stretch;
  }

  .step-actions .button {
    flex: 1;
  }

  .band-heading,
  .subsection-heading,
  .passport-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .data-band {
    padding-block: 62px;
  }

  .data-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .data-item p {
    min-height: 0;
  }

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

  .professional {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .myth-game {
    min-height: 380px;
    padding: 30px 24px;
  }

  .myth-actions {
    flex-direction: column;
  }

  .myth-answer {
    width: 100%;
  }

  .video-section {
    margin-top: 70px;
  }

  .video-copy {
    order: 1;
  }

  .video-frame {
    order: 2;
  }

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

  .participation-form {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .participation-form label,
  .participation-form .button,
  .form-mode,
  .form-status,
  .privacy-note {
    grid-column: 1;
  }

  .completion-panel {
    padding: 36px 24px;
  }

  .seal-result {
    grid-template-columns: 1fr;
  }

  .seal-result > img {
    width: min(100%, 280px);
  }

  .seal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seal-actions .button {
    width: 100%;
  }

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

  .support-action {
    padding: 28px 0 0;
    border-top: 1px solid rgba(8, 57, 95, 0.18);
    border-left: 0;
  }

  .support-action > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .sources-section {
    padding: 82px 0;
  }

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

@media (max-width: 470px) {
  .campaign-chip span {
    display: none;
  }

  .campaign-chip {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .hero-copy > p:not(.hero-meta) {
    padding-right: 0;
  }

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

  .mood-option {
    min-height: 90px;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .mood-symbol {
    flex: 0 0 48px;
    margin: 0;
  }

  .question-block {
    padding: 18px 15px;
  }

  .step-actions {
    flex-direction: column-reverse;
  }

  .passport-slots {
    grid-template-columns: 1fr 1fr;
  }

  .passport-slot {
    min-height: 145px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
