/* ─────────────────────────────────────────────────────────────────────────────
   Gate IQ — Prelaunch site styles
   Builds on the shared design tokens in colors_and_type.css.
   ───────────────────────────────────────────────────────────────────────────── */

@import url("colors_and_type.css");

html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg-1);
  font-family: var(--font-body);
}
* { box-sizing: border-box; }

html.gateiq-locked body > *:not(#password-gate) {
  display: none !important;
}

/* ── Password gate ─────────────────────────────────────── */
.password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.password-gate__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.password-gate__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: center;
}
.password-gate__row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.password-gate__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.password-gate__eye {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg-3);
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 160ms ease-out;
}
.password-gate__eye:hover { color: var(--fg-1); }
.password-gate__input {
  background: var(--surface-1);
  color: var(--fg-1);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 14px 42px 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  width: 240px;
  letter-spacing: -0.005em;
  transition: border-color 160ms ease-out;
}
.password-gate__input:focus { border-color: var(--accent); }
.password-gate__input::placeholder { color: var(--fg-3); }
.password-gate__btn {
  background: var(--navy);
  color: var(--ivory);
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 160ms ease-out;
}
.password-gate__btn:hover { background: var(--navy-soft); }
.password-gate__error {
  font-family: var(--font-body);
  font-size: 13px;
  color: #c0392b;
  height: 18px;
  text-align: center;
}
.password-gate--hidden { display: none; }

::selection { background: var(--accent); color: var(--navy); }

.site {
  position: relative;
  overflow-x: clip;
}

/* ── Shared bits ─────────────────────────────────────────────── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.brand {
  text-decoration: none;
}

/* ── Scroll reveal ───────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.2, 0.6, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms ease;
}
.nav.is-scrolled { border-bottom-color: var(--hairline); }
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--fg-on-grey);
  background: var(--sky);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 2px;
  box-shadow: none;
  transition: background 160ms ease-out, color 160ms ease-out, transform 120ms ease-out;
}
.nav__cta:hover {
  background: var(--sky-deep);
  color: var(--navy);
}
.nav__cta:active { transform: scale(0.98); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: flex;
  align-items: center;
  overflow: clip;
  --hero-scroll-progress: 0;
  --hero-copy-shift: 0px;
  --hero-path-shift: 0px;
  --hero-glow-shift: 0px;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 96px 32px 120px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  transform: translate3d(0, var(--hero-copy-shift), 0);
  will-change: transform;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 26px 0 0;
  max-width: 11ch;
}
.hero__title .accent { color: var(--accent); }
.hero__sub {
  margin: 30px 0 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
}
.hero__sub strong { color: var(--fg-1); font-weight: 600; }
.hero__ctas {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 2px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: transparent;
  transition: background 160ms ease-out, color 160ms ease-out, transform 120ms ease-out, box-shadow 160ms ease-out;
}
.btn:active { transform: scale(0.98); }
.btn--brass {
  color: var(--fg-on-grey);
  background: var(--sky);
  box-shadow: none;
}
.btn--brass:hover {
  background: var(--sky-deep);
  color: var(--navy);
}
.btn--ghost {
  color: var(--fg-1);
  box-shadow: inset 0 0 0 1px var(--hairline-strong);
}
.btn--ghost:hover {
  background: color-mix(in srgb, var(--surface-2) 80%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--navy) 22%, var(--hairline-strong));
}

/* Gilded outline — dark surfaces only */
.finale .btn--brass {
  background: rgba(21, 35, 63, 0.22);
  color: var(--brass-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 0 0 1px var(--accent),
    inset 0 0 0 2px color-mix(in srgb, var(--brass-light) 35%, transparent);
}
.finale .btn--brass:hover {
  background: rgba(21, 35, 63, 0.42);
  color: var(--ivory);
  box-shadow:
    inset 0 0 0 1px var(--brass-light),
    inset 0 0 0 2px color-mix(in srgb, var(--brass-light) 55%, transparent),
    0 0 20px color-mix(in srgb, var(--accent) 18%, transparent);
}

.hero__meter {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.hero__meter strong { color: var(--fg-1); font-weight: 500; }
.hero__meter-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}
.hero__meter-pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.4); opacity: 0.9; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* aurora glow */
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate3d(0, var(--hero-glow-shift), 0);
  will-change: transform;
}
.hero__glow::before,
.hero__glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.hero__glow::before {
  width: 640px; height: 640px;
  right: -160px; top: -220px;
  background: radial-gradient(circle, var(--sky) 0%, transparent 65%);
  animation: drift-a 16s ease-in-out infinite alternate;
}
.hero__glow::after {
  width: 520px; height: 520px;
  left: -140px; bottom: -240px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 55%, transparent) 0%, transparent 65%);
  opacity: 0.28;
  animation: drift-b 20s ease-in-out infinite alternate;
}
[data-theme="dark"] .hero__glow::before { opacity: 0.14; }
[data-theme="dark"] .hero__glow::after { opacity: 0.16; }
@keyframes drift-a { from { transform: translate(0, 0); } to { transform: translate(-70px, 50px); } }
@keyframes drift-b { from { transform: translate(0, 0); } to { transform: translate(60px, -40px); } }
@media (prefers-reduced-motion: reduce) {
  .hero__glow::before, .hero__glow::after, .hero__meter-pulse::after { animation: none; }
}

