:root {
  --ink: #07101f;
  --ink-deep: #030813;
  --ink-soft: #0d192a;
  --surface: #101e32;
  --surface-2: #14253b;
  --line: rgba(176, 203, 235, 0.16);
  --line-strong: rgba(176, 203, 235, 0.28);
  --text: #f7fbff;
  --muted: #9db0c8;
  --muted-2: #71859f;
  --blue: #1668ff;
  --blue-bright: #4388ff;
  --cyan: #83d8ff;
  --lavender: #c6b8ff;
  --green: #78e2aa;
  --amber: #ffd479;
  --red: #ff8f9e;
  --font-sans: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --container: 1200px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; }

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% -10%, rgba(22, 104, 255, 0.17), transparent 34%),
    linear-gradient(180deg, var(--ink-deep) 0, var(--ink) 18%, var(--ink) 100%);
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.site-shell { min-height: 100vh; overflow: clip; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 48px), 820px); margin-inline: auto; }
.section { padding: 120px 0; position: relative; }
.section-tight { padding: 84px 0; }
.section-border { border-top: 1px solid var(--line); }
.section-blue { background: var(--blue); color: white; }

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(3, 8, 19, 0.68);
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, background 180ms ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(3, 8, 19, 0.9); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 700; letter-spacing: -0.035em; }
.brand img { flex: 0 0 auto; }
.brand b { color: var(--cyan); font-weight: 700; }

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav > a:not(.button) { color: var(--muted); font-size: 14px; font-weight: 600; transition: color 160ms ease; }
.site-nav > a:hover, .site-nav > a[aria-current='page'] { color: var(--text); }

.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: transparent; color: white; align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.nav-toggle span:not(.sr-only) { width: 18px; height: 1.5px; background: currentColor; transition: transform 180ms ease; }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-3.75px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(131, 216, 255, 0.7); outline-offset: 3px; }
.button-primary { background: var(--blue); color: white; box-shadow: 0 14px 34px rgba(22, 104, 255, 0.28); }
.button-primary:hover { background: var(--blue-bright); }
.button-secondary { border-color: var(--line-strong); background: rgba(255, 255, 255, 0.03); color: white; }
.button-secondary:hover { border-color: rgba(255, 255, 255, 0.42); background: rgba(255, 255, 255, 0.07); }
.button-light { background: white; color: var(--ink-deep); }
.button-light:hover { background: #eaf4ff; }
.button-dark { background: var(--ink-deep); color: white; }
.button-small { min-height: 42px; padding-inline: 17px; font-size: 13px; border-radius: 9px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-weight: 700; font-size: 14px; }
.text-link::after { content: '→'; transition: transform 160ms ease; }
.text-link:hover::after { transform: translateX(4px); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 { margin-bottom: 28px; font-size: clamp(52px, 6.4vw, 88px); line-height: 0.98; letter-spacing: -0.065em; font-weight: 600; }
h2 { margin-bottom: 24px; font-size: clamp(38px, 4.2vw, 62px); line-height: 1.05; letter-spacing: -0.055em; font-weight: 600; }
h3 { margin-bottom: 14px; font-size: 22px; line-height: 1.25; letter-spacing: -0.035em; }
.lead { max-width: 690px; color: #c4d1e1; font-size: clamp(18px, 2vw, 22px); line-height: 1.6; letter-spacing: -0.018em; }
.section-intro { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: 72px; margin-bottom: 72px; }
.section-intro p { margin-bottom: 6px; color: var(--muted); font-size: 18px; }
.mono-label { display: block; margin-bottom: 24px; color: var(--cyan); font-family: var(--font-mono); font-size: 12px; font-weight: 500; line-height: 1.2; letter-spacing: 0.08em; text-transform: uppercase; }

.hero { min-height: calc(100vh - 78px); display: flex; align-items: center; padding: 92px 0 68px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(480px, 0.96fr); align-items: center; gap: 78px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 span { color: var(--blue-bright); }
.hero-copy .lead { max-width: 640px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 24px; color: var(--muted-2); font-family: var(--font-mono); font-size: 12px; }

.code-window { border: 1px solid var(--line-strong); border-radius: var(--radius); background: rgba(8, 18, 33, 0.88); box-shadow: var(--shadow); overflow: hidden; }
.code-window::after { content: ''; display: block; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan), transparent); }
.code-toolbar { height: 54px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.018); }
.code-route { display: flex; align-items: center; gap: 10px; color: var(--muted); font-family: var(--font-mono); font-size: 11px; }
.method { color: var(--green); font-weight: 500; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted-2); opacity: 0.55; }
.copy-button { padding: 7px 10px; border: 1px solid var(--line); border-radius: 7px; background: transparent; color: var(--muted); font-family: var(--font-mono); font-size: 10px; cursor: pointer; }
.copy-button:hover { color: white; border-color: var(--line-strong); }
.code-window pre { margin: 0; padding: 24px 26px 28px; overflow-x: auto; color: #dbe8f8; font: 12px/1.82 var(--font-mono); tab-size: 2; }
.code-window code { font-family: inherit; }
.token-key { color: var(--cyan); }
.token-string { color: var(--lavender); }
.token-number { color: var(--amber); }
.token-bool { color: var(--green); }
.token-muted { color: var(--muted-2); }

.hero-code { position: relative; }
.hero-code::before { content: ''; position: absolute; z-index: -1; inset: -20%; background: radial-gradient(circle, rgba(22, 104, 255, 0.2), transparent 60%); filter: blur(20px); }
.response-meta { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.response-meta div { padding: 20px; border-right: 1px solid var(--line); }
.response-meta div:last-child { border-right: 0; }
.response-meta span { display: block; color: var(--muted-2); font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; }
.response-meta strong { display: block; margin-top: 6px; font-size: 20px; font-weight: 600; letter-spacing: -0.04em; }

.trust-rail { padding: 34px 0; border-block: 1px solid var(--line); }
.trust-inner { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 42px; }
.trust-caption { color: var(--muted-2); font-size: 12px; line-height: 1.5; }
.logo-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 26px 40px; }
.client-logo-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 152px;
  max-height: 42px;
  object-fit: contain;
  opacity: 0.84;
  transition: opacity 180ms ease, transform 180ms ease;
}
.client-logo-image:hover { opacity: 1; transform: translateY(-1px); }
.logo-row .client-logo-image { max-width: 142px; max-height: 34px; }
.logo-row .logo-google { max-width: 104px; }
.logo-row .logo-microsoft { max-width: 130px; }
.logo-row .logo-british-airways { max-width: 154px; }
.logo-row .logo-air-france-klm { max-width: 150px; }
.logo-cell .logo-google { max-width: 124px; }
.logo-cell .logo-british-airways { max-width: 184px; }
.logo-cell .logo-air-france-klm { max-width: 174px; }
.logo-cell .logo-austrian { max-width: 170px; }

