/* ArzanTickets — arzantickets.com launch site.
   One stylesheet, no build step, no framework. Tokens are copied from the
   product's design system so the launch site and the portal look like the
   same company. */

:root {
  --canvas: #F5F8FD;
  --surface: #ffffff;
  --surface-soft: #FBFCFE;
  --surface-tint: #F0F6FF;
  --navy: #0A1B3D;
  --navy-2: #071228;

  --ink: #0F294D;
  --ink-2: #4A5B77;
  /* Secondary ink is 5.07:1 on white. The prototype used a lighter grey that
     measured 2.95:1 — under the 4.5:1 floor, on the text that carries most of
     the explanation. */
  --ink-3: #626F87;
  --ink-inverse-2: #9DB0D4;

  /* White text sits on this as a fill (buttons, tags, pills). #1A6DFF is
     4.49:1 with white — a hundredth under the floor — so the blue is nudged
     one step darker. It reads as the same blue and every fill now passes. */
  --brand: #1563F0;
  --brand-deep: #0B4FD6;
  --brand-light: #4E93FF;
  --brand-soft: #EAF2FF;
  --brand-ring: rgba(21, 99, 240, .24);

  --grad-brand: linear-gradient(135deg, #1563F0, #0B4FD6);
  --grad-teal: linear-gradient(135deg, #16B8C8, #0E8FA8);
  --grad-violet: linear-gradient(135deg, #7C6BFF, #5B45E0);
  --grad-emerald: linear-gradient(135deg, #16C08A, #0E9268);
  --grad-amber: linear-gradient(135deg, #FFB020, #F08C00);
  --grad-rose: linear-gradient(135deg, #FF6B8A, #E63E63);

  --success: #0E7C5A;
  --success-soft: #E4F5EE;
  --warn: #9A6316;
  --warn-soft: #FDF2E3;
  --info: #1563F0;
  --info-soft: #EAF2FF;

  --line: #E4EAF4;
  --line-strong: #D5DEEC;

  --shadow-1: 0 1px 2px rgba(15, 41, 77, .04), 0 1px 3px rgba(15, 41, 77, .03);
  --shadow-2: 0 4px 16px rgba(15, 41, 77, .07), 0 24px 48px -28px rgba(15, 41, 77, .28);
  --shadow-brand: 0 8px 24px -8px rgba(26, 109, 255, .45);

  --r-sm: 7px; --r-md: 10px; --r-lg: 14px; --r-xl: 18px; --r-2xl: 24px; --r-pill: 999px;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Mono', Menlo, monospace;

  --page: 1180px;
  --pad: 24px;
  --ribbon-h: 40px;
}

/* ── Reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px; line-height: 1.6;
  color: var(--ink); background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--page); margin: 0 auto; padding-inline: var(--pad); }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Launch ribbon ───────────────────────────────────────────────────── */
.ribbon {
  position: relative; z-index: 60;
  background: var(--navy); color: #fff;
  font-size: 12.5px; font-weight: 600;
}
.ribbon-in {
  min-height: var(--ribbon-h);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap; text-align: center; padding-block: 8px;
}
.ribbon-dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: #22C98A; box-shadow: 0 0 0 0 rgba(34, 201, 138, .6);
  animation: pulse 2.4s ease-out infinite;
}
.ribbon a { color: #fff; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(34, 201, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 201, 138, 0); }
}

/* ── Header ──────────────────────────────────────────────────────────── */
.site-head {
  position: sticky; top: 0; z-index: 50;
  padding: 10px 0 0; background: var(--canvas);
}
.head-box {
  position: relative;   /* the mega panels are measured against this box */
  display: flex; align-items: center; gap: 14px;
  height: 58px; padding: 0 10px 0 16px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-1);
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; font-weight: 700; letter-spacing: -.02em; }
.brand-glyph {
  width: 30px; height: 30px; border-radius: 8px; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(140deg, #4361F0, #1B2E8F);
  color: #fff; font-weight: 800; font-size: 15px;
}
.brand-word { font-size: 16.5px; }
.brand-word b { font-weight: 800; }

.head-nav { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: 14px; font-weight: 650; color: var(--ink-2);
  padding: 9px 12px; border-radius: var(--r-md);
  transition: background .15s ease, color .15s ease;
}
.nav-trigger svg { opacity: .55; transition: transform .2s ease; }
.nav-trigger:hover { background: var(--surface-tint); color: var(--brand-deep); }
.nav-trigger[aria-expanded='true'] { background: var(--brand-soft); color: var(--brand-deep); }
.nav-trigger[aria-expanded='true'] svg { transform: rotate(180deg); }
.nav-link {
  font-size: 14px; font-weight: 650; color: var(--ink-2);
  padding: 9px 12px; border-radius: var(--r-md);
}
.nav-link:hover { background: var(--surface-tint); color: var(--brand-deep); }

.head-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; flex: none; }
.head-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 650; color: var(--ink-2);
  padding: 8px 12px; border-radius: var(--r-md);
}
.head-phone:hover { color: var(--brand-deep); background: var(--surface-tint); }

.burger {
  display: none; width: 40px; height: 40px; border-radius: var(--r-md);
  border: 1px solid var(--line); place-items: center; align-content: center; gap: 4px;
}
.burger span { display: block; width: 17px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .22s ease, opacity .18s ease; }
.nav-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mega menu ───────────────────────────────────────────────────────── */
.mega-wrap { position: static; }
.mega {
  /* Anchored to its trigger but clamped inside the header box by script, so a
     menu near the right edge opens leftwards instead of off the screen. */
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 55;
  width: min(760px, calc(100vw - 2 * var(--pad)));
  display: grid; grid-template-columns: 1fr 250px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--shadow-2);
  overflow: hidden;
}
.mega[hidden] { display: none; }
.mega-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; padding: 16px; }
.mega-col-t {
  font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); padding: 6px 10px 8px;
}
.mega-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 9px 10px; border-radius: var(--r-md);
  transition: background .14s ease;
}
.mega-item:hover { background: var(--surface-tint); }
.mega-item .mark { flex: none; }
.mega-item strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); }
.mega-item small { display: block; font-size: 11.5px; color: var(--ink-3); line-height: 1.5; margin-top: 2px; }

