/* ============================================================
   PLAN4ME — marketing site
   Design system: design.md (Subframe extraction)
   Achromatic neutral ramp, Inter, gel buttons, rounded bands.
   ============================================================ */

:root {
  /* colors */
  --primary-background: #fafafa;
  --hero-background: #dadada;
  --card-background: #ededed;
  --primary-text: #171717;
  --secondary-text: #a3a3a3;
  --neutral-100: #f0f0f0;
  --neutral-300: #e6e6e6;
  --neutral-500: #5c5c5c;
  --neutral-600: #363636;
  --neutral-700: #363636;
  --neutral-800: #242424;
  --white: #ffffff;
  --darken-50: rgba(0, 0, 0, 0.06);
  --darken-100: rgba(0, 0, 0, 0.08);
  --neutral-border: #ededed;
  /* Forest: the single accent. Used sparingly (success, focus, link hover,
     small indicators) — never on primary buttons, headlines or the logo. */
  --forest: #1b5e20;
  --forest-tint: #eef3f0;

  /* type */
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-serif: 'Instrument Serif', Georgia, serif;
  --f-mono: 'Fragment Mono', ui-monospace, 'SF Mono', monospace;

  /* radius */
  --rounded-sm: 8px;
  --rounded-md: 16px;
  --rounded-lg: 24px;

  /* spacing */
  --space-section: 128px;
  --space-xxl: 64px;
  --space-xl: 48px;
  --space-lg: 32px;
  --space-md: 24px;
  --space-sm: 16px;
  --space-xs: 8px;

  --shadow-lg: 0 12px 32px -4px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.08);
  --nav-h: 88px;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  background: var(--primary-background);
  color: var(--primary-text);
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: -0.025em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection {
  background: var(--neutral-800);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
img,
video {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- type scale ---------- */
.h1 {
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.05em;
}
.title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -0.05em;
}
.body-lg {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.17;
  letter-spacing: -0.025em;
}
.caption {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
}
.support {
  color: var(--secondary-text);
}
.display-2 {
  font-family: var(--f-serif);
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}
.mono {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: 0;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--primary-background);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.preloader__brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.preloader__bar {
  width: 148px;
  height: 2px;
  border-radius: 2px;
  background: var(--card-background);
  overflow: hidden;
}
.preloader__bar i {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 2px;
  background: var(--neutral-800);
  transform: scaleX(0);
  transform-origin: left;
}
body:not([data-loading]) .preloader {
  display: none;
}

/* ============================================================
   NAV — fixed, transparent, no scroll chrome
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 18px;
}
.nav__glyph {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--neutral-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-text);
  transition: color 0.2s;
}
.nav__links a:hover {
  color: var(--primary-text);
  text-decoration: underline;
  text-decoration-color: var(--forest);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary-text);
  transition: transform 0.3s;
}
.nav__burger.is-open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* mobile menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(250, 250, 250, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  visibility: hidden;
  opacity: 0;
}
.menu__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu__links a {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.2;
}
.menu__foot {
  position: absolute;
  bottom: 32px;
  left: 24px;
  color: var(--secondary-text);
  font-size: 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: var(--rounded-md);
  corner-shape: squircle;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.025em;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
}
/* dark primary button (flat top per user preference; subtle bottom shade only) */
.btn--primary {
  background: var(--neutral-800);
  color: var(--white);
  box-shadow: inset 0 -4px 4px -2px rgba(0, 0, 0, 0.25);
}
.btn--primary:hover {
  background: var(--neutral-700);
  box-shadow: inset 0 -3px 3px -2px rgba(0, 0, 0, 0.2);
}
.btn--primary:active {
  box-shadow: inset 0 -3px 4px -2px rgba(0, 0, 0, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--primary-text);
}
.btn--ghost:hover {
  background: var(--darken-50);
}
.btn--ghost:active {
  background: var(--darken-100);
}
.btn--card {
  width: 100%;
  height: 56px;
  border-radius: var(--rounded-lg);
  corner-shape: squircle;
  background: var(--darken-50);
  color: var(--primary-text);
}
.btn--card:hover {
  background: var(--darken-100);
}
.btn--card--on-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.btn--card--on-dark:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 24px) 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: clip;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 720px;
  background: linear-gradient(180deg, var(--hero-background), transparent);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  /* faint grain over the softbox falloff */
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 720px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero__globewrap {
  position: relative;
  width: min(520px, 86vw);
  height: min(520px, 86vw);
  margin-bottom: -24px;
}
.hero__globe {
  width: 100%;
  height: 100%;
}
.hero__globewrap::after {
  /* contact shadow: the object sits on the seamless gray */
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 58%;
  height: 7%;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.16), transparent 70%);
  filter: blur(6px);
  z-index: -1;
}
.hero__eyebrow {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--forest);
  margin-bottom: 18px;
}
.hero__title {
  max-width: 768px;
  margin-bottom: 24px;
}
.hero__sub {
  max-width: 600px;
  margin-bottom: 32px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--space-section) 24px;
}
.section__head {
  max-width: 768px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.section__eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--forest);
  margin-bottom: -8px;
}