/* flight path */
.hero__path {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  transform: translate3d(0, var(--hero-path-shift), 0);
  will-change: transform;
}
.hero__path--mobile { display: none; }
.hero__path .draw {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  opacity: calc(0.2 + (var(--hero-scroll-progress) * 0.35));
}
.hero__path .draw--trail {
  stroke-dasharray: 3 9;
  stroke-dashoffset: 0;
}
.hero__path .plane {
  opacity: calc(0.35 + (var(--hero-scroll-progress) * 0.65));
}
.hero__path .plane-track { will-change: transform; }
.hero__path .plane__body {
  fill: var(--bg);
  stroke: var(--accent);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.95;
}
@media (max-width: 900px) {
  .hero__path--desktop { display: none; }
  .hero__path--mobile { display: block; }
  .hero__path .draw { stroke-width: 2.1; }
  .hero__path .plane__body { stroke-width: 1.2; }
}
@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero__inner,
  .hero__glow,
  .hero__path { transform: none; }
  .hero__path .draw--trail { opacity: 0.45; stroke-dasharray: 3 9; }
  .hero__path .plane { opacity: 1; }
}

/* ── Manifesto band ──────────────────────────────────────────── */
.manifesto {
  background: var(--surface-dark);
  color: var(--fg-on-dark);
  padding: 120px 0 110px;
  position: relative;
  overflow: clip;
}
.manifesto__big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 18ch;
}
.manifesto__big em {
  font-style: normal;
  color: var(--brass-light);
}
.manifesto__grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
  border-top: 1px solid rgba(242, 236, 221, 0.14);
  padding-top: 48px;
}
.manifesto__cell-label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 14px;
}
.manifesto__cell-body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-on-dark-2);
  margin: 0;
}
.manifesto__glyph {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 420px;
  height: 420px;
  color: rgba(184, 153, 104, 0.1);
  pointer-events: none;
  user-select: none;
}
.manifesto__glyph svg {
  width: 100%;
  height: 100%;
  transform-origin: 50% 8%;
}
@keyframes bell-ding {
  0%   { transform: rotate(0deg); }
  8%   { transform: rotate(-18deg); }
  18%  { transform: rotate(16deg); }
  28%  { transform: rotate(-13deg); }
  38%  { transform: rotate(10deg); }
  48%  { transform: rotate(-7deg); }
  58%  { transform: rotate(5deg); }
  68%  { transform: rotate(-3deg); }
  78%  { transform: rotate(2deg); }
  88%  { transform: rotate(-1deg); }
  100% { transform: rotate(0deg); }
}
.manifesto__glyph.is-dinging svg {
  animation: bell-ding 1.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}
@media (prefers-reduced-motion: reduce) {
  .manifesto__glyph.is-dinging svg { animation: none; }
}

