/**
 * SetTern 2026 — Navy + ivory institutional luxury
 * Local UK · International · Work
 *
 * Fonts (link in <head>):
 *   Instrument Serif 400/400i · IBM Plex Sans 400/500 · IBM Plex Mono 400
 */

/* ═══════════════════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --ivory:       #F3F5F8;
  --ivory-card:  #FFFFFF;
  --navy:        #0C2340;
  --navy-muted:  rgba(12, 35, 64, 0.62);
  --navy-faint:  rgba(12, 35, 64, 0.12);

  --void:        #0C2340;
  --void-deep:   #081828;
  --ink:         var(--navy);
  --paper:       #F3F5F8;
  --paper-warm:  #EEF1F5;
  --mist:        var(--navy-muted);

  /* Compat aliases — former rainbow collapses to navy */
  --cyan:        var(--navy);
  --cyan-bright: #1A3A5C;
  --cyan-dim:    rgba(12, 35, 64, 0.55);
  --teal:        var(--navy);
  --warm:        var(--navy);
  --purple:      var(--navy);
  --amber:       var(--navy);
  --green:       #3D5C4A;
  --red:         #8B4040;

  --bg:          var(--paper);
  --bg-elev:     var(--ivory-card);
  --bg-elev-2:   var(--paper-warm);
  --bg-glass:    rgba(255, 255, 255, 0.92);

  --t1:          var(--ink);
  --t2:          rgba(12, 35, 64, 0.72);
  --t3:          rgba(12, 35, 64, 0.48);
  --t4:          rgba(12, 35, 64, 0.22);

  --surface:       rgba(12, 35, 64, 0.035);
  --surface-2:     rgba(12, 35, 64, 0.06);
  --surface-hover: rgba(12, 35, 64, 0.08);
  --panel-deep:    rgba(255, 255, 255, 0.96);

  --nav-bg:        rgba(243, 245, 248, 0.90);
  --nav-bg-scroll: rgba(243, 245, 248, 0.97);
  --sticky-bg:     rgba(255, 255, 255, 0.96);

  --border:        var(--navy-faint);
  --border-strong: rgba(12, 35, 64, 0.18);
  --border-cyan:   rgba(12, 35, 64, 0.22);
  --border-teal:   rgba(12, 35, 64, 0.22);
  --border-warm:   rgba(12, 35, 64, 0.22);
  --border-purple: rgba(12, 35, 64, 0.22);

  --accent:            var(--navy);
  --accent-secondary:  var(--navy);

  --display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --body:    'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, SFMono-Regular, 'SF Mono', monospace;

  --r-xs: 2px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 12px rgba(12, 35, 64, 0.06);
  --shadow-md: 0 8px 32px rgba(12, 35, 64, 0.08);
  --shadow-lg: 0 20px 56px rgba(12, 35, 64, 0.10);
  --shadow-cyan: 0 8px 28px rgba(12, 35, 64, 0.10);
  --shadow-teal: 0 8px 28px rgba(12, 35, 64, 0.10);
  --inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.9);

  --max: 1280px;
  --dur: 220ms;
  --dur-slow: 480ms;
  --ease: cubic-bezier(0.22, 0.65, 0.22, 1);

  --frame-size: 10px;
  --frame-weight: 1px;
  --mesh-size: 64px;
}

/* ── Page variants (single accent: navy) ─────────────────────────────── */

[data-page="local"],
[data-page="world"],
[data-page="work"] {
  --accent: var(--navy);
  --accent-secondary: var(--navy);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESET + BASE
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: light;
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--t1);
  background: var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
  position: relative;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

em, i,
h1 em, h2 em, h3 em {
  font-style: normal !important;
  font-weight: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

::selection {
  background: rgba(12, 35, 64, 0.14);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

summary {
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ATMOSPHERE — mesh · grain · soft glows (no blurry orbs)
   ═══════════════════════════════════════════════════════════════════════════ */

.orb {
  display: none !important;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.22;
  mix-blend-mode: multiply;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 35, 64, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 35, 64, 0.045) 1px, transparent 1px);
  background-size: var(--mesh-size) var(--mesh-size);
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 15%, transparent 72%);
}

