:root {
    --primary: #0073C7;
    --primary-deep: #004B82;
    --primary-soft: #E6F1FA;
    --accent: #E45A2B;
    --ink: #1A1F2C;
    --graphite: #3D4452;
    --slate: #6B7280;
    --line: #E5E7EB;
    --line-strong: #CDD3DA;
    --bg: #FFFFFF;
    --bg-soft: #F7F9FC;
    --white: #FFFFFF;
    --moss: #3F6B4A;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--graphite);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img { display: block; max-width: 100%; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

  h1, h2, h3, h4 {
    font-family: 'Inter Tight', sans-serif;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.15;
    font-weight: 600;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .logo img.wordmark {
    height: 52px;
    width: auto;
    display: block;
  }
  .logo img.lockup {
    height: 96px;
    width: auto;
    display: block;
  }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    color: var(--graphite);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--primary); }
  .nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 11px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--primary-deep); }

  /* Hamburger */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 8px;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .nav-cta { display: none; }
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      flex-direction: column;
      gap: 0;
      padding: 8px 0 16px;
      border-bottom: 1px solid var(--line);
      box-shadow: 0 8px 24px rgba(26,31,44,0.08);
      z-index: 99;
    }
    .nav-links.nav-open { display: flex; }
    .nav-links li { padding: 0; }
    .nav-links a { display: block; padding: 13px 32px; font-size: 16px; }
  }

  /* HERO */
  .hero { position: relative; background: var(--bg); overflow: hidden; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 48px 0 96px;
  }
  .hero h1 {
    font-size: clamp(40px, 5.5vw, 68px);
    color: var(--ink);
    margin-bottom: 28px;
  }
  .hero h1 .accent { color: var(--primary); }
  .hero-lede {
    font-size: 19px;
    line-height: 1.6;
    color: var(--graphite);
    max-width: 560px;
    margin-bottom: 36px;
  }
  .hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 14px 26px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover { background: var(--primary-deep); }
  .btn-ghost {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-ghost:hover { color: var(--primary-deep); }
  .hero-photo {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: 8px;
    overflow: hidden;
    background: var(--primary-soft);
  }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 75, 130, 0.22) 100%);
    pointer-events: none;
  }
  .hero-photo-stat {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(26, 31, 44, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero-photo-stat-num {
    font-family: 'Inter Tight', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .hero-photo-stat-label { font-size: 13px; color: var(--graphite); line-height: 1.4; }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 64px 0; }
    .hero-photo { aspect-ratio: 4 / 5; max-height: 540px; }
  }

  /* TRUST BAR */
  .trust-bar {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }
  .trust-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .trust-bar-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--slate);
  }
  .trust-bar-items { display: flex; gap: 20px; flex-wrap: wrap; }
  .trust-bar-items span {
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
  }

  /* SECTION SCAFFOLD */
  section { padding: 96px 0; }
  .section-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
  }
  .section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    max-width: 820px;
  }
  .section-lede {
    font-size: 18px;
    color: var(--graphite);
    max-width: 720px;
    line-height: 1.6;
    margin-bottom: 56px;
  }

  /* SOLUTIONS GRID */
  .solutions {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  /* Solutions intro: 2-column header + stats */
  .solutions-intro {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 56px;
  }
  .solutions-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .solutions-intro-stat {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
  }
  .solutions-intro-stat-num {
    font-family: 'Inter Tight', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
  }
  .solutions-intro-stat-label {
    font-size: 13px;
    color: var(--graphite);
    line-height: 1.4;
  }
  @media (max-width: 900px) {
    .solutions-intro { grid-template-columns: 1fr; gap: 32px; }
  }

  /* CTA banner */
  .solution-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--primary-soft);
    border: 1px solid rgba(0, 115, 199, 0.2);
    border-radius: 8px;
    padding: 28px 36px;
    margin-top: 24px;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease;
  }
  .solution-cta-banner:hover { background: #D9E8F5; }
  .solution-cta-banner .small-status { color: var(--primary); margin-bottom: 8px; }
  .solution-cta-banner-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .solution-cta-banner-desc { font-size: 14px; color: var(--graphite); }
  .solution-cta-banner-arrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  @media (max-width: 700px) {
    .solution-cta-banner { flex-direction: column; align-items: flex-start; }
  }

  /* Featured (live) products: 2-column, larger, richer */
  .solutions-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
  .solution-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
  }
  .solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(26, 31, 44, 0.08);
    border-color: var(--primary);
  }
  .solution-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .solution-card-brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .solution-card-mark {
    width: 48px; height: 48px;
    border-radius: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
  }
  .solution-card-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .solution-card-domain {
    font-size: 12px;
    color: var(--slate);
    margin-top: 2px;
    font-weight: 500;
  }
  .solution-card-status {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--moss);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  @keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(63, 107, 74, 0.6); }
    70%  { box-shadow: 0 0 0 6px rgba(63, 107, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(63, 107, 74, 0); }
  }
  .solution-card-status::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--moss);
    border-radius: 50%;
    animation: livePulse 1.6s ease-out infinite;
  }
  .solution-card h3.tagline {
    font-size: 19px;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .solution-card p.lede {
    font-size: 15px;
    color: var(--graphite);
    line-height: 1.55;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  .solution-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 18px 0;
    margin-bottom: 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .solution-stat-num {
    font-family: 'Inter Tight', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .solution-stat-label {
    font-size: 11px;
    color: var(--slate);
    margin-top: 4px;
    line-height: 1.3;
  }
  .solution-card-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
  }
  .solution-card-cta .external {
    margin-left: auto;
    font-size: 11px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
  }

  .small-status {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .solutions-featured { grid-template-columns: 1fr; }
  }

  /* FOUNDER */
  .founder { background: var(--bg); }
  .founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
  .founder-photo-block { position: relative; isolation: isolate; }
  .founder-photo-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    background: var(--primary-soft);
  }
  .founder-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
  .founder-photo-block::before {
    content: '';
    position: absolute;
    top: 24px;
    left: -24px;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 8px;
    z-index: -1;
  }
  .founder-text h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 24px; }
  .founder-text h2 .accent { color: var(--primary); }
  .founder-text p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--graphite);
    margin-bottom: 18px;
  }
  .founder-credentials {
    margin-top: 32px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .credential-num {
    font-family: 'Inter Tight', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .credential-label { font-size: 13px; color: var(--graphite); line-height: 1.4; }
  @media (max-width: 900px) {
    .founder-grid { grid-template-columns: 1fr; gap: 56px; }
    .founder-photo-block::before { left: -16px; top: 16px; }
  }

  /* DATA */
  .data-section {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .data-text h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 24px; }
  .data-text h2 .accent { color: var(--primary); }
  .data-text p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--graphite);
    margin-bottom: 16px;
  }
  .data-stat-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
    margin-top: 32px;
    display: flex;
    gap: 48px;
  }
  .data-stat-num {
    font-family: 'Inter Tight', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .data-stat-label { font-size: 13px; color: var(--graphite); margin-top: 6px; }
  .data-viz {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(26, 31, 44, 0.04);
  }
  .viz-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }
  .viz-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .viz-meta { font-size: 12px; color: var(--slate); }
  .viz-rows { display: flex; flex-direction: column; gap: 14px; }
  .viz-row {
    display: grid;
    grid-template-columns: 100px 1fr 80px;
    gap: 16px;
    align-items: center;
    font-size: 13px;
  }
  .viz-row-label { color: var(--graphite); font-weight: 500; }
  .viz-row-bar {
    height: 8px;
    background: var(--bg-soft);
    border-radius: 4px;
    overflow: hidden;
  }
  .viz-row-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    width: 0;
    transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .viz-row-bar-fill.deep { background: var(--primary-deep); }
  .viz-row-bar-fill.accent { background: var(--accent); }
  .viz-row-bar-fill.muted { background: #9CB3C9; }
  .viz-row-value {
    font-family: 'Inter Tight', sans-serif;
    font-variant-numeric: tabular-nums;
    text-align: right;
    color: var(--ink);
    font-weight: 600;
  }
  .viz-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--slate);
  }
  @media (max-width: 900px) { .data-grid { grid-template-columns: 1fr; gap: 48px; } }

  /* EUROPE */
  .europe { background: var(--bg); }
  .europe-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .europe-text h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 24px; }
  .europe-text h2 .accent { color: var(--primary); }
  .europe-text p {
    font-size: 17px;
    line-height: 1.65;
    color: var(--graphite);
    margin-bottom: 18px;
  }
  .europe-tags { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
  .tag {
    background: var(--primary-soft);
    color: var(--primary-deep);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
  }
  .juris-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    padding: 36px;
    border-radius: 8px;
  }
  .juris-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--slate);
    font-weight: 700;
    margin-bottom: 20px;
  }
  .juris-list { list-style: none; border-top: 1px solid var(--line-strong); }
  .juris-list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: baseline;
    gap: 16px;
  }
  .juris-list li:last-child { border-bottom: none; }
  .juris-country {
    font-family: 'Inter Tight', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
  }
  .juris-country .badge {
    background: var(--primary);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 100px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .juris-stat {
    font-family: 'Inter Tight', sans-serif;
    font-variant-numeric: tabular-nums;
    color: var(--graphite);
    font-size: 14px;
    font-weight: 500;
  }
  .juris-pill {
    font-size: 11px;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
  }
  @media (max-width: 900px) { .europe-grid { grid-template-columns: 1fr; gap: 48px; } }

  /* CTA */
  .cta-section {
    background: var(--primary);
    color: var(--white);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    z-index: 0;
  }
  .cta-inner { position: relative; z-index: 1; }
  .cta-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .cta-section h2 {
    font-size: clamp(34px, 4.5vw, 56px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
  }
  .cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 540px;
  }
  .cta-section .btn-primary { background: var(--white); color: var(--primary); }
  .cta-section .btn-primary:hover { background: var(--bg-soft); }
  .cta-section .btn-ghost {
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 4px;
    margin-left: 16px;
  }
  .cta-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 32px;
    backdrop-filter: blur(8px);
  }
  .cta-card-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
  }
  .cta-card-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
  }
  .cta-card p {
    font-size: 14px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.8);
  }
  .cta-card a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    font-size: 14px;
  }
  @media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; gap: 40px; } }

  /* FOOTER */
  footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-brand .logo { margin-bottom: 16px; }
  .footer-brand p { font-size: 14px; max-width: 420px; line-height: 1.6; }
  .footer-col h4 {
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
  }
  .footer-bottom .legal { display: flex; gap: 24px; }
  .footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: none; }
  @media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  }

  /* ===== MODAL ===== */
  .modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(26,31,44,0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center; justify-content: center;
    z-index: 9500;
    animation: modalFade 0.2s ease;
  }
  .modal-backdrop.visible { display: flex; }
  @keyframes modalFade { from { opacity: 0 } to { opacity: 1 } }
  .modal {
    background: var(--white);
    border-radius: 12px;
    padding: 36px;
    max-width: 480px;
    width: calc(100vw - 48px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  }
  .modal h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px; color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .modal .lede {
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 24px;
    line-height: 1.55;
  }
  .modal label {
    display: block;
    font-size: 12px;
    color: var(--graphite);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
  }
  .modal-actions {
    display: flex; gap: 12px; justify-content: flex-end;
    margin-top: 8px;
  }
  .modal button {
    padding: 11px 20px; border-radius: 6px;
    font-size: 14px; font-weight: 600;
    border: none; cursor: pointer;
    font-family: inherit;
  }
  .modal button.primary { background: var(--primary); color: var(--white); }
  .modal button.primary:hover { background: var(--primary-deep); }
  .modal button.ghost { background: transparent; color: var(--graphite); }
  .modal button.ghost:hover { color: var(--ink); }
  /* ===== COOKIE BANNER ===== */
  .cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-top: 4px solid var(--primary);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
    z-index: 8500;
    padding: 24px 32px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    font-family: 'Inter', sans-serif;
  }
  .cookie-banner.visible { transform: translateY(0); }
  .cookie-banner-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
  }
  .cookie-banner h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .cookie-banner p {
    font-size: 14px;
    color: var(--graphite);
    line-height: 1.55;
    margin: 0;
  }
  .cookie-banner p a { color: var(--primary); text-decoration: underline; }
  .cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .cookie-actions button {
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
  }
  .cookie-actions .reject { background: var(--white); color: var(--graphite); border: 1px solid var(--line-strong); }
  .cookie-actions .reject:hover { background: var(--bg-soft); border-color: var(--graphite); }
  .cookie-actions .manage { background: var(--white); color: var(--graphite); border: 1px solid var(--line-strong); }
  .cookie-actions .manage:hover { background: var(--bg-soft); border-color: var(--graphite); }
  .cookie-actions .accept { background: var(--primary); color: var(--white); }
  .cookie-actions .accept:hover { background: var(--primary-deep); }

  @media (max-width: 800px) {
    .cookie-banner-inner { grid-template-columns: 1fr; gap: 16px; }
    .cookie-actions { justify-content: stretch; }
    .cookie-actions button { flex-grow: 1; }
  }

  /* Cookie preferences modal extends .modal */
  .cookie-prefs {
    max-width: 560px;
  }
  .cookie-prefs .category {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 12px;
    transition: border-color 0.2s;
  }
  .cookie-prefs .category.active { border-color: var(--primary); background: rgba(0,115,199,0.02); }
  .cookie-prefs .cat-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
  }
  .cookie-prefs .cat-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
  }
  .cookie-prefs .cat-desc {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.5;
    margin: 0;
  }
  .cookie-prefs .cat-required {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    font-weight: 600;
  }

  /* Toggle switch (analytics consent) */
  .toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
  }
  .toggle input { display: none; }
  .toggle-slider {
    position: absolute; inset: 0;
    background: var(--line-strong);
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .toggle-slider::before {
    content: ''; position: absolute;
    width: 18px; height: 18px;
    left: 3px; bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.2s;
  }
  .toggle input:checked + .toggle-slider { background: var(--primary); }
  .toggle input:checked + .toggle-slider::before { transform: translateX(20px); }

  /* Footer cookie settings link */
  .cookie-settings-link {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
  }
  .cookie-settings-link:hover { color: rgba(255,255,255,1); }

/* ============================================================
   PREMIUM DESIGN SYSTEM — v2026.05 brief
   ============================================================ */

:root {
  --blue-deep: #004B82;
  --sky: #E6F1FA;
  --shadow-1: 0 1px 0 rgba(26,31,44,.04), 0 1px 2px rgba(26,31,44,.04);
  --shadow-2: 0 1px 0 rgba(26,31,44,.04), 0 8px 24px -8px rgba(26,31,44,.10), 0 24px 48px -24px rgba(0,75,130,.14);
  --shadow-blue: 0 1px 0 rgba(0,75,130,.10), 0 12px 32px -12px rgba(0,115,199,.35);
  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

.tabular { font-variant-numeric: tabular-nums; }

.gradient-text {
  background: linear-gradient(180deg, var(--ink) 60%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
nav, header, section, footer { position: relative; z-index: 2; }

/* Header scroll */
nav { transition: border-color 300ms var(--ease); border-bottom-color: transparent; }
nav.scrolled { border-bottom-color: var(--line) !important; }

/* Nav underline animation */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 0; height: 1.5px;
  background: var(--primary); transition: width 250ms var(--ease); border-radius: 1px;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--primary); }

/* Aurora blobs */
.aurora { position: absolute; border-radius: 50%; filter: blur(40px); pointer-events: none; z-index: 0; }
.aurora-1 { width: 55%; height: 55%; top: -10%; left: -10%; background: radial-gradient(circle, rgba(0,115,199,.18) 0%, transparent 70%); }
.aurora-2 { width: 45%; height: 45%; top: 5%; right: 0%; background: radial-gradient(circle, rgba(230,241,250,.7) 0%, transparent 70%); }

/* Hero visual container */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 480px; }

/* Keyframes */
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes floatIn {
  from { opacity: 0; transform: translateY(16px) scale(.95); }
  to   { opacity: 1; transform: none; }
}
@keyframes pinPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(228,90,43,.6); }
  50%      { box-shadow: 0 0 0 8px rgba(228,90,43,0); }
}
@keyframes discPulse {
  0%,100% { transform: scale(1);    box-shadow: var(--shadow-blue); }
  50%     { transform: scale(1.04); box-shadow: 0 0 0 20px rgba(0,115,199,.07), var(--shadow-blue); }
}
@keyframes cardBob {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}
@keyframes cardBobCenter {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50%       { transform: translateX(-50%) translateY(-9px); }
}
@keyframes heroEntry {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes grow { from { width: 0 !important; } }

/* Core disc */
.core-disc-wrap {
  position: relative; width: 260px; height: 260px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  opacity: 0; animation: floatIn 1.1s var(--ease-out) forwards;
}
.core-ring-outer { position: absolute; inset: -28px; border-radius: 50%; border: 1px solid var(--line); }
.core-ring-dashed { position: absolute; inset: -56px; border-radius: 50%; border: 1.5px dashed rgba(0,115,199,.25); animation: rotate 60s linear infinite; }
@media (prefers-reduced-motion: reduce) { .core-ring-dashed { animation: none; } }
.core-disc {
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--primary), var(--blue-deep));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px; text-align: center;
  animation: discPulse 4s ease-in-out infinite; box-shadow: var(--shadow-blue);
}
.core-label-eyebrow { font-size: 9px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.65); font-weight: 700; margin-bottom: 6px; }
.core-stat-num { font-family: 'Inter Tight',sans-serif; font-size: 2.25rem; font-weight: 700; color: #fff; letter-spacing: -.035em; line-height: 1; font-variant-numeric: tabular-nums; }
.core-stat-label { font-size: 11px; color: rgba(255,255,255,.75); line-height: 1.45; margin-top: 6px; max-width: 140px; }

/* Floating cards */
.core-card { position: absolute; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-2); opacity: 0; white-space: nowrap; max-width: 200px; }
.core-card-icon { width: 32px; height: 32px; border-radius: 7px; background: var(--sky); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.core-card-icon svg { width: 16px; height: 16px; stroke: var(--primary); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.core-card-text { font-family: 'Inter Tight',sans-serif; font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.core-card-1 { top: -8%; left: 50%; animation: floatIn .9s var(--ease-out) .25s both, cardBobCenter 3.2s ease-in-out 1.25s infinite; }
.core-card-2 { top: 14%; right: -5%; animation: floatIn .9s var(--ease-out) .40s both, cardBob 2.8s ease-in-out 1.50s infinite; }
.core-card-3 { bottom: 14%; right: -5%; animation: floatIn .9s var(--ease-out) .55s both, cardBob 3.5s ease-in-out 2.00s infinite; }
.core-card-4 { bottom: -8%; left: 50%; animation: floatIn .9s var(--ease-out) .70s both, cardBobCenter 3.0s ease-in-out 1.80s infinite; }
.core-card-5 { top: 14%; left: -5%; animation: floatIn .9s var(--ease-out) .85s both, cardBob 3.3s ease-in-out 2.30s infinite; }
@media (max-width: 900px) {
  .hero-visual { min-height: 360px; }
  .core-disc-wrap { width: 200px; height: 200px; }
  .core-card { display: none; }
  .core-card-1, .core-card-4 { display: flex; }
}

/* Hero entry stagger */
.hero-entry-1 { opacity: 0; animation: heroEntry 700ms var(--ease-out) 50ms forwards; }
.hero-entry-2 { opacity: 0; animation: heroEntry 700ms var(--ease-out) 150ms forwards; }
.hero-entry-3 { opacity: 0; animation: heroEntry 700ms var(--ease-out) 300ms forwards; }
.hero-entry-4 { opacity: 0; animation: heroEntry 700ms var(--ease-out) 450ms forwards; }


/* Scroll reveals */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal.d1 { transition-delay: 0ms; }
.reveal.d2 { transition-delay: 80ms; }
.reveal.d3 { transition-delay: 160ms; }
.reveal.d4 { transition-delay: 240ms; }
.reveal.in { opacity: 1; transform: none; }

/* Solution cards — premium hover */
.solution-card { box-shadow: var(--shadow-1); overflow: hidden; }
.solution-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--blue-deep)); transform: scaleX(0); transform-origin: left; transition: transform 300ms var(--ease); }
.solution-card:hover::before { transform: scaleX(1); }
.solution-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.solutions-intro-stat { box-shadow: var(--shadow-1); transition: box-shadow 300ms var(--ease), transform 300ms var(--ease); }
.solutions-intro-stat:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.solution-cta-banner { box-shadow: var(--shadow-1); }
.solution-cta-banner:hover { box-shadow: var(--shadow-2); }