/* Typewriter cursor */
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 0.88em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: baseline;
  border-radius: 1px;
  position: relative;
  top: 0.06em;
  animation: cursor-blink 0.72s ease-in-out infinite;
}
@keyframes cursor-blink {
  0%, 42% { opacity: 1; }
  58%, 100% { opacity: 0; }
}

/* ── Glide section ───────────────────────────────────────────── */
.glide__meet {
  --meet-bubble-bg: var(--surface-2);
  --meet-bubble-stroke: var(--navy);
  appearance: none;
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 30px);
  letter-spacing: -0.02em;
  color: var(--accent);
  background: var(--meet-bubble-bg);
  padding: 16px 22px;
  border-radius: 22px;
  border-bottom-left-radius: 6px;
  border: 2px solid var(--meet-bubble-stroke);
  position: relative;
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(21, 35, 63, 0.1))
          drop-shadow(0 8px 22px rgba(21, 35, 63, 0.12))
          drop-shadow(0 18px 40px rgba(149, 121, 77, 0.18));
  transition: filter 0.2s ease, transform 0.15s ease;
}
.glide__meet:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 8px rgba(21, 35, 63, 0.14))
          drop-shadow(0 12px 30px rgba(21, 35, 63, 0.16))
          drop-shadow(0 22px 50px rgba(149, 121, 77, 0.22));
}
.glide__meet::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 15px;
  bottom: -9px;
  width: 16px;
  height: 16px;
  background: var(--meet-bubble-stroke);
  border-radius: 0 0 0 3px;
  transform: rotate(45deg);
  clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
}
.glide__meet::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 17px;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: var(--meet-bubble-bg);
  border-radius: 0 0 0 2px;
  transform: rotate(45deg);
  clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
}
[data-theme="dark"] .glide__meet {
  --meet-bubble-bg: #3C3C44;
  --meet-bubble-stroke: var(--surface-1);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28))
          drop-shadow(0 10px 28px rgba(0, 0, 0, 0.42))
          drop-shadow(0 20px 44px rgba(201, 171, 122, 0.22));
}
.glide {
  padding: 130px 0 120px;
}
.glide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.glide__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin: 22px 0 0;
  text-align: center;
}
.glide__title .accent { color: var(--accent); }
.glide__body {
  margin: 26px auto 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 480px;
  text-align: center;
}
.glide__body strong { color: var(--fg-1); font-weight: 600; }

.glide__hint {
  margin-top: 38px;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: center;
  width: 100%;
  max-width: 520px;
}

.glide__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  position: relative;
  width: 100%;
  max-width: 520px;
}
.glide__tab-indicator {
  display: none;
}
.glide__tab {
  appearance: none;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--fg-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  padding: 9px 18px;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}
.glide__tab:hover {
  color: var(--fg-1);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, transparent);
}
.glide__tab.is-active {
  background: var(--surface-dark);
  color: var(--fg-on-dark);
  border-color: var(--surface-dark);
}
.glide__tab-progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .glide__tab-indicator {
    transition: none;
  }
}

/* phone */
.phone {
  justify-self: center;
  width: min(400px, 100%);
  border-radius: 44px;
  background: var(--surface-1);
  box-shadow:
    inset 0 0 0 1px var(--hairline),
    0 30px 80px rgba(21, 35, 63, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 660px;
}
[data-theme="dark"] .phone {
  box-shadow: inset 0 0 0 1px var(--hairline), 0 30px 80px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .glide__tab {
  border-color: rgba(242, 236, 221, 0.45);
}
[data-theme="dark"] .glide__tab.is-active {
  border-color: var(--surface-dark);
}
[data-theme="dark"] .scenario-choice {
  border-color: rgba(242, 236, 221, 0.45);
}
[data-theme="dark"] .msg__option {
  border-color: rgba(242, 236, 221, 0.3);
}
.phone__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  flex-shrink: 0;
}
.phone__status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4CAF7D;
  box-shadow: 0 0 0 3px rgba(76, 175, 125, 0.18);
  flex-shrink: 0;
}
.phone__flight {
  margin-left: auto;
  color: var(--fg-3);
}
.phone__log {
  flex: 1;
  overflow-y: auto;
  overflow-x: clip;
  padding: 22px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: none;
}
.phone__log::-webkit-scrollbar { display: none; }