.section--hero::before {
  content: '';
  position: absolute;
  top: 8%;
  left: -4%;
  width: min(520px, 55vw);
  height: min(420px, 50vh);
  background: radial-gradient(ellipse at 30% 40%, rgba(45, 212, 191, 0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.section--hero::after {
  content: '';
  position: absolute;
  bottom: 12%;
  right: -6%;
  width: min(480px, 48vw);
  height: min(380px, 45vh);
  background: radial-gradient(ellipse at 70% 60%, rgba(12, 35, 64, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

[data-page="world"] .section--hero::after {
  background: radial-gradient(ellipse at 70% 60%, rgba(12, 35, 64, 0.07) 0%, transparent 70%);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL PROGRESS (injected by settern-2026.js)
   ═══════════════════════════════════════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 200;
  background: rgba(12, 35, 64, 0.06);
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  box-shadow: 0 0 12px rgba(12, 35, 64, 0.45);
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO MOUSE GLOW (injected by settern-2026.js)
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  background: radial-gradient(
    420px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(12, 35, 64, 0.07) 0%,
    rgba(45, 212, 191, 0.04) 35%,
    transparent 65%
  );
}

[data-page="world"] .hero-glow {
  background: radial-gradient(
    420px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(12, 35, 64, 0.06) 0%,
    rgba(12, 35, 64, 0.05) 35%,
    transparent 65%
  );
}

/* ═══════════════════════════════════════════════════════════════════════════
   TERMINAL FRAME + GLASS UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */

.terminal-frame {
  position: relative;
}

.terminal-frame::before,
.terminal-frame::after {
  content: '';
  position: absolute;
  width: var(--frame-size);
  height: var(--frame-size);
  pointer-events: none;
  z-index: 2;
}

.terminal-frame::before {
  top: 0;
  left: 0;
  border-top: var(--frame-weight) solid var(--accent);
  border-left: var(--frame-weight) solid var(--accent);
}

.terminal-frame::after {
  bottom: 0;
  right: 0;
  border-bottom: var(--frame-weight) solid var(--accent-secondary);
  border-right: var(--frame-weight) solid var(--accent-secondary);
}

.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md), var(--inner-glow);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 28px);
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(40px, 5vw, 64px) 0;
  position: relative;
}

.section--tight {
  padding: clamp(32px, 4vw, 48px) 0;
}

.section--hero {
  padding: clamp(28px, 4vw, 40px) 0 clamp(40px, 5vw, 56px);
  min-height: 0;
  display: flex;
  align-items: center;
}

.section--video {
  padding: clamp(40px, 6vw, 48px) 0 clamp(72px, 10vw, 108px);
  border-bottom: 1px solid var(--border);
}

.section--video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 55% at 50% 0%, rgba(12, 35, 64, 0.06), transparent 58%);
  pointer-events: none;
}

.section--video .video-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
  align-items: stretch;
}


/* ═══════════════════════════════════════════════════════════════════════════
   EYEBROW · CHIPS · BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: rgba(12, 35, 64, 0.06);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-sm);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.eyebrow .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(61, 92, 74, 0.55);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.35); opacity: 0.55; }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 11px;
  color: var(--t2);
  font-weight: 500;
}

.chip--cyan {
  color: var(--cyan);
  border-color: var(--border-cyan);
  background: rgba(12, 35, 64, 0.06);
}

.chip--warm {
  color: var(--warm);
  border-color: var(--border-warm);
  background: rgba(12, 35, 64, 0.06);
}

.chip--green {
  color: var(--green);
  border-color: rgba(61, 92, 74, 0.28);
  background: rgba(61, 92, 74, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  will-change: transform;
}

.btn--primary {
  background: var(--navy);
  color: var(--ivory-card);
  border: 1px solid rgba(12, 35, 64, 0.35);
  box-shadow: var(--shadow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(12, 35, 64, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 0 28px rgba(255, 255, 255, 0.14);
}

.btn--ghost {
  background: transparent;
  color: var(--t1);
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.btn--ghost:hover {
  background: var(--surface);
  border-color: var(--border-cyan);
  color: var(--t1);
}

.btn--lg { padding: 17px 28px; font-size: 16px; }
.btn--xl { padding: 20px 36px; font-size: 17px; }

.btn-arrow {
  display: inline-block;
  transition: transform var(--dur) var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════════════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), background var(--dur);
  padding-top: env(safe-area-inset-top);
}

.nav.is-scrolled {
  border-bottom-color: var(--border);
  background: var(--nav-bg-scroll);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--t1);
}

.nav__brand--stack {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
  line-height: 1.05;
}

.nav__brand-line {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.nav__brand-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t3);
  font-style: normal;
}

.nav__brand em {
  font-style: normal;
  color: var(--cyan);
  font-weight: 400;
}

.nav__brand .nav__dot {
  color: var(--t3);
  font-weight: 400;
}

.nav__brand .nav__sub {
  color: var(--accent-secondary);
  font-style: normal;
  font-weight: 400;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
}

.nav__link {
  font-size: 14px;
  color: var(--t2);
  transition: color var(--dur);
}

.nav__link:hover {
  color: var(--cyan);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__abroad {
  font-size: 12px;
  color: var(--t3);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  transition: all var(--dur);
  white-space: nowrap;
}

.nav__abroad:hover {
  color: var(--warm);
  border-color: var(--border-warm);
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__abroad { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — 55/45 asymmetric · editorial rail
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__copy {
  position: relative;
  padding-left: clamp(20px, 3vw, 28px);
  border-left: 1px solid var(--border-cyan);
}

.hero__copy::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 3px;
  height: clamp(40px, 8vw, 56px);
  background: linear-gradient(180deg, var(--accent), var(--cyan));
}

.hero__title {
  font-size: clamp(44px, 7vw, 92px);
  margin: 20px 0 22px;
  letter-spacing: -0.04em;
}

.hero__sub {
  font-size: clamp(16px, 1.35vw, 19px);
  color: var(--t2);
  max-width: 36rem;
  margin-bottom: 32px;
  line-height: 1.58;
}

.hero__sub strong {
  color: var(--t1);
  font-weight: 500;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__assurance {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--t3);
}

.hero__assurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__assurance .check {
  color: var(--green);
  font-weight: 700;
}

.hero__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.kpi__num {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 400;
  color: var(--warm);
  line-height: 1;
  letter-spacing: -0.03em;
}

.kpi__num em {
  font-style: normal;
}

.kpi__lab {
  font-size: 12px;
  color: var(--t3);
  margin-top: 8px;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__kpis {
    margin-top: 32px;
    padding-top: 24px;
  }
}

@media (max-width: 600px) {
  .hero__kpis {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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


/* ═══════════════════════════════════════════════════════════════════════════
   MAP (local) — dark terminal · luminous wireframe UK
   ═══════════════════════════════════════════════════════════════════════════ */

