:root {
  color-scheme: light;
  --canvas: #fbfcff;
  --surface: #ffffff;
  --surface-soft: #f0f3f1;
  --surface-strong: #e8eeeb;
  --ink: #16211d;
  --ink-soft: #43504a;
  --muted: #5b6762;
  --line: rgba(22, 33, 29, 0.13);
  --line-strong: rgba(22, 33, 29, 0.26);
  --accent: #285f4c;
  --accent-hover: #1f4a3b;
  --accent-ink: #ffffff;
  --blue: #1f6cd6;
  --amber: #9d6a20;
  --focus: #087be8;
  --chrome-accent: #9fe8ca;
  --travel-blue: #1d6cf2;
  --travel-blue-soft: #dceaff;
  --vintokyo-red: #d92c1c;
  --price-cyan: #15c7ed;
  --travel-navy: #061a35;
  --travel-charcoal: #07131a;
  --travel-paper: #fffaf2;
  --header-bg: rgba(251, 252, 255, 0.92);
  --hero-bg:
    linear-gradient(135deg, rgba(47, 125, 95, 0.13), rgba(36, 92, 199, 0.1) 50%, rgba(185, 120, 21, 0.13)),
    linear-gradient(180deg, #ffffff, #f5f8fb);
  --shadow: 0 18px 60px rgba(12, 17, 14, 0.1);
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 9px;
  --radius-panel: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --canvas: #101513;
  --surface: #19201e;
  --surface-soft: #141a18;
  --surface-strong: #172821;
  --ink: #eef7f2;
  --ink-soft: #c6d2cc;
  --muted: #aab9b2;
  --line: rgba(238, 247, 242, 0.14);
  --line-strong: rgba(238, 247, 242, 0.28);
  --accent: #66c19d;
  --accent-hover: #95dfc1;
  --accent-ink: #07120e;
  --blue: #72a8ff;
  --amber: #f3be68;
  --focus: #75aeff;
  --travel-blue: #72a8ff;
  --travel-blue-soft: #162b4d;
  --vintokyo-red: #ff684e;
  --price-cyan: #55d9f5;
  --travel-paper: #191512;
  --header-bg: rgba(11, 13, 13, 0.91);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  --hero-bg:
    linear-gradient(135deg, rgba(88, 196, 157, 0.13), rgba(141, 181, 255, 0.12) 50%, rgba(243, 190, 104, 0.11)),
    linear-gradient(180deg, #141b18, #101513);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  background: var(--canvas);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

.page-shell {
  min-height: 100vh;
  min-height: 100svh;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

img,
svg {
  display: block;
}

button,
summary {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(1460px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.skiplink {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--canvas);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skiplink:focus {
  transform: translateY(0);
}

/* Exact emonster.dev public header chrome. */
.topbar {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(202, 224, 232, 0.12);
  background: rgba(5, 11, 18, 0.94);
  color: #f7f8f5;
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.topbar .container {
  width: min(100% - 40px, 1440px);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.brand span {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 14px;
  color: var(--chrome-accent);
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.2vw, 38px);
  min-width: 0;
  color: rgba(247, 248, 245, 0.76);
}

.nav > a {
  position: relative;
  color: inherit;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.nav > a::after {
  position: absolute;
  right: 0;
  bottom: -22px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav > a:hover,
.nav > a[aria-current="page"] {
  color: #ffffff;
}

.nav > a:hover::after,
.nav > a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.legal-menu {
  position: relative;
}

.legal-menu summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c0cad9;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.legal-menu summary::-webkit-details-marker,
.language-menu summary::-webkit-details-marker {
  display: none;
}

.legal-menu[open] summary,
.legal-menu summary:hover {
  color: #5c9cff;
}

.legal-menu summary .tabler-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: currentColor;
}

.legal-menu-panel {
  position: absolute;
  z-index: 120;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: 210px;
  overflow: hidden;
  border: 1px solid #263a55;
  border-radius: 8px;
  background: #101e31;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  transform: translateX(-50%);
}

.nav .legal-menu-panel a,
.mobile-legal-menu .legal-menu-panel a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 13px;
  color: #c0cad9;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.nav .legal-menu-panel a:hover,
.nav .legal-menu-panel a:focus-visible,
.mobile-legal-menu .legal-menu-panel a:hover,
.mobile-legal-menu .legal-menu-panel a:focus-visible {
  background: color-mix(in srgb, #5c9cff 9%, #101e31);
  color: #f1f6ff;
}

.language-menu {
  position: relative;
  width: 128px;
}

.language-menu summary {
  width: 100%;
  min-width: 0;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid #263a55;
  border-radius: 8px;
  background: #101e31;
  color: #f1f6ff;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.language-menu summary .tabler-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.language-panel {
  position: absolute;
  z-index: 120;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  min-width: 0;
  display: grid;
  overflow: hidden;
  border: 1px solid #263a55;
  border-radius: 8px;
  background: #101e31;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

.language-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: #c0cad9;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.language-link:hover,
.language-link[aria-current="page"] {
  background: color-mix(in srgb, #5c9cff 9%, #101e31);
  color: #f1f6ff;
}

.language-flag {
  width: 22px;
  flex: 0 0 22px;
  font-size: 17px;
  line-height: 1;
  text-align: center;
}

.mobile-language-links {
  display: none;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(202, 224, 232, 0.18);
  border-radius: 12px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  border-color: rgba(202, 224, 232, 0.36);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

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

.tabler-icon {
  display: block;
}

.public-theme-control {
  width: 42px;
  height: 42px;
  border: 1px solid #263a55;
  border-radius: 8px;
  background: #101e31;
  color: #f1f6ff;
  transform: none;
}

.public-theme-control:hover {
  border-color: #38506f;
  background: #132339;
  transform: none;
}

.public-theme-control .tabler-icon {
  width: 22px;
  height: 22px;
}

.theme-mode-icons {
  display: grid;
  place-items: center;
}

.theme-mode-icon {
  display: none;
}

:root[data-theme-preference="system"] .theme-mode-icon-system,
:root[data-theme-preference="light"] .theme-mode-icon-light,
:root[data-theme-preference="dark"] .theme-mode-icon-dark {
  display: grid;
}

.theme-preference-label {
  display: none;
}

.nav-toggle {
  display: none;
}

.nav-toggle .close-glyph {
  display: none;
}

.nav-toggle[aria-expanded="true"] .menu-glyph {
  display: none;
}

.nav-toggle[aria-expanded="true"] .close-glyph {
  display: block;
}

.mobile-menu {
  position: absolute;
  z-index: 90;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100svh - 88px);
  overflow-y: auto;
  border-top: 1px solid rgba(202, 224, 232, 0.12);
  background: #0b0d0d;
  color: #f7f8f5;
}

.mobile-menu-inner {
  display: grid;
  width: min(100% - 40px, 720px);
  margin: 0 auto;
  padding: 30px 0 56px;
}

.mobile-menu-inner > a {
  padding: 14px 0;
  border-bottom: 1px solid #2a302d;
  color: #f7f8f5;
  font-size: 1.15rem;
  font-weight: 690;
  text-decoration: none;
}

/* Travel category landing page. Shared chrome and legal surfaces stay above. */
.travel-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 88px);
  overflow: hidden;
  background: #09233b;
}

.travel-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 23, 43, 0.92) 0%, rgba(4, 23, 43, 0.82) 38%, rgba(4, 23, 43, 0.68) 50%, rgba(4, 23, 43, 0.3) 68%, rgba(4, 23, 43, 0.05) 90%),
    linear-gradient(180deg, rgba(2, 13, 25, 0.16), rgba(2, 13, 25, 0.08) 58%, rgba(2, 13, 25, 0.4));
  content: "";
  pointer-events: none;
}

.travel-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
}

.travel-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 88px);
  display: grid;
  align-items: center;
  padding-block: clamp(78px, 8vw, 126px);
}

.hero-copy {
  max-width: 680px;
  color: #f7fbff;
  text-shadow: 0 2px 26px rgba(1, 14, 29, 0.34);
}

.hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(4.3rem, 7.2vw, 8rem);
  font-weight: 820;
  letter-spacing: -0.072em;
  line-height: 0.89;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 620px;
  margin: 32px 0 0;
  color: #edf6ff;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.58;
}

.travel-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.travel-button .tabler-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.travel-button--primary {
  background: var(--travel-blue);
  color: #ffffff;
}

.travel-button--primary:hover {
  background: color-mix(in srgb, var(--travel-blue) 84%, #001b4a);
}

.travel-button--outline {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.hero-copy .travel-button {
  margin-top: 36px;
  background: #ffffff;
  color: #123d73;
  text-shadow: none;
}

.hero-copy .travel-button:hover {
  background: #e7f2ff;
}

.travel-ethos {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 150px) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--travel-blue) 11%, transparent), transparent 28%),
    var(--canvas);
}