/* Stacked bar data viz */
.viz-stack-wrap { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 32px; box-shadow: var(--shadow-1); }
.viz-stack-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; gap: 16px; flex-wrap: wrap; }
.viz-stack-title { font-family: 'Inter Tight',sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: .06em; }
.viz-stack-meta { font-size: 11px; color: var(--slate); }
.viz-stack-total { font-family: 'Inter Tight',sans-serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; color: var(--ink); letter-spacing: -.035em; line-height: 1; font-variant-numeric: tabular-nums; margin-bottom: 24px; }
.viz-stack-total .unit { font-size: 55%; color: var(--primary); margin-left: 2px; }
.viz-bar-track { height: 3.25rem; border-radius: .5rem; overflow: hidden; display: flex; background: var(--line); margin-bottom: 20px; }
.viz-bar-seg { height: 100%; display: flex; align-items: center; justify-content: flex-end; padding-right: 10px; font-family: 'Inter Tight',sans-serif; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.85); font-variant-numeric: tabular-nums; width: 0; transition: width 1.4s var(--ease-out); overflow: hidden; white-space: nowrap; }
.viz-bar-seg.mortgages   { background: var(--primary); transition-delay: 100ms; }
.viz-bar-seg.receivables { background: #004B82; transition-delay: 200ms; }
.viz-bar-seg.leases      { background: #3a89c9; transition-delay: 300ms; }
.viz-bar-seg.other       { background: #5fa2d4; transition-delay: 400ms; }
.viz-legend { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 20px; }
@media (max-width: 680px) { .viz-legend { grid-template-columns: 1fr 1fr; } }
.viz-legend-item { display: flex; gap: 8px; align-items: flex-start; }
.viz-legend-swatch { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; margin-top: 2px; }
.viz-legend-label { font-size: 12px; color: var(--graphite); line-height: 1.4; }
.viz-legend-value { font-family: 'Inter Tight',sans-serif; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; font-size: 14px; }
.viz-legend-pct { font-size: 11px; color: var(--slate); }
.viz-stack-source { font-size: 11px; color: var(--slate); border-top: 1px solid var(--line); padding-top: 14px; line-height: 1.5; }
.viz-stack-source a { color: var(--slate); text-decoration: underline; }

/* Europe SVG map */
.europe-map-wrap { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 8px; box-shadow: var(--shadow-1); }
.europe-map-wrap svg { display: block; width: 100%; height: auto; }
.country { transition: fill 300ms var(--ease); }
.country-nl { fill: var(--primary); }
.country-ie, .country-lu { fill: var(--sky); }
.country-neutral { fill: #E8EDF5; }
.country-neutral-2 { fill: #EEF2F7; }
.map-pin { animation: pinPulse 2.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .map-pin { animation: none; } }
.juris-list li.highlight { background: rgba(0,115,199,.04) !important; border: 1px solid rgba(0,115,199,.18) !important; border-radius: 8px !important; }

/* CTA grid overlay */
.cta-grid-overlay {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 40px);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* Founder placeholder — fills the aspect-ratio wrap via absolute positioning */
.founder-photo-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #C8DDEF 0%, #A8C8E8 50%, #88AECF 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  overflow: hidden;
}
.founder-silhouette {
  width: 120px; height: 140px;
  background: rgba(0,75,130,.22);
  border-radius: 60px 60px 0 0;
  position: relative;
  flex-shrink: 0;
}
.founder-silhouette::before {
  content: ''; position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(0,75,130,.28);
  bottom: 100%; left: 50%; transform: translateX(-50%);
  margin-bottom: 4px;
}
.founder-photo-caption {
  font-size: 11px; color: rgba(0,55,110,.6);
  font-style: italic; text-align: center;
  padding: 0 16px;
}

  /* ── Europe single-column override ── */
  .europe-grid-solo { grid-template-columns: 1fr; gap: 48px; }

  /* ── Flag-card jurisdiction rows ── */
  .juris-cards-v2 { display: flex; flex-direction: column; gap: 8px; }
  .juris-row-v2 {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow-1);
    transition: box-shadow 250ms var(--ease), transform 250ms var(--ease);
  }
  .juris-row-v2:hover { box-shadow: var(--shadow-2); transform: translateY(-1px); }
  .juris-highlight {
    border-color: rgba(0,115,199,.3);
    background: rgba(0,115,199,.03);
  }
  .jflag {
    width: 40px; height: 27px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,.08);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter Tight',sans-serif;
    font-size: 9px; font-weight: 800;
    letter-spacing: .04em;
  }
  /* Netherlands: red / white / blue */
  .jflag-nl { background: linear-gradient(to bottom, #AE1C28 33.33%, #fff 33.33%, #fff 66.66%, #21468B 66.66%); }
  /* Ireland: green / white / orange */
  .jflag-ie { background: linear-gradient(to right, #169B62 33.33%, #fff 33.33%, #fff 66.66%, #FF883E 66.66%); }
  /* Luxembourg: red / white / light blue */
  .jflag-lu { background: linear-gradient(to bottom, #EF3340 33.33%, #fff 33.33%, #fff 66.66%, #00A3E0 66.66%); }
  /* Other EU: EU blue */
  .jflag-eu { background: #003399; color: #FFD700; font-size: 8px; font-weight: 700; }

  .juris-info-v2 { flex: 1; min-width: 0; }
  .juris-name-v2 { font-family: 'Inter Tight',sans-serif; font-size: 15px; font-weight: 600; color: var(--ink); }
  .juris-sub-v2 { font-size: 12px; color: var(--slate); margin-top: 2px; }
  .juris-count-v2 {
    font-family: 'Inter Tight',sans-serif;
    font-size: 18px; font-weight: 700;
    color: var(--primary); letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
  }