.msg {
  opacity: 0;
  transform: translateY(10px);
  animation: msg-in 420ms cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
@keyframes msg-in { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .msg { animation: none; opacity: 1; transform: none; }
}

.msg--event {
  align-self: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-3);
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.msg--event .msg__event-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}
.msg--ai, .msg--user {
  max-width: 86%;
  padding: 13px 16px;
  border-radius: 20px;
  font-size: 14.5px;
  line-height: 1.55;
}
.msg--ai {
  align-self: flex-start;
  background: var(--surface-2);
  color: var(--fg-1);
  border-bottom-left-radius: 6px;
}
.msg--ai strong { font-weight: 600; }
.msg--user {
  align-self: flex-end;
  background: var(--surface-dark);
  color: var(--fg-on-dark);
  border-bottom-right-radius: 6px;
}
.msg--typing {
  align-self: flex-start;
  background: var(--surface-2);
  border-radius: 20px;
  border-bottom-left-radius: 6px;
  padding: 15px 18px;
  display: inline-flex;
  gap: 5px;
}
.msg--typing i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fg-3);
  animation: typing-dot 1.1s ease-in-out infinite;
}
.msg--typing i:nth-child(2) { animation-delay: 0.15s; }
.msg--typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.msg--prompt {
  align-self: stretch;
}
.scenario-picker {
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-2) 90%, white 10%), var(--surface-2));
  border: 1px solid var(--hairline);
  border-radius: 28px;
  padding: 22px 18px 18px;
  color: var(--fg-1);
}
.scenario-picker__eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.scenario-picker__title {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.scenario-picker__body {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
}
.scenario-picker__choices {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.scenario-choice {
  appearance: none;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--fg-1);
  border-radius: 999px;
  padding: 8px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}
.scenario-choice:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}
.scenario-choice:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 65%, white 35%);
  outline-offset: 2px;
}

/* In-chat decision options */
.msg--ai.msg--options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
  max-width: 100%;
  width: 100%;
  padding: 12px 12px 14px;
}
.msg__options-intro {
  font-size: 14.5px;
  line-height: 1.55;
}
.msg__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-width: 0;
}
.msg__option {
  appearance: none;
  text-align: left;
  width: 100%;
  min-width: 0;
  padding: 11px 13px;
  border-radius: 14px;
  border: 1.5px solid rgba(21, 35, 63, 0.35);
  background: color-mix(in srgb, var(--surface-1) 70%, white 30%);
  color: var(--fg-1);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.msg__option:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--hairline));
  background: color-mix(in srgb, var(--accent) 6%, var(--surface-1));
}
.msg__option:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 65%, white 35%);
  outline-offset: 2px;
}
.msg__option.is-selected {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, var(--surface-1));
}
.msg__option:disabled:not(.is-selected) {
  opacity: 0.45;
  cursor: default;
}
.msg__option-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
}
.msg__option-name {
  min-width: 0;
  flex: 1 1 auto;
}
.msg__option-detail {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--fg-2);
  min-width: 0;
  overflow-wrap: anywhere;
}
.msg__option-rec {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  white-space: nowrap;
}

/* ── Founding (perks + countdown + signup) ───────────────────── */
.founding {
  background: var(--bg-deep);
  padding: 120px 0 130px;
}
.founding__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.founding__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.0;
  letter-spacing: -0.028em;
  margin: 22px 0 0;
  color: var(--fg-1);
}
.founding__sub {
  margin: 22px auto 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 520px;
}