.travel-ethos::after {
  position: absolute;
  right: -96px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid color-mix(in srgb, var(--travel-blue) 25%, transparent);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.ethos-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(360px, 1fr) minmax(280px, 0.72fr);
  align-items: start;
  gap: clamp(36px, 6vw, 96px);
}

.ethos-eyebrow,
.division-eyebrow {
  margin: 8px 0 0;
  color: var(--travel-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.travel-ethos h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.1rem, 5.4vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-wrap: balance;
}

.ethos-body {
  max-width: 570px;
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.7;
}

.division-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 9vw, 142px) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 26%, color-mix(in srgb, var(--travel-blue) 18%, transparent), transparent 32%),
    linear-gradient(145deg, var(--surface), var(--canvas));
}

.division-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.32fr);
  align-items: center;
  gap: clamp(46px, 8vw, 130px);
}

.division-page-hero h1 {
  max-width: 970px;
  margin: 18px 0 0;
  font-size: clamp(3.6rem, 6.3vw, 7.2rem);
  font-weight: 820;
  letter-spacing: -0.068em;
  line-height: 0.92;
  text-wrap: balance;
}

.division-lede {
  max-width: 800px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.65;
}

.division-mark {
  justify-self: end;
}

.division-mark img {
  width: min(250px, 100%);
  height: auto;
  opacity: 0.94;
  filter: drop-shadow(0 24px 46px rgba(21, 67, 111, 0.18));
}

