  /* ═══════════════════════════════════════
       DESIGN TOKENS — Bridged Logo Palette
       Logo: #5777BA · Derived family
    ═══════════════════════════════════════ */
    :root {
      --navy:       #1a2a52;
      --navy-mid:   #2e4a8a;
      --blue:       #5777BA;
      --blue-light: #7b95cc;
      --sky:        #a8bade;
      --sky-pale:   #e8edf8;
      --ice:        #f4f6fb;
      --white:      #ffffff;
      --muted:      #5e6e8a;
      --border:     #d0d9ee;
      --ink:        #1a2a52;

      --font-display: 'Bricolage Grotesque', sans-serif;
      --font-body:    'Outfit', sans-serif;
      --font-mono:    'JetBrains Mono', monospace;

      --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
      --ease-spring:   cubic-bezier(0.34,1.56,0.64,1);
      --shadow-sm:  0 2px 12px rgba(26,42,82,0.08);
      --shadow-md:  0 8px 32px rgba(26,42,82,0.12);
      --shadow-lg:  0 20px 60px rgba(26,42,82,0.15);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      position: relative;
    }

    /* voting background decoration */
    .bg-decor {
      position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none; z-index: 0;
      opacity: 0.06;
      overflow: hidden;
    }

    /* footer voting decoration */
    .footer-decor {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      pointer-events: none; z-index: 0;
      opacity: 0.09;
      overflow: hidden;
    }

    /* ── CURSOR ── */
    .cursor {
      position: fixed; width: 10px; height: 10px;
      background: var(--blue); border-radius: 50%;
      pointer-events: none; z-index: 10000;
      transform: translate(-50%,-50%);
      transition: width .25s var(--ease-spring), height .25s var(--ease-spring);
      mix-blend-mode: multiply;
    }
    .cursor-ring {
      position: fixed; width: 36px; height: 36px;
      border: 1.5px solid var(--blue-light);
      border-radius: 50%; pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%); opacity: 0.5;
      transition: width .3s var(--ease-spring), height .3s var(--ease-spring);
    }

    /* ── HEADER ── */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      padding: 18px 48px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(20px) saturate(1.5);
      border-bottom: 1px solid var(--border);
      transition: padding .3s var(--ease-out-expo), box-shadow .3s;
      animation: slideDown .6s var(--ease-out-expo) both;
    }
    @keyframes slideDown {
      from { transform: translateY(-100%); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }

    .logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .logo-mark {
      width: 38px; height: 38px;
      background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display);
      font-weight: 800; font-size: 1.1rem;
      color: var(--white);
      letter-spacing: -0.04em;
      box-shadow: 0 4px 14px rgba(87,119,186,0.35);
      flex-shrink: 0;
    }
    .logo-text {
      font-family: var(--font-display);
      font-size: 1.25rem; font-weight: 800;
      letter-spacing: -0.03em; color: var(--navy);
    }
    .logo-text .at { color: var(--blue); }

    nav { display: flex; align-items: center; gap: 28px; }
    nav a {
      /* font-size: 1.2rem; font-weight: 500;
      color: var(--muted); text-decoration: none;
      transition: color .2s; */
      font-size: 1rem; font-weight: 500;
      color: var(--muted); text-decoration: none;
      position: relative; padding-bottom: 3px;
      transition: color .22s, font-weight .22s;
    }
    /* nav a::after {
      content: '';
      position: absolute; bottom: -1px; left: 0;
      width: 0; height: 2px;
      background: var(--blue); border-radius: 2px;
      transition: width .28s cubic-bezier(0.16,1,0.3,1);
    } */
    nav a:not(.nav-demo):not(.nav-cta)::after {
      content: '';
      position: absolute; bottom: -1px; left: 0;
      width: 0; height: 2px;
      background: var(--blue); border-radius: 2px;
      transition: width .28s cubic-bezier(0.16,1,0.3,1);
    }