.map {
  position: relative;
  background: var(--panel-deep);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-md);
  padding: 20px 20px 16px;
  box-shadow: var(--shadow-lg), var(--shadow-teal);
  overflow: hidden;
}

.map::before,
.map::after {
  content: '';
  position: absolute;
  width: var(--frame-size);
  height: var(--frame-size);
  pointer-events: none;
  z-index: 3;
}

.map::before {
  top: 8px;
  left: 8px;
  border-top: var(--frame-weight) solid var(--teal);
  border-left: var(--frame-weight) solid var(--teal);
}

.map::after {
  bottom: 8px;
  right: 8px;
  border-bottom: var(--frame-weight) solid var(--cyan);
  border-right: var(--frame-weight) solid var(--cyan);
}

.map__head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.map__title {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.map__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.map__live::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(61, 92, 74, 0.55);
  animation: pulse 1.4s ease-in-out infinite;
}

.map__svg {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 600 / 914;
  max-width: 340px;
  margin: 0 auto;
}

.map__svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.map__sea {
  fill: rgba(12, 35, 64, 0.06);
}

.map__grid line {
  stroke: rgba(12, 35, 64, 0.12);
  stroke-width: 0.6;
}

.map__land {
  fill: rgba(12, 35, 64, 0.08);
  stroke: rgba(12, 35, 64, 0.35);
  stroke-width: 0.75;
  stroke-linejoin: round;
  stroke-linecap: round;
  paint-order: stroke fill;
  filter: drop-shadow(0 2px 8px rgba(12, 35, 64, 0.08));
}

.map__land--ie {
  fill: rgba(12, 35, 64, 0.04);
  stroke: rgba(12, 35, 64, 0.22);
  stroke-width: 0.6;
}

.map__land--im {
  fill: rgba(45, 212, 191, 0.04);
  stroke: rgba(45, 212, 191, 0.2);
  stroke-width: 0.5;
}

.map__route {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  stroke-dasharray: 6 5;
  stroke-linecap: round;
  animation: dashFlow 2.4s linear infinite;
  filter: drop-shadow(0 0 6px rgba(12, 35, 64, 0.45));
  opacity: 0.9;
}

@keyframes dashFlow {
  to { stroke-dashoffset: -22; }
}

.map__pin {
  fill: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(12, 35, 64, 0.55));
}

.map__pin--dst {
  fill: var(--warm);
  filter: drop-shadow(0 0 8px rgba(12, 35, 64, 0.45));
}

.map__pin-halo {
  fill: var(--cyan);
  fill-opacity: 0.22;
  transform-origin: center;
  animation: pinPulse 2.2s ease-in-out infinite;
}

.map__pin-halo--dst {
  fill: var(--warm);
  fill-opacity: 0.22;
  animation-delay: -1.1s;
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1); fill-opacity: 0.22; }
  50%      { transform: scale(1.7); fill-opacity: 0; }
}

.map__label-pill {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(12, 35, 64, 0.28);
  stroke-width: 0.6;
}

.map__label-pill--dst {
  stroke: rgba(12, 35, 64, 0.35);
}

.map__pin-label {
  font-family: var(--mono);
  font-size: 11px;
  fill: var(--ink);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map__pin-label--dst {
  fill: var(--warm);
}

.map__city-dot {
  fill: rgba(232, 238, 242, 0.35);
}

.map__city-name {
  font-family: var(--mono);
  font-size: 9px;
  fill: rgba(232, 238, 242, 0.42);
  letter-spacing: 0.04em;
}

.map__compass-ring {
  fill: none;
  stroke: rgba(12, 35, 64, 0.25);
  stroke-width: 0.6;
}

.map__compass-needle {
  fill: var(--teal);
  fill-opacity: 0.85;
}

.map__compass-letter {
  font-family: var(--mono);
  font-size: 8px;
  fill: rgba(232, 238, 242, 0.48);
  letter-spacing: 0.06em;
}

.map__meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t3);
}

.map__meta strong {
  color: var(--t1);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PICKER (world) — terminal card · scanline
   ═══════════════════════════════════════════════════════════════════════════ */

.picker-frame .picker-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: clamp(24px, 3vw, 32px);
}

.picker-frame .picker-card::before,
.picker-frame .picker-card::after {
  display: none;
}