.team-offices,
.contact-form-section {
  padding: clamp(80px, 9vw, 136px) 0;
  background: var(--canvas);
}

.team-section-head {
  max-width: 900px;
}

.team-section-head h2,
.support-aside h2 {
  margin: 0;
}

.team-section-head h2 {
  font-size: clamp(2.7rem, 4.5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.team-section-head p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.role-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.role-card,
.support-form,
.support-aside,
.confirmation-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.role-card {
  min-height: 310px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 36px);
}

.role-icon,
.confirmation-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--travel-blue-soft);
  color: var(--travel-blue);
}

.role-icon .tabler-icon,
.confirmation-icon .tabler-icon {
  width: 25px;
  height: 25px;
}

.role-card h3 {
  margin: 24px 0 0;
  font-size: clamp(22px, 2vw, 29px);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.role-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.role-card small {
  margin-top: auto;
  padding-top: 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.team-contact-action {
  margin-top: 44px;
}

.contact-heading {
  max-width: 1020px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 22px;
}

.support-form {
  padding: clamp(22px, 3vw, 38px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field > span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.required-mark,
.form-status.is-error {
  color: #b3261e;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--canvas);
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--travel-blue);
  outline: 3px solid color-mix(in srgb, var(--travel-blue) 24%, transparent);
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.form-actions .travel-button {
  cursor: pointer;
}

.form-actions .travel-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.support-form.is-submitting {
  opacity: 0.72;
}

.support-sidebar {
  display: grid;
  gap: 16px;
}

.support-aside {
  padding: 26px;
}

.support-aside h2 {
  font-size: 21px;
  letter-spacing: -0.025em;
}

.support-aside ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.support-aside li + li {
  margin-top: 10px;
}

.support-email-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--travel-blue);
  font-weight: 800;
}

.confirmation-page {
  min-height: 68svh;
  display: grid;
  place-items: center;
  padding: clamp(72px, 10vw, 140px) var(--gutter);
}

.confirmation-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
}

.confirmation-icon {
  margin: 0 auto 22px;
}

.confirmation-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.confirmation-card p {
  color: var(--ink-soft);
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.travel-intro {
  padding: clamp(80px, 9vw, 132px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.travel-intro .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  align-items: end;
  gap: clamp(48px, 8vw, 130px);
}

.travel-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.1rem, 5.4vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.travel-intro p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.6;
}

.travel-product {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 9vw, 144px) 0;
  border-bottom: 1px solid var(--line);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(60px, 7vw, 118px);
}

.product-copy {
  position: relative;
  z-index: 2;
}

.product-identity {
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-icon {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.18));
}

.product-name,
.product-platform {
  margin: 0;
}

.product-name {
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.product-platform {
  margin-top: 4px;
  color: var(--product-accent);
  font-size: 14px;
  font-weight: 700;
}

.product-copy h2 {
  max-width: 760px;
  margin: 46px 0 0;
  font-size: clamp(3rem, 5vw, 5.9rem);
  font-weight: 810;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}

.product-description {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--product-muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.product-features {
  max-width: 650px;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--product-line);
  list-style: none;
}

.product-features li {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--product-line);
  font-size: 15px;
  font-weight: 720;
}