/*
    nav a:hover { color: var(--navy); font-weight: 600; }
    nav a:hover::after { width: 100%; }
    nav a.active { color: var(--navy); font-weight: 600; }
    nav a.active::after { width: 100%; }
*/
    nav a:hover { color: var(--navy);  }
    nav a:not(.nav-demo):not(.nav-cta):hover::after { width: 100%; }
    nav a.active { color: var(--navy);  }
    nav a:not(.nav-demo):not(.nav-cta).active::after { width: 100%; }


    .nav-demo {
      background: transparent !important;
      color: var(--blue) !important;
      border: 1.5px solid var(--blue) !important;
      padding: 8px 18px; border-radius: 8px;
      font-size: 0.84rem !important; font-weight: 600 !important;
      transition: background .2s, color .2s, transform .15s !important;
    }
    .nav-demo:hover {
      background: var(--sky-pale) !important;
      transform: translateY(-1px);
    }
    .nav-cta {
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%) !important;
      color: var(--white) !important;
      padding: 9px 20px; border-radius: 8px;
      font-size: 0.84rem !important; font-weight: 600 !important;
      box-shadow: 0 4px 16px rgba(87,119,186,0.3);
      transition: transform .15s, box-shadow .2s !important;
    }
    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(87,119,186,0.4) !important;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 64px;
      padding: 128px 48px 80px;
      position: relative; z-index: 1;
    }

    /* Blue glow background blob */
    .hero-blob {
      position: absolute;
      width: 700px; height: 700px;
      background: radial-gradient(ellipse, rgba(87,119,186,0.08) 0%, transparent 70%);
      top: 50%; right: -100px;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .hero-left { position: relative; z-index: 2; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--sky-pale);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 6px 16px 6px 10px;
      font-family: var(--font-mono);
      font-size: 0.72rem; color: var(--blue);
      margin-bottom: 28px; font-weight: 500;
      letter-spacing: 0.02em;
      animation: fadeUp .7s .3s var(--ease-out-expo) both;
    }
    .hero-badge .live-dot {
      width: 8px; height: 8px; background: #22c55e;
      border-radius: 50%; animation: livePulse 2s infinite;
    }
    @keyframes livePulse {
      0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
      50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
    }

    h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 4.5vw, 5.2rem);
      font-weight: 800; line-height: 1.0;
      letter-spacing: -0.04em; margin-bottom: 24px;
      animation: fadeUp .7s .45s var(--ease-out-expo) both;
    }
    h1 em {
      font-style: normal; color: var(--blue);
      position: relative; white-space: nowrap;
    }
    h1 em::after {
      content: '';
      position: absolute; bottom: 2px; left: 0; right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--sky), var(--blue-light));
      border-radius: 3px; opacity: 0.35;
    }

    .hero-sub {
      font-size: 1.5rem; line-height: 1.7;
      color: var(--muted); max-width: 500px;
      margin-bottom: 40px; font-weight: 400;
      animation: fadeUp .7s .6s var(--ease-out-expo) both;
    }

    .hero-actions {
      display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
      animation: fadeUp .7s .75s var(--ease-out-expo) both;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
      color: var(--white); padding: 15px 32px;
      border-radius: 12px; font-size: 1.15rem; font-weight: 600;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(26,42,82,0.25);
      transition: transform .2s var(--ease-spring), box-shadow .2s;
      letter-spacing: .01em;
    }
    .btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 10px 36px rgba(26,42,82,0.35);
    }
    .btn-primary .arr { transition: transform .2s var(--ease-spring); }
    .btn-primary:hover .arr { transform: translateX(5px); }

    .btn-demo {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--blue); font-size: .9rem; font-weight: 600;
      text-decoration: none; padding: 15px 6px;
      border-bottom: 2px solid var(--border);
      transition: border-color .2s, gap .2s var(--ease-spring), color .2s;
    }
    .btn-demo:hover { border-color: var(--blue); gap: 14px; }

    /* Trust strip */
    .hero-trust {
      display: flex; align-items: center; gap: 20px;
      margin-top: 44px; flex-wrap: wrap;
      animation: fadeUp .7s .9s var(--ease-out-expo) both;
    }
    .trust-item {
      display: flex; align-items: center; gap: 7px;
      font-size: 1rem; color: var(--muted); font-weight: 500;
    }
    .trust-icon {
      width: 28px; height: 28px;
      background: var(--sky-pale); border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem;
    }
    .trust-sep { color: var(--border); font-size: 1.2rem; user-select: none; }

    /* ── HERO RIGHT: Ballot Card ── */
    .hero-right {
      position: relative; z-index: 2;
      animation: fadeIn 1s .5s var(--ease-out-expo) both;
    }

    .ballot-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .ballot-header {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      padding: 24px 28px;
      color: var(--white);
    }
    .ballot-header-top {
      display: flex; justify-content: space-between; align-items: flex-start;
      margin-bottom: 12px;
    }
    .ballot-org {
      font-family: var(--font-display);
      font-size: 1rem; font-weight: 700; letter-spacing: -.02em;
    }
    .ballot-org span { opacity: .6; font-size: .8rem; display: block; font-weight: 400; margin-top: 2px; }
    .ballot-live-badge {
      background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
      border-radius: 100px; padding: 4px 12px;
      font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em;
      display: flex; align-items: center; gap: 6px;
    }
    .ballot-live-badge .dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: livePulse 2s infinite; }
    .ballot-stats {
      display: flex; gap: 20px;
    }
    .b-stat { font-size: .78rem; opacity: .7; }
    .b-stat strong { color: var(--white); font-size: 1.1rem; display: block; font-family: var(--font-display); font-weight: 700; }

    .ballot-body { padding: 24px 28px; }
    .ballot-title {
      font-family: var(--font-display);
      font-size: .95rem; font-weight: 700; color: var(--navy);
      margin-bottom: 16px; letter-spacing: -.01em;
    }

    .ballot-candidate {
      display: flex; align-items: center; gap: 12px;
      padding: 12px 14px; border-radius: 12px;
      border: 1.5px solid var(--border);
      margin-bottom: 8px; cursor: default;
      transition: border-color .2s, background .2s;
      position: relative; overflow: hidden;
    }
    .ballot-candidate.selected {
      border-color: var(--blue);
      background: var(--sky-pale);
    }
    .ballot-candidate.selected::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(87,119,186,0.06) 0%, transparent 100%);
    }
    .b-rank {
      width: 30px; height: 30px; border-radius: 50%;
      background: var(--ice); border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-mono); font-size: .75rem; font-weight: 500;
      color: var(--muted); flex-shrink: 0;
    }
    .ballot-candidate.selected .b-rank {
      background: var(--blue); border-color: var(--blue);
      color: var(--white);
    }
    .b-name { font-weight: 600; font-size: .88rem; flex: 1; }
    .b-role { font-size: .76rem; color: var(--muted); }
    .b-check {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--blue); color: white;
      display: flex; align-items: center; justify-content: center;
      font-size: .7rem; opacity: 0; transition: opacity .2s;
      flex-shrink: 0;
    }
    .ballot-candidate.selected .b-check { opacity: 1; }

    .ballot-footer {
      padding: 16px 28px;
      border-top: 1px solid var(--border);
      display: flex; justify-content: space-between; align-items: center;
      background: var(--ice);
    }
    .ballot-counter {
      font-family: var(--font-mono); font-size: .78rem; color: var(--muted);
    }
    .ballot-submit {
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
      color: white; border: none; padding: 10px 22px;
      border-radius: 10px; font-size: .85rem; font-weight: 600;
      cursor: pointer; font-family: var(--font-body);
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 4px 14px rgba(87,119,186,0.3);
    }
    .ballot-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(87,119,186,0.4); }

    /* ── LIVE STRIP (replaces float pills) ── */
    .live-strip {
      position: absolute; left: -72px; top: 50%;
      transform: translateY(-50%);
      display: flex; flex-direction: column; align-items: center;
      background: var(--white); border: 1px solid var(--border);
      border-radius: 16px; padding: 16px 14px; gap: 0;
      box-shadow: var(--shadow-md);
      z-index: 3;
    }
    .ls-item { text-align: center; padding: 10px 0; }
    .ls-num {
      font-family: var(--font-display); font-size: 1.3rem;
      font-weight: 800; letter-spacing: -.04em;
      color: var(--navy); line-height: 1;
    }
    .ls-label { font-size: .68rem; color: var(--muted); margin-top: 3px; white-space: nowrap; }
    .ls-sep { width: 28px; height: 1px; background: var(--border); margin: 2px 0; }
    .ls-dot-wrap { display: flex; justify-content: center; align-items: center; height: 22px; }
    .ls-live-dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
      animation: livePulse 2s infinite;
    }

    /* ── BALLOT SUCCESS STATE ── */
    .ballot-success {
      display: none; flex-direction: column; align-items: center;
      justify-content: center; text-align: center;
      padding: 28px 24px; gap: 10px;
      animation: successIn .5s var(--ease-spring) both;
    }
    .ballot-success.visible { display: flex; }
    .bs-icon {
      width: 64px; height: 64px; border-radius: 50%;
      background: linear-gradient(135deg, var(--navy-mid), var(--blue));
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(87,119,186,.35);
      animation: successPop .5s .1s var(--ease-spring) both;
    }
    .bs-title {
      font-family: var(--font-display); font-size: 1.1rem;
      font-weight: 700; color: var(--navy); letter-spacing: -.02em;
    }
    .bs-sub { font-size: .82rem; color: var(--muted); }
    .bs-receipt {
      display: flex; flex-direction: column; align-items: center; gap: 4px;
      background: var(--ice); border: 1px solid var(--border);
      border-radius: 10px; padding: 10px 20px; margin-top: 4px;
      animation: successIn .4s .3s var(--ease-out-expo) both;
      opacity: 0;
    }
    .bs-receipt.visible { opacity: 1; }
    .bs-receipt-label { font-size: .7rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
    .bs-receipt-code { font-family: var(--font-mono); font-size: .85rem; color: var(--blue); font-weight: 500; }

    @keyframes successIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes successPop {
      from { transform: scale(0.5); opacity: 0; }
      to   { transform: scale(1); opacity: 1; }
    }

    /* disabled submit button state */
    .ballot-submit:disabled {
      background: var(--border); color: var(--muted);
      box-shadow: none; cursor: default;
    }
    .ballot-submit:disabled:hover { transform: none; box-shadow: none; }

    /* candidate selection ripple */
    .ballot-candidate {
      position: relative; overflow: hidden;
    }
    .ballot-candidate::after {
      content: ''; position: absolute; inset: 0;
      background: var(--blue); opacity: 0; border-radius: 12px;
      transform: scale(0); transition: opacity .3s, transform .3s;
      pointer-events: none;
    }
    .ballot-candidate.ripple::after {
      opacity: .08; transform: scale(1);
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(.95) translateY(12px); }
      to   { opacity: 1; transform: scale(1)   translateY(0); }
    }

    /* ── MARQUEE ── */
    .marquee-wrap {
      background: var(--navy);
      padding: 14px 0; overflow: hidden;
    }
    .marquee-track {
      display: inline-flex; gap: 64px;
      animation: marquee 28s linear infinite; white-space: nowrap;
    }
    .m-item {
      display: inline-flex; align-items: center; gap: 12px;
      font-family: var(--font-mono); font-size: .98rem;
      color: rgba(255,255,255,.65); letter-spacing: .04em;
    }
    .m-item .sep { color: var(--sky); }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── STATS ── */
    .stats-section {
      background: var(--ice);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 1px; background: var(--border);
    }
    .stat-item {
      background: var(--ice); padding: 48px 32px; text-align: center;
      transition: background .2s;
    }
    .stat-item:hover { background: var(--white); }
    .stat-num {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 3.5vw, 3.8rem);
      font-weight: 800; letter-spacing: -.04em;
      color: var(--navy); line-height: 1; margin-bottom: 8px;
    }
    .stat-num .accent { color: var(--blue); }
    .stat-label { font-size: .85rem; color: var(--muted); }

    /* ── SECTION BASE ── */
    /* .section { padding: 96px 48px; max-width: 1240px; margin: 0 auto; } */
    .section-wrap {
      /* background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); */
      background: var(--ice);
      padding: 96px 48px; position: relative; overflow: hidden;
    }
    .section-wrap::before {
      content: '';
      position: absolute; width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(87,119,186,.15) 0%, transparent 70%);
      top: -200px; right: -100px; pointer-events: none;
    }
    .section-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }

    .section { background: var(--ice) ;
      padding: 96px 48px; max-width: 1240px; margin: 0 auto; }
    .section-tag {
      display: block;
      font-family: var(--font-mono); font-size: .72rem;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 14px;
    }
    h2 {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 3.2vw, 3.2rem);
      font-weight: 800; letter-spacing: -.03em; line-height: 1.1;
      margin-bottom: 14px;
    }
    .section-lead {
      font-size: 1.25rem; color: var(--muted);
      max-width: 520px; line-height: 1.65; font-weight: 400;
    }

    /* ── HOW IT WORKS ── */
    .how-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 2px; margin-top: 56px;
      background: var(--border);
      border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
    }
    .how-step {
      background: var(--white); padding: 36px 28px;
      position: relative; overflow: hidden;
      transition: background .2s;
    }
    .how-step:hover { background: var(--ice); }
    .how-step::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: transparent; transition: background .3s;
    }
    .how-step:hover::after {
      background: linear-gradient(90deg, var(--blue), var(--sky));
    }
    .step-n {
      font-family: var(--font-display);
      font-size: 3.5rem; font-weight: 800;
      letter-spacing: -.05em; line-height: 1;
      color: var(--border); margin-bottom: 16px;
      transition: color .3s;
    }
    .how-step:hover .step-n { color: rgba(87,119,186,.2); }
    .step-ico {
      width: 52px; height: 52px;
      background: var(--sky-pale); border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      transition: transform .3s var(--ease-spring);
    }
    .how-step:hover .step-ico { transform: scale(1.1) rotate(-4deg); }
    .how-step:hover .step-ico svg { stroke: var(--blue); }
    .how-step h3 {
      font-family: var(--font-display); font-size: 1.25rem;
      font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px;
    }
    .how-step p { font-size: 1.07rem; color: var(--muted); line-height: 1.65; }

    /* ── FEATURES BENTO ── */
    .features-wrap { padding: 48px 96px; max-width: 1240px; margin: 0 auto; }
    .bento {
      display: grid; grid-template-columns: repeat(12,1fr);
      gap: 14px; margin-top: 56px;
    }
    .bc {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 20px; padding: 32px; overflow: hidden;
      position: relative;
      transition: transform .3s var(--ease-spring), box-shadow .3s;
    }
    .bc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .bc1 { grid-column: span 7; }
    .bc2 { grid-column: span 5; background: var(--navy); color: var(--white); }
    .bc3 { grid-column: span 4; }
    .bc4 { grid-column: span 4; background: var(--sky-pale); }
    .bc5 { grid-column: span 4; }

    .bc h3 {
      font-family: var(--font-display); font-size: 1.5rem;
      font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px;
    }
    .bc2 h3 { color: var(--white); }
    .bc p { font-size: 1.25rem; color: var(--muted); line-height: 1.6; }
    .bc2 p { color: rgba(255,255,255,.55); }
    .bc4 p { color: var(--navy-mid); }
    .bc4 h3 { color: var(--navy); }

    .bc-emoji { font-size: 2.2rem; display: block; margin-bottom: 18px; }
    .bc-icon { display: block; margin-bottom: 20px; line-height: 0; }
    .bc-big {
      font-family: var(--font-display); font-size: 3.6rem;
      font-weight: 800; letter-spacing: -.05em; line-height: 1;
      color: var(--blue); margin-bottom: 8px;
    }

    /* Security level */
    .sec-level { display: flex; gap: 4px; margin-top: 18px; }
    .sec-bar {
      flex: 1; height: 5px; border-radius: 3px;
      background: rgba(255,255,255,.15);
    }
    .sec-bar.on { background: var(--sky); }

    /* GDPR badge */
    .gdpr-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
      border-radius: 8px; padding: 8px 14px; margin-top: 20px;
      font-family: var(--font-mono); font-size: .72rem;
      color: rgba(255,255,255,.8); letter-spacing: .04em;
    }

    /* Mini timeline */
    .mini-timeline { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
    .tl-item {
      display: flex; align-items: center; gap: 10px;
      font-size: .98rem; font-weight: 500; color: var(--navy-mid);
    }
    .tl-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--blue); flex-shrink: 0;
    }

    /* ── USE CASES ── */
    .usecases-wrap {
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
      padding: 96px 48px; position: relative; overflow: hidden;
    }
    .usecases-wrap::before {
      content: '';
      position: absolute; width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(87,119,186,.15) 0%, transparent 70%);
      top: -200px; right: -100px; pointer-events: none;
    }
    .usecases-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }
    .usecases-wrap .section-tag { color: var(--sky); }
    .usecases-wrap h2 { color: var(--white); }
    .usecases-wrap .section-lead { color: rgba(255,255,255,.5); max-width: 600px; }

    .cases-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 16px; margin-top: 56px;
    }
    .case-card {
      border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
      padding: 28px;
      transition: border-color .3s, background .3s, transform .3s var(--ease-spring);
    }
    .case-card:hover {
      border-color: var(--sky); background: rgba(96,165,250,.07);
      transform: translateY(-4px);
    }
    .case-icon { display: block; margin-bottom: 16px; line-height: 0; }
    .case-card:hover .case-icon svg { stroke: var(--sky); transition: stroke .3s; }
    .case-card h3 {
      font-family: var(--font-display); font-size: 1.25rem;
      font-weight: 700; color: var(--white); margin-bottom: 8px;
      letter-spacing: -.02em;
    }
    .case-card p { font-size: .99rem; color: rgba(255,255,255,.5); line-height: 1.6; }
    .case-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
    .case-pill {
      font-family: var(--font-mono); font-size: .68rem;
      padding: 3px 10px; border-radius: 100px;
      border: 1px solid rgba(255,255,255,.15);
      color: rgba(255,255,255,.45);
    }

        /* ═══ ARTICLES ═══ */
    .articles-wrap { background: var(--ice); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 96px 48px; }
    .articles-inner { max-width: 1240px; margin: 0 auto; }
    .articles-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }
    .articles-all { font-size: .9rem; font-weight: 600; color: var(--blue); text-decoration: none; border-bottom: 1.5px solid var(--border); padding-bottom: 2px; transition: border-color .2s; white-space: nowrap; }
    .articles-all:hover { border-color: var(--blue); }
    .articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .art-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 12px; transition: transform .3s var(--ease-spring), box-shadow .3s; }
    .art-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .art-featured { border-color: var(--blue); background: linear-gradient(160deg, var(--sky-pale) 0%, var(--white) 60%); }
    .art-cat { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); font-weight: 500; }
    .art-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.3; color: var(--navy); flex: 1; }
    .art-excerpt { font-size: .85rem; color: var(--muted); line-height: 1.65; }
    .art-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
    .art-date { display: flex; align-items: center; gap: 5px; font-size: .78rem; color: var(--muted); }
    .art-read { font-size: .75rem; color: var(--muted); }
    .art-link { font-size: .84rem; font-weight: 600; color: var(--blue); text-decoration: none; }
    .art-link:hover { text-decoration: underline; }

    /* ── FAQ ── */
    .faq-wrap { max-width: 780px; margin: 0 auto; padding: 96px 48px; }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-q {
      display: flex; justify-content: space-between; align-items: center;
      padding: 22px 0; cursor: pointer; gap: 16px;
    }
    .faq-q span {
      font-family: var(--font-display); font-size: 1rem;
      font-weight: 700; letter-spacing: -.01em; color: var(--navy);
    }
    .faq-chevron {
      width: 28px; height: 28px; border-radius: 8px;
      background: var(--ice); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: .7rem; color: var(--blue);
      transition: transform .3s var(--ease-out-expo), background .2s;
    }
    .faq-item.open .faq-chevron { transform: rotate(45deg); background: var(--blue); color: white; }
    .faq-a {
      font-size: .9rem; color: var(--muted); line-height: 1.7;
      max-height: 0; overflow: hidden;
      transition: max-height .4s var(--ease-out-expo), padding .3s;
    }
    .faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }
    .faq-contact {
      text-align: center; margin-top: 56px;
      padding-top: 48px; border-top: 1px solid var(--border);
    }
    .faq-contact p {
      font-size: 1.07rem; color: var(--muted); line-height: 1.65;
      max-width: 480px; margin: 0 auto 24px;
    }

    /* ── TESTIMONIALS ── */
    .testi-wrap { padding: 48px 96px; max-width: 1240px; margin: 0 auto; }
    .testi-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 18px; margin-top: 56px;
    }
    .testi-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 18px; padding: 28px;
      transition: transform .3s var(--ease-spring), box-shadow .3s;
    }
    .testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .testi-stars { color: #fbbf24; font-size: .95rem; margin-bottom: 14px; }
    .testi-q {
      font-size: .9rem; line-height: 1.7; color: var(--navy);
      margin-bottom: 20px; font-weight: 400;
    }
    .testi-q strong { color: var(--blue); }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-av {
      width: 38px; height: 38px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: .82rem;
      color: white; flex-shrink: 0;
    }
    .testi-name { font-size: .85rem; font-weight: 700; color: var(--navy); }
    .testi-role { font-size: .77rem; color: var(--muted); }

    /* ── CTA ── */
    .cta-wrap { padding: 0 48px 96px; max-width: 1240px; margin: 0 auto; }
    .cta-box {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #5777BA 100%);
      border-radius: 28px; padding: 80px 64px;
      text-align: center; position: relative; overflow: hidden;
    }
    .cta-box::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 20% 50%, rgba(87,119,186,.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46,74,138,.18) 0%, transparent 50%);
    }
    .cta-box h2 { color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
    .cta-box p { color: rgba(255,255,255,.6); font-size: 1.05rem; margin-bottom: 36px; position: relative; z-index: 1; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
    .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white); color: var(--navy);
      padding: 14px 32px; border-radius: 12px;
      font-size: .95rem; font-weight: 700; text-decoration: none;
      box-shadow: 0 6px 28px rgba(0,0,0,0.25);
      transition: transform .2s var(--ease-spring), box-shadow .2s;
    }
    .btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0,0,0,.35); }
    .btn-outline-w {
      display: inline-flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,.75); padding: 14px 32px;
      border: 1.5px solid rgba(255,255,255,.25); border-radius: 12px;
      font-size: .95rem; font-weight: 600; text-decoration: none;
      transition: border-color .2s, color .2s, transform .2s;
    }
    .btn-outline-w:hover { border-color: rgba(255,255,255,.7); color: var(--white); transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer {
      background: var(--navy); color: rgba(255,255,255,.5);
      padding: 64px 48px 36px;
    }
    .footer-inner { max-width: 1240px; margin: 0 auto; }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 56px; padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-brand { }
    .footer-logo-row {
      display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
    }
    .footer-logo-mark {
      width: 34px; height: 34px;
      background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
      border-radius: 9px; display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-weight: 800; font-size: 1rem;
      color: var(--white); flex-shrink: 0;
    }
    .footer-logo-name {
      font-family: var(--font-display); font-size: 1.2rem;
      font-weight: 800; color: var(--white); letter-spacing: -.03em;
    }
    .footer-tagline { font-size: 1.1rem; line-height: 1.6; color: rgba(255,255,255,.35); }
    .footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 6px; }
    .footer-contact a {
      font-size: .92rem; color: rgba(255,255,255,.4); text-decoration: none;
      display: flex; align-items: center; gap: 6px; transition: color .2s;
    }
    .footer-contact a:hover { color: rgba(255,255,255,.8); }

    .footer-col h4 {
      font-family: var(--font-mono); font-size: .72rem;
      font-weight: 500; color: var(--white);
      letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a {
      font-size: .86rem; color: rgba(255,255,255,.4);
      text-decoration: none; transition: color .2s;
    }
    .footer-col ul li a:hover { color: rgba(255,255,255,.8); }

    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 28px; font-size: .78rem;
      color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom a { color: rgba(255,255,255,.25); text-decoration: none; }
    .footer-bottom a:hover { color: rgba(255,255,255,.6); }
    .social-row { display: flex; gap: 14px; }
    .social-row a {
      width: 34px; height: 34px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.4); font-size: .85rem;
      text-decoration: none; transition: background .2s, color .2s, transform .2s;
    }
    .social-row a:hover { background: var(--blue); color: white; transform: translateY(-2px); }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo); }
    .reveal.v { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; padding: 110px 28px 60px; text-align: center; }
      .hero-sub, .hero-trust { justify-content: center; text-align: center; }
      .hero-trust { flex-wrap: wrap; }
      .hero-actions { justify-content: center; }
      .hero-right { display: none; }
      .how-grid { grid-template-columns: repeat(2,1fr); }
      .bento { grid-template-columns: 1fr; }
      .bc1, .bc2, .bc3, .bc4, .bc5 { grid-column: span 1; }
      .cases-grid { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .stats-grid { grid-template-columns: repeat(2,1fr); }
      .cta-box { padding: 48px 28px; }
      .section, .features-wrap, .testi-wrap, .cta-wrap, .faq-wrap { padding-left: 24px; padding-right: 24px; }
      .usecases-wrap { padding: 64px 24px; }
      header { padding: 16px 24px; }
      nav a:not(.nav-demo):not(.nav-cta) { display: none; }
    }
    @media (max-width: 600px) {
      .stats-grid { grid-template-columns: 1fr; }
      .how-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .cursor, .cursor-ring { display: none; }
    }

        /* ═══ CONTACT FORM ═══ */
    .contact-wrap { padding: 96px 48px; max-width: 1240px; margin: 0 auto; }
    .contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
    .contact-details { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
    .cd-item { display: flex; align-items: flex-start; gap: 14px; text-decoration: none; color: inherit; padding: 12px; border-radius: 12px; border: 1px solid transparent; transition: border-color .2s, background .2s; }
    .cd-item:hover { border-color: var(--border); background: var(--ice); }
    .cd-icon { width: 36px; height: 36px; background: var(--sky-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .cd-label { font-size: .72rem; color: var(--muted); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 2px; }
    .cd-value { font-size: 1rem; font-weight: 500; color: var(--navy); line-height: 1.4; }
    .contact-form-box { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 36px; box-shadow: var(--shadow-sm); }
    .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .cf-label { font-size: .82rem; font-weight: 600; color: var(--navy); }
    .cf-req { color: var(--blue); }
    .cf-input { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--font-body); font-size: .9rem; color: var(--navy); background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none; width: 100%; }
    .cf-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(87,119,186,.12); }
    .cf-input.error { border-color: #e53e3e; }
    .cf-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235777BA' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }
    .cf-textarea { resize: vertical; min-height: 110px; }
    .cf-err { font-size: .75rem; color: #e53e3e; min-height: 16px; }
    .cf-check-group { margin-bottom: 20px; }
    .cf-check-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: .85rem; color: var(--muted); line-height: 1.5; }
    .cf-check-label input[type="checkbox"] { display: none; }
    .cf-checkmark { width: 18px; height: 18px; border: 1.5px solid var(--border); border-radius: 5px; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; background: var(--white); }
    .cf-check-label input:checked ~ .cf-checkmark { background: var(--blue); border-color: var(--blue); }
    .cf-check-label input:checked ~ .cf-checkmark::after { content: '✓'; font-size: .7rem; color: white; }
    .cf-policy-link { color: var(--blue); text-decoration: underline; cursor: pointer; background: none; border: none; font: inherit; padding: 0; }
    .cf-submit { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); color: white; border: none; border-radius: 12px; font-family: var(--font-body); font-size: .95rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: transform .2s, box-shadow .2s, opacity .2s; box-shadow: 0 4px 20px rgba(87,119,186,.3); }
    .cf-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(87,119,186,.4); }
    .cf-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
    .cf-success { text-align: center; padding: 32px 24px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .cfs-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-mid), var(--blue)); display: flex; align-items: center; justify-content: center; }
    .cf-success h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
    .cf-success p { color: var(--muted); font-size: .9rem; }
    .cf-error-msg { display: flex; align-items: center; gap: 8px; color: #c53030; background: #fff5f5; border: 1px solid #fed7d7; border-radius: 10px; padding: 12px 16px; font-size: .85rem; margin-top: 12px; }

    
    /* ═══ COOKIE BANNER ═══ */
    .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000; background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 -8px 32px rgba(26,42,82,.1); padding: 16px 32px; animation: slideUp .4s var(--ease-out-expo); }
    @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
    .cookie-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
    .cookie-text { flex: 1; min-width: 260px; }
    .cookie-title { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 4px; }
    .cookie-desc { font-size: .82rem; color: var(--muted); line-height: 1.5; }
    .cookie-policy-link { background: none; border: none; color: var(--blue); text-decoration: underline; cursor: pointer; font: inherit; padding: 0; }
    .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .cookie-btn { padding: 9px 18px; border-radius: 9px; font-family: var(--font-body); font-size: .83rem; font-weight: 500; cursor: pointer; border: 1.5px solid var(--border); background: var(--white); color: var(--navy); transition: background .2s, border-color .2s, transform .15s; }
    .cookie-btn:hover { transform: translateY(-1px); }
    .cookie-decline:hover { background: var(--ice); }
    .cookie-manage { border-color: var(--blue); color: var(--blue); }
    .cookie-manage:hover { background: var(--sky-pale); }
    .cookie-accept { background: var(--blue); color: white; border-color: var(--blue); }
    .cookie-accept:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
    .cookie-manage-panel { position: fixed; bottom: 0; right: 24px; width: 380px; background: var(--white); border: 1px solid var(--border); border-radius: 16px 16px 0 0; box-shadow: var(--shadow-lg); z-index: 9100; animation: slideUp .3s var(--ease-out-expo); }
    .cmp-inner { padding: 24px; }
    .cmp-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
    .cmp-head h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); }
    .cmp-close { background: none; border: none; font-size: 1rem; cursor: pointer; color: var(--muted); width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
    .cmp-close:hover { background: var(--ice); }
    .cmp-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
    .cmp-name { font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
    .cmp-desc { font-size: .78rem; color: var(--muted); line-height: 1.4; }
    .cmp-always-on { font-size: .72rem; font-family: var(--font-mono); letter-spacing: .06em; color: #22c55e; white-space: nowrap; font-weight: 500; }
    .toggle-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
    .toggle-switch input { display: none; }
    .toggle-slider { position: absolute; inset: 0; background: var(--border); border-radius: 100px; cursor: pointer; transition: background .2s; }
    .toggle-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: white; border-radius: 50%; transition: transform .2s; }
    .toggle-switch input:checked + .toggle-slider { background: var(--blue); }
    .toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
    .cmp-footer { display: flex; gap: 10px; margin-top: 20px; }
    .cmp-footer .cookie-btn { flex: 1; text-align: center; }

    /* ═══ PRIVACY MODAL ═══ */
    .privacy-overlay { position: fixed; inset: 0; background: rgba(26,42,82,.6); backdrop-filter: blur(4px); z-index: 9500; display: flex; align-items: center; justify-content: center; padding: 20px; animation: fadeInOverlay .2s; }
    @keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
    .privacy-modal { background: var(--white); border-radius: 20px; max-width: 680px; width: 100%; max-height: 88vh; display: flex; flex-direction: column; box-shadow: 0 32px 80px rgba(26,42,82,.25); animation: modalIn .3s var(--ease-out-expo); }
    @keyframes modalIn { from { opacity: 0; transform: scale(.95) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
    .pm-head { display: flex; justify-content: space-between; align-items: center; padding: 24px 28px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
    .pm-head h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); letter-spacing: -.02em; }
    .pm-close { background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--muted); width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
    .pm-close:hover { background: var(--ice); }
    .pm-body { padding: 24px 28px; overflow-y: auto; flex: 1; }
    .pm-updated { font-size: .78rem; color: var(--muted); margin-bottom: 20px; font-family: var(--font-mono); }
    .pm-body h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin: 20px 0 8px; }
    .pm-body p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 8px; }
    .pm-footer { padding: 20px 28px; border-top: 1px solid var(--border); flex-shrink: 0; text-align: right; }

    @media (max-width: 900px) {
      .articles-grid { grid-template-columns: 1fr; }
      .articles-head { flex-direction: column; align-items: flex-start; }
      .articles-wrap, .contact-wrap { padding-left: 24px; padding-right: 24px; }
      .contact-inner { grid-template-columns: 1fr; gap: 40px; }
      .cf-row { grid-template-columns: 1fr; }
      .cookie-banner { padding: 16px 20px; }
      .cookie-manage-panel { right: 0; width: 100%; border-radius: 16px 16px 0 0; }
    }