.picker-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.picker-card::before,
.picker-card::after {
  display: none;
}

.picker-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.picker-title {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.picker-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t3);
}

.picker-q {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--t1);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.picker-q em {
  font-style: normal;
  color: var(--warm);
}

.picker-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.reason {
  padding: 12px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  text-align: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  position: relative;
}

.reason:hover {
  background: var(--surface-2);
  border-color: var(--border-purple);
  transform: translateY(-1px);
}

[data-page="local"] .reason:hover {
  border-color: var(--border-teal);
}

.reason.is-active {
  background: rgba(12, 35, 64, 0.08);
  border-color: var(--navy);
  box-shadow: none;
}

[data-page="local"] .reason.is-active {
  background: rgba(12, 35, 64, 0.08);
  border-color: var(--navy);
  box-shadow: none;
}

.reason__icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
  color: var(--accent-secondary);
}

.reason.is-active .reason__icon {
  transform: scale(1.06);
}

.reason__name {
  font-size: 11px;
  font-weight: 500;
  color: var(--t1);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.reason.is-active .reason__name {
  color: var(--accent-secondary);
}

.picker-result {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  transition: all var(--dur);
}

.picker-result__head {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.picker-result__head .star {
  color: var(--warm);
}

.picker-list {
  display: grid;
  gap: 8px;
}

.picker-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}

.picker-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
  opacity: 0.55;
}

.picker-list li strong {
  color: var(--t1);
  font-weight: 500;
}

.picker-list .star {
  flex-shrink: 0;
  color: var(--warm);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .picker-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 440px) {
  .picker-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   LANG ROW
   ═══════════════════════════════════════════════════════════════════════════ */

.lang-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.lang-pill {
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t2);
  letter-spacing: 0.04em;
  transition: all var(--dur);
}

.lang-pill:hover {
  background: var(--surface-2);
  border-color: var(--border-purple);
  color: var(--purple);
  cursor: pointer;
}

[data-page="local"] .lang-pill:hover {
  border-color: var(--border-teal);
  color: var(--teal);
}

.lang-pill .lang-flag {
  margin-right: 6px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MARQUEE — vertical bar separators
   ═══════════════════════════════════════════════════════════════════════════ */

.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
  overflow: hidden;
  padding: 16px 0;
  margin-top: clamp(40px, 6vw, 64px);
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 38s linear infinite;
  white-space: nowrap;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--t3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  position: relative;
}

.marquee__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--border-strong);
}

.marquee__item strong {
  color: var(--accent-secondary);
  font-weight: 500;
}

.marquee__item .arrow {
  color: var(--t4);
}

@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION HEADERS — outline index numbers
   ═══════════════════════════════════════════════════════════════════════════ */

.sh {
  margin-bottom: clamp(28px, 4vw, 40px);
  max-width: 760px;
  position: relative;
  padding-left: clamp(68px, 11vw, 108px);
}

.sh__index {
  position: absolute;
  left: 0;
  top: -0.12em;
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(12, 35, 64, 0.22);
  pointer-events: none;
  user-select: none;
}

[data-page="local"] .sh__index {
  -webkit-text-stroke-color: rgba(45, 212, 191, 0.24);
}

[data-page="world"] .sh__index {
  -webkit-text-stroke-color: rgba(12, 35, 64, 0.24);
}

.sh:not(:has(.sh__index))::before {
  content: attr(data-index);
  position: absolute;
  left: 0;
  top: -0.12em;
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(12, 35, 64, 0.22);
  pointer-events: none;
}

.sh__tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}

.sh__title {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 16px;
}

.sh__sub {
  font-size: 17px;
  color: var(--t2);
  max-width: 620px;
  line-height: 1.58;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIDEO SHOWCASE
   ═══════════════════════════════════════════════════════════════════════════ */

.video-showcase {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg), var(--inner-glow);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  position: relative;
}

.video-showcase::before,
.video-showcase::after {
  content: '';
  position: absolute;
  width: var(--frame-size);
  height: var(--frame-size);
  pointer-events: none;
}

.video-showcase::before {
  top: 10px;
  left: 10px;
  border-top: var(--frame-weight) solid var(--cyan);
  border-left: var(--frame-weight) solid var(--cyan);
}

.video-showcase::after {
  bottom: 10px;
  right: 10px;
  border-bottom: var(--frame-weight) solid var(--teal);
  border-right: var(--frame-weight) solid var(--teal);
}

.video-showcase__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-showcase__tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.video-showcase__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--t1);
  margin: 0 0 12px;
}

.video-showcase__sub {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 17px);
  color: var(--t2);
  line-height: 1.6;
}

.video-showcase__player {
  width: 100%;
  margin: 0;
}

.video-embed {
  position: relative;
  width: 100%;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  background: var(--void-deep);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-showcase__foot {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--t3);
  line-height: 1.5;
}

.video-showcase__foot a {
  color: var(--cyan);
  font-weight: 500;
  border-bottom: 1px solid rgba(12, 35, 64, 0.35);
  transition: border-color var(--dur), color var(--dur);
}