.data-stage { display: grid; grid-template-columns: 0.83fr 1.17fr; gap: 80px; align-items: center; }
.country-lockup { display: flex; align-items: center; gap: 18px; margin-bottom: 54px; }
.country-code { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--cyan); font-family: var(--font-mono); font-size: 13px; }
.country-lockup strong { display: block; font-size: 27px; letter-spacing: -0.04em; }
.country-lockup span { color: var(--muted); font-size: 13px; }
.score-line { padding-bottom: 28px; border-bottom: 1px solid var(--line); display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.score-line span { color: var(--muted); }
.score-value { display: flex; align-items: baseline; gap: 12px; }
.score-value strong { font-size: clamp(66px, 8vw, 104px); font-weight: 500; line-height: 0.84; letter-spacing: -0.07em; }
.score-value small { color: var(--muted-2); font-family: var(--font-mono); font-size: 11px; }
.rank-line { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); }
.rank-line strong { color: white; font-size: 24px; font-weight: 600; }
.access-list { border-top: 1px solid var(--line); }
.access-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.access-row-name { display: flex; align-items: center; gap: 13px; color: #cbd8e7; }
.access-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 5px rgba(67, 136, 255, 0.1); }
.access-dot.green { background: var(--green); box-shadow: 0 0 0 5px rgba(120, 226, 170, 0.09); }
.access-dot.cyan { background: var(--cyan); box-shadow: 0 0 0 5px rgba(131, 216, 255, 0.09); }
.access-dot.amber { background: var(--amber); box-shadow: 0 0 0 5px rgba(255, 212, 121, 0.09); }
.access-dot.red { background: var(--red); box-shadow: 0 0 0 5px rgba(255, 143, 158, 0.09); }
.access-row strong { font-family: var(--font-mono); font-size: 14px; font-weight: 500; }
.access-spectrum { display: flex; gap: 4px; margin-top: 30px; height: 5px; }
.access-spectrum span { display: block; border-radius: 99px; }
.access-spectrum span:nth-child(1) { width: 59%; background: var(--blue-bright); }
.access-spectrum span:nth-child(2) { width: 18%; background: var(--green); }
.access-spectrum span:nth-child(3) { width: 8%; background: var(--cyan); }
.access-spectrum span:nth-child(4) { width: 6%; background: var(--amber); }
.access-spectrum span:nth-child(5) { width: 9%; background: var(--red); }