/* marquee — directly under hero, no container */
.dests {
  padding: 8px 0 64px;
  overflow: clip;
  -webkit-mask-image: linear-gradient(to right, transparent, black 25%, black 75%, transparent);
  mask-image: linear-gradient(to right, transparent, black 25%, black 75%, transparent);
}
.dests__track {
  display: flex;
  width: max-content;
  gap: 56px;
  padding-right: 56px;
  animation: marquee 46s linear infinite;
}
.dests__track span {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: var(--secondary-text);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   STEP BANDS (how it works)
   ============================================================ */
.stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}
.stack__card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--card-background);
  border-radius: var(--rounded-lg);
  padding: 40px 32px;
}
.stack__card .stack__visual {
  margin-top: auto;
}
.stack__card .device {
  width: min(288px, 100%);
}
.stack__step {
  color: var(--secondary-text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.stack__card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.17;
  margin-bottom: 12px;
}
.stack__card .stack__meta > p:last-child {
  color: var(--neutral-500);
  max-width: 44ch;
}

/* ============================================================
   DEMO BAND (real app screenshots)
   ============================================================ */
.show__band {
  max-width: 1072px;
  margin: 0 auto;
  background: var(--card-background);
  border-radius: var(--rounded-lg);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.show__days {
  display: flex;
  gap: 8px;
}
.show__day {
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-500);
  padding: 10px 18px;
  border-radius: var(--rounded-md);
  corner-shape: squircle;
  background: var(--primary-background);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.show__day.is-active {
  color: var(--white);
  background: var(--neutral-800);
  box-shadow: inset 0 -3px 3px -2px rgba(0, 0, 0, 0.25);
}

/* demo screen switcher */
.show__shots {
  position: relative;
}
.demo-screen {
  display: none;
}
.demo-screen.is-current {
  display: block;
}


/* ============================================================
   APP UI — live rebuilds of real app screens (no screenshots)
   ============================================================ */
.device {
  position: relative;
  width: min(320px, 74vw);
  aspect-ratio: 421 / 877;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 56px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
}
.device__screen {
  position: relative;
  height: 100%;
  border-radius: 46px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  font-size: 11px;
  letter-spacing: -0.01em;
  color: var(--primary-text);
}
.device__island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 22px;
  border-radius: 12px;
  background: #000;
  z-index: 5;
}
.ui-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px 8px;
  font-weight: 600;
  font-size: 11px;
}
.ui-pad {
  padding: 0 16px;
}
.ui-h1 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  padding: 8px 16px 6px;
}
.ui-progress2 {
  display: flex;
  gap: 8px;
  padding: 0 16px 12px;
}
.ui-progress2 i {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--neutral-300);
}
.ui-progress2 i.on {
  background: var(--primary-text);
}
.ui-label {
  font-size: 12px;
  font-weight: 700;
  padding: 10px 16px 6px;
}
.ui-label span {
  font-weight: 500;
  color: var(--secondary-text);
  font-size: 10px;
  margin-left: 4px;
}
.ui-inputrow {
  display: flex;
  gap: 8px;
  padding: 0 16px;
}
.ui-input {
  flex: 1;
  border: 1px solid var(--neutral-300);
  border-radius: 12px;
  padding: 9px 10px;
  color: var(--secondary-text);
  background: var(--white);
  white-space: nowrap;
  overflow: hidden;
}
.ui-chiprow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 16px 2px;
}
.ui-chip {
  background: var(--neutral-100);
  border-radius: 10px;
  padding: 7px 11px;
  font-weight: 500;
  white-space: nowrap;
}
.ui-chip--dark {
  background: var(--neutral-800);
  color: var(--white);
}
.ui-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 0;
  color: var(--secondary-text);
}
.ui-stepper .keys {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ui-stepper .keys b {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--neutral-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary-text);
}
.ui-cta {
  margin: auto 16px 8px;
  background: var(--neutral-800);
  color: var(--white);
  border-radius: 14px;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 0 -3px 3px -2px rgba(0, 0, 0, 0.3);
}
.ui-tabbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 6px auto 10px;
  background: var(--white);
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 5px 14px;
  width: max-content;
  color: var(--neutral-500);
  font-size: 12px;
}
.ui-tabbar .plan {
  background: var(--neutral-800);
  color: var(--white);
  border-radius: 100px;
  padding: 7px 13px;
  font-weight: 600;
}
.ui-card {
  background: var(--neutral-100);
  border-radius: 14px;
  margin: 4px 16px 0;
  padding: 10px 12px;
}
.ui-card .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
.ui-card .row small {
  display: block;
  color: var(--secondary-text);
  font-size: 9px;
}
.ui-card .row b.k {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ui-card .row .ctrls {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
.ui-card .row .ctrls .minus {
  background: var(--white);
  color: var(--secondary-text);
}
.ui-card .row .ctrls .plus {
  background: var(--neutral-800);
  color: var(--white);
}
.ui-textarea {
  border: 1px solid var(--neutral-300);
  border-radius: 12px;
  margin: 4px 16px 0;
  padding: 10px;
  min-height: 52px;
  color: var(--secondary-text);
}
/* generating screen */
.ui-genwrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 0 24px;
}
.ui-genwrap .orb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 6px;
}
.ui-genwrap h4 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.ui-genwrap .city {
  color: var(--secondary-text);
  font-size: 13px;
}
.ui-genwrap .status {
  font-size: 11px;
  color: var(--neutral-500);
  margin-top: 6px;
}
.ui-genbar {
  width: 70%;
  height: 3px;
  border-radius: 2px;
  background: var(--neutral-300);
  overflow: hidden;
  margin-top: 8px;
}
.ui-genbar i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--primary-text);
  transform-origin: left;
  animation: fill-bar 3.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
