  :root {
    /* ── Color ───────────────────────────────── */
    --ink:        #0e1a2b;   /* primary text / navy figures */
    --ink-2:      #1d2c42;   /* secondary ink */
    --navy-deep:  #0a1422;   /* dark section bg */
    --navy-panel: #0f1d31;   /* dark card bg */
    --blue:       #1aa3ff;   /* primary accent */
    --blue-press: #0a84d8;   /* accent, text-safe on white */
    --blue-wash:  #eaf6ff;   /* tint bg */
    --green:      #1f8a5b;   /* confirmation */
    --paper:      #ffffff;
    --bg:         #f5f7fa;   /* page bg */
    --bg-soft:    #f7f9fb;
    --line:       #e6e9ee;   /* borders */
    --line-2:     #d8dee6;
    --muted:      #5d6b7e;   /* body secondary */
    --faint:      #8a95a3;   /* labels */

    /* ── Type ────────────────────────────────── */
    --sans: "Schibsted Grotesk", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

    /* ── Geometry ────────────────────────────── */
    --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 22px;
    --maxw: 1140px;
    --shadow-sm: 0 1px 2px rgba(14,26,43,.06), 0 1px 0 rgba(14,26,43,.03);
    --shadow-md: 0 8px 30px rgba(14,26,43,.08);
    --shadow-lg: 0 24px 60px rgba(14,26,43,.14);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; }
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
  .eyebrow {
    font-family: var(--mono);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-press);
  }
  .eyebrow.on-dark { color: var(--blue); }
  .lede { font-size: 19px; color: var(--muted); line-height: 1.55; }

  /* ── Buttons ──────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--sans); font-size: 15.5px; font-weight: 600;
    padding: 13px 22px; border-radius: var(--r-md);
    border: 1px solid transparent; cursor: pointer;
    transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
  .btn-primary:hover { background: #16273e; box-shadow: var(--shadow-md); }
  .btn-accent { background: var(--blue); color: #04243d; }
  .btn-accent:hover { background: #34b0ff; box-shadow: 0 8px 24px rgba(26,163,255,.32); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
  .btn-ghost:hover { border-color: var(--ink); }
  .btn-ghost.on-dark { color: #dfe7f0; border-color: rgba(255,255,255,.22); }
  .btn-ghost.on-dark:hover { border-color: rgba(255,255,255,.55); }

  /* ── Header ───────────────────────────────── */
  header.site {
    position: sticky; top: 0; z-index: 50;
    background: rgba(245,247,250,.82);
    backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--line);
  }
  header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .logo { display: flex; align-items: center; gap: 12px; }
  .logo svg { display: block; }
  .logo .word { font-size: 21px; font-weight: 800; letter-spacing: -0.03em; }
  .logo .word .ai { color: var(--blue-press); }
  .nav { display: flex; align-items: center; gap: 28px; }
  .nav a.link { font-size: 15px; color: var(--muted); font-weight: 500; white-space: nowrap; }
  .nav a.link:hover { color: var(--ink); }

  /* ── Hero ─────────────────────────────────── */
  .hero { padding: 92px 0 84px; }
  .hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
  .hero h1 { font-size: clamp(40px, 5vw, 62px); font-weight: 800; margin: 20px 0 0; }
  .hero h1 em { font-style: italic; color: var(--blue-press); font-weight: 800; }
  .hero .lede { margin-top: 22px; max-width: 30em; }
  .hero .cta-row { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

  /* Hero visual — operator console / org chart */
  .console {
    background: var(--paper); border: 1px solid var(--line);
    border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  .console .bar {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 16px; border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
  }
  .console .bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
  .console .bar .title { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; color: var(--faint); margin-left: 6px; }
  .console .body { padding: 16px; display: flex; flex-direction: column; gap: 9px; }
  .worker {
    display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 12px;
    padding: 11px 13px; border: 1px solid var(--line); border-radius: var(--r-md);
    background: #fff;
  }
  .worker .avatar {
    width: 30px; height: 30px; border-radius: 8px; background: var(--blue-wash);
    display: flex; align-items: center; justify-content: center;
  }
  .worker .meta .name { font-size: 14.5px; font-weight: 600; }
  .worker .meta .role { font-family: var(--mono); font-size: 11px; color: var(--faint); letter-spacing: .03em; }
  .pill {
    font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: .04em;
    padding: 4px 9px; border-radius: 100px; display: inline-flex; align-items: center; gap: 6px;
  }
  .pill .led { width: 6px; height: 6px; border-radius: 50%; }
  .pill.ok    { background: #e7f6ee; color: #1f8a5b; }
  .pill.ok .led { background: #1f8a5b; }
  .pill.gate  { background: var(--blue-wash); color: var(--blue-press); }
  .pill.gate .led { background: var(--blue); }
  .pill.review{ background: #fff4e5; color: #b5721a; }
  .pill.review .led { background: #e0911f; }
  .console .foot {
    border-top: 1px solid var(--line); padding: 12px 16px;
    font-family: var(--mono); font-size: 11px; color: var(--faint);
    display: flex; justify-content: space-between;
  }
  .console .foot b { color: var(--ink); font-weight: 600; }

  /* ── Section scaffolding ──────────────────── */
  section { padding: 96px 0; }
  .section-head { max-width: 760px; }
  .section-head h2 { font-size: clamp(30px, 3.4vw, 42px); margin-top: 14px; }
  .section-head .lede { margin-top: 16px; }

  /* ── Demo video ───────────────────────────── */
  .demo { padding-top: 8px; }
  .video {
    position: relative; aspect-ratio: 16/9; border-radius: var(--r-xl);
    overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg);
    background: linear-gradient(150deg, #0e1a2b, #0a1422);
    display: flex; align-items: center; justify-content: center;
  }
  .video .play {
    width: 76px; height: 76px; border-radius: 50%; background: var(--blue);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 12px 40px rgba(26,163,255,.45); transition: transform .15s ease;
  }
  .video .play:hover { transform: scale(1.06); }
  .video .stamp {
    position: absolute; left: 20px; bottom: 18px;
    font-family: var(--mono); font-size: 12px; color: #9fb2c9; letter-spacing: .04em;
  }

  /* ── "What you get" grid ──────────────────── */
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
  .feature {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 26px 24px 28px; box-shadow: var(--shadow-sm);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  }
  .feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
  .feature .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-wash);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
  .feature h3 { font-size: 20px; }
  .feature p { margin-top: 9px; font-size: 15.5px; color: var(--muted); line-height: 1.55; }

  /* ── "What you don't get" — dark ──────────── */
  .dark { background: var(--navy-deep); color: #e7edf5; }
  .dark .section-head h2 { color: #fff; }
  .dark .section-head .lede { color: #93a3b8; }
  .guard {
    background: var(--navy-panel); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg); padding: 28px 26px 30px;
  }
  .guard .no {
    font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
    color: #ff6b6b; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
  }
  .guard h3 { font-size: 23px; color: #fff; }
  .guard p { margin-top: 11px; font-size: 15.5px; color: #93a3b8; line-height: 1.6; }
  .dark .grid-3 { gap: 20px; }

  /* ── Steps ────────────────────────────────── */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
  .step { position: relative; padding-top: 26px; }
  .step .num {
    font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--blue-press);
    letter-spacing: .1em;
  }
  .step .rule { height: 2px; background: var(--line); margin: 14px 0 18px; position: relative; }
  .step .rule::before { content: ""; position: absolute; left: 0; top: 0; width: 26px; height: 2px; background: var(--blue); }
  .step h3 { font-size: 19px; }
  .step p { margin-top: 10px; font-size: 14.5px; color: var(--muted); line-height: 1.55; }

  /* ── Contact ──────────────────────────────── */
  .contact .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl);
    padding: 32px; box-shadow: var(--shadow-md); }
  .field { margin-bottom: 16px; }
  .field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
  .field label .req { color: var(--blue-press); }
  .field input {
    width: 100%; padding: 12px 14px; font-family: var(--sans); font-size: 15px;
    border: 1px solid var(--line-2); border-radius: var(--r-sm); background: var(--bg-soft); color: var(--ink);
    transition: border-color .15s ease, box-shadow .15s ease;
  }
  .field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,163,255,.18); background: #fff; }
  .form .btn-accent { width: 100%; justify-content: center; margin-top: 6px; }
  .talk { padding-top: 6px; }
  .talk h2 { font-size: clamp(28px, 3vw, 38px); margin-top: 14px; }
  .talk p { margin-top: 16px; color: var(--muted); font-size: 17px; max-width: 30em; }
  .assurance { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
  .assurance .row { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--ink-2); }
  .assurance .row .tick { width: 22px; height: 22px; border-radius: 50%; background: #e7f6ee;
    display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }

  /* ── Footer ───────────────────────────────── */
  footer.site { background: var(--ink); color: #aebacc; }
  footer.site .wrap { padding-top: 40px; padding-bottom: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
  footer.site .word { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
  footer.site .word .ai { color: var(--blue); }
  footer.site small { color: #7f8da3; font-size: 13.5px; font-family: var(--mono); letter-spacing: .03em; }
  .copyright { color: #8294ab; font-size: 13.5px; font-family: var(--mono); }

  @media (max-width: 920px) {
    .hero .wrap { grid-template-columns: 1fr; gap: 44px; }
    .grid-3, .steps { grid-template-columns: 1fr 1fr; }
    .contact .wrap { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 600px) {
    .grid-3, .steps { grid-template-columns: 1fr; }
    .nav .link { display: none; }
    .wrap { padding: 0 20px; }
  }

  /* ── Footer link map ──────────────────────── */
  footer.site .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; align-items: start; padding-top: 48px; padding-bottom: 26px; }
  .foot-brand .word { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
  .foot-brand .word .ai { color: var(--blue); }
  .foot-tag { margin-top: 11px; font-size: 13.5px; color: #7f8da3; max-width: 24em; line-height: 1.55; }
  .foot-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #7f8da3; margin: 2px 0 13px; font-weight: 600; }
  .foot-col a { display: block; font-size: 14.5px; color: #aebacc; padding: 5px 0; }
  .foot-col a:hover { color: #fff; }
  footer.site .foot-base { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 18px; padding-bottom: 34px; border-top: 1px solid rgba(255,255,255,.08); }
  /* Solutions cards reuse .feature, made into links */
  a.feature { display: block; color: inherit; }
  a.feature h3 { color: var(--ink); }
  a.feature .go { color: var(--blue-press); }
  @media (max-width: 920px) { footer.site .foot-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { footer.site .foot-grid { grid-template-columns: 1fr; gap: 22px; } }