.video-showcase__foot a:hover {
  border-bottom-color: var(--cyan);
  color: var(--warm);
}

@media (max-width: 540px) {
  .section--video { padding-bottom: 72px; }
  .video-showcase { gap: 18px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES GRID (local)
   ═══════════════════════════════════════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
}

.svc {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
}

.svc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur);
}

.svc:hover {
  border-color: var(--border-teal);
  box-shadow: var(--shadow-sm);
  transform: none;
}

.svc:hover::before {
  opacity: 1;
}

.svc__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-xs);
  background: rgba(45, 212, 191, 0.1);
  color: var(--teal);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.svc__name {
  font-weight: 500;
  font-size: 14px;
  color: var(--t1);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.svc__time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t3);
  position: relative;
  z-index: 1;
}

.svc__time strong {
  color: var(--teal);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FRIDAY PROMISE (local)
   ═══════════════════════════════════════════════════════════════════════════ */

.promise {
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-md);
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.promise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--warm), var(--teal), transparent);
  pointer-events: none;
}

.promise__inner {
  position: relative;
}

.promise__big {
  font-family: var(--display);
  font-size: clamp(56px, 10vw, 112px);
  font-weight: 400;
  line-height: 1;
  color: var(--warm);
  letter-spacing: -0.04em;
}

.promise__big em {
  font-style: normal;
}

.promise__big-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  display: block;
  line-height: 1.35;
  max-width: 28em;
}

.promise__headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}

.promise__headline .promise__big {
  margin: 0;
}

.promise__list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.promise__item {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

.promise__when {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--teal);
  padding: 4px 10px;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid var(--border-teal);
  border-radius: var(--r-xs);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.promise__what {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.5;
}

.promise__what strong {
  color: var(--t1);
  font-weight: 500;
}

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


/* ═══════════════════════════════════════════════════════════════════════════
   SUPERVISION BLOCK (local)
   ═══════════════════════════════════════════════════════════════════════════ */

.supv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.supv__demo {
  background: var(--panel-deep);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.supv__demo::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: var(--frame-size);
  height: var(--frame-size);
  border-top: var(--frame-weight) solid var(--teal);
  border-left: var(--frame-weight) solid var(--teal);
  pointer-events: none;
}

.supv__line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  font-size: 14px;
}

.supv__line:last-child {
  margin-bottom: 0;
}

.supv__line--ai {
  background: rgba(12, 35, 64, 0.06);
  border-color: var(--border-cyan);
}

.supv__line--user {
  background: rgba(45, 212, 191, 0.05);
  border-color: var(--border-teal);
}

.supv__avatar {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
}

.supv__avatar--ai {
  background: rgba(12, 35, 64, 0.14);
  color: var(--cyan);
}

.supv__avatar--user {
  background: rgba(45, 212, 191, 0.14);
  color: var(--teal);
}

.supv__msg {
  color: var(--t2);
  flex: 1;
  line-height: 1.5;
}

.supv__msg strong {
  color: var(--t1);
  font-weight: 500;
}

.supv__msg code {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--cyan);
  background: rgba(12, 35, 64, 0.08);
  padding: 2px 6px;
  border-radius: var(--r-xs);
}

.supv__approve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(61, 92, 74, 0.12);
  border: 1px solid rgba(61, 92, 74, 0.32);
  border-radius: var(--r-sm);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  font-weight: 500;
}

.supv__copy h3 {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 400;
  margin-bottom: 14px;
}

.supv__copy p {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.65;
  margin-bottom: 18px;
}

.supv__copy ul {
  display: grid;
  gap: 12px;
}

.supv__copy li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--t2);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .supv { grid-template-columns: 1fr; gap: 36px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STEPS
   ═══════════════════════════════════════════════════════════════════════════ */

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

.step {
  position: relative;
  padding: 22px 18px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--dur);
}

.step:hover {
  border-color: var(--border-cyan);
  background: var(--surface-2);
}

.step__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.step__num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent-secondary);
  background: rgba(12, 35, 64, 0.08);
  border: 1px solid var(--border-cyan);
}

[data-page="local"] .step__num {
  color: var(--teal);
  background: rgba(45, 212, 191, 0.08);
  border-color: var(--border-teal);
}

.step__title {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding-top: 6px;
  font-size: 17px;
  font-weight: 500;
  color: var(--t1);
  line-height: 1.3;
  font-family: var(--body);
}

.step__desc {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 880px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   MATRIX (world)
   ═══════════════════════════════════════════════════════════════════════════ */

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 14px;
}

.matrix-cell {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--dur);
  position: relative;
  overflow: hidden;
}

.matrix-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient, linear-gradient(135deg, rgba(12, 35, 64, 0.08), transparent 60%));
  opacity: 0;
  transition: opacity var(--dur);
}

.matrix-cell:hover {
  border-color: var(--cell-color, var(--purple));
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.matrix-cell:hover::before {
  opacity: 1;
}

[data-page="local"] .matrix-cell:hover {
  border-color: var(--cell-color, var(--teal));
}

.matrix-cell__top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.matrix-cell__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg, rgba(12, 35, 64, 0.1));
  color: var(--icon-c, var(--purple));
  flex-shrink: 0;
}