.product-features li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--product-accent);
  content: "";
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.product-actions .travel-button--primary {
  background: var(--product-accent);
  color: var(--product-button-ink);
}

.product-actions .travel-button--primary:hover {
  background: var(--product-accent-hover);
}

.product-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  color: var(--product-muted);
  font-size: 13px;
  font-weight: 680;
}

.product-status .tabler-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--product-accent);
}

.product-resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.product-resource-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--product-muted);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.product-resource-links a:hover {
  color: currentColor;
}

.product-resource-links .tabler-icon {
  width: 15px;
  height: 15px;
}

.product-media {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: grid;
  place-items: center;
}

.phone-frame,
.store-frame {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  background: #05090d;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
}

.phone-frame {
  width: min(390px, 82%);
  border: 9px solid #05090d;
  border-radius: 48px;
}

.phone-frame picture,
.phone-frame img,
.store-frame picture,
.store-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.travel-product--skystamp {
  --product-accent: #4e9dff;
  --product-accent-hover: #78b4ff;
  --product-button-ink: #031328;
  --product-muted: #b8cbe3;
  --product-line: rgba(139, 184, 237, 0.27);
  background: var(--travel-navy);
  color: #f6f9ff;
}

.travel-product--skystamp::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 72% 48%, rgba(55, 145, 255, 0.16), transparent 34%);
  content: "";
  pointer-events: none;
}

.product-media--skystamp .product-seal {
  position: absolute;
  z-index: 0;
  width: min(590px, 92%);
  height: auto;
  opacity: 0.12;
  transform: rotate(-9deg);
}

.product-media--skystamp .phone-frame {
  transform: rotate(2deg);
}

.travel-product--vintokyo {
  --product-accent: var(--vintokyo-red);
  --product-accent-hover: #b82214;
  --product-button-ink: #ffffff;
  --product-muted: #5f554e;
  --product-line: rgba(114, 73, 51, 0.22);
  background: var(--travel-paper);
  color: #1a1816;
}

:root[data-theme="dark"] .travel-product--vintokyo {
  --product-muted: #d7c8bd;
  --product-line: rgba(255, 224, 199, 0.18);
  color: #fff9f2;
}

.travel-product--vintokyo::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--vintokyo-red) 7%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--vintokyo-red) 6%, transparent) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
  opacity: 0.55;
}

.product-media--vintokyo .vintokyo-mark {
  position: absolute;
  z-index: 3;
  top: 3%;
  left: 0;
  width: min(230px, 38%);
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.18));
  transform: rotate(-4deg);
}

.vintokyo-mark img {
  width: 100%;
  height: auto;
}

.product-media--vintokyo .phone-frame {
  border-color: #171411;
  transform: rotate(2.5deg);
}

.travel-product--price-tag-fx {
  --product-accent: var(--price-cyan);
  --product-accent-hover: #70e4fa;
  --product-button-ink: #00151d;
  --product-muted: #bdd2db;
  --product-line: rgba(94, 211, 241, 0.25);
  background: var(--travel-charcoal);
  color: #f6fbfd;
}

.travel-product--price-tag-fx::before,
.travel-product--price-tag-fx::after {
  position: absolute;
  width: 190px;
  height: 190px;
  border-color: color-mix(in srgb, var(--price-cyan) 52%, transparent);
  content: "";
  pointer-events: none;
}

.travel-product--price-tag-fx::before {
  top: 38px;
  right: 38px;
  border-top: 3px solid;
  border-right: 3px solid;
  border-radius: 0 22px 0 0;
}

.travel-product--price-tag-fx::after {
  bottom: 38px;
  left: 38px;
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-radius: 0 0 0 22px;
}

.product-media--price-tag {
  grid-template-columns: minmax(250px, 0.76fr) minmax(320px, 1.24fr);
  align-items: center;
  gap: 28px;
}

.product-media--price-tag .phone-frame {
  width: 100%;
  max-width: 320px;
}

.product-media--price-tag .store-frame {
  width: 100%;
  border: 1px solid rgba(111, 224, 250, 0.44);
  border-radius: 26px;
}

