/* otrip.io — static site. One stylesheet, mobile-first, three breakpoints. */

:root {
  --teal: #0D9488;
  --teal-7: #0F766E;
  --teal-8: #115E59;
  --deep: #042F2E;
  --teal-50: #F0FDFA;
  --teal-100: #CCFBF1;
  --teal-300: #5EEAD4;
  --z-50: #FAFAFA;
  --z-100: #F4F4F5;
  --z-200: #E4E4E7;
  --z-300: #D4D4D8;
  --z-400: #A1A1AA;
  --z-500: #71717A;
  --z-600: #52525B;
  --z-700: #3F3F46;
  --z-800: #27272A;
  --z-900: #18181B;
  --z-950: #09090B;
  --error: #EF4444;
  --shell: 1200px;
  --pad: 20px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --emoji: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--z-900);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
a { color: var(--teal-7); text-decoration: none; }
a:hover { color: var(--teal-8); }

/* ── Wordmark ── */
.logo {
  display: inline-block;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--z-900);
  fill: var(--teal);
}
/* The design's wordmark metrics, verbatim (site/design/home-v3.mjs LOGO):
   the pin is 0.77em wide, 0.897em tall and sits on the baseline with a
   -0.14em drop, so it reads as the capital O of "Otrip". */
.logo svg { display: inline-block; vertical-align: baseline; width: 0.77em; height: 0.897em; margin: 0 0.045em -0.14em 0; overflow: visible; }
.logo--light { color: #FFFFFF; fill: #FFFFFF; }
/* The app icon, where the mark stands alone. */
.mark { display: block; border-radius: 22%; }
.mark--lg { border-radius: 20px; box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .45); }