.workflow { background: var(--ink-soft); border-block: 1px solid var(--line); }
.workflow-heading { max-width: 650px; margin-bottom: 70px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); counter-reset: workflow; }
.step { position: relative; padding: 30px 48px 10px 0; border-top: 1px solid var(--line-strong); counter-increment: workflow; }
.step:not(:last-child)::after { content: ''; position: absolute; top: -1px; left: 0; width: 35%; height: 1px; background: var(--blue-bright); }
.step::before { content: '0' counter(workflow); display: block; margin-bottom: 56px; color: var(--cyan); font-family: var(--font-mono); font-size: 11px; }
.step p { color: var(--muted); max-width: 290px; }

.developer-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: start; gap: 90px; }
.developer-copy { position: sticky; top: 130px; }
.developer-copy p { color: var(--muted); font-size: 18px; }
.api-tabs { border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; background: var(--ink-deep); box-shadow: var(--shadow); }
.tab-list { display: flex; gap: 0; border-bottom: 1px solid var(--line); overflow-x: auto; }
.tab-list button { flex: 1; min-width: 120px; padding: 17px 18px; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted-2); font-family: var(--font-mono); font-size: 11px; cursor: pointer; }
.tab-list button:last-child { border-right: 0; }
.tab-list button[aria-selected='true'] { color: white; background: rgba(255, 255, 255, 0.04); box-shadow: inset 0 -2px var(--blue-bright); }
.tab-panel { padding: 0; }
.tab-panel[hidden] { display: none; }
.tab-panel pre { min-height: 390px; margin: 0; padding: 30px; overflow: auto; color: #dbe8f8; font: 12px/1.85 var(--font-mono); }

.proof-header { display: flex; justify-content: space-between; align-items: end; gap: 60px; padding-bottom: 62px; }
.proof-header h2 { max-width: 760px; margin-bottom: 0; }
.proof-count { text-align: right; }
.proof-count strong { display: block; font-size: 44px; line-height: 1; letter-spacing: -0.06em; }
.proof-count span { color: var(--muted); font-size: 13px; }
.logo-wall { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.logo-cell { min-height: 120px; padding: 24px; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #c7d3e1; text-align: center; }

.cta-band { position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; width: 620px; height: 620px; right: -120px; top: -380px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.04), 0 0 0 120px rgba(255,255,255,.03); }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 90px; align-items: end; }
.cta-grid h2 { max-width: 720px; }
.cta-price { text-align: right; }
.cta-price strong { display: block; font-size: clamp(70px, 8vw, 116px); line-height: 0.85; letter-spacing: -0.07em; font-weight: 600; }
.cta-price span { display: block; margin-top: 20px; font-family: var(--font-mono); font-size: 12px; opacity: 0.75; }
.cta-copy { max-width: 590px; margin: 28px 0 32px; font-size: 18px; opacity: 0.85; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-email { display: inline-flex; align-items: center; min-height: 50px; padding: 0 4px; border-bottom: 1px solid rgba(255,255,255,.5); font-weight: 700; }

.page-hero { padding: 118px 0 100px; border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 100px; align-items: end; }
.page-hero h1 { font-size: clamp(52px, 6vw, 82px); }
.page-hero p { margin-bottom: 0; color: var(--muted); font-size: 19px; }
.page-hero-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.page-hero-meta div { min-height: 130px; padding: 26px; background: var(--ink); }
.page-hero-meta span { display: block; color: var(--muted-2); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.07em; }
.page-hero-meta strong { display: block; margin-top: 16px; font-size: 21px; letter-spacing: -0.035em; }

.feature-rail { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature { min-height: 290px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-index { display: block; margin-bottom: 72px; color: var(--blue-bright); font-family: var(--font-mono); font-size: 11px; }
.feature p { color: var(--muted); }

.coverage-table { width: 100%; border-collapse: collapse; }
.coverage-table th, .coverage-table td { padding: 23px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.coverage-table th { color: var(--muted-2); font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.coverage-table td:first-child { width: 26%; color: white; font-weight: 700; }
.coverage-table td { color: var(--muted); }
.coverage-table code { color: var(--cyan); font-family: var(--font-mono); font-size: 12px; }

.endpoint-list { border-top: 1px solid var(--line); }
.endpoint { display: grid; grid-template-columns: 160px 1fr 1fr; gap: 30px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: center; }
.endpoint-path { font-family: var(--font-mono); font-size: 12px; color: var(--cyan); }
.endpoint strong { font-size: 16px; }
.endpoint p { margin: 0; color: var(--muted); font-size: 14px; }

.docs-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 85px; align-items: start; }
.docs-nav { position: sticky; top: 112px; display: grid; gap: 7px; }
.docs-nav strong { margin-bottom: 14px; color: var(--muted-2); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.docs-nav a { padding: 8px 0; color: var(--muted); font-size: 13px; }
.docs-nav a:hover { color: white; }
.docs-content section { padding-bottom: 72px; margin-bottom: 72px; border-bottom: 1px solid var(--line); }
.docs-content section:last-child { border: 0; margin-bottom: 0; }
.docs-content h2 { font-size: 38px; }
.docs-content p, .docs-content li { color: var(--muted); }
.docs-content li + li { margin-top: 10px; }
.inline-code { padding: 2px 7px; border-radius: 5px; background: var(--surface); color: var(--cyan); font-family: var(--font-mono); font-size: 0.85em; }
.note { margin: 30px 0; padding: 22px 24px; border-left: 2px solid var(--blue-bright); background: rgba(22, 104, 255, 0.07); color: #cbd7e6; }
.response-table { width: 100%; border-collapse: collapse; }
.response-table th, .response-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; }
.response-table th { color: var(--muted-2); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.response-table td { color: var(--muted); font-size: 14px; }
.response-table td:first-child { color: var(--cyan); font-family: var(--font-mono); font-size: 12px; }

.pricing-hero { text-align: center; }
.pricing-hero .lead { margin-inline: auto; }
.price-display { margin: 56px 0 30px; }
.price-display strong { display: block; font-size: clamp(88px, 11vw, 150px); line-height: 0.82; font-weight: 600; letter-spacing: -0.08em; }
.price-display span { display: block; margin-top: 24px; color: var(--muted); font-family: var(--font-mono); font-size: 12px; }
.price-rule { width: min(100%, 740px); height: 1px; margin: 44px auto; background: var(--line); }
.included-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 90px; }
.included-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.included-list li { display: flex; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); color: #d0dbea; }
.included-list li::before { content: '✓'; color: var(--green); font-family: var(--font-mono); }
.partner-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.partner-flow article { padding: 34px; background: var(--ink-soft); }
.partner-flow span { color: var(--cyan); font-family: var(--font-mono); font-size: 11px; }
.partner-flow h3 { margin-top: 46px; }
.partner-flow p { color: var(--muted); font-size: 14px; }

.company-story { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 100px; align-items: start; }
.company-story h2 { position: sticky; top: 120px; }
.story-copy p { color: var(--muted); font-size: 19px; }
.story-copy p:first-child { color: white; font-size: 27px; line-height: 1.45; letter-spacing: -0.03em; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principle { min-height: 270px; padding: 34px; background: var(--ink); }
.principle span { color: var(--blue-bright); font-family: var(--font-mono); font-size: 11px; }
.principle h3 { margin-top: 72px; }
.principle p { color: var(--muted); font-size: 14px; }
.address-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.address-card { padding: 44px 0; border-block: 1px solid var(--line); }
.address-card address { color: #d7e2ee; font-style: normal; font-size: 22px; line-height: 1.7; }

.contact-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 100px; align-items: start; }
.contact-aside { position: sticky; top: 120px; }
.contact-aside h2 { font-size: clamp(36px, 4vw, 54px); }
.contact-aside > p { color: var(--muted); font-size: 17px; }
.contact-details { margin-top: 54px; border-top: 1px solid var(--line); }
.contact-details div { padding: 19px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.contact-details span { color: var(--muted-2); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-details strong { color: #dce7f3; font-size: 13px; font-weight: 600; text-align: right; }
.contact-form-wrap { padding-top: 6px; }
.contact-form { position: relative; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
.form-field { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.form-field label { color: #dce7f3; font-size: 13px; font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  color: white;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  outline: 0;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.form-field input,
.form-field select { min-height: 52px; padding: 0 15px; }
.form-field textarea { min-height: 180px; padding: 15px; resize: vertical; }
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: rgba(176, 203, 235, 0.42); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--blue-bright); background: rgba(22, 104, 255, 0.04); box-shadow: 0 0 0 3px rgba(22, 104, 255, 0.12); }
.form-field select { cursor: pointer; }
.field-error { min-height: 18px; color: var(--red); font-size: 12px; }
.field-meta { display: flex; justify-content: space-between; gap: 20px; color: var(--muted-2); font-size: 11px; }
.form-submit { padding-top: 5px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.form-submit p { max-width: 350px; margin: 0; color: var(--muted-2); font-size: 11px; line-height: 1.6; }
.form-submit p a { color: var(--cyan); }
.form-alert { margin-bottom: 28px; padding: 16px 18px; border: 1px solid rgba(255, 143, 158, 0.32); border-radius: var(--radius-sm); background: rgba(255, 143, 158, 0.07); color: #ffd4da; font-size: 14px; }
.form-success { padding: 40px 0 56px; border-block: 1px solid var(--line); }
.form-success h2 { margin-top: 28px; }
.form-success p { max-width: 560px; margin-bottom: 30px; color: var(--muted); font-size: 18px; }
.form-status-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: rgba(120, 226, 170, 0.11); color: var(--green); font-family: var(--font-mono); font-size: 20px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.legal-page { padding: 100px 0 130px; }
.legal-header { margin-bottom: 70px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.legal-header h1 { font-size: clamp(48px, 6vw, 74px); }
.legal-updated { color: var(--muted-2); font-family: var(--font-mono); font-size: 11px; }
.legal-content { color: var(--muted); }
.legal-content h2 { margin: 64px 0 20px; color: white; font-size: 28px; letter-spacing: -0.035em; }
.legal-content h3 { margin-top: 34px; color: white; font-size: 18px; }
.legal-content a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.legal-content li + li { margin-top: 10px; }
.legal-content strong { color: #d9e5f2; }
.cookie-table-wrap { margin: 28px 0 12px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.cookie-table { width: 100%; min-width: 670px; border-collapse: collapse; font-size: 14px; }
.cookie-table th, .cookie-table td { padding: 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.cookie-table th { color: var(--muted-2); background: rgba(255, 255, 255, 0.025); font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.cookie-table td { color: var(--muted); }
.cookie-table td:first-child { color: #d9e5f2; font-family: var(--font-mono); font-size: 12px; }
.cookie-table tr:last-child td { border-bottom: 0; }

.site-footer { border-top: 1px solid var(--line); background: var(--ink-deep); }
.footer-top { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 70px; padding-block: 76px; }
.footer-brand p { max-width: 290px; margin: 24px 0 0; color: var(--muted-2); font-size: 14px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-column h2 { margin: 0 0 12px; color: var(--muted-2); font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-column a { color: var(--muted); font-size: 13px; }
.footer-column a:hover { color: white; }
.footer-bottom { padding-block: 34px; border-top: 1px solid var(--line); display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.footer-bottom address { color: var(--muted-2); font-style: normal; font-size: 11px; line-height: 1.7; }
.footer-meta { display: flex; align-items: center; gap: 28px; color: var(--muted-2); font-family: var(--font-mono); font-size: 10px; }
.footer-cookie-settings { padding: 0; border: 0; background: transparent; color: var(--muted-2); font-family: inherit; font-size: inherit; cursor: pointer; }
.footer-cookie-settings:hover { color: white; }

.cookie-banner[hidden] { display: none; }
.cookie-banner {
  position: fixed;
  inset: auto 24px 24px;
  z-index: 500;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border: 1px solid rgba(176, 203, 235, 0.3);
  border-radius: var(--radius);
  background: rgba(7, 16, 31, 0.97);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(22px);
}
.cookie-banner-inner { width: min(100%, var(--container)); margin-inline: auto; padding: 26px 28px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 40px; }
.cookie-banner-copy { max-width: 720px; }
.cookie-banner-label { display: block; margin-bottom: 8px; color: var(--cyan); font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.cookie-banner h2 { margin: 0 0 7px; font-size: 21px; line-height: 1.2; letter-spacing: -0.035em; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.cookie-banner p a { color: white; text-decoration: underline; text-decoration-color: var(--cyan); text-underline-offset: 3px; }
.cookie-banner-actions { display: grid; grid-template-columns: repeat(2, minmax(185px, 1fr)); gap: 10px; }
.cookie-choice { min-height: 48px; padding-inline: 18px; white-space: nowrap; cursor: pointer; }

[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .site-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .hero { min-height: auto; }
  .page-hero-grid, .developer-grid, .company-story { gap: 60px; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 880px) {
  .container, .narrow { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 90px 0; }
  .nav-toggle { display: flex; }
  .site-nav { position: fixed; inset: 78px 0 auto 0; max-height: calc(100vh - 78px); overflow-y: auto; display: none; padding: 26px 24px 36px; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--line); background: rgba(3, 8, 19, 0.98); }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.button) { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-cta { margin-top: 20px; }
  .hero-grid, .page-hero-grid, .section-intro, .data-stage, .developer-grid, .cta-grid, .included-grid, .company-story, .address-block, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 62px; }
  .hero-copy { max-width: 700px; }
  .section-intro { gap: 14px; }
  .data-stage, .developer-grid, .included-grid, .company-story { gap: 62px; }
  .developer-copy, .company-story h2, .contact-aside { position: static; }
  .proof-header { align-items: start; flex-direction: column; }
  .proof-count { text-align: left; }
  .cta-price { text-align: left; }
  .feature-rail, .steps, .partner-flow, .principles { grid-template-columns: 1fr; }
  .feature { min-height: auto; }
  .feature-index, .step::before, .principle h3 { margin-bottom: 36px; }
  .step { padding-bottom: 34px; }
  .endpoint { grid-template-columns: 130px 1fr; }
  .endpoint p { grid-column: 2; }
  .docs-layout { grid-template-columns: 1fr; gap: 40px; }
  .docs-nav { position: static; grid-template-columns: repeat(4, auto); overflow-x: auto; padding-bottom: 10px; }
  .docs-nav strong { display: none; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 34px; }
  .cookie-banner-inner { grid-template-columns: 1fr; gap: 20px; }
  .cookie-banner-actions { max-width: 430px; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 70px; }
  .site-nav { top: 70px; }
  .section { padding: 74px 0; }
  h1 { font-size: clamp(44px, 13.5vw, 64px); }
  h2 { font-size: clamp(34px, 10vw, 48px); }
  .hero { padding: 64px 0 50px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-code { min-width: 0; }
  .hero-actions .button { width: 100%; }
  .code-window pre { padding: 20px; font-size: 10.5px; }
  .response-meta div { padding: 15px 12px; }
  .response-meta strong { font-size: 17px; }
  .trust-inner { grid-template-columns: 1fr; gap: 24px; }
  .logo-row { justify-content: flex-start; }
  .section-intro { margin-bottom: 50px; }
  .country-lockup { margin-bottom: 40px; }
  .score-line { align-items: start; flex-direction: column; }
  .workflow-heading { margin-bottom: 50px; }
  .tab-panel pre { min-height: 330px; padding: 20px; font-size: 10px; }
  .proof-header { padding-bottom: 42px; }
  .logo-wall { grid-template-columns: 1fr 1fr; }
  .logo-cell { min-height: 96px; padding: 15px; }
  .logo-cell .client-logo-image { max-width: 126px; max-height: 34px; }
  .logo-cell .logo-british-airways,
  .logo-cell .logo-air-france-klm { max-width: 142px; }
  .cta-grid { gap: 50px; }
  .cta-price strong { font-size: 78px; }
  .cta-actions .button, .cta-actions .cta-email { width: 100%; justify-content: center; }
  .page-hero { padding: 78px 0 70px; }
  .page-hero-grid { gap: 52px; }
  .page-hero-meta { grid-template-columns: 1fr; }
  .page-hero-meta div { min-height: 100px; }
  .coverage-table { display: block; overflow-x: auto; }
  .coverage-table th, .coverage-table td { min-width: 160px; }
  .endpoint { grid-template-columns: 1fr; gap: 8px; }
  .endpoint p { grid-column: auto; }
  .docs-nav { grid-template-columns: repeat(4, max-content); }
  .response-table { display: block; overflow-x: auto; }
  .price-display strong { font-size: 82px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-submit .button { width: 100%; }
  .form-submit p { max-width: none; }
  .field-meta { align-items: flex-start; flex-direction: column; gap: 4px; }
  .address-card address { font-size: 18px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 20px; }
  .footer-bottom { align-items: start; flex-direction: column; }
  .footer-meta { flex-direction: column; gap: 8px; }
  .footer-meta { align-items: flex-start; }
  .cookie-banner { inset: auto 10px 10px; max-height: calc(100vh - 20px); }
  .cookie-banner-inner { padding: 20px; gap: 18px; }
  .cookie-banner-actions { grid-template-columns: 1fr; max-width: none; }
  .cookie-choice { width: 100%; white-space: normal; }
}

@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; }
  [data-reveal] { opacity: 1; transform: none; }
}