@keyframes fill-bar {
  0% { transform: scaleX(0); }
  78% { transform: scaleX(1); }
  100% { transform: scaleX(1); }
}
/* maps */
.ui-map {
  position: relative;
  flex: 1;
  min-height: 0;
  background: #f2f1ef;
  overflow: hidden;
}
.ui-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ui-map .town {
  position: absolute;
  font-size: 9px;
  color: var(--secondary-text);
}
/* trip header */
.ui-triphead {
  text-align: center;
  padding: 6px 16px 0;
}
.ui-triphead b {
  font-size: 15px;
  letter-spacing: -0.02em;
}
.ui-triphead small {
  display: block;
  color: var(--secondary-text);
  font-size: 9px;
}
.ui-seg {
  display: flex;
  gap: 6px;
  padding: 8px 16px 8px;
}
.ui-seg span {
  background: var(--neutral-100);
  color: var(--neutral-500);
  border-radius: 100px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
}
.ui-seg span.on {
  background: var(--neutral-800);
  color: var(--white);
}
.ui-days {
  display: flex;
  gap: 14px;
  padding: 0 16px 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--secondary-text);
  white-space: nowrap;
  overflow: hidden;
}
.ui-days span.on {
  color: var(--primary-text);
  border-bottom: 2px solid var(--primary-text);
  padding-bottom: 2px;
}
.ui-acts {
  padding: 6px 16px 10px;
}
.ui-acts .hdr {
  font-size: 10px;
  color: var(--secondary-text);
  padding: 4px 0 6px;
}
.ui-act {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  border-bottom: 1px solid var(--neutral-100);
}
.ui-act .n {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}
.ui-act .nm {
  font-weight: 600;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-act .meta {
  margin-left: auto;
  text-align: right;
  font-size: 9px;
  color: var(--secondary-text);
  flex-shrink: 0;
}
/* stop-detail sheet */
.ui-sheet {
  background: var(--white);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  padding: 12px 16px 14px;
}
.ui-sheet h5 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ui-sheet .desc {
  color: var(--neutral-500);
  font-size: 10px;
  margin-top: 3px;
}
.ui-sheet .meta {
  display: flex;
  gap: 10px;
  color: var(--secondary-text);
  font-size: 9px;
  margin-top: 8px;
}
.ui-sheet .rating {
  font-size: 10px;
  font-weight: 600;
  margin-top: 4px;
}
.ui-sheet .cta {
  margin-top: 10px;
  background: var(--neutral-800);
  color: var(--white);
  border-radius: 100px;
  text-align: center;
  padding: 10px;
  font-size: 11px;
  font-weight: 600;
}
/* multi-city trip overview */
.ui-trip {
  padding: 10px 16px 12px;
  display: flex;
  flex-direction: column;
}
.ui-leg {
  background: var(--neutral-100);
  border-radius: 14px;
  padding: 10px 12px;
}
.ui-leg__top {
  display: flex;
  align-items: center;
  gap: 7px;
}
.ui-leg__top b {
  font-size: 13px;
  letter-spacing: -0.02em;
}
.ui-flag {
  font-size: 13px;
  line-height: 1;
}
.ui-leg__days {
  margin-left: auto;
  font-size: 9px;
  font-weight: 600;
  color: var(--secondary-text);
}
.ui-leg__hotel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 7px;
  font-size: 10px;
  color: var(--neutral-500);
}
.ui-leg__hotel small {
  color: var(--secondary-text);
  font-size: 9px;
}
.ui-hop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 8px 0;
}
.ui-hop::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  border-left: 2px dotted var(--neutral-300);
}
.ui-hop__chip {
  position: relative;
  background: var(--forest-tint);
  color: var(--forest);
  font-size: 9px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
/* flight detail + boarding pass */
.ui-flightwrap {
  flex: 1;
  min-height: 0;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ui-flight {
  border: 1px solid var(--neutral-300);
  border-radius: 16px;
  padding: 13px 14px;
}
.ui-flight__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}
.ui-flight__air {
  font-weight: 700;
}
.ui-flight__tag {
  color: var(--forest);
  font-weight: 600;
  font-size: 9px;
}
.ui-flight__route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 13px 0 11px;
}
.ui-flight__end {
  text-align: center;
}
.ui-flight__end b {
  display: block;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.ui-flight__end span {
  font-size: 11px;
  font-weight: 600;
}
.ui-flight__end small {
  display: block;
  color: var(--secondary-text);
  font-size: 8px;
}
.ui-flight__mid {
  flex: 1;
  text-align: center;
  color: var(--secondary-text);
  font-size: 8px;
}
.ui-flight__mid .ln {
  display: block;
  position: relative;
  margin-top: 4px;
  font-size: 11px;
  color: var(--primary-text);
}
.ui-flight__mid .ln::before,
.ui-flight__mid .ln::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  border-top: 1.5px dashed var(--neutral-300);
}
.ui-flight__mid .ln::before {
  left: 0;
}
.ui-flight__mid .ln::after {
  right: 0;
}
.ui-flight__foot {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 9px;
  color: var(--secondary-text);
  padding-top: 11px;
  border-top: 1px solid var(--neutral-100);
}
.ui-board {
  margin-top: 11px;
  background: var(--neutral-800);
  color: var(--white);
  border-radius: 100px;
  text-align: center;
  padding: 9px;
  font-size: 10px;
  font-weight: 600;
  box-shadow: inset 0 -3px 3px -2px rgba(0, 0, 0, 0.25);
}
.ui-stayrow {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--neutral-300);
  border-radius: 16px;
  padding: 11px 12px;
}
.ui-stayrow__ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.ui-stayrow__txt b {
  display: block;
  font-size: 11px;
  font-weight: 600;
}
.ui-stayrow__txt small {
  color: var(--secondary-text);
  font-size: 9px;
}
.ui-stayrow__cf {
  margin-left: auto;
  color: var(--secondary-text);
  font-size: 9px;
  flex-shrink: 0;
}
/* explore screen */
.ui-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 14px;
  background: var(--white);
  border-radius: 100px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  padding: 9px 13px;
  font-size: 10px;
  color: var(--neutral-500);
  position: relative;
  z-index: 2;
}
.ui-fab {
  position: absolute;
  right: 12px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--neutral-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  z-index: 2;
}
.ui-explore-sheet {
  background: var(--white);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  padding: 12px 14px 10px;
}
.ui-explore-sheet .top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.ui-explore-sheet h5 {
  font-size: 14px;
  font-weight: 700;
}
.ui-explore-sheet .count {
  font-size: 9px;
  color: var(--secondary-text);
}
.ui-nearby {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.ui-nearby figure {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}
.ui-nearby img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ui-nearby figcaption {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(250, 250, 250, 0.9);
  border-radius: 100px;
  font-size: 8px;
  font-weight: 600;
  padding: 3px 7px;
}

/* ============================================================
   FEATURE CAROUSEL
   ============================================================ */
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px max(24px, calc((100vw - 1072px) / 2)) 20px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.feature {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--card-background);
  border-radius: var(--rounded-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.17;
}
.feature p {
  color: var(--neutral-500);
}
.feature .swapdemo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
}
.swapdemo span {
  padding: 8px 14px;
  border-radius: 12px;
  corner-shape: squircle;
}
.swap-out {
  background: var(--primary-background);
  color: var(--secondary-text);
  text-decoration: line-through;
}
.swap-arrow {
  color: var(--secondary-text);
  padding: 0 !important;
}
.swap-in {
  background: var(--neutral-800);
  color: var(--white);
}