/* countdown */
.counter {
  margin: 64px auto 0;
  max-width: 560px;
  text-align: center;
}
.counter__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(72px, 12vw, 128px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
}
.counter__num .accent { color: var(--accent); }
.counter__label {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.counter__bar {
  margin: 30px auto 0;
  height: 4px;
  border-radius: var(--r-pill);
  background: var(--hairline);
  overflow: hidden;
}
.counter__fill {
  height: 100%;
  width: 0%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--accent), var(--brass-light));
  transition: width 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.counter__caption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--fg-3);
}
.counter__caption strong { color: var(--fg-1); font-weight: 600; }

/* perks + form grid */
.founding__grid {
  margin-top: 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.perks__label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 26px;
}
.perk {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
}
.perk:last-child { border-bottom: 1px solid var(--hairline); }
.perk__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  padding-top: 3px;
  flex-shrink: 0;
}
.perk__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0 0 5px;
}
.perk__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}

/* signup card */
.signup-card {
  background: var(--surface-grey);
  color: var(--fg-on-grey);
  border-radius: var(--r-xl);
  padding: 44px 42px 38px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px var(--accent),
    inset 0 0 0 2px color-mix(in srgb, var(--brass-light) 40%, transparent),
    0 24px 64px color-mix(in srgb, var(--navy) 10%, transparent);
}
.signup-card::after {
  content: "g";
  position: absolute;
  right: -34px;
  bottom: -52px;
  font-family: var(--font-deco);
  font-size: 240px;
  line-height: 1;
  color: color-mix(in srgb, var(--accent) 12%, transparent);
  pointer-events: none;
}
.signup-card__label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.signup-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 14px 0 30px;
}
.signup__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.signup__input {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--navy) 14%, transparent);
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.signup__input:focus {
  border-color: var(--accent);
  background: var(--surface-1);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.signup__input::placeholder { color: rgba(21, 35, 63, 0.42); }
.signup__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.signup__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B89968' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.signup__select option { background: var(--cream); color: var(--navy); }
.signup__cta {
  margin-top: 6px;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 2px;
  background: var(--surface-dark);
  color: var(--fg-on-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  box-shadow: none;
  transition: background 160ms ease-out, color 160ms ease-out, transform 120ms ease-out;
}
.signup__cta:hover {
  background: var(--navy-soft);
  color: var(--fg-on-dark);
}
.signup__cta:active { transform: scale(0.98); }
.signup__cta:disabled { cursor: default; opacity: 0.9; }
.signup__fine {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--fg-on-grey-2);
}
.signup__fine .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  transform: translateY(-2px);
}

/* optional Stripe payment */
.signup__payment {
  margin-top: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--navy) 12%, transparent);
  background: color-mix(in srgb, var(--cream) 72%, transparent);
}
.signup__payment-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.signup__payment-checkbox {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.signup__payment-toggle-box {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 6px;
  border: 1.5px solid color-mix(in srgb, var(--navy) 22%, transparent);
  background: var(--cream);
  flex-shrink: 0;
  position: relative;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.signup__payment-checkbox:focus-visible + .signup__payment-toggle-box {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
.signup__payment-checkbox:checked + .signup__payment-toggle-box {
  border-color: var(--accent-deep);
  background: var(--accent);
}
.signup__payment-checkbox:checked + .signup__payment-toggle-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--surface-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.signup__payment-toggle-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--fg-on-grey);
}
.signup__payment-price {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.signup__payment-panel {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--navy) 10%, transparent);
}
.signup__payment-copy {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-on-grey-2);
}
.signup__payment-copy strong {
  color: var(--fg-on-grey);
  font-weight: 600;
}
.signup__payment-element {
  min-height: 44px;
}
.signup__payment-legal {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--fg-on-grey-2);
}
.signup__payment-legal a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.signup__payment-error {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #B33A3A;
}

.signup__payment-nudge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-on-grey);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  overflow: hidden;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  border-width: 0;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.22s ease, padding 0.28s ease, margin-top 0.28s ease, border-width 0s 0.28s;
}
.signup__payment-nudge.is-visible {
  max-height: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
  border-width: 1px;
  opacity: 1;
  transition: max-height 0.28s ease, opacity 0.22s ease 0.04s, padding 0.28s ease, margin-top 0.28s ease, border-width 0s;
}
.signup__payment-nudge-star {
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}