.matrix-cell__name {
  font-size: 17px;
  font-weight: 500;
  color: var(--t1);
}

.matrix-cell__type {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.matrix-cell__list {
  position: relative;
  display: grid;
  gap: 10px;
}

.matrix-cell__list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}

.matrix-cell__list .dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cell-color, var(--purple));
  margin-top: 6px;
}

[data-page="world"] .matrix-cell {
  border-color: rgba(12, 35, 64, 0.12);
}

[data-page="world"] .matrix-cell__list .dot {
  background: var(--cell-color, var(--purple));
}

/* ═══════════════════════════════════════════════════════════════════════════
   SPLIT (world) — origin / destination
   ═══════════════════════════════════════════════════════════════════════════ */

.split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}

.split__col {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

.split__col--origin {
  border-color: var(--border-purple);
}

.split__col--dest {
  border-color: var(--border-cyan);
}

.split__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.split__flag {
  font-size: 22px;
}

.split__head .ttl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.split__head--origin .ttl {
  color: var(--purple);
}

.split__city {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--t1);
  margin-bottom: 16px;
}

.split__list {
  display: grid;
  gap: 8px;
}

.split__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 12px;
  background: rgba(12, 35, 64, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  font-size: 13px;
  color: var(--t2);
  line-height: 1.4;
}

.split__list code {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  background: rgba(12, 35, 64, 0.06);
  padding: 2px 6px;
  border-radius: var(--r-xs);
  white-space: nowrap;
}

.split__list--origin code {
  color: var(--purple);
  background: rgba(12, 35, 64, 0.08);
}

.split__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--t3);
  align-self: center;
}

.split__divider .arrow {
  font-family: var(--display);
  font-size: 28px;
  color: var(--cyan);
}

.split__divider .label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split__divider { flex-direction: row; padding: 8px 0; }
  .split__divider .arrow { transform: rotate(90deg); font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CORRIDORS (world)
   ═══════════════════════════════════════════════════════════════════════════ */

.corridors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 12px;
}

.corridor {
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--dur);
  cursor: pointer;
}

.corridor:hover {
  border-color: var(--border-purple);
  background: var(--surface-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

[data-page="local"] .corridor:hover {
  border-color: var(--border-teal);
}

.corridor__route {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}

.corridor__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--t1);
  margin-bottom: 6px;
}

.corridor__sub {
  font-size: 12px;
  color: var(--t3);
  line-height: 1.45;
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRICING — bento editorial · diagonal featured stripe
   ═══════════════════════════════════════════════════════════════════════════ */

.price-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.price-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--mono);
  font-size: 12px;
}

.price-anchor__diy {
  color: var(--t3);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 92, 92, 0.45);
}

.price-anchor__arrow {
  color: var(--t4);
}

.price-anchor__us {
  color: var(--teal);
  font-weight: 500;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
  padding-top: 12px;
}

.price {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--dur);
  display: flex;
  flex-direction: column;
}

.price:hover {
  border-color: var(--border-strong);
}

.price--featured {
  overflow: visible;
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan), var(--shadow-md);
}

.price--featured::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, transparent 48%, rgba(12, 35, 64, 0.18) 48%, rgba(45, 212, 191, 0.12) 100%);
  pointer-events: none;
  z-index: 0;
}

.price--featured::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--teal));
  pointer-events: none;
}

.price--featured > * {
  position: relative;
  z-index: 1;
}

.price--featured > .price__badge {
  z-index: 2;
}

.price__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--cyan);
  color: var(--void);
  border-radius: var(--r-sm);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
  box-shadow: var(--shadow-cyan);
}

.price__name {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.price__title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  color: var(--t1);
  margin: 6px 0 14px;
  letter-spacing: -0.02em;
}

.price__amount {
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 400;
  color: var(--warm);
  line-height: 1;
  letter-spacing: -0.03em;
}

.price__amount sup {
  font-size: 22px;
}

.price__was {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--t3);
  text-decoration: line-through;
  margin-top: 2px;
}

.price__period {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.price__features {
  margin: 22px 0;
  display: grid;
  gap: 10px;
  flex: 1;
}

.price__features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}

.price__features .check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: var(--r-xs);
  background: rgba(61, 92, 74, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.price__cta {
  width: 100%;
  margin-top: auto;
}

.price__foot {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t3);
  margin-top: 24px;
}

.price__foot a {
  color: var(--cyan);
}

@media (max-width: 880px) {
  .price-grid { grid-template-columns: 1fr; }
  .price--featured { transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST
   ═══════════════════════════════════════════════════════════════════════════ */

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

.trust__cell {
  padding: 22px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--dur);
}

.trust__cell:hover {
  border-color: var(--border-cyan);
}

.trust__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: var(--r-sm);
  background: rgba(12, 35, 64, 0.08);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--t1);
  margin-bottom: 4px;
}

.trust__sub {
  font-size: 12px;
  color: var(--t3);
  line-height: 1.4;
}

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

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

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════════ */

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__q {
  width: 100%;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  color: var(--t1);
  font-weight: 500;
  text-align: left;
  transition: color var(--dur);
}