.mega-promo {
  padding: 20px 18px; background: var(--navy); color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.mega-promo .kick { font-size: 10px; font-weight: 800; letter-spacing: .14em; color: var(--brand-light); }
.mega-promo h4 { font-size: 15px; font-weight: 750; line-height: 1.35; }
.mega-promo p { font-size: 12.5px; color: var(--ink-inverse-2); line-height: 1.6; }

/* ── Mobile drawer ───────────────────────────────────────────────────── */
.m-nav { display: none; }
.m-nav-group { border-bottom: 1px solid var(--line); padding: 12px 0; }
.m-nav-group h4 { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.m-nav-group a { display: block; padding: 9px 4px; font-size: 14.5px; font-weight: 650; }
.m-nav-group a:hover { color: var(--brand-deep); }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 48px; padding: 0 22px; border-radius: var(--r-md);
  font-size: 15px; font-weight: 750; white-space: nowrap;
  background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-brand);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgba(26, 109, 255, .6); }
.btn-ghost {
  background: none; color: var(--ink); border: 1px solid var(--line-strong); box-shadow: none;
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-deep); background: var(--surface-tint); transform: none; }
.btn-sm { height: 40px; padding: 0 16px; font-size: 13.5px; }
.btn-light { background: #fff; color: var(--navy); box-shadow: none; }
.btn-light:hover { box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .5); }
.btn-outline-light { background: none; color: #fff; border: 1px solid rgba(255, 255, 255, .35); box-shadow: none; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); transform: none; }

/* ── Section furniture ───────────────────────────────────────────────── */
.section { padding: 76px 0; }
.section-tight { padding: 58px 0; }
.sec-head { max-width: 760px; margin-bottom: 40px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-deep); margin-bottom: 14px;
}
.kicker::before { content: ''; width: 22px; height: 2px; border-radius: 2px; background: var(--grad-brand); }
.kicker.light { color: var(--brand-light); }
h1, h2, h3, h4 { letter-spacing: -.03em; line-height: 1.18; }
h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; }
h2 { font-size: clamp(25px, 3.4vw, 36px); font-weight: 800; }
h3 { font-size: 18px; font-weight: 750; }
h4 { font-size: 16px; font-weight: 750; }
.sec-head p { font-size: 16px; color: var(--ink-2); line-height: 1.7; margin-top: 14px; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 64px 0 56px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-bg .blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5;
}
.hero-bg .b1 { width: 460px; height: 460px; top: -140px; left: -110px; background: #BFD9FF; }
.hero-bg .b2 { width: 380px; height: 380px; top: 40px; right: -100px; background: #D8CFFF; }
.hero-bg .b3 { width: 320px; height: 320px; bottom: -140px; left: 40%; background: #C7F2E6; }
.hero-in { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 48px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-1);
  font-size: 12.5px; color: var(--ink-2); margin-bottom: 22px;
}
.hero-badge strong { color: var(--ink); font-weight: 750; }
.badge-sep { width: 1px; height: 12px; background: var(--line-strong); }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: #22C98A; animation: pulse 2.4s ease-out infinite; }

.hero h1 .rot { color: var(--brand-deep); }
.hero-lead { font-size: 17px; color: var(--ink-2); line-height: 1.7; margin-top: 20px; max-width: 54ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-note { font-size: 12.5px; color: var(--ink-3); margin-top: 18px; line-height: 1.6; }

/* Hero visual — a static mock of the search screen */
.hero-visual { position: relative; min-width: 0; }
.mock {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-2xl); box-shadow: var(--shadow-2); overflow: hidden;
}
.mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--surface-soft);
}
.mock-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.mock-url {
  margin-left: 8px; flex: 1; font-size: 11px; color: var(--ink-3);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px 12px;
}
.mock-body { padding: 16px; }
.mock-route { display: flex; align-items: center; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.mock-city strong { display: block; font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.mock-city span { font-size: 11.5px; color: var(--ink-3); }
.mock-path { flex: 1; display: flex; align-items: center; gap: 7px; color: var(--brand); }
.mock-path i { flex: 1; height: 1px; background: var(--line-strong); }
.mock-offer {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 10px; border-radius: var(--r-md); border: 1px solid transparent;
}
.mock-offer + .mock-offer { margin-top: 4px; }
.mock-offer.best { border-color: var(--brand); background: var(--brand-soft); }
.mock-offer img { width: 30px; height: 30px; object-fit: contain; flex: none; }
.mock-offer-mid { flex: 1; min-width: 0; }
.mock-times { font-size: 13.5px; font-weight: 700; }
.mock-meta { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.mock-price { font-size: 16px; font-weight: 800; font-family: var(--mono); }
.mock-tag {
  font-size: 9.5px; font-weight: 800; letter-spacing: .08em;
  background: var(--brand); color: #fff; padding: 2px 6px; border-radius: 4px; margin-left: 6px;
}

.hero-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-2);
}
.hero-chip .cv { font-size: 15px; font-weight: 800; font-family: var(--mono); }
.hero-chip .cl { font-size: 10.5px; color: var(--ink-3); }
.hero-chip .ci { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; color: #fff; }
.chip-a { top: -20px; right: 12px; }
.chip-b { bottom: -22px; left: -18px; }

/* ── Airline strip ───────────────────────────────────────────────────── */
.strip { margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line); }
.strip-label { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-3); margin-bottom: 18px; }
.strip-label strong { font-size: 14px; font-weight: 800; color: var(--ink); }
.strip-row { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.strip-row img { height: 26px; width: auto; opacity: .62; filter: grayscale(1); transition: opacity .2s ease, filter .2s ease; }
.strip-row img:hover { opacity: 1; filter: none; }

/* ── Capability band ─────────────────────────────────────────────────── */
.caps {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
}
.cap { background: var(--surface); padding: 26px 20px; text-align: center; }
.cap-v { font-size: clamp(24px, 3vw, 32px); font-weight: 800; font-family: var(--mono); letter-spacing: -.02em; }
.cap-l { font-size: 12.5px; color: var(--ink-3); margin-top: 6px; }

/* ── Cards ───────────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 26px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-strong); }
.card h3 { margin-top: 18px; }
.card p { font-size: 14px; color: var(--ink-2); line-height: 1.7; margin-top: 10px; }
.card-n {
  position: absolute; top: 20px; right: 22px;
  font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--ink-3);
}

/* ── Steps ───────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 18px; }
.step-n {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  color: #fff; font-family: var(--mono); font-size: 13px; font-weight: 800; margin-bottom: 14px;
}
.step h4 { font-size: 15px; }
.step p { font-size: 13px; color: var(--ink-2); line-height: 1.65; margin-top: 8px; }

/* ── Product cards ───────────────────────────────────────────────────── */
.prod-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.prod {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.prod:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.prod-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-tint); }
.prod-media img { width: 100%; height: 100%; object-fit: cover; }
.prod-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 800; letter-spacing: .08em;
  padding: 4px 9px; border-radius: var(--r-pill);
  background: var(--surface); box-shadow: var(--shadow-1);
}
.prod-tag.success { color: var(--success); }
.prod-tag.info { color: var(--info); }
.prod-tag.warn { color: var(--warn); }
.prod-body { padding: 18px 20px 22px; }
.prod-body p { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; margin-top: 8px; }