/* airport autocomplete */
.airport-wrap { position: relative; }
.airport-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--surface-1);
  border: 1px solid color-mix(in srgb, var(--navy) 12%, transparent);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 44px color-mix(in srgb, var(--navy) 16%, transparent);
}
.airport-dropdown--open { display: block; }
.airport-option {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 11px 16px;
  cursor: pointer;
}
.airport-option:not(:last-child) { border-bottom: 1px solid color-mix(in srgb, var(--navy) 8%, transparent); }
.airport-option--active,
.airport-option:hover { background: color-mix(in srgb, var(--accent) 12%, var(--cream)); }
.airport-option__code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--accent-deep);
  flex-shrink: 0;
}
.airport-option__name {
  font-size: 13px;
  color: var(--fg-on-grey-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Founder letter ──────────────────────────────────────────── */
.story {
  padding: 130px 0 140px;
}
.story__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
}
.story__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 22px 0 0;
}
.story__body {
  margin-top: 40px;
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--fg-2);
}
.story__body p { margin: 0 0 26px; }
.story__body strong { color: var(--fg-1); font-weight: 600; }
.story__body .lede {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.5;
  color: var(--fg-1);
}
.story__sig {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--hairline);
  padding-top: 32px;
}
.story__sig-glyph {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story__sig-glyph img {
  display: block;
  border: 0;
  outline: 0;
  box-shadow: none;
}
.story__sig-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.story__sig-role {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-top: 3px;
}

/* ── Final CTA band ──────────────────────────────────────────── */
.finale {
  position: relative;
  overflow: hidden;
  color: var(--fg-on-dark);
  text-align: center;
  padding: 110px 32px;
}
.finale__bg {
  position: absolute;
  inset: -20% 0;
  background: url('/assets/Background%20Golden%20Hour%20Sunset%20Luxury%20Travel.jpg') center / cover no-repeat;
  transform: translateY(var(--finale-parallax, 0px));
  will-change: transform;
  z-index: 0;
}
.finale__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(21, 35, 63, 0.68) 0%,
    rgba(21, 35, 63, 0.82) 100%);
}
.finale__title,
.finale__sub,
.finale > .btn {
  position: relative;
  z-index: 1;
}
.finale__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin: 0 0 18px;
}
.finale__sub {
  color: var(--fg-on-dark-2);
  font-size: 16px;
  margin: 0 0 36px;
}

/* ── Footer (shared with footer.js markup) ───────────────────── */
#site-footer { background: var(--navy-deep); }
.foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 56px 56px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 236, 221, 0.45);
}
.foot__left { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.foot__line { color: rgba(242, 236, 221, 0.45); }
.foot__divider { color: var(--brass); margin: 12px 0; }
.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
}
.foot__link { color: rgba(242, 236, 221, 0.45); text-decoration: none; }
.foot__link:hover { color: rgba(242, 236, 221, 0.85); }
.foot__link--credit { color: var(--accent); text-decoration: none; }
.foot__link--credit:hover { color: var(--brass-light); }