.faq__q:hover {
  color: var(--cyan);
}

.faq__chev {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--cyan);
  transition: transform var(--dur) var(--ease);
}

.faq__item[open] .faq__chev {
  transform: rotate(45deg);
}

.faq__a {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--t2);
  line-height: 1.65;
  max-width: 680px;
}

.faq__a a {
  color: var(--cyan);
  border-bottom: 1px solid rgba(12, 35, 64, 0.3);
}

.faq__a a:hover {
  border-bottom-color: var(--cyan);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════════════════ */

.final {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 80px) clamp(24px, 4vw, 32px);
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--inner-glow);
}

.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(45, 212, 191, 0.06), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(12, 35, 64, 0.06), transparent 50%);
  pointer-events: none;
}

.final__title {
  font-size: clamp(36px, 6vw, 62px);
  margin: 14px 0 16px;
  position: relative;
}

.final__sub {
  font-size: 17px;
  color: var(--t2);
  margin-bottom: 32px;
  line-height: 1.55;
  position: relative;
}

.final__cta {
  position: relative;
}

.final__small {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t3);
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
  border-top: 1px solid var(--border);
  padding: clamp(48px, 7vw, 64px) 0 36px;
  background: var(--bg-elev);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 5vw, 48px);
  margin-bottom: 40px;
}

.footer__about-col,
.footer__about {
  font-size: 14px;
  color: var(--t2);
  max-width: 380px;
  line-height: 1.55;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col a {
  font-size: 14px;
  color: var(--t2);
  transition: color var(--dur);
}

.footer__col a:hover {
  color: var(--cyan);
}

.footer__bottom {
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t3);
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   STICKY CTA
   ═══════════════════════════════════════════════════════════════════════════ */

.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 130%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: var(--sticky-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-cyan);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg), var(--shadow-cyan);
  transition: transform var(--dur-slow) var(--ease);
  max-width: calc(100vw - 32px);
}

.sticky-cta.is-visible {
  transform: translate(-50%, 0);
}

.sticky-cta__txt {
  font-size: 13px;
  color: var(--t2);
}

.sticky-cta__txt strong {
  color: var(--t1);
  font-weight: 500;
}