/* ── Buttons, chips ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.btn--sm { height: 44px; padding: 0 18px; font-size: 15px; }
.btn--lg { height: 56px; font-size: 17px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--teal); color: #FFFFFF; }
.btn--primary:hover { background: var(--teal-7); color: #FFFFFF; }
.btn--outline { background: #FFFFFF; color: var(--z-800); box-shadow: inset 0 0 0 1.5px var(--z-200); }
.btn--outline:hover { color: var(--z-900); box-shadow: inset 0 0 0 1.5px var(--z-300); }
.btn--ghost { background: var(--z-100); color: var(--z-900); }
.btn--glass { background: rgba(255, 255, 255, .16); color: #FFFFFF; }
.btn--glass:hover { background: rgba(255, 255, 255, .24); color: #FFFFFF; }
.btn--danger { background: var(--error); color: #FFFFFF; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--z-100);
  color: var(--z-700);
  font-family: var(--emoji);
  font-size: 13.5px;
  font-weight: 600;
}
.chip--teal { background: var(--teal-50); color: var(--teal-7); box-shadow: inset 0 0 0 1px var(--teal-100); }
.chip--glass { background: rgba(255, 255, 255, .18); color: #FFFFFF; backdrop-filter: blur(8px); }
.chip--dark { background: rgba(255, 255, 255, .16); color: rgba(255, 255, 255, .92); }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
  padding: 0 var(--pad);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--z-100);
}
.nav__brand { display: flex; align-items: center; }
.nav__links { display: none; gap: 26px; }
.nav__links a { font-size: 16px; font-weight: 600; color: var(--z-600); }
.nav__links a:hover { color: var(--teal); }
.nav--dark { background: rgba(9, 9, 11, .72); border-bottom-color: rgba(255, 255, 255, .08); }
/* Home: the header sits on the hero photo, as in the design. */
.nav--over { position: absolute; inset: 0 0 auto; background: none; backdrop-filter: none; border: 0; height: 124px; padding-top: 30px; align-items: flex-start; z-index: 30; }
.nav--over .nav__links a { color: rgba(255, 255, 255, .9); }
.nav--over .nav__links a:hover { color: #FFFFFF; }
.btn--light { background: #FFFFFF; color: var(--teal-7); }
.btn--light:hover { background: #FFFFFF; color: var(--teal-8); }
.nav--dark .logo { color: #FFFFFF; fill: #FFFFFF; }
.nav--dark .nav__links a { color: rgba(255, 255, 255, .78); }

/* ── Footer ── */
.foot { background: var(--deep); color: rgba(255, 255, 255, .7); padding: clamp(44px, 6vw, 72px) var(--pad) 36px; }
.foot__inner { max-width: var(--shell); margin: 0 auto; display: grid; gap: clamp(28px, 4vw, 60px); }
.foot__brand p { margin: 16px 0 0; font-size: 16px; line-height: 1.5; color: rgba(255, 255, 255, .7); max-width: 34ch; }
.foot__social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.foot__social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .78); transition: background .15s, color .15s; }
.foot__social a:hover { background: rgba(255, 255, 255, .16); color: #FFFFFF; }
.foot__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 28px; }
.foot__cols h2 { margin: 0 0 14px; font-size: 12.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-300); }
.foot__cols a { display: block; margin-bottom: 10px; font-size: 15.5px; color: rgba(255, 255, 255, .78); }
.foot__cols a:hover { color: #FFFFFF; }
.foot__legal { max-width: var(--shell); margin: clamp(32px, 4vw, 56px) auto 0; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13.5px; }
.foot__co { display: grid; gap: 4px; line-height: 1.5; }
.foot__legal { align-items: flex-end; }
.foot__legal a { color: inherit; }
.foot__legal a:hover { color: #FFFFFF; }
.foot__mark { font-weight: 800; letter-spacing: 3px; color: rgba(255, 255, 255, .45); }

/* ── Shell helpers ── */
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }
.shell--narrow { max-width: 780px; }
.section { padding: 64px 0; }
.section--tint { background: linear-gradient(180deg, var(--teal-50), #FFFFFF); }
.section--dark { background: var(--z-950); color: #FFFFFF; }
/* The numbered pin marker that threads the home sections together.
   Named `marker`, not `stop`: `.stop` is the trip page's route card. */
.marker { display: flex; flex-direction: column; align-items: center; margin-top: -64px; }
.marker__line { width: 0; height: 84px; border-left: 3px dashed rgba(13, 148, 136, .4); }
.section--dark .marker__line { border-left-color: rgba(94, 234, 212, .45); }
.marker__dot { width: 62px; height: 62px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 10px rgba(13, 148, 136, .12); display: grid; place-items: center; fill: #FFFFFF; }
.section--dark .marker__dot { box-shadow: 0 0 0 10px rgba(45, 212, 191, .14); }
.eyebrow { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; font-size: 13px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase; color: var(--teal); }
.eyebrow__num { opacity: .55; }
.section--dark .eyebrow { color: var(--teal-300); }
.h1 { margin: 0; font-size: clamp(38px, 8vw, 68px); line-height: 1.04; font-weight: 800; letter-spacing: -0.035em; }
.h2 { margin: 0; font-size: clamp(30px, 5.2vw, 52px); line-height: 1.06; font-weight: 800; letter-spacing: -0.03em; }
.h3 { margin: 0; font-size: clamp(21px, 3vw, 27px); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
.lead { margin: 14px 0 0; font-size: clamp(16px, 2.2vw, 19px); line-height: 1.6; color: var(--z-600); }
.section--dark .lead { color: rgba(255, 255, 255, .74); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.head { max-width: 720px; margin: 0 auto; text-align: center; }
.head .h2 { margin-top: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips--center { justify-content: center; }
.badges { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.badges--center { justify-content: center; }
.badges img { display: block; width: auto; height: clamp(44px, 4vw, 58px); border-radius: 8px; object-fit: contain; }

/* ── Hero ── */
.hero { position: relative; min-height: clamp(560px, 66vw, 940px); display: flex; align-items: flex-start; overflow: hidden; }
.hero > .hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% 40%; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4, 47, 46, .62) 0%, rgba(4, 47, 46, .3) 40%, rgba(4, 47, 46, .6) 72%, rgba(4, 47, 46, .94) 100%); }
.hero__body { position: relative; width: 100%; max-width: 1040px; margin: 0 auto; padding: clamp(150px, 15vw, 210px) var(--pad) clamp(60px, 8vw, 120px); color: #FFFFFF; display: grid; justify-items: center; text-align: center; gap: 22px; }
.hero__body h1 { margin: 0; max-width: 16ch; font-size: clamp(40px, 5.9vw, 84px); line-height: 1.05; font-weight: 800; letter-spacing: -0.038em; text-shadow: 0 4px 30px rgba(0, 0, 0, .25); }
.hero__body p { margin: 0; max-width: 760px; font-size: clamp(16px, 1.55vw, 22px); line-height: 1.5; font-weight: 500; color: rgba(255, 255, 255, .92); }
.hero__pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.hero__pill { display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 16px; border-radius: 17px; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .28); font-size: 14px; font-weight: 600; color: #FFFFFF; }
.hero__pill i { width: 8px; height: 8px; border-radius: 50%; background: #86EFAC; }
.hero__cta { margin-top: 8px; }
.hero__tail { position: absolute; left: 50%; bottom: 0; width: 0; height: clamp(70px, 8vw, 110px); border-left: 3px dashed rgba(255, 255, 255, .55); }

/* ── Feature rows ── */
.row { display: grid; gap: 36px; align-items: center; }
.row__media { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; }
.phone { position: relative; flex: 0 1 auto; width: clamp(150px, 38vw, 240px); border-radius: 30px; padding: 7px; background: #0B0F0E; box-shadow: 0 30px 60px -24px rgba(4, 47, 46, .5); }
.phone img { display: block; width: 100%; height: auto; border-radius: 24px; aspect-ratio: 440 / 956; object-fit: cover; object-position: top; }
/* Phones sit straight and never overlap: a rotated phone clipped its
   neighbour's screen at small widths. */
.phone--tilt-l, .phone--tilt-r { transform: none; }
.spread { margin: 0; flex: 1 1 340px; max-width: 460px; }
.spread img { display: block; width: 100%; height: auto; border-radius: 16px; box-shadow: 0 30px 60px -30px rgba(4, 47, 46, .5); }
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature svg { flex: 0 0 auto; color: var(--teal); margin-top: 2px; }
.feature__t { font-size: 17px; font-weight: 700; }
.feature__b { margin-top: 4px; font-size: 15.5px; line-height: 1.55; color: var(--z-600); }

/* ── Reel band ── */
.reels { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; overflow: hidden; padding: 0 2px; }
.reel { position: relative; flex: 0 1 auto; min-width: 0; width: clamp(96px, 19vw, 190px); aspect-ratio: 9 / 16; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px -28px rgba(0, 0, 0, .8); }
.reel--hero { flex: 0 0 auto; width: clamp(190px, 40vw, 330px); border-radius: 26px; box-shadow: 0 50px 100px -30px rgba(20, 184, 166, .45); }
.reel > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .28) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, .7) 100%); }
.reel__play { position: absolute; left: 50%; top: 50%; translate: -50% -50%; width: 26%; aspect-ratio: 1; border-radius: 50%; background: rgba(255, 255, 255, .26); border: 1.5px solid rgba(255, 255, 255, .55); backdrop-filter: blur(8px); display: grid; place-items: center; color: #FFFFFF; }
.reel__place { position: absolute; left: 12px; right: 12px; bottom: 12px; font-family: var(--emoji); font-size: clamp(13px, 1.4vw, 17px); font-weight: 800; color: #FFFFFF; }
.reel__len { position: absolute; right: 10px; top: 10px; padding: 3px 8px; border-radius: 999px; background: rgba(0, 0, 0, .45); font-size: 11px; font-weight: 700; color: #FFFFFF; }
/* Phones show three reels, tablets and up all five — the row never scrolls. */
.reels .reel:nth-child(1), .reels .reel:nth-child(5) { display: none; }

/* ── Bento ── */
.bento { display: grid; gap: 16px; }
.card { border-radius: 26px; padding: 28px; background: #FFFFFF; box-shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 24px 50px -32px rgba(4, 47, 46, .35); }
.card--deep { background: var(--deep); color: #FFFFFF; }
.card--teal { background: var(--teal-8); color: #FFFFFF; }
.card__k { font-size: 12.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); }
.card--deep .card__k, .card--teal .card__k { color: var(--teal-300); }
.card__t { margin-top: 10px; font-size: clamp(22px, 2.6vw, 28px); line-height: 1.14; font-weight: 800; letter-spacing: -0.02em; }
.card__b { margin-top: 10px; font-size: 16px; line-height: 1.55; color: var(--z-600); }
.card--deep .card__b, .card--teal .card__b { color: rgba(255, 255, 255, .78); }
.tickers { margin-top: 20px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.ticker { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 14px; background: rgba(255, 255, 255, .1); font-size: 14.5px; font-weight: 600; color: #FFFFFF; }
.faces { display: flex; }
.faces img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 3px solid #FFFFFF; }
.faces img + img { margin-left: -14px; }

/* ── CTA ── */
.cta { position: relative; min-height: 460px; display: grid; place-items: center; text-align: center; overflow: hidden; color: #FFFFFF; }
.cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 30% 60%; }
.cta__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4, 47, 46, .3) 0%, rgba(4, 47, 46, .65) 55%, rgba(4, 47, 46, .95) 100%); }
.cta__body { position: relative; padding: 72px var(--pad); display: grid; justify-items: center; gap: 18px; }

/* ── Documents (legal, support) ── */
.doc { padding: 40px 0 72px; }
.doc h1 { margin: 0; font-size: clamp(30px, 5vw, 42px); font-weight: 800; letter-spacing: -0.03em; }
.doc__meta { margin-top: 10px; font-size: 14px; color: var(--z-500); }
.doc__note { margin-top: 8px; font-size: 13px; color: var(--z-400); }
.doc section { margin-top: 34px; }
.doc h2 { margin: 0 0 12px; font-size: 21px; font-weight: 800; letter-spacing: -0.01em; }
.doc h3 { margin: 18px 0 8px; font-size: 16.5px; font-weight: 700; }
.doc p { margin: 0 0 12px; font-size: 16px; line-height: 1.7; color: var(--z-700); }
.doc ul { margin: 0 0 14px; padding-left: 22px; }
.doc li { font-size: 16px; line-height: 1.7; color: var(--z-700); margin-bottom: 6px; }
.doc table { width: 100%; border-collapse: collapse; margin: 0 0 16px; }
.doc th, .doc td { border: 1px solid var(--z-200); padding: 10px 12px; font-size: 15px; text-align: left; }

.panel { border-radius: 24px; padding: 28px; background: var(--z-50); box-shadow: inset 0 0 0 1px var(--z-100); }
.panel--warn { background: #FEF2F2; box-shadow: inset 0 0 0 1px #FEE2E2; color: #991B1B; }
.steps { display: grid; gap: 20px; margin-top: 22px; }
.step { display: flex; gap: 16px; }
.step__n { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--teal-50); color: var(--teal-7); font-weight: 800; display: grid; place-items: center; }
.step__t { font-size: 16.5px; font-weight: 700; }
.step__b { margin-top: 3px; font-size: 15px; line-height: 1.55; color: var(--z-600); }

/* ── Open-in-app (shared links) ── */
.open { min-height: 100vh; display: grid; place-items: center; padding: 48px var(--pad); background: radial-gradient(120% 80% at 50% 0%, #14B8A6 0%, var(--teal) 42%, var(--teal-7) 78%, var(--teal-8) 100%); color: #FFFFFF; text-align: center; }
.open__box { display: grid; justify-items: center; gap: 20px; max-width: 460px; }
.open__card { width: 100%; border-radius: 26px; background: #FFFFFF; color: var(--z-900); padding: 26px; text-align: left; }
/* Room for the floating wordmark so a tall page never slides under it. */
.nav--over + .open { padding-top: 124px; }
.open .btn--primary { background: #FFFFFF; color: var(--teal-7); }
.open .btn--primary:hover { background: #FFFFFF; color: var(--teal-8); }
.open__hint { font-size: 14px; color: rgba(255, 255, 255, .82); }
.qr { display: grid; place-items: center; padding: 14px; border-radius: 18px; background: #FFFFFF; }
.qr img, .qr svg { width: 180px; height: 180px; display: block; }

/* ── Forms (reactivate, TOTP) ── */
.form { display: grid; gap: 14px; margin-top: 22px; }
.msg { display: none; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: 14px; font-size: 15px; line-height: 1.5; }
.msg--show { display: flex; }
.msg--ok { background: var(--teal-50); color: var(--teal-8); }
.msg--err { background: #FEF2F2; color: #991B1B; }

/* ── Profile ── */
.profile { background: var(--z-50); }
.profile__wrap { display: grid; gap: 24px; padding: 24px 0 64px; }
.pcard { background: #FFFFFF; border-radius: 24px; box-shadow: 0 1px 3px rgba(0, 0, 0, .05), 0 20px 50px -34px rgba(0, 0, 0, .3); padding: 28px 22px; text-align: center; }
.pcard__avatar { width: 104px; height: 104px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 4px #FFFFFF, 0 0 0 5.5px var(--teal-100); }
.pcard__name { margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.pcard__handle { margin-top: 2px; font-size: 15px; color: var(--z-400); }
.pcard__type { margin-top: 12px; font-family: var(--emoji); font-size: 14px; font-weight: 600; color: var(--teal-7); }
.pcard__bio { margin: 10px auto 0; max-width: 320px; font-size: 15px; line-height: 1.45; color: var(--z-700); }
.pstats { margin-top: 16px; display: flex; justify-content: center; gap: 32px; }
.pstats b { font-size: 17px; font-weight: 700; }
.pstats span { font-size: 14px; color: var(--z-500); margin-left: 5px; }
.pmeta { margin-top: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; font-family: var(--emoji); font-size: 13.5px; color: var(--z-500); }
.pmeta > span { display: inline-flex; align-items: center; gap: 5px; }
.pmeta svg { color: var(--z-400); }
.flags { margin-top: 18px; }
.flags__h { display: flex; align-items: baseline; justify-content: center; gap: 6px; font-size: 15px; font-weight: 700; }
.flags__h span { font-size: 13px; font-weight: 600; color: var(--z-500); }
.flags__row { margin-top: 8px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; font-family: var(--emoji); font-size: 28px; line-height: 34px; }
.pactions { margin-top: 18px; display: flex; gap: 10px; }
.pactions .btn { flex: 1; height: 46px; border-radius: 12px; font-size: 15px; }
.tabs { display: flex; border-bottom: 1px solid var(--z-200); }
.tab { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; gap: 7px; height: 46px; font-size: 14px; font-weight: 600; color: var(--z-400); }
.tab b { font-size: 12.5px; font-weight: 600; color: var(--z-500); padding: 2px 8px; border-radius: 999px; background: var(--z-100); }
.tab--on { color: var(--z-900); }
.tab--on::after { content: ''; position: absolute; left: 50%; bottom: -1px; translate: -50% 0; width: 28px; height: 2.5px; border-radius: 2px; background: var(--z-900); }
.grid-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; margin-top: 2px; }
.tile { position: relative; aspect-ratio: 3 / 4; background: var(--z-100); overflow: hidden; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile__badge { position: absolute; top: 6px; right: 6px; width: 20px; height: 20px; border-radius: 50%; background: rgba(0, 0, 0, .55); display: grid; place-items: center; color: #FFFFFF; }
.tile__len { position: absolute; right: 6px; bottom: 6px; padding: 2px 5px; border-radius: 5px; background: rgba(0, 0, 0, .55); font-size: 10.5px; font-weight: 600; color: #FFFFFF; }
.tile__place { position: absolute; left: 8px; right: 40px; bottom: 7px; font-size: 11.5px; font-weight: 500; color: #FFFFFF; text-shadow: 0 1px 3px rgba(0, 0, 0, .6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.empty { padding: 56px 24px; text-align: center; }
.empty__halo { width: 78px; height: 78px; margin: 0 auto 18px; border-radius: 50%; background: var(--teal-50); display: grid; place-items: center; color: var(--teal); }
.empty__t { font-size: 19px; font-weight: 700; }
.empty__b { margin: 8px auto 0; max-width: 280px; font-size: 14.5px; line-height: 1.5; color: var(--z-500); }

/* ── Trip preview ── */
.trip { background: var(--z-50); }
.trip__cover { position: relative; height: clamp(300px, 46vw, 460px); }
.trip__cover img { width: 100%; height: 100%; object-fit: cover; }
.trip__cover::after { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, .2); }
.trip__wrap { position: relative; display: grid; gap: 22px; margin-top: clamp(-220px, -18vw, -120px); padding-bottom: 72px; }
.tcard { background: #FFFFFF; border-radius: 24px; box-shadow: 0 30px 80px -40px rgba(0, 0, 0, .4); padding: 22px; }
.tstatus { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pillt { padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.pillt--plan { background: #DBEAFE; color: #1D4ED8; }
.pillt--soon { background: var(--z-100); color: var(--z-600); }
.ttitle { margin-top: 10px; display: flex; align-items: flex-start; gap: 12px; }
.ttitle h1 { flex: 1; margin: 0; font-size: clamp(24px, 3.4vw, 34px); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; }
.iconbtn { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; background: var(--z-100); display: grid; place-items: center; color: var(--z-600); }
.thost { margin-top: 14px; display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 16px; background: var(--z-50); }
.thost img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid #FFFFFF; }
.thost__k { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--z-400); }
.thost__n { display: flex; align-items: center; gap: 5px; font-size: 15px; font-weight: 700; }
.thost__u { font-size: 13px; color: var(--z-400); }
.tabout { margin-top: 12px; font-size: 15.5px; line-height: 1.5; color: var(--z-700); white-space: pre-wrap; }
.tmeta { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 14.5px; color: var(--z-500); }
.tmeta > span { display: inline-flex; align-items: center; gap: 6px; }
.tinfo { margin-top: 16px; border-radius: 16px; background: var(--z-50); box-shadow: inset 0 0 0 1px var(--z-100); padding: 16px; }
.tinfo__h { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 700; margin-bottom: 12px; }
.tinfo__h svg { color: var(--teal); }
.tinfo ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.tinfo li { display: flex; gap: 8px; font-size: 14.5px; line-height: 1.45; color: var(--z-600); }
.tinfo li svg { flex: 0 0 auto; color: var(--z-500); margin-top: 2px; }
.members { margin-top: 20px; }
.members__h { font-size: 14.5px; font-weight: 700; margin-bottom: 12px; }
.members__row { display: flex; flex-wrap: wrap; gap: 16px 10px; }
.member { width: 58px; text-align: center; }
.member__pic { position: relative; }
.member img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid #FFFFFF; }
.member__tag { position: absolute; left: 50%; bottom: -7px; translate: -50% 0; padding: 1px 6px; border-radius: 999px; border: 1.5px solid #FFFFFF; font-size: 9px; font-weight: 700; color: #FFFFFF; background: var(--teal); }
.member__tag--admin { background: #3B82F6; }
.member__n { margin-top: 9px; font-size: 12px; font-weight: 500; color: var(--z-700); }
.route__h { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.route__h b { font-size: 14.5px; }
.route__h span { font-size: 12.5px; color: var(--z-400); }
.stop { border-radius: 16px; border: 1px solid var(--z-200); background: #FFFFFF; overflow: hidden; }
.stop__img { position: relative; height: 130px; }
.stop__img img { width: 100%; height: 100%; object-fit: cover; }
.stop__n { position: absolute; left: 12px; top: 12px; width: 30px; height: 30px; border-radius: 50%; background: var(--teal); color: #FFFFFF; font-size: 14px; font-weight: 700; display: grid; place-items: center; }
.stop__body { padding: 14px 16px; display: flex; gap: 14px; align-items: flex-start; }
.stop__n--plain { position: static; background: transparent; color: var(--teal); box-shadow: inset 0 0 0 2px var(--teal); }
.stop__name { font-size: 18px; font-weight: 700; }
.stop__dates { margin-top: 2px; font-size: 13px; color: var(--z-400); }
.stop__nights { text-align: right; }
.stop__nights b { font-size: 14px; }
.stop__nights span { display: block; font-size: 10px; font-weight: 600; color: var(--z-400); }
.leg { display: flex; align-items: center; gap: 8px; padding: 8px 4px; }
.leg span { font-size: 12px; font-weight: 600; color: var(--z-400); }
.leg i { flex: 1; height: 1px; background: var(--z-200); }
.act { display: flex; align-items: center; gap: 12px; padding: 10px 16px; }
.act img { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; }
.act__pin { width: 30px; height: 30px; border-radius: 50%; background: var(--z-100); display: grid; place-items: center; color: var(--z-500); }
.act__t { font-size: 15px; font-weight: 600; }
.act__s { font-size: 12px; font-weight: 500; color: var(--z-400); }
.tbar { position: sticky; bottom: 0; z-index: 30; background: #FFFFFF; border-top: 1px solid var(--z-200); padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom)); display: flex; gap: 10px; }
.tbar .btn { flex: 1; }

/* ── Footprint viewer ── */
.fp { background: var(--z-950); }
.fp__wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 0; }
.fp__stage { position: relative; flex: 0 0 auto; width: 100%; max-width: 460px; aspect-ratio: 9 / 16; overflow: hidden; }
.fp__stage img.fp__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fp__top { position: absolute; inset: 0 0 auto; height: 130px; background: linear-gradient(180deg, rgba(9, 9, 11, .55), rgba(9, 9, 11, 0)); }
.fp__bottom { position: absolute; inset: auto 0 0; height: 62%; background: linear-gradient(180deg, rgba(9, 9, 11, 0) 0%, rgba(9, 9, 11, .55) 55%, rgba(9, 9, 11, .88) 100%); }
.fp__dots { position: absolute; left: 0; right: 0; top: 18px; display: flex; justify-content: center; gap: 5px; }
.fp__dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, .4); }
.fp__dots i.on { background: #FFFFFF; }
.fp__brand { position: absolute; left: 12px; top: 12px; width: 44px; height: 44px; border-radius: 50%; background: rgba(12, 18, 20, .72); border: 1px solid rgba(255, 255, 255, .1); display: grid; place-items: center; color: #FFFFFF; fill: #FFFFFF; }
.fp__stack { position: absolute; left: 18px; right: 18px; bottom: 22px; color: #FFFFFF; }
.fp__author { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.fp__author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid #FFFFFF; }
.fp__name { display: flex; align-items: baseline; gap: 6px; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.fp__name a { color: #FFFFFF; }
.fp__handle { font-size: 12.5px; font-weight: 400; color: rgba(255, 255, 255, .72); }
.fp__place { margin-top: 2px; display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255, 255, 255, .82); }
.fp__place svg { color: var(--teal-300); }
.fp__caption { font-size: 13.5px; line-height: 1.48; color: rgba(255, 255, 255, .86); max-height: 96px; overflow: auto; }
.fp__chips { margin-top: 11px; display: flex; flex-wrap: wrap; gap: 6px; }
.fp__actions { margin-top: 14px; display: flex; gap: 9px; }
.fp__actions .btn { flex: 1; height: 48px; border-radius: 14px; font-size: 15px; }
.fp__side { display: none; }
.fp__more { background: var(--z-950); padding: 40px 0 64px; color: #FFFFFF; }
.fp__more .route__h b, .fp__more .h3 { color: #FFFFFF; }
.fp__more .grid-tiles { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 4px; }
.fp__more .tile { border-radius: 12px; }

/* ── Tablet ── */
@media (min-width: 768px) {
  :root { --pad: 32px; }
  .section { padding: 88px 0; }
  .row { grid-template-columns: 1fr 1fr; gap: 48px; }
  .row--rev .row__media { order: -1; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento .card--span { grid-column: span 2; }
  .foot__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .reels .reel:nth-child(1), .reels .reel:nth-child(5) { display: block; }
  .profile__wrap { grid-template-columns: 340px minmax(0, 1fr); align-items: start; padding-top: 40px; }
  .pcard { position: sticky; top: 92px; }
  .grid-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3px; }
  .tbar { position: static; border: 0; padding: 0; margin-top: 20px; }
  .fp__stage { max-width: 430px; border-radius: 26px; box-shadow: 0 40px 90px rgba(0, 0, 0, .6); }
  .fp__wrap { padding: 36px var(--pad); }
  .fp__side { display: flex; gap: 10px; }
}

/* ── Desktop ── */
@media (min-width: 1100px) {
  .nav { height: 80px; }
  .nav__links { display: flex; }
  .trip__wrap { grid-template-columns: minmax(0, 1fr) 400px; }
  .trip__side { display: grid; gap: 16px; align-content: start; position: sticky; top: 96px; }
  .profile__wrap { grid-template-columns: 400px minmax(0, 1fr); gap: 40px; }
  .grid-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .fp__wrap { flex-direction: row; align-items: center; justify-content: center; gap: 28px; padding: 48px var(--pad); }
  .fp__side { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ── Footprint gallery controls ── */
.fp__nav { position: absolute; top: 50%; translate: 0 -50%; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(12, 18, 20, .6); display: grid; place-items: center; cursor: pointer; }
.fp__nav--prev { left: 10px; }
.fp__nav--next { right: 10px; }
.fp__thumb { width: 64px; height: 84px; padding: 0; border: 0; border-radius: 12px; overflow: hidden; background: none; cursor: pointer; opacity: .6; }
.fp__thumb.on { opacity: 1; box-shadow: 0 0 0 3px var(--teal); }
.fp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Home sections (the canvas design, responsive) ───────────────────────── */
.sec { position: relative; padding: 0 0 clamp(64px, 8vw, 110px); overflow: hidden; }
.sec--tint { background: linear-gradient(180deg, #FFFFFF 0%, var(--teal-50) 100%); }
.sec--tint-up { background: linear-gradient(180deg, var(--teal-50) 0%, #FFFFFF 100%); }
.sec--grey { background: var(--z-100); padding-top: clamp(56px, 7vw, 110px); }
.sec--deep { background: var(--deep); color: #FFFFFF; }
.sec--dark { background: #0B0F0E; color: #FFFFFF; }
.sec--map { background: #0B1F2A; color: #FFFFFF; }
.sec__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.sec__bgscrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,31,42,.86) 0%, rgba(11,31,42,.55) 45%, rgba(11,31,42,.9) 100%); }
.sec__route, .sec__trail { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.sec > .shell { position: relative; }

.marker { display: flex; flex-direction: column; align-items: center; }
.marker__line { width: 0; height: clamp(48px, 7vw, 90px); border-left: 3px dashed rgba(13, 148, 136, .4); }
.sec--deep .marker__line, .sec--dark .marker__line, .sec--map .marker__line { border-left-color: rgba(94, 234, 212, .45); }
.marker__dot { width: 62px; height: 62px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 10px rgba(13, 148, 136, .12); display: grid; place-items: center; fill: #FFFFFF; }
.sec--deep .marker__dot, .sec--dark .marker__dot, .sec--map .marker__dot { box-shadow: 0 0 0 10px rgba(45, 212, 191, .14); }
.marker__label { margin-top: 20px; display: flex; gap: 10px; font-size: 13px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase; color: var(--teal); }
.sec--deep .marker__label, .sec--dark .marker__label, .sec--map .marker__label { color: var(--teal-300); }
.marker__label b { opacity: .55; }

.sec__head { max-width: 760px; margin: 0 auto; text-align: center; display: grid; justify-items: center; }
.sec__head h2 { margin: 22px 0 0; font-size: clamp(30px, 4.4vw, 58px); line-height: 1.07; font-weight: 800; letter-spacing: -0.03em; text-wrap: balance; }
.sec__head p { margin: 16px 0 0; max-width: 640px; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.55; color: var(--z-600); }
.sec--deep .sec__head p, .sec--dark .sec__head p, .sec--map .sec__head p { color: rgba(255, 255, 255, .76); }

/* Phone mockups */
.ph { margin: 0; width: var(--w, clamp(190px, 24vw, 340px)); flex: 0 0 auto; border-radius: 14%/6.5%; background: #0B0F0E; padding: .7%; box-shadow: 0 40px 70px -28px rgba(4, 47, 46, .55); transform: rotate(var(--tilt, 0deg)) translateY(var(--lift, 0px)); }
.ph img { display: block; width: 100%; height: auto; aspect-ratio: 440 / 956; object-fit: cover; object-position: top; border-radius: 13%/6%; }

/* Heading + art + floating pills, side by side on wide screens */
.cluster { margin-top: clamp(32px, 5vw, 60px); display: grid; gap: clamp(20px, 3vw, 44px); justify-items: center; }
.cluster__art { display: flex; justify-content: center; align-items: flex-start; gap: clamp(10px, 1.6vw, 22px); max-width: 100%; }
.cluster__art--three .ph { --w: clamp(150px, 15vw, 250px); }
.cluster__pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.cluster__pills > * { flex: 0 0 auto; }
.pill { display: inline-flex; align-items: center; gap: 10px; height: 46px; padding: 0 18px 0 10px; border-radius: 23px; background: #FFFFFF; box-shadow: 0 12px 30px -12px rgba(4, 47, 46, .3); font-size: 14.5px; font-weight: 700; color: var(--z-900); white-space: nowrap; }
.pill svg { color: var(--teal); }
.sec--deep .pill, .sec--dark .pill, .sec--map .pill { background: rgba(255, 255, 255, .1); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14); color: #FFFFFF; }
.sec--deep .pill svg, .sec--dark .pill svg, .sec--map .pill svg { color: var(--teal-300); }
/* In the narrow side columns a chip wraps instead of spilling out. */
.cluster__pills .pill { max-width: 100%; white-space: normal; text-align: left; height: auto; padding: 11px 18px 11px 12px; line-height: 1.3; }
/* 04 — the exploded HUD card the design floats beside the ride phone. */
.hud { width: min(360px, 100%); border-radius: 18px; overflow: hidden; box-shadow: 0 30px 60px -28px rgba(0, 0, 0, .8); }
.hud img { display: block; width: 100%; height: 150px; object-fit: cover; object-position: 50% 12%; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pills--center { justify-content: center; margin-top: clamp(24px, 3vw, 36px); }

/* 02 — split */
.split { margin-top: clamp(28px, 4vw, 54px); display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; }
.split__text h2 { margin: 0; font-size: clamp(30px, 4.2vw, 54px); line-height: 1.07; font-weight: 800; letter-spacing: -0.03em; }
.split__text > p { margin: 16px 0 0; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: var(--z-600); }
.feats { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 20px; }
.feats li { display: flex; gap: 16px; align-items: flex-start; }
.feat__ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 13px; background: var(--teal-50); color: var(--teal); display: grid; place-items: center; }
.feats b { display: block; font-size: 17px; font-weight: 700; }
.feats span { display: block; margin-top: 4px; font-size: 15.5px; line-height: 1.5; color: var(--z-600); }
.split__art { display: flex; justify-content: center; gap: clamp(10px, 2vw, 24px); }

/* 03 — photo pins around the phone */
.cluster__pins { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(14px, 2vw, 26px); }
.mpin { display: grid; justify-items: center; }
.mpin img { width: clamp(56px, 6vw, 72px); height: clamp(56px, 6vw, 72px); border-radius: 18px; object-fit: cover; border: 3px solid #FFFFFF; box-shadow: 0 16px 30px -12px rgba(0, 0, 0, .6); }
.mpin__stem { width: 10px; height: 10px; margin-top: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px rgba(255, 255, 255, .9); }
.mpin__label { margin-top: 8px; padding: 5px 11px; border-radius: 999px; background: #FFFFFF; font-size: 12.5px; font-weight: 700; color: var(--z-900); white-space: nowrap; }

/* 06 — book + story */
.books { margin-top: clamp(28px, 4vw, 56px); display: grid; gap: clamp(24px, 4vw, 48px); justify-items: center; align-items: center; }
/* The book is drawn at its design size (760px) and zoomed to fit the column. */
.fit--book { width: 760px; transform-origin: top left; zoom: .72; }
.fit--book img { max-width: none; }
.books__book { max-width: 100%; }

/* 07 — reels */
/* The design overlaps and tilts the side reels around the big one. */
.reels { margin-top: clamp(28px, 4vw, 52px); display: flex; align-items: center; justify-content: center; gap: 0; }
.reels .reel + .reel { margin-left: clamp(-26px, -1.6vw, -8px); }
.reels .reel--hero { margin: 0 clamp(-26px, -1.6vw, -8px); z-index: 2; }
.reel { position: relative; flex: 0 1 auto; width: clamp(92px, 13vw, 190px); aspect-ratio: 9 / 16; border-radius: 20px; overflow: hidden; rotate: var(--tilt, 0deg); box-shadow: 0 30px 60px -28px rgba(0, 0, 0, .85); }
.reel--hero { flex: 0 0 auto; width: clamp(200px, 27vw, 380px); border-radius: 26px; box-shadow: 0 50px 90px -30px rgba(20, 184, 166, .45); }
.reel > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 56%, rgba(0,0,0,.72) 100%); }
.reel__play { position: absolute; left: 50%; top: 50%; translate: -50% -50%; width: 26%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.26); border: 1.5px solid rgba(255,255,255,.6); backdrop-filter: blur(8px); display: grid; place-items: center; color: #FFFFFF; }
.reel__len { position: absolute; right: 8px; top: 8px; padding: 3px 8px; border-radius: 999px; background: rgba(0,0,0,.45); font-size: 11px; font-weight: 700; color: #FFFFFF; }
.reel__place { position: absolute; left: 10px; right: 10px; bottom: 10px; font-family: var(--emoji); font-size: clamp(11px, 1.1vw, 16px); font-weight: 800; color: #FFFFFF; }
.reel__bars { position: absolute; left: 14px; right: 14px; top: 14px; display: flex; gap: 4px; }
.reel__bars i { flex: 1; height: 3px; border-radius: 2px; background: rgba(255,255,255,.35); overflow: hidden; }
.reel__bars i::after { content: ''; display: block; width: calc(var(--f) * 100%); height: 100%; background: #FFFFFF; }
.reel__sticker { position: absolute; left: 50%; top: 22%; translate: -50% 0; rotate: -3deg; padding: 7px 15px; border-radius: 10px; background: #FFFFFF; font-size: clamp(12px, 1.5vw, 21px); font-weight: 800; letter-spacing: -0.02em; color: var(--z-900); white-space: nowrap; box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.reel__foot { position: absolute; left: 18px; right: 18px; bottom: 20px; display: grid; }
.reel__bar { height: 4px; border-radius: 2px; background: rgba(255,255,255,.3); }
.reel__bar i { display: block; width: 38%; height: 100%; border-radius: 2px; background: #FFFFFF; }
.reel__times { display: flex; justify-content: space-between; margin-top: 6px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.9); }
.reel__title { margin-top: 12px; font-family: var(--emoji); font-size: clamp(16px, 2.3vw, 32px); font-weight: 800; letter-spacing: -0.03em; color: #FFFFFF; }
.reel__sub { margin-top: 4px; font-size: clamp(10px, 1vw, 14px); font-weight: 600; color: rgba(255,255,255,.85); }

/* 05 — tracker card */
.tcardx { width: min(320px, 100%); background: #FFFFFF; border-radius: 18px; padding: 15px; box-shadow: 0 1px 8px rgba(0,0,0,.08), 0 30px 50px -28px rgba(4,47,46,.4); }
.tcardx__row { display: flex; align-items: center; gap: 11px; }
.tcardx__ic { width: 38px; height: 38px; border-radius: 11px; background: rgba(13,148,136,.1); color: var(--teal); display: grid; place-items: center; }
.tcardx__txt { flex: 1; }
.tcardx__txt b { display: flex; align-items: center; gap: 6px; font-size: 16px; font-weight: 700; color: var(--z-900); }
.tcardx__txt .dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; }
.tcardx__txt span { display: flex; align-items: center; gap: 6px; margin-top: 3px; font-size: 12.5px; color: var(--teal-7); }
.tcardx__txt em { font-style: normal; padding: 3px 8px; border-radius: 999px; background: var(--z-100); font-weight: 600; color: var(--z-700); white-space: nowrap; }
.tcardx__sw { width: 48px; height: 29px; border-radius: 15px; background: var(--teal); position: relative; }
.tcardx__sw::after { content: ''; position: absolute; left: 22px; top: 3px; width: 23px; height: 23px; border-radius: 50%; background: #FFFFFF; }
.tcardx__drafts { margin-top: 12px; height: 38px; border-radius: 12px; border: 1px solid var(--z-200); display: grid; place-items: center; font-size: 14px; font-weight: 600; color: var(--teal-7); }

/* Bento */
.bento__head { display: grid; gap: 18px; }
.bento__head h2 { margin: 0; max-width: 680px; font-size: clamp(30px, 4.2vw, 54px); line-height: 1.08; font-weight: 800; letter-spacing: -0.03em; }
.bento__head p { margin: 0; max-width: 460px; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; color: var(--z-600); }
.bento { margin-top: clamp(28px, 4vw, 48px); display: grid; gap: 18px; }
.bcard { border-radius: 30px; background: #FFFFFF; padding: clamp(24px, 3vw, 36px); box-shadow: 0 1px 3px rgba(0,0,0,.05), 0 30px 60px -40px rgba(4,47,46,.4); }
.bcard--deep { background: var(--deep); color: #FFFFFF; }
.bcard--teal { background: var(--teal-8); color: #FFFFFF; }
.bcard__k { font-size: 12.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); }
.bcard--deep .bcard__k, .bcard--teal .bcard__k { color: var(--teal-300); }
.bcard__k--red { color: var(--error); }
.bcard h3 { margin: 12px 0 0; font-size: clamp(22px, 2.3vw, 30px); line-height: 1.14; font-weight: 800; letter-spacing: -0.02em; }
.bcard p { margin: 10px 0 0; font-size: 16px; line-height: 1.55; color: var(--z-600); }
.bcard--deep p, .bcard--teal p { color: rgba(255,255,255,.78); }
.bcard__rows { margin-top: 20px; display: grid; gap: 10px; }
.bcard__rows--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bcard__rows span { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 14px; background: var(--z-100); font-size: 14.5px; font-weight: 600; color: var(--z-800); }
.bcard--deep .bcard__rows span, .bcard--teal .bcard__rows span { background: rgba(255,255,255,.1); color: #FFFFFF; }
.bcard__rows .is-red { background: #FEF2F2; color: #991B1B; }
.stats { margin-top: 20px; border-radius: 16px; background: rgba(255, 255, 255, .1); padding: 14px 16px; }
.stats__row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #FFFFFF; }
.stats__row b { font-weight: 700; }
.stats__row .dot { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; }
.stats__row span { font-size: 12.5px; color: rgba(255, 255, 255, .7); }
.stats__nums { margin-top: 12px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; text-align: center; }
.stats__nums span { display: grid; gap: 2px; font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.stats__nums b { font-size: 19px; font-weight: 800; color: #FFFFFF; letter-spacing: 0; }
.faces__more { display: grid; place-items: center; width: 46px; height: 46px; margin-left: -14px; border-radius: 50%; border: 3px solid #FFFFFF; background: var(--teal); font-size: 13px; font-weight: 800; color: #FFFFFF; }
.faces { margin-top: 22px; display: flex; align-items: center; }
.faces img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 3px solid #FFFFFF; }
.faces img + img { margin-left: -14px; }

/* CTA */
.cta { position: relative; min-height: clamp(460px, 50vw, 720px); display: grid; place-items: center; text-align: center; color: #FFFFFF; overflow: hidden; }
.cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 30% 60%; }
.cta__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,47,46,.3) 0%, rgba(4,47,46,.65) 55%, rgba(4,47,46,.95) 100%); }
.cta__body { position: relative; padding: clamp(72px, 9vw, 130px) var(--pad); display: grid; justify-items: center; gap: 18px; }
.cta__body h2 { margin: 0; font-size: clamp(32px, 4.6vw, 62px); line-height: 1.06; font-weight: 800; letter-spacing: -0.03em; }
.cta__body p { margin: 0; max-width: 46ch; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55; color: rgba(255,255,255,.88); }

@media (min-width: 1200px) {
  .fit--book { zoom: .95; }
}

@media (min-width: 900px) {
  .foot__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); }
  .cluster { grid-template-columns: minmax(180px, 1fr) minmax(0, auto) minmax(180px, 1fr); align-items: center; }
  /* The design spreads the chips down the section rather than stacking them
     tightly; the offsets echo its coordinates. */
  .cluster__pills { flex-direction: column; align-items: flex-start; gap: clamp(28px, 7vw, 104px); }
  .cluster__pills > *:nth-child(2) { margin-left: clamp(0px, 2vw, 26px); }
  .cluster__pills > *:nth-child(3) { margin-left: clamp(0px, 1vw, 14px); }
  .cluster__pills--end { align-items: flex-end; }
  .cluster__pills--end > *:nth-child(2) { margin-left: 0; margin-right: clamp(0px, 2vw, 26px); }
  .cluster__pills--end > *:nth-child(3) { margin-left: 0; margin-right: clamp(0px, 1vw, 14px); }
  /* Scattered like the design's map pins rather than a tidy column. */
  .cluster__pins { flex-direction: column; align-items: flex-start; gap: clamp(26px, 5vw, 76px); padding-left: clamp(0px, 3vw, 44px); }
  .cluster__pins > *:nth-child(2) { margin-left: clamp(0px, 5vw, 72px); }
  .cluster__pins > *:nth-child(3) { margin-left: clamp(0px, 1vw, 16px); }
  .cluster__pins > *:nth-child(3) img { width: clamp(48px, 4.4vw, 58px); height: clamp(48px, 4.4vw, 58px); }
  .cluster__pins--end { align-items: flex-end; padding-left: 0; padding-right: clamp(0px, 3vw, 44px); }
  .cluster__pins--end > *:nth-child(2) { margin-left: 0; margin-right: clamp(0px, 5vw, 72px); }
  .cluster__pins--end > *:nth-child(3) { margin-left: 0; margin-right: clamp(0px, 1vw, 16px); }
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento__head { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
  .books { grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr); }
}

@media (max-width: 899px) {
  .fit--book { zoom: calc(1 / 1); transform: scale(calc((100vw - 40px) / 760)); height: calc(500px * (100vw - 40px) / 760); }
  .reels .reel:nth-child(1), .reels .reel:nth-child(5) { display: none; }
  .cluster__art--three .ph:first-child { display: none; }
}


/* ── Emergency page (/e/:code) — profile parts, red only for emergency ── */
.emerg { background: var(--z-50); min-height: 60vh; }
.emerg__wrap { display: grid; gap: 16px; padding: 20px 0 56px; }
.emerg__initials { display: grid; place-items: center; margin: 0 auto; background: var(--teal-50); color: var(--teal-7); font-size: 35px; font-weight: 800; }
.emerg .pcard__avatar { display: block; margin: 0 auto; }
.emerg__chip { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; padding: 6px 13px; border-radius: 999px; background: #FEF2F2; color: #B91C1C; box-shadow: inset 0 0 0 1px #FEE2E2; font-size: 13.5px; font-weight: 700; }
.emerg__upd { margin-top: 12px; font-size: 13.5px; color: var(--z-500); }
.emerg__list { display: grid; gap: 16px; align-content: start; }
.emerg__blk { background: #FFFFFF; border-radius: 24px; box-shadow: 0 1px 3px rgba(0, 0, 0, .05), 0 20px 50px -34px rgba(0, 0, 0, .3); padding: 18px 18px 6px; }
.emerg__h { display: flex; align-items: center; gap: 8px; margin: 0 0 4px; font-size: 14.5px; font-weight: 700; }
.emerg__h svg { color: var(--teal); }
.emerg__h--red svg { color: var(--error); }
.emerg__item { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-top: 1px solid var(--z-100); }
.emerg__item:first-of-type { border-top: 0; }
.emerg__ic { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-50); color: var(--teal); }
.emerg__ic--red { background: #FEF2F2; color: var(--error); }
.emerg__tx { flex: 1; min-width: 0; }
.emerg__k { font-size: 12.5px; font-weight: 600; color: var(--z-500); }
.emerg__v { font-size: 15.5px; font-weight: 600; line-height: 1.4; overflow-wrap: anywhere; }
.emerg__v a { color: var(--teal-7); font-variant-numeric: tabular-nums; text-decoration: underline; text-underline-offset: 2px; }
.emerg__v--big { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.emerg__item--alert .emerg__v { color: #B91C1C; }
.emerg__num { font-size: 13.5px; color: var(--z-500); font-variant-numeric: tabular-nums; }
.emerg__call { flex: 0 0 auto; height: 46px; padding: 0 16px; font-size: 15px; }
.emerg__call:hover { color: #FFFFFF; }
.emerg__msg { display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: 64px; padding-bottom: 72px; }
.emerg__msg .btn { margin-top: 20px; }
.emerg__halo--grey { background: var(--z-100); color: var(--z-500); }
.emerg__code { font-size: 12.5px; }
@media (min-width: 900px) {
  .emerg__wrap { grid-template-columns: 360px minmax(0, 1fr); gap: 28px; align-items: start; padding-top: 40px; }
  .emerg .pcard { position: sticky; top: 92px; }
}

/* ── Feature pages (/planner, /travel-tracker, /ride-mode, /travel-books, /travel-reels) and /about ── */
.nav__links a.is-on { color: var(--teal); }
.lp-crumb { font-size: 14px; color: var(--z-500); display: flex; gap: 8px; align-items: center; }
.lp-crumb a { color: var(--z-500); } .lp-crumb a:hover { color: var(--teal); }
.fhero { background: linear-gradient(180deg, var(--teal-50), #FFFFFF); padding: clamp(36px, 5vw, 72px) var(--pad) clamp(40px, 6vw, 90px); overflow: hidden; }
.fhero__in { max-width: var(--shell); margin: 0 auto; display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; }
.fhero h1 { margin: 18px 0 0; font-size: clamp(36px, 4.6vw, 60px); line-height: 1.04; font-weight: 800; letter-spacing: -0.035em; }
.fhero__lead { margin: 18px 0 0; font-size: clamp(16px, 1.6vw, 20px); line-height: 1.6; color: var(--z-600); max-width: 52ch; }
.fhero .badges { margin-top: 28px; }
.fhero__meta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.fhero__art { display: flex; justify-content: center; gap: clamp(8px, 1.6vw, 20px); }
.fhero__art .ph { --w: clamp(92px, 26vw, 180px); }
@media (min-width: 1100px) { .fhero__art .ph { --w: min(14vw, 180px); } }
.lp-sec { padding: clamp(56px, 7vw, 110px) var(--pad); }
.lp-sec--tint { background: var(--teal-50); }
.lp-sec--deep { background: var(--deep); color: #FFFFFF; }
.lp-in { max-width: var(--shell); margin: 0 auto; }
.lp-head { max-width: 720px; }
.lp-head--c { margin: 0 auto; text-align: center; }
.lp-head .card__k { display: block; }
.lp-head h2 { margin: 12px 0 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; font-weight: 800; letter-spacing: -0.03em; }
.lp-head p { margin: 14px 0 0; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: var(--z-600); }
.lp-sec--deep .lp-head p { color: rgba(255,255,255,.74); }
.lp-sec--deep .card__k { color: var(--teal-300); }
.lp-steps { margin-top: clamp(28px, 4vw, 48px); display: grid; gap: 18px; counter-reset: s; }
.lp-step { position: relative; padding: 26px; border-radius: 22px; background: #FFFFFF; box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 24px 50px -32px rgba(4,47,46,.35); }
.lp-step__n { width: 38px; height: 38px; border-radius: 50%; background: var(--teal); color: #FFFFFF; font-weight: 800; display: grid; place-items: center; }
.lp-step b { display: block; margin-top: 16px; font-size: 19px; font-weight: 800; letter-spacing: -0.01em; }
.lp-step span:not(.lp-step__n) { display: block; margin-top: 6px; font-size: 15.5px; line-height: 1.55; color: var(--z-600); }
.lp-grid { margin-top: clamp(28px, 4vw, 48px); display: grid; gap: 16px; }
.lp-f { padding: 24px; border-radius: 20px; background: rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.lp-f__ic { width: 44px; height: 44px; border-radius: 13px; background: rgba(94,234,212,.14); color: var(--teal-300); display: grid; place-items: center; }
.lp-f b { display: block; margin-top: 16px; font-size: 18px; font-weight: 700; }
.lp-f span:not(.lp-f__ic) { display: block; margin-top: 6px; font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.72); }
.lp-shots { margin-top: clamp(32px, 4vw, 56px); display: flex; justify-content: center; gap: clamp(10px, 2vw, 28px); }
.lp-shots .ph { --w: clamp(92px, 26vw, 220px); }
.lp-faq { margin-top: clamp(24px, 3vw, 40px); display: grid; gap: 12px; max-width: 820px; }
.lp-faq details { border-radius: 18px; background: #FFFFFF; box-shadow: inset 0 0 0 1px var(--z-200); padding: 0 22px; }
.lp-faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-size: 17px; font-weight: 700; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary svg { flex: 0 0 auto; color: var(--teal); transition: transform .2s; }
.lp-faq details[open] summary svg { transform: rotate(180deg); }
.lp-faq p { margin: 0 0 20px; font-size: 15.5px; line-height: 1.6; color: var(--z-600); }
.lp-rel { margin-top: clamp(24px, 3vw, 40px); display: grid; gap: 16px; }
.lp-rc { display: block; border-radius: 22px; overflow: hidden; background: #FFFFFF; box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 24px 50px -32px rgba(4,47,46,.35); color: inherit; transition: transform .2s; }
.lp-rc:hover { transform: translateY(-3px); }
.lp-rc img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.lp-rc div { padding: 18px 20px 22px; }
.lp-rc b { display: flex; align-items: center; justify-content: space-between; font-size: 18px; font-weight: 800; }
.lp-rc b svg { color: var(--teal); }
.lp-rc span { display: block; margin-top: 6px; font-size: 14.5px; line-height: 1.5; color: var(--z-600); }
.lp-about { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; }
.lp-about img { width: 100%; border-radius: 26px; aspect-ratio: 4 / 3; object-fit: cover; }
.lp-vals { margin-top: clamp(28px, 4vw, 48px); display: grid; gap: 16px; }
.lp-co { display: grid; gap: 16px; }
@media (min-width: 768px) {
  .lp-steps { grid-template-columns: repeat(3, 1fr); }
  .lp-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-rel { grid-template-columns: repeat(2, 1fr); }
  .lp-vals { grid-template-columns: repeat(3, 1fr); }
  .lp-co { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .fhero__in { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
  .lp-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-rel { grid-template-columns: repeat(4, 1fr); }
  .lp-about { grid-template-columns: 1fr 1fr; }
}
.lp-co { margin-top: 32px; }
.lp-link { color: var(--teal); }
.lp-ov { display: grid; gap: clamp(28px, 4vw, 64px); align-items: start; }
.lp-ov__text h2 { margin: 12px 0 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; font-weight: 800; letter-spacing: -0.03em; }
.lp-ov__text p { margin: 18px 0 0; font-size: clamp(16px, 1.4vw, 18px); line-height: 1.7; color: var(--z-600); max-width: 62ch; }
.lp-ov__for { display: grid; gap: 14px; padding: 26px; border-radius: 24px; background: var(--teal-50); }
.lp-for { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border-radius: 16px; background: #FFFFFF; }
.lp-for .feat__ic { background: var(--teal-50); }
.lp-for b { display: block; font-size: 16.5px; font-weight: 700; }
.lp-for span:not(.feat__ic) { display: block; margin-top: 3px; font-size: 14.5px; line-height: 1.5; color: var(--z-600); }
.lp-step { background: #FFFFFF; }
@media (min-width: 1100px) {
  .lp-ov { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
}