/* ============================================================
   PLACES — masonry of framed imagery
   ============================================================ */
.places__masonry {
  columns: 3;
  column-gap: 16px;
  max-width: 1072px;
  margin: 0 auto;
}
.place {
  position: relative;
  border-radius: var(--rounded-lg);
  background: var(--card-background);
  break-inside: avoid;
  margin-bottom: 16px;
  padding: 8px;
  perspective: 1600px;
}
.place[data-flip] {
  cursor: pointer;
}

/* ---- flip mechanics: front sits in flow (defines height), back is the 180° face ---- */
.place__flip {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.72s cubic-bezier(0.62, 0.04, 0.18, 1), box-shadow 0.4s ease;
}
.place.is-flipped .place__flip {
  transform: rotateY(180deg);
}
.place__face {
  border-radius: var(--rounded-md);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.place__face--front {
  position: relative;
  display: block;
}
.place__face--back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 15px 14px 12px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--darken-100);
  overflow: hidden;
}

.place img,
.place video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--rounded-md);
}
.place__live {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-text);
  background: rgba(250, 250, 250, 0.88);
  padding: 5px 10px;
  border-radius: 100px;
}
.place__live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest);
}
.place__face--front figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 10px 6px;
}
.place__face--front strong {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.place__face--front figcaption span {
  font-size: 13px;
  color: var(--secondary-text);
  text-align: right;
}

/* ---- back face: the researched picks ---- */
.place__back-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--darken-100);
  font-family: var(--f-serif);
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--primary-text);
}
.place__back-title span {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--secondary-text);
}
.picks {
  flex: 1;
  min-height: 0;
  margin: 0;
  padding: 2px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 13px;
  overflow-y: auto;
  scrollbar-width: none;
}
.picks::-webkit-scrollbar {
  display: none;
}
.pick {
  display: flex;
  align-items: center;
  gap: 11px;
}
.pick__ico {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--forest);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pick__body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.pick__cat {
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary-text);
}
.pick__val {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary-text);
}
.place__back-hint {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondary-text);
  opacity: 0.65;
}