.sticky-cta__btn {
  padding: 10px 16px;
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .sticky-cta__txt { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REVEAL ON SCROLL
   ═══════════════════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════════ */

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

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

  .marquee__track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-glow {
    display: none !important;
  }

  .map__route {
    animation: none;
  }

  .map__pin-halo {
    animation: none;
  }

  .picker-card::after {
    animation: none;
  }

  .eyebrow .live-dot,
  .map__live::before {
    animation: none;
  }

  .btn:hover,
  .svc:hover,
  .corridor:hover,
  .matrix-cell:hover {
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE 2026 — iPhone · iPad · Desktop
   Phone ≤767px | Tablet 768–1023px | Desktop ≥1024px
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Desktop (≥1024) ────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .container {
    padding: 0 clamp(28px, 3vw, 40px);
  }

  .hero {
    gap: clamp(48px, 5vw, 72px);
    align-items: center;
  }

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

  .sticky-cta {
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }
}

/* ── Tablet / iPad (768–1023) ───────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 28px;
  }

  .section {
    padding: clamp(36px, 4.5vw, 56px) 0;
  }

  .section--hero {
    padding: 32px 0 48px;
  }

  .nav__inner {
    padding: 14px 0;
    gap: 12px;
  }

  .nav__links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav__link {
    font-size: 13px;
  }

  .nav__abroad {
    display: none;
  }

  .hero,
  [data-page="world"] .hero,
  [data-page="local"] .hero,
  [data-page="work"] .hero {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
    max-width: none;
  }

  .hero__title {
    font-size: clamp(40px, 5.6vw, 56px);
    letter-spacing: -0.02em;
  }

  .hero__sub {
    font-size: 16px;
    max-width: none;
  }

  .hero__ctas .btn {
    min-height: 44px;
  }

  .picker-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .reason {
    min-height: 72px;
    padding: 12px 8px;
  }

  .sh {
    padding-left: 72px;
    margin-bottom: 28px;
  }

  .sh__title {
    font-size: clamp(32px, 4.2vw, 44px);
  }

  .obligations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }

  .price-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .price {
    padding: 28px 24px;
  }

  .price--featured {
    order: -1;
  }

  .price__features li {
    font-size: 14px;
  }

  .split--spine {
    min-height: 360px;
  }

  .corridor-stage,
  .corridor-stage__panel {
    min-height: 320px;
  }

  .corridor-stage__panel {
    padding: 40px 32px 48px;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 24px;
  }

  .sticky-cta {
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    max-width: min(560px, calc(100vw - 40px));
  }

  .lang-row {
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Local map / week scrubber breathe on iPad */
  .hero__visual-frame,
  .friday-ruler {
    min-height: 0;
  }
}

/* ── Phone / iPhone (≤767) ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .container {
    padding: 0 18px;
  }

  .section {
    padding: 36px 0;
  }

  .section--tight {
    padding: 28px 0;
  }

  .section--hero {
    padding: 20px 0 32px;
    align-items: flex-start;
  }

  .nav__inner {
    padding: 12px 0;
    gap: 10px;
  }

  .nav__links {
    display: none;
  }

  .nav__abroad {
    display: none;
  }

  .nav__brand {
    font-size: 22px;
  }

  .nav__brand-tag {
    font-size: 9px;
  }

  .nav__cta .btn {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero,
  [data-page="world"] .hero,
  [data-page="local"] .hero,
  [data-page="work"] .hero {
    grid-template-columns: 1fr !important;
    gap: 24px;
    max-width: none;
  }

  .hero__copy {
    padding-left: 16px;
  }

  .hero__title {
    font-size: clamp(34px, 9.5vw, 44px);
    margin: 12px 0 14px;
    letter-spacing: -0.02em;
    line-height: 1.08;
  }

  .hero__sub {
    font-size: 15.5px;
    margin-bottom: 20px;
    max-width: none;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero__ctas .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .hero__assurance {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
  }

  .hero__kpis {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
    padding-top: 18px;
  }

  .lang-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
  }

  .lang-pill {
    font-size: 11px;
    padding: 5px 8px;
  }

  .picker-frame,
  [data-page="world"] .picker-frame {
    border-radius: 12px;
  }

  [data-page="world"] .picker-frame .picker-card,
  .picker-card {
    padding: 18px 16px;
  }

  .picker-q {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .picker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px;
    margin-bottom: 14px;
  }

  .reason {
    min-height: 68px;
    padding: 12px 8px;
  }

  .reason__name {
    font-size: 12px;
  }

  .picker-result {
    padding: 14px;
  }

  .picker-list li {
    font-size: 13px;
  }

  .sh {
    padding-left: 0;
    margin-bottom: 22px;
    max-width: none;
  }

  .sh__index,
  .sh:not(:has(.sh__index))::before {
    display: none;
  }

  .sh__title {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 10px;
  }

  .sh__sub {
    font-size: 15px;
    max-width: none;
  }

  .obligations__grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .obligation {
    padding: 20px 18px;
  }

  .split,
  .split--spine {
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .split--spine .split__col {
    flex: none !important;
    padding: 20px 18px;
  }

  .split__spine {
    flex: 0 0 32px !important;
    width: 100%;
    cursor: ns-resize;
  }

  .split__spine-label {
    display: none;
  }

  .split__list li {
    font-size: 13px;
  }

  .price-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
    padding-top: 4px;
  }

  .price {
    padding: 24px 20px;
  }

  .price--featured {
    order: -1;
  }

  .price__cta,
  .price .btn {
    width: 100%;
    min-height: 48px;
  }

  .corridor-stage,
  .corridor-stage__panel {
    min-height: 280px;
  }

  .corridor-stage__panel {
    padding: 28px 20px 36px;
  }

  .corridor-stage__title {
    font-size: clamp(30px, 8vw, 40px);
    max-width: none;
  }

  .corridor-stage__nav {
    padding: 12px 14px;
    gap: 10px;
  }

  .corridor-stage__btn {
    min-height: 40px;
    padding: 10px 12px;
  }

  .faq__q {
    font-size: 16px;
    padding-right: 28px;
  }

  .final,
  .final--quiet {
    padding: 36px 20px !important;
    text-align: center;
  }

  .final__title {
    font-size: clamp(30px, 8vw, 40px);
  }

  .final__cta {
    width: 100%;
    min-height: 48px;
  }

  .footer {
    padding: 40px 0 calc(96px + env(safe-area-inset-bottom, 0px));
  }

  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    transform: translateY(140%);
    width: auto;
    max-width: none;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .sticky-cta.is-visible {
    transform: translateY(0);
  }

  .sticky-cta__txt {
    display: none;
  }

  .sticky-cta__btn {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  .services-grid,
  .services-registry .services-grid {
    grid-template-columns: 1fr !important;
  }

  .btn--lg,
  .btn--xl {
    min-height: 48px;
  }

  .btn:hover,
  .reason:hover,
  .obligation:hover,
  .price:hover {
    transform: none;
  }

  /* Local signature blocks */
  .friday-ruler {
    padding: 20px 16px !important;
  }

  .hero__visual-frame {
    min-height: 280px;
  }

  .evidence-form,
  .seal-card {
    padding: 18px 16px;
  }
}

/* ── Very small phones (≤390) ───────────────────────────────────────── */
@media (max-width: 390px) {
  .container {
    padding: 0 14px;
  }

  .hero__title {
    font-size: 32px;
  }

  .nav__cta .btn .btn-arrow {
    display: none;
  }
}

/* ── iPad landscape polish ──────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
  .section--hero {
    padding-top: 24px;
  }

  .hero__title {
    font-size: clamp(36px, 4.5vw, 48px);
  }

  .picker-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── iOS: prevent input zoom on focus ───────────────────────────────── */
@supports (-webkit-touch-callout: none) {
  input,
  select,
  textarea {
    font-size: 16px;
  }
}