/* ── Versus table ────────────────────────────────────────────────────── */
.versus-band { background: var(--navy); color: #fff; padding: 76px 0; }
.versus-band .sec-head p { color: var(--ink-inverse-2); }
.versus-band h2 { color: #fff; }
.vs {
  border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--r-xl);
  overflow: hidden; background: rgba(255, 255, 255, .03);
}
.vs-row { display: grid; grid-template-columns: 1.1fr 1.2fr 1.2fr; gap: 16px; padding: 16px 22px; }
.vs-row + .vs-row { border-top: 1px solid rgba(255, 255, 255, .08); }
.vs-head { background: rgba(255, 255, 255, .05); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.vs-head .ours { color: #6FE3B6; }
.vs-head .theirs { color: var(--ink-inverse-2); }
.vs-point { font-size: 14px; font-weight: 700; }
.vs-ours { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; font-weight: 600; }
.vs-tick {
  width: 17px; height: 17px; border-radius: 50%; flex: none; margin-top: 1px;
  display: grid; place-items: center; background: rgba(34, 201, 138, .18); color: #6FE3B6;
}
.vs-theirs { font-size: 13.5px; color: var(--ink-inverse-2); }

/* ── Devices ─────────────────────────────────────────────────────────── */
.devices { display: grid; grid-template-columns: minmax(0, 1fr) 240px; gap: 34px; align-items: end; }
.laptop { background: var(--navy-2); border-radius: var(--r-2xl) var(--r-2xl) 0 0; padding: 12px 12px 0; box-shadow: var(--shadow-2); }
.laptop-screen { border-radius: var(--r-lg) var(--r-lg) 0 0; overflow: hidden; background: var(--canvas); }
.laptop-base { height: 14px; background: linear-gradient(180deg, #1B2942, #0B1220); border-radius: 0 0 20px 20px; margin: 0 -20px; }
.phone { width: 240px; border-radius: 32px; background: var(--navy-2); padding: 9px; box-shadow: var(--shadow-2); }
.phone-screen { border-radius: 25px; overflow: hidden; background: var(--surface); }
.dev-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 26px; margin-top: 38px; }
.dev-point { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); }
.tick {
  width: 19px; height: 19px; border-radius: 50%; flex: none; margin-top: 2px;
  display: grid; place-items: center; background: var(--success-soft); color: var(--success);
}

/* Screenshot-style mock content used inside the laptop and the phone */
.shot { padding: 14px; font-size: 11px; }
.shot-head { display: flex; align-items: center; gap: 9px; padding-bottom: 11px; border-bottom: 1px solid var(--line); }
.shot-title { font-size: 12.5px; font-weight: 750; }
.shot-row {
  display: flex; align-items: center; gap: 9px; padding: 9px 8px;
  border-radius: 8px; margin-top: 6px; background: var(--surface-soft); border: 1px solid var(--line);
}
.shot-row.best { border-color: var(--brand); background: var(--brand-soft); }
.shot-row img { width: 20px; height: 20px; object-fit: contain; flex: none; }
.shot-row b { font-size: 11.5px; }
.shot-row .sp { margin-left: auto; font-family: var(--mono); font-weight: 800; font-size: 12px; }
.shot-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.shot-kpi { background: var(--surface-soft); border: 1px solid var(--line); border-radius: 8px; padding: 9px 10px; }
.shot-kpi b { display: block; font-family: var(--mono); font-size: 13px; font-weight: 800; }
.shot-kpi span { font-size: 9.5px; color: var(--ink-3); }
.shot-chips { display: flex; gap: 5px; margin-top: 10px; flex-wrap: wrap; }
.shot-chip { font-size: 9.5px; font-weight: 700; padding: 3px 8px; border-radius: var(--r-pill); background: var(--surface-tint); color: var(--ink-2); }
.shot-chip.on { background: var(--brand); color: #fff; }

/* ── Notifications & CRM ─────────────────────────────────────────────── */
.tell { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.tell-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 26px 24px; }
.tell-head { display: flex; gap: 16px; align-items: flex-start; }
.tell-head p { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; margin-top: 8px; }
.tell-points { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.tell-points li { display: flex; gap: 9px; font-size: 13px; color: var(--ink-2); line-height: 1.6; }
.tell-points li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); flex: none; margin-top: 8px; }

.notif { margin: 18px 0 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.notif-row { display: flex; gap: 11px; padding: 12px 14px; }
.notif-row + .notif-row { border-top: 1px solid var(--line); }
.notif-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; margin-top: 6px; }
.notif-dot.ok { background: var(--success); }
.notif-dot.warn { background: var(--warn); }
.notif-dot.info { background: var(--brand); }
.notif-b strong { display: block; font-size: 13px; font-weight: 700; }
.notif-b span { display: block; font-size: 12px; color: var(--ink-3); line-height: 1.55; margin-top: 2px; }
.notif-w { margin-left: auto; font-size: 10.5px; color: var(--ink-3); white-space: nowrap; }

.crm { margin: 18px 0 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.crm-row { display: flex; align-items: center; gap: 11px; padding: 12px 14px; }
.crm-row + .crm-row { border-top: 1px solid var(--line); }
.crm-av { width: 32px; height: 32px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 800; }
.crm-b strong { display: block; font-size: 13px; font-weight: 700; }
.crm-b span { font-size: 11.5px; color: var(--ink-3); }
.crm-tag { margin-left: auto; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: var(--r-pill); }
.crm-tag.ok { background: var(--success-soft); color: var(--success); }
.crm-tag.warn { background: var(--warn-soft); color: var(--warn); }
.crm-tag.info { background: var(--info-soft); color: var(--brand-deep); }

/* ── Coverage ────────────────────────────────────────────────────────── */
.coverage { background: var(--navy); color: #fff; padding: 76px 0; }
.coverage h2 { color: #fff; }
.coverage-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.coverage p { color: var(--ink-inverse-2); font-size: 16px; line-height: 1.7; margin-top: 14px; }
.cov-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 32px; }
.cov-v { font-family: var(--mono); font-size: 28px; font-weight: 800; }
.cov-l { font-size: 12.5px; color: var(--ink-inverse-2); margin-top: 4px; }
.cov-media { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.cov-media figure { border-radius: var(--r-xl); overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); }
.cov-media figure:first-child { grid-column: 1 / -1; }
.cov-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 9; }

/* ── Support ─────────────────────────────────────────────────────────── */
.support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.support-card { display: flex; gap: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 24px; }
.support-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; margin-top: 8px; }

/* ── Plans ───────────────────────────────────────────────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: start; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 28px 24px 26px; display: flex; flex-direction: column;
}
.plan.featured { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-ring), var(--shadow-2); }
.plan-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan-name { font-size: 17px; font-weight: 800; }
.plan-tag { font-size: 10px; font-weight: 800; letter-spacing: .09em; padding: 4px 9px; border-radius: var(--r-pill); }
.plan-tag.neutral { background: var(--surface-tint); color: var(--ink-3); }
.plan-tag.brand { background: var(--brand); color: #fff; }
.plan-tag.warn { background: var(--warn-soft); color: var(--warn); }
.plan-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 20px; }
.plan-price { font-family: var(--mono); font-size: 36px; font-weight: 800; letter-spacing: -.03em; }
.plan-per { font-size: 13px; color: var(--ink-3); }
.plan-blurb { font-size: 13.5px; color: var(--ink-2); line-height: 1.65; margin-top: 12px; }
.plan-items { margin: 20px 0 24px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.plan-items li { display: flex; gap: 10px; font-size: 13.5px; color: var(--ink-2); }
.plan-items li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); flex: none; margin-top: 8px; }
.plan .btn { margin-top: auto; width: 100%; }

/* ── Sub-page hero ───────────────────────────────────────────────────── */
.page-hero { position: relative; padding: 56px 0 44px; overflow: hidden; }
.page-hero::after {
  content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  top: -220px; right: -140px; background: #CFE1FF; filter: blur(90px); opacity: .55; pointer-events: none;
}
.page-hero-in { position: relative; z-index: 1; max-width: 780px; }
.page-hero p { font-size: 17px; color: var(--ink-2); line-height: 1.7; margin-top: 16px; }
.page-stat {
  display: inline-flex; align-items: baseline; gap: 10px; margin-top: 26px;
  padding: 12px 18px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-1);
}
.page-stat b { font-family: var(--mono); font-size: 24px; font-weight: 800; }
.page-stat span { font-size: 13px; color: var(--ink-3); }

.point-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.point {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 24px;
}
.point h3 { font-size: 16.5px; }
.point p { font-size: 14px; color: var(--ink-2); line-height: 1.7; margin-top: 9px; }
.point-i { font-family: var(--mono); font-size: 12px; font-weight: 800; color: var(--brand); }

.page-photo { border-radius: var(--r-2xl); overflow: hidden; border: 1px solid var(--line); margin-top: 40px; }
.page-photo img { width: 100%; aspect-ratio: 21 / 8; object-fit: cover; }

/* ── CTA panel ───────────────────────────────────────────────────────── */
.cta {
  background: var(--navy); color: #fff; border-radius: var(--r-2xl);
  padding: 48px clamp(24px, 5vw, 56px); overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 40px; align-items: center;
}
.cta h2 { color: #fff; }
.cta p { color: var(--ink-inverse-2); font-size: 15.5px; line-height: 1.7; margin-top: 14px; }
.cta-points { margin: 24px 0 28px; display: flex; flex-direction: column; gap: 11px; }
.cta-points li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; }
.cta-check {
  width: 20px; height: 20px; border-radius: 50%; flex: none; margin-top: 1px;
  display: grid; place-items: center; background: rgba(34, 201, 138, .18); color: #6FE3B6;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-media { border-radius: var(--r-xl); overflow: hidden; border: 1px solid rgba(255, 255, 255, .14); }
.cta-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ── Contact ─────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 34px; align-items: start; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 18px;
}
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .ci { width: 40px; height: 40px; border-radius: var(--r-md); flex: none; display: grid; place-items: center; color: #fff; }
.contact-row small { display: block; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.contact-row a, .contact-row strong { display: block; font-size: 16px; font-weight: 700; margin-top: 3px; word-break: break-word; }
.contact-row a:hover { color: var(--brand-deep); }
.contact-note { font-size: 13px; color: var(--ink-2); line-height: 1.7; }

.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12px; font-weight: 750; letter-spacing: .03em; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 14.5px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-md);
  padding: 12px 14px; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-ring);
}
.form-note { font-size: 12px; color: var(--ink-3); line-height: 1.6; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-foot { background: var(--navy); color: #fff; padding: 56px 0 28px; margin-top: 20px; }
.foot-top { display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(4, minmax(0, 1fr)); gap: 34px; }
.foot-brand .brand { color: #fff; }
.foot-brand p { font-size: 13.5px; color: var(--ink-inverse-2); line-height: 1.7; margin-top: 16px; max-width: 34ch; }
.foot-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.foot-contact a { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 650; }
.foot-contact a:hover { color: var(--brand-light); }
.foot-col h4 { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-inverse-2); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 13.5px; color: rgba(255, 255, 255, .82); padding: 5px 0; }
.foot-col a:hover { color: #fff; }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12.5px; color: var(--ink-inverse-2);
}

/* ── Scroll to top ───────────────────────────────────────────────────── */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-2); color: var(--ink-2);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.to-top.on { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: var(--brand-deep); border-color: var(--brand); }

/* ── Reveal on scroll ──────────────────────────────────────────────────
   Gated on the .js class, which the inline snippet in <head> sets before
   anything paints. Without that gate, a blocked or failed script would leave
   most of the page at opacity 0 — the animation would be hiding the site
   rather than introducing it. */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s cubic-bezier(.22, 1, .36, 1); }
.js .reveal.in { opacity: 1; transform: none; }

/* ── Gradient helpers ──────────────────────────────────────────────────
   These are the gradients that carry WHITE TEXT — step numbers, avatars,
   icon tiles. They are deliberately darker than --grad-teal and friends,
   which are decorative fills behind line art and are never written on.
   The bright amber behind white text measured 1.61:1. */
.g-blue { background: linear-gradient(135deg, #1563F0, #0B4FD6); }
.g-teal { background: linear-gradient(135deg, #0A7D93, #075E6F); }
.g-violet { background: linear-gradient(135deg, #6A56E8, #5B45E0); }
.g-emerald { background: linear-gradient(135deg, #0B8560, #0A6E50); }
.g-amber { background: linear-gradient(135deg, #9A6316, #7E5010); }
.g-rose { background: linear-gradient(135deg, #D63057, #B82547); }

/* The squircle mark used beside every feature and menu item */
.mark { display: inline-grid; place-items: center; border-radius: 30%; color: #fff; flex: none; }
.mark svg { width: 58%; height: 58%; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-in { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .coverage-in, .cta, .contact-grid { grid-template-columns: 1fr; }
  .cta-media, .cov-media { order: -1; }
}
@media (max-width: 900px) {
  .head-nav { display: none; }
  .head-phone { display: none; }
  .burger { display: grid; }
  .nav-open .m-nav { display: block; }
  .m-nav {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--r-lg); margin-top: 8px; padding: 6px 18px 18px;
    box-shadow: var(--shadow-2); max-height: calc(100vh - 140px); overflow-y: auto;
  }
  .grid-3, .prod-grid, .plan-grid, .tell, .support-grid, .point-list { grid-template-columns: 1fr; }
  .caps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .devices { grid-template-columns: 1fr; justify-items: center; }
  .dev-points { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vs-row { grid-template-columns: 1fr; gap: 6px; }
  .vs-head { display: none; }
  .vs-theirs::before { content: 'Traditional GDS: '; color: rgba(255, 255, 255, .5); }
}
@media (max-width: 620px) {
  :root { --pad: 16px; }
  .section { padding: 52px 0; }
  .section-tight { padding: 40px 0; }
  .grid-2, .steps, .foot-top { grid-template-columns: 1fr; }
  .hero-chip { display: none; }
  .cov-stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .ribbon, .site-head, .to-top, .hero-bg { display: none !important; }
  body { background: #fff; }
}

/* ══════════════════════════════════════════════════════════════════════
   Language switcher
   ══════════════════════════════════════════════════════════════════════ */
.lang-wrap { position: relative; flex: none; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 650; color: var(--ink-2);
  padding: 8px 11px; border-radius: var(--r-md);
  transition: background .15s ease, color .15s ease;
}
.lang-btn:hover { background: var(--surface-tint); color: var(--brand-deep); }
.lang-btn[aria-expanded='true'] { background: var(--brand-soft); color: var(--brand-deep); }
.lang-btn[aria-expanded='true'] svg:last-child { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); inset-inline-end: 0; z-index: 56;
  min-width: 168px; padding: 6px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-2);
}
.lang-menu[hidden] { display: none; }
.lang-menu a {
  display: block; padding: 9px 12px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 650;
}
.lang-menu a:hover { background: var(--surface-tint); color: var(--brand-deep); }
.lang-menu a[aria-current='true'] { background: var(--brand-soft); color: var(--brand-deep); }

/* ══════════════════════════════════════════════════════════════════════
   Right-to-left
   Only the physical properties actually used above need mirroring. Anything
   that must stay left-to-right inside an RTL page — a phone number, a price,
   an airport pair, an email — carries dir="ltr" in the markup instead, because
   "DXB → LHR" reversed is a different route.
   ══════════════════════════════════════════════════════════════════════ */
[dir='rtl'] { text-align: right; }
[dir='rtl'] .kicker::before { transform: scaleX(-1); }
[dir='rtl'] .flip-rtl { transform: scaleX(-1); }

[dir='rtl'] .sec-head.center,
[dir='rtl'] .cap,
[dir='rtl'] .form-note[style*='center'] { text-align: center; }

[dir='rtl'] .card-n { right: auto; left: 22px; }
[dir='rtl'] .prod-tag { left: auto; right: 12px; }
[dir='rtl'] .hero-chip.chip-a { right: auto; left: 12px; }
[dir='rtl'] .hero-chip.chip-b { left: auto; right: -18px; }
[dir='rtl'] .hero-bg .b1 { left: auto; right: -110px; }
[dir='rtl'] .hero-bg .b2 { right: auto; left: -100px; }
[dir='rtl'] .page-hero::after { right: auto; left: -140px; }
[dir='rtl'] .to-top { right: auto; left: 22px; }

/* Lists that draw their own bullet */
[dir='rtl'] .plan-items, [dir='rtl'] .tell-points { padding-inline-start: 0; }

/* The head actions sit at the far end of the bar in both directions; margin-left
   auto would pin them to the wrong side. */
[dir='rtl'] .head-actions { margin-left: 0; margin-right: auto; }
[dir='rtl'] .head-nav { margin-left: 0; margin-right: 8px; }
[dir='rtl'] .notif-w, [dir='rtl'] .crm-tag, [dir='rtl'] .shot-row .sp,
[dir='rtl'] .plan-price-row, [dir='rtl'] .mock-price { margin-left: 0; margin-right: auto; }

/* Numerals, codes and addresses keep their own direction wherever they appear. */
[dir='rtl'] [dir='ltr'] { text-align: left; }