/* ---- full-card click/keyboard target ---- */
.place__toggle {
  position: absolute;
  inset: 0;
  z-index: 4;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--rounded-lg);
  -webkit-tap-highlight-color: transparent;
}
.place__toggle:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

/* ---- neutral hover for the un-hinted cards ---- */
.place[data-flip]:not([data-hint]):hover:not(.is-flipped) .place__flip {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px -24px rgba(0, 0, 0, 0.5);
}

/* ---- HINT: continuous 3D "peek" that signals the card flips (Tokyo only) ---- */
@keyframes place-peek {
  0%,
  14%,
  100% {
    transform: rotateY(0deg);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  58% {
    transform: rotateY(-15deg);
    box-shadow: 26px 20px 44px -22px rgba(0, 0, 0, 0.45);
  }
}
.place[data-hint='wobble']:not(.is-flipped) .place__flip {
  animation: place-peek 3.4s ease-in-out infinite;
}
.place__tease {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%) scale(0.94);
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(23, 23, 23, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.place[data-flip]:hover:not(.is-flipped) .place__tease {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ---- reduced motion: cross-fade instead of 3D flip ---- */
@media (prefers-reduced-motion: reduce) {
  .place__flip {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
  .place__face--back {
    transform: none;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .place.is-flipped .place__face--back {
    opacity: 1;
  }
  .place__face--front {
    transition: opacity 0.2s ease;
  }
  .place.is-flipped .place__face--front {
    opacity: 0;
  }
  .place__tease {
    transition: none;
  }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1072px;
  margin: 0 auto;
}
.review {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  background: var(--card-background);
  border-radius: var(--rounded-lg);
  padding: 32px;
}
.review blockquote {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.025em;
}
.review figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review figcaption img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.review strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.review figcaption span {
  font-size: 14px;
  color: var(--secondary-text);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
}
.price-card {
  background: var(--card-background);
  border-radius: var(--rounded-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.price-card__name {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--secondary-text);
}
.price-card__figure {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-card__per {
  color: var(--secondary-text);
  font-size: 14px;
}
.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-card li {
  font-size: 18px;
  color: var(--neutral-500);
}
.price-card--dark {
  background: var(--neutral-800);
  color: var(--white);
}
.price-card--dark .price-card__name {
  color: rgba(255, 255, 255, 0.55);
}
.price-card--dark li {
  color: rgba(255, 255, 255, 0.75);
}
.price-card--dark .price-card__per {
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   FAQ — plain rows, spacing not rules
   ============================================================ */
.faq__list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq__item {
  padding: 20px 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.17;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--secondary-text);
  transition: transform 0.3s;
}
.faq__icon::before {
  left: 0;
  top: 6px;
  width: 14px;
  height: 2px;
}
.faq__icon::after {
  left: 6px;
  top: 0;
  width: 2px;
  height: 14px;
}
.faq__item[open] .faq__icon::after {
  transform: scaleY(0);
}
.faq__body {
  padding: 14px 0 6px;
  color: var(--secondary-text);
}
.faq__body p {
  max-width: 64ch;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.boarding {
  text-align: center;
}
.prompt {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto 32px;
  padding: 16px 20px;
  border-radius: var(--rounded-md);
  corner-shape: squircle;
  background: var(--card-background);
}
.prompt__caret {
  width: 2px;
  height: 18px;
  background: var(--primary-text);
  flex-shrink: 0;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}
.prompt__text {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--primary-text);
  text-align: left;
  flex: 1;
  min-height: 1.4em;
}
.prompt__go {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--forest);
  padding: 8px 12px;
  border-radius: 10px;
  corner-shape: squircle;
  flex-shrink: 0;
}
.boarding__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.boarding__note {
  color: var(--secondary-text);
  font-size: 14px;
}

/* ============================================================
   FOOTER — never inverts
   ============================================================ */
.footer {
  padding: 96px 24px 40px;
}
.footer__top {
  max-width: 1072px;
  margin: 0 auto 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.footer__cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer__cols > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__h {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-text);
  margin-bottom: 6px;
}
.footer__cols a {
  color: var(--secondary-text);
  font-size: 18px;
  transition: color 0.2s;
}
.footer__cols a:hover {
  color: var(--primary-text);
  text-decoration: underline;
  text-decoration-color: var(--forest);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.footer__base {
  max-width: 1072px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--secondary-text);
  font-size: 14px;
  padding-top: 24px;
}

/* ============================================================
   SUBPAGES
   ============================================================ */
.page {
  max-width: 768px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 56px) 24px 128px;
}
.page__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.prose {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--neutral-500);
}
.prose h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.14;
  color: var(--primary-text);
  margin-top: 28px;
}
.prose ul {
  list-style: disc;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prose a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose .caption {
  color: var(--secondary-text);
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}
.contact-card {
  background: var(--card-background);
  border-radius: var(--rounded-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-card h2 {
  margin: 0 !important;
  font-size: 24px !important;
}
.contact-card a {
  font-weight: 600;
}

/* ============================================================
   WAITLIST (modal + inline form)
   ============================================================ */
.wl-form {
  width: 100%;
}
.boarding__form {
  max-width: 620px;
  margin: 0 auto;
}
.wl-field {
  display: flex;
  gap: 8px;
}
.wl-input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 18px;
  border: 1px solid var(--neutral-300);
  border-radius: var(--rounded-md);
  corner-shape: squircle;
  background: var(--white);
  font: inherit;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--primary-text);
}
.wl-input::placeholder {
  color: var(--secondary-text);
}
.wl-submit {
  flex-shrink: 0;
  height: 52px;
}
.wl-msg {
  font-size: 13px;
  margin-top: 10px;
  min-height: 1em;
  text-align: left;
  color: var(--secondary-text);
}
.wl-msg.is-error {
  color: #b42318;
}
.wl-done {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-text);
  padding: 2px 0;
}
.wl-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* modal */
.wl-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0.25s;
}
.wl-modal[aria-hidden='false'] {
  visibility: visible;
  opacity: 1;
}
.wl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.wl-modal__card {
  position: relative;
  width: min(440px, 100%);
  background: var(--white);
  border-radius: var(--rounded-lg);
  padding: 40px 32px 28px;
  box-shadow: var(--shadow-lg);
  transform: translateY(8px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.wl-modal[aria-hidden='false'] .wl-modal__card {
  transform: none;
}
.wl-modal__x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--neutral-100);
  color: var(--neutral-500);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wl-modal__card h2 {
  margin-bottom: 8px;
}
.wl-modal__sub {
  margin-bottom: 18px;
}
.wl-fine {
  font-size: 12px;
  color: var(--secondary-text);
  margin-top: 14px;
}
.wl-fine a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   RESPONSIVE — single 767px breakpoint
   ============================================================ */
/* Below the 3-up comfortable width: one full-width card per row,
   text beside the phone (roomier than text-over-phone at this size). */
@media (min-width: 768px) and (max-width: 1024px) {
  .stack {
    grid-template-columns: 1fr;
  }
  .stack__card {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 48px;
    align-items: center;
    padding: 48px;
  }
  .stack__card .stack__visual {
    margin-top: 0;
  }
  .stack__card .device {
    width: min(320px, 74vw);
  }
}

@media (max-width: 1023px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 767px) {
  .wl-field {
    flex-direction: column;
  }
  .wl-input {
    flex: none; /* in column direction flex-basis 0 collapses the height */
  }
  .wl-submit {
    width: 100%;
  }
  .h1 {
    font-size: 56px;
  }
  .h2 {
    font-size: 48px;
  }
  .h4 {
    font-size: 28px;
  }
  .body-lg {
    font-size: 18px;
  }
  body {
    font-size: 16px;
  }
  .display-2 {
    font-size: 64px;
  }
  .nav__links {
    display: none;
  }
  .nav__right .btn--ghost {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .section {
    padding: 64px 24px;
  }
  .hero__globewrap {
    margin-bottom: -12px;
  }
  .stack {
    grid-template-columns: 1fr;
  }
  .stack__card {
    gap: 28px;
    padding: 28px;
  }
  .stack__card .device {
    width: min(320px, 74vw);
  }
  .show__band {
    padding: 40px 20px;
  }
  .feature {
    flex-basis: 300px;
  }
  .places__masonry {
    columns: 2;
    column-gap: 10px;
  }
  .place {
    margin-bottom: 10px;
    padding: 6px;
  }
  .place__face--back {
    padding: 12px 11px 10px;
    gap: 6px;
  }
  .place__back-title {
    font-size: 18px;
    padding-bottom: 7px;
  }
  .picks {
    gap: 8px;
  }
  .pick__val {
    font-size: 12.5px;
  }
  .place__back-hint {
    display: none;
  }
  .reviews__grid,
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  .faq__item summary {
    font-size: 18px;
  }
  .boarding__cta .btn {
    width: 100%;
  }
  .prompt__go {
    display: none;
  }
  .footer {
    padding: 64px 24px 32px;
  }
  .page {
    padding: calc(var(--nav-h) + 24px) 24px 64px;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .wl-modal,
  .wl-modal__card {
    transition: none;
  }
  .dests__track,
  .prompt__caret {
    animation: none !important;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
