  /* Inter is served locally; Latin Extended covers Slovak characters. */
  @font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("fonts/inter-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  @font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("fonts/inter-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

  /* Colours follow app/styles/base/tokens.css: navy brand, yellow accent. */
  :root {
    --bg: #f4f6f9;
    --surface: #ffffff;
    --text: #061a2b;
    --muted: #4d5968;
    --subtle: #677486;
    --border: #dce2e9;
    --chrome: #061a2b;
    --chrome-text: #e3ebf3;
    --chrome-muted: #97b3cd;
    --accent: #f3cc00;
    --accent-hover: #f9ff2a;
    --accent-text: #061a2b;
    --primary: #0a2540;
    --primary-hover: #17446c;
    --primary-text: #ffffff;
    --secondary-border: #c5cfd9;
    --chip: #e3ebf3;
    --soon-bg: #fff5e6;
    --soon-text: #8f4a05;
    --band: #061a2b;
    --band-text: #e3ebf3;
    --band-muted: #97b3cd;
    --hl: rgb(243 204 0 / 55%);
    --hl-text: inherit;
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --bg: #061a2b;
      --surface: #0a2540;
      --text: #e3ebf3;
      --muted: #97b3cd;
      --subtle: #6590b7;
      --border: #17446c;
      --chrome: #040f1a;
      --primary: #f3cc00;
      --primary-hover: #f9ff2a;
      --primary-text: #061a2b;
      --secondary-border: #235886;
      --chip: #0f3252;
      --soon-bg: #3a2408;
      --soon-text: #fde3bf;
      --band: #0a2540;
      --hl: transparent;
      --hl-text: #f3cc00;
    }
  }
  :root[data-theme="dark"] {
    --bg: #061a2b;
    --surface: #0a2540;
    --text: #e3ebf3;
    --muted: #97b3cd;
    --subtle: #6590b7;
    --border: #17446c;
    --chrome: #040f1a;
    --primary: #f3cc00;
    --primary-hover: #f9ff2a;
    --primary-text: #061a2b;
    --secondary-border: #235886;
    --chip: #0f3252;
    --soon-bg: #3a2408;
    --soon-text: #fde3bf;
    --band: #0a2540;
    --hl: transparent;
    --hl-text: #f3cc00;
  }

  * { box-sizing: border-box; }
  site-header, site-footer { display: block; }
  cookie-notice { display: contents; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
  }
  a { color: inherit; }
  .container { max-width: 1120px; margin: 0 auto; padding: 0 16px; }
  section { scroll-margin-top: 72px; }

  /* Navigation */
  .nav { position: sticky; top: 0; z-index: 10; background: var(--chrome); color: var(--chrome-text); }
  .nav .container { display: flex; align-items: center; gap: 24px; height: 64px; }
  .brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; letter-spacing: -.01em; text-decoration: none; }
  .brand svg, .brand img { width: 32px; height: 32px; border-radius: 7px; }
  .nav-links { display: flex; gap: 20px; margin-left: 8px; }
  .nav-links a { color: var(--chrome-muted); text-decoration: none; font-size: 14px; font-weight: 500; }
  .nav-links a:hover { color: var(--chrome-text); }
  .nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
  .lang { display: inline-flex; border: 1px solid rgb(255 255 255 / 18%); border-radius: 8px; overflow: hidden; }
  .lang button, .lang a { border: 0; background: transparent; color: var(--chrome-muted); font: inherit; font-size: 12px; font-weight: 700; padding: 6px 10px; cursor: pointer; text-decoration: none; }
  .lang button[aria-pressed="true"], .lang a[aria-current="page"] { background: rgb(255 255 255 / 12%); color: var(--chrome-text); }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border-radius: 10px; padding: 12px 20px; font: inherit; font-size: 15px; font-weight: 700;
    text-decoration: none; cursor: pointer; border: 1px solid transparent; white-space: nowrap;
  }
  .btn-accent { background: var(--accent); color: var(--accent-text); }
  .btn-accent:hover { background: var(--accent-hover); }
  .btn-primary { background: var(--primary); color: var(--primary-text); }
  .btn-primary:hover { background: var(--primary-hover); }
  .btn-secondary { background: transparent; color: var(--text); border-color: var(--secondary-border); }
  .btn-secondary:hover { background: var(--chip); }
  .btn-small { padding: 8px 14px; font-size: 14px; }

  /* Hero */
  .hero { padding: 64px 0 32px; }
  .hero-text { max-width: 760px; }
  .eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); margin: 0 0 12px; }
  h1 { font-size: clamp(32px, 5.4vw, 56px); line-height: 1.06; letter-spacing: -.025em; margin: 0 0 18px; font-weight: 800; }
  h1 .hl { background: linear-gradient(transparent 62%, var(--hl) 62%); color: var(--hl-text); }
  .lead { font-size: clamp(17px, 2vw, 20px); color: var(--muted); margin: 0 0 28px; max-width: 60ch; }
  .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
  .fine { font-size: 14px; color: var(--subtle); margin: 0; }
  .hero-scene { margin-top: 40px; }

  iframe.scene { display: block; width: 100%; border: 0; height: 620px; background: transparent; color-scheme: normal; }

  /* Sections */
  .section { padding: 72px 0; }
  .page-intro { padding: 64px 0 16px; }
  .page-intro h1 { max-width: 760px; }
  .section-head { max-width: 720px; margin-bottom: 32px; }
  h2 { font-size: clamp(26px, 3.6vw, 38px); line-height: 1.12; letter-spacing: -.02em; margin: 0 0 12px; font-weight: 800; }
  .section-head p { font-size: 17px; color: var(--muted); margin: 0; }

  .cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
  .card h3 { font-size: 17px; margin: 0 0 6px; }
  .card p { margin: 0; color: var(--muted); font-size: 15px; }
  .card-link { display: block; color: inherit; text-decoration: none; transition: border-color .15s ease, transform .15s ease; }
  .card-link:hover { border-color: var(--accent); transform: translateY(-2px); }
  .card-link span { display: inline-block; margin-top: 16px; color: var(--accent); font-weight: 700; }
  .pain .card h3::before { content: "✕"; display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 10px; border-radius: 6px; background: var(--soon-bg); color: var(--soon-text); font-size: 12px; }

  .steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; counter-reset: step; position: relative; }
  .steps::before { content: ""; position: absolute; top: 68px; bottom: 68px; left: 80px; width: 2px; background: var(--border); }
  .steps li { position: relative; display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 28px; align-items: center; min-height: 150px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 20px 28px 20px 0; counter-increment: step; overflow: hidden; }
  .steps li::before {
    content: counter(step); position: absolute; z-index: 2; top: 14px; left: 14px; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
    background: var(--accent); color: var(--accent-text); font-weight: 800; font-size: 14px; box-shadow: 0 0 0 5px var(--surface);
  }
  .step-visual { align-self: stretch; display: grid; place-items: center; background: var(--chip); border-right: 1px solid var(--border); }
  .step-visual svg { width: 132px; height: 96px; fill: none; stroke: var(--subtle); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .step-visual .paper { fill: var(--surface); stroke: var(--border-strong); }
  .step-visual .accent { stroke: var(--accent); stroke-width: 4; }
  .step-visual .accent-fill { fill: var(--accent); stroke: var(--accent); }
  .step-visual .route { stroke-width: 5; }
  .step-copy { max-width: 650px; }
  .steps h3 { font-size: clamp(20px, 2.4vw, 28px); margin: 0 0 8px; }
  .steps p { margin: 0; font-size: 16px; color: var(--muted); max-width: 58ch; }

  .feature + .feature { padding-top: 24px; }

  .soon { display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: 999px; background: var(--soon-bg); color: var(--soon-text); font-size: 12px; font-weight: 700; vertical-align: middle; }

  /* Pricing */
  .pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: 820px; }
  .price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 14px; }
  .price-card.featured { border: 2px solid var(--text); }
  .price-card h3 { margin: 0; font-size: 18px; }
  .price { font-size: 42px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
  .price small { font-size: 16px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
  .price-alt { color: var(--subtle); font-size: 14px; margin-top: -6px; }
  .price-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 15px; }
  .price-card li::before { content: "✓"; color: #1a7d49; font-weight: 800; margin-right: 10px; }
  .price-card .btn { margin-top: auto; }
  .price-note { margin-top: 16px; font-size: 14px; color: var(--subtle); }

  /* Pilot band */
  .band { background: var(--band); color: var(--band-text); border-radius: 20px; padding: clamp(28px, 5vw, 56px); display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; }
  .band .eyebrow { color: var(--accent); }
  .band h2 { color: var(--band-text); }
  .band p { color: var(--band-muted); font-size: 17px; margin: 0; }
  .band ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; font-size: 16px; }
  .band li::before { content: "→"; color: var(--accent); font-weight: 800; margin-right: 10px; }

  /* FAQ */
  .faq { max-width: 820px; display: grid; gap: 10px; }
  .faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px; }
  .faq summary { cursor: pointer; font-weight: 700; font-size: 16px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after { content: "+"; font-size: 20px; line-height: 1; color: var(--subtle); }
  .faq details[open] summary::after { content: "−"; }
  .faq details p { margin: 10px 0 0; color: var(--muted); }

  footer { border-top: 1px solid var(--border); padding: 32px 0 48px; margin-top: 40px; font-size: 14px; color: var(--subtle); }
  footer .container { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; }
  footer nav { display: flex; gap: 20px; }
  footer a:hover { color: var(--text); }

  /* Essential-cookie notice. A versioned acknowledgement lets a future analytics banner ask again. */
  .cookie-banner {
    position: fixed; z-index: 20; right: 16px; bottom: 16px; left: 16px;
    max-width: 760px; margin: 0 auto; padding: 18px;
    display: flex; align-items: center; gap: 20px;
    background: var(--surface); color: var(--text); border: 1px solid var(--border);
    border-radius: 14px; box-shadow: 0 16px 48px rgb(0 0 0 / 22%);
  }
  .cookie-banner[hidden] { display: none; }
  .cookie-banner__copy { flex: 1; }
  .cookie-banner__copy strong { display: block; margin-bottom: 4px; }
  .cookie-banner__copy p { margin: 0; color: var(--muted); font-size: 14px; }

  @media (max-width: 960px) {
    .band { grid-template-columns: 1fr; }
  }
  @media (max-width: 760px) {
    .nav-links { display: none; }
    .nav .btn-small { display: none; }
    .hero { padding-top: 40px; }
    .cards, .pricing { grid-template-columns: 1fr; }
    .section { padding: 52px 0; }
  }
  @media (max-width: 480px) {
    .steps::before { display: none; }
    .steps li { grid-template-columns: 1fr; gap: 0; padding: 0 20px 22px; }
    .step-visual { min-height: 124px; margin: 0 -20px 20px; border-right: 0; border-bottom: 1px solid var(--border); }
    .cta-row .btn { flex: 1 1 100%; }
    .cookie-banner { align-items: stretch; flex-direction: column; gap: 14px; }
  }