/* ── Cookie banner (same as main site) ───────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0 24px 24px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 280ms ease-out, transform 280ms ease-out;
}
.cookie-banner--visible { pointer-events: auto; opacity: 1; transform: translateY(0); }
.cookie-banner--dismissed { pointer-events: none; opacity: 0; transform: translateY(16px); }
.cookie-banner--hidden { display: none; }
.cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--surface-dark);
  color: var(--fg-on-dark);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
}
.cookie-banner__text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-on-dark-2);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}
.cookie-banner__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.cookie-banner__policy { color: var(--accent); text-decoration: none; white-space: nowrap; }
.cookie-banner__policy:hover { text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
  border: none;
  border-radius: 2px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 160ms ease-out, color 160ms ease-out, box-shadow 160ms ease-out, transform 120ms ease-out;
}
.cookie-banner__btn:active { transform: scale(0.97); }
.cookie-banner__btn--decline {
  background: transparent;
  color: var(--fg-on-dark-2);
  box-shadow: inset 0 0 0 1px rgba(242, 236, 221, 0.22);
}
.cookie-banner__btn--decline:hover {
  background: rgba(242, 236, 221, 0.08);
  color: var(--fg-on-dark);
}
.cookie-banner__btn--accept {
  background: transparent;
  color: var(--brass-light);
  box-shadow:
    inset 0 0 0 1px var(--accent),
    inset 0 0 0 2px color-mix(in srgb, var(--brass-light) 35%, transparent);
}
.cookie-banner__btn--accept:hover {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--ivory);
  box-shadow:
    inset 0 0 0 1px var(--brass-light),
    inset 0 0 0 2px color-mix(in srgb, var(--brass-light) 50%, transparent);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 980px) {
  .glide__grid { grid-template-columns: 1fr; gap: 56px; }
  .glide__copy { max-width: 560px; margin-left: auto; margin-right: auto; }
  .glide__tab { font-size: 12.5px; padding: 8px 14px; }
  .founding__grid { grid-template-columns: 1fr; gap: 56px; }
  .manifesto__grid { grid-template-columns: 1fr; gap: 32px; }
  .manifesto__glyph { font-size: 300px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 22px; }
  .nav__inner { padding: 14px 22px; }
  .hero__inner { padding: 64px 22px 90px; }
  .hero__sub { font-size: 16.5px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .manifesto { padding: 88px 0 80px; }
  .glide { padding: 96px 0 88px; }
  .glide__tab { font-size: 12px; }
  .phone {
    width: 100%;
    height: min(640px, 72vh);
    min-height: 520px;
    border-radius: 32px;
  }
  .phone__log {
    padding: 16px 14px 20px;
    gap: 12px;
  }
  .msg--ai, .msg--user {
    max-width: 92%;
    font-size: 14px;
    padding: 12px 14px;
  }
  .msg--ai.msg--options {
    max-width: 100%;
    padding: 10px 10px 12px;
  }
  .msg__options-intro { font-size: 14px; }
  .msg__option { padding: 10px 11px; border-radius: 12px; }
  .msg__option-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 13px;
  }
  .msg__option-name { flex: none; width: 100%; }
  .msg__option-detail { font-size: 12px; line-height: 1.4; }
  .scenario-picker { padding: 18px 14px 14px; border-radius: 24px; }
  .scenario-picker__title { font-size: 21px; }
  .scenario-picker__choices { grid-template-columns: 1fr; }
  .scenario-choice { padding: 12px 14px; font-size: 13px; }
  .founding { padding: 90px 0 96px; }
  .signup-card { padding: 34px 26px 30px; border-radius: 28px; }
  .signup__row2 { grid-template-columns: 1fr; }
  .signup__payment { padding: 14px 14px; }
  .story { padding: 96px 0 104px; }
  .story__inner { padding: 0 22px; }
  .story__body { font-size: 16.5px; }
  .story__sig {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .finale { padding: 84px 22px; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: flex-end; }
  .password-gate__row { flex-direction: column; width: 100%; padding: 0 24px; }
  .password-gate__input-wrap { width: 100%; }
  .password-gate__input { width: 100%; }
  .password-gate__btn { width: 100%; justify-content: center; }
  .foot { padding: 32px 20px 48px; }
  .foot__links { gap: 12px 20px; }
}

/* checkout success */
.checkout-success {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
  padding: 120px 24px 80px;
}
.checkout-success__card {
  width: min(100%, 560px);
  background: var(--surface-grey);
  color: var(--fg-on-grey);
  border-radius: var(--r-xl);
  padding: 48px 42px;
  box-shadow:
    inset 0 0 0 1px var(--accent),
    inset 0 0 0 2px color-mix(in srgb, var(--brass-light) 40%, transparent),
    0 24px 64px color-mix(in srgb, var(--navy) 10%, transparent);
}
.checkout-success__title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}
.checkout-success__body {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-on-grey-2);
}
.checkout-success__body strong {
  color: var(--fg-on-grey);
}
.checkout-success__body a {
  color: var(--accent-deep);
}