.product-media--price-tag .store-frame img {
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

/* Existing footer design-system grid and legal presentation. */
.site-footer {
  padding: 68px max(20px, calc((100% - var(--container)) / 2)) 28px;
  border-top: 1px solid #203451;
  background: #071225;
  color: #f3f7ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 48px;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand > a {
  display: inline-flex;
}

.footer-brand .brand img {
  width: 178px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: #99aac2;
  font-size: 14px;
}

.footer-grid h2 {
  margin: 4px 0 16px;
  color: #fff;
  font-size: 13px;
}

.footer-legal-heading {
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
}

.footer-legal-heading svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: currentColor;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid a {
  color: #aebbd0;
  font-size: 13px;
}

.footer-grid a:hover {
  color: #45cfdf;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid #203451;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #8798b0;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-privacy-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #aebbd0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer-privacy-button:hover {
  color: #45cfdf;
}

.legal-page main {
  width: min(100%, 1040px);
  margin-inline: auto;
  padding-inline: max(20px, var(--gutter));
}

.legal-hero {
  padding: clamp(72px, 9vw, 118px) 0 52px;
}

.legal-eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 720;
  hyphens: auto;
  letter-spacing: -0.055em;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.legal-last-updated {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.legal-summary {
  max-width: 780px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.65;
}

.legal-status {
  max-width: 780px;
  margin: 24px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--blue);
  background: color-mix(in srgb, var(--blue) 7%, var(--surface));
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.legal-tabs {
  display: flex;
  gap: 8px;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--line-strong);
}

.legal-tabs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.legal-tabs a[aria-current="page"] {
  border-color: color-mix(in srgb, var(--blue) 58%, var(--line));
  background: color-mix(in srgb, var(--blue) 9%, var(--surface));
  color: var(--ink);
}

.legal-document {
  padding: 14px 0 20px;
}

.legal-document section {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.legal-document section:last-child {
  border-bottom: 0;
}

.legal-document h2 {
  margin: 0 0 20px;
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.legal-document p,
.legal-document li {
  max-width: 820px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.legal-document p {
  margin: 0;
}

.legal-document p + p {
  margin-top: 16px;
}

.legal-document ul {
  margin: 0;
  padding-left: 24px;
}

.legal-document li + li {
  margin-top: 12px;
}

.legal-document a {
  color: var(--blue);
  font-weight: 700;
}

/* ASO Signals consent control, with travel-owned GA4 activation. */
.analytics-consent-banner {
  position: fixed;
  z-index: 160;
  right: 24px;
  bottom: 24px;
  width: min(620px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(5, 15, 32, 0.28);
}

.analytics-consent-banner h2,
.privacy-settings-dialog h2 {
  margin: 0;
  font-size: 19px;
}

.analytics-consent-banner p,
.privacy-settings-dialog > p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.analytics-consent-banner a,
.privacy-settings-learn {
  color: var(--blue);
  font-weight: 700;
}

.analytics-consent-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-button,
.outline-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 740;
  white-space: nowrap;
  cursor: pointer;
}

.primary-button {
  background: var(--accent);
  color: var(--accent-ink);
}

.primary-button:hover {
  background: var(--accent-hover);
}

.outline-button {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.outline-button:hover {
  background: var(--surface-soft);
}

.privacy-settings-backdrop {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 10, 22, 0.62);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.privacy-settings-dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.38);
}

.privacy-settings-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--ink);
  cursor: pointer;
}

.privacy-settings-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.privacy-settings-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0 !important;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy-settings-status span {
  color: var(--muted);
}

.privacy-settings-status strong {
  color: var(--ink);
}

.privacy-settings-learn {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
}

@media (max-width: 1260px) {
  .ethos-layout {
    grid-template-columns: minmax(130px, 0.3fr) minmax(360px, 0.9fr) minmax(260px, 0.65fr);
    gap: 40px;
  }

  .product-layout {
    grid-template-columns: minmax(370px, 0.8fr) minmax(0, 1.2fr);
    gap: 56px;
  }

  .product-media--price-tag {
    grid-template-columns: minmax(210px, 0.8fr) minmax(270px, 1.2fr);
    gap: 18px;
  }
}

@media (max-width: 1120px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .product-copy {
    max-width: 780px;
  }

  .product-media {
    min-height: 620px;
  }

  .product-media--price-tag {
    width: min(900px, 100%);
    margin-inline: auto;
    grid-template-columns: minmax(240px, 0.7fr) minmax(360px, 1.3fr);
  }
}

@media (max-width: 980px) {
  .topbar-inner {
    min-height: 78px;
  }

  .nav,
  .language-menu {
    display: none;
  }

  .mobile-legal-menu {
    width: 100%;
    margin-top: 20px;
  }

  .mobile-legal-menu summary {
    width: 100%;
    min-height: 44px;
    border-bottom: 1px solid #263a55;
  }

  .mobile-legal-menu .legal-menu-panel {
    position: static;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #263a55;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .mobile-legal-menu .legal-menu-panel a {
    padding-left: 23px;
    background: #132339;
  }

  .mobile-language-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #263a55;
  }

  .mobile-language-links .language-link {
    padding-inline: 0;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .mobile-menu {
    height: calc(100svh - 78px);
  }

  .travel-hero {
    min-height: calc(100svh - 78px);
  }

  .hero-layout {
    min-height: calc(100svh - 78px);
    padding-block: 72px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .ethos-layout {
    grid-template-columns: 1fr 2fr;
  }

  .ethos-body {
    grid-column: 2;
  }

  .role-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

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

  .travel-intro .container {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .travel-intro p {
    max-width: 700px;
  }

  .division-hero-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .division-mark {
    display: none;
  }

  .support-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-page main {
    padding-inline: 20px;
  }

  .legal-hero {
    padding-top: 62px;
  }

  .legal-tabs {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-tabs a {
    justify-content: center;
  }

  .analytics-consent-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

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

  .analytics-consent-actions .primary-button,
  .analytics-consent-actions .outline-button {
    width: 100%;
  }

  .privacy-settings-dialog {
    padding: 26px 20px 22px;
  }
}

@media (max-width: 760px) {
  .topbar .container {
    width: min(100% - 40px, 1440px);
  }

  .topbar-inner {
    min-height: 76px;
  }

  .mobile-menu {
    height: calc(100svh - 76px);
  }

  .brand img {
    width: 150px;
  }

  .brand span {
    display: none;
  }

  .travel-hero {
    min-height: calc(100svh - 76px);
  }

  .hero-layout {
    min-height: calc(100svh - 76px);
    padding-block: 58px;
  }

  .product-media {
    min-height: 540px;
  }

  .product-media--price-tag {
    grid-template-columns: minmax(180px, 0.75fr) minmax(260px, 1.25fr);
  }

  .phone-frame {
    max-width: 320px;
  }

  .product-media--price-tag .phone-frame {
    max-width: 260px;
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 20px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .topbar-inner {
    gap: 12px;
  }

  .icon-button {
    width: 42px;
    height: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(3.45rem, 13vw, 5.35rem);
  }

  .travel-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 23, 43, 0.42) 0%, rgba(4, 23, 43, 0.18) 38%, rgba(4, 23, 43, 0.8) 74%, rgba(4, 23, 43, 0.95) 100%),
      linear-gradient(90deg, rgba(4, 23, 43, 0.46), rgba(4, 23, 43, 0.06) 75%);
  }

  .travel-hero-media img {
    object-position: center center;
  }

  .hero-layout {
    align-items: end;
    padding-block: 52px;
  }

  .hero-copy > p {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-copy .travel-button {
    margin-top: 28px;
  }

  .ethos-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ethos-body {
    grid-column: auto;
    margin-top: 0;
  }

  .role-card-grid,
  .support-sidebar,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .travel-intro,
  .travel-product {
    padding-block: 76px;
  }

  .product-copy h2 {
    margin-top: 36px;
  }

  .product-media {
    min-height: 490px;
  }

  .product-media--price-tag {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 30px;
  }

  .product-media--price-tag .phone-frame {
    width: min(300px, 82%);
    max-width: none;
  }

  .product-media--price-tag .store-frame {
    width: min(620px, 100%);
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 132px;
  }

  .topbar-actions {
    gap: 6px;
  }

  .icon-button:not(.public-theme-control) {
    width: 40px;
    height: 40px;
  }

  .travel-hero h1 {
    font-size: clamp(3.05rem, 14.5vw, 4.15rem);
  }

  .travel-ethos h2,
  .division-page-hero h1 {
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  .role-card {
    min-height: auto;
  }

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

  .confirmation-actions .travel-button {
    width: 100%;
  }

  .product-identity {
    gap: 14px;
  }

  .product-icon {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .product-copy h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

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

  .product-actions .travel-button {
    width: 100%;
  }

  .phone-frame {
    width: min(300px, 90%);
    border-width: 7px;
    border-radius: 38px;
  }

  .product-media--vintokyo .vintokyo-mark {
    left: -6px;
    width: 150px;
  }

  .travel-product--price-tag-fx::before,
  .travel-product--price-tag-fx::after {
    width: 110px;
    height: 110px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
