    :root {
      --bg:        #050c1a;
      --bg1:       #071224;
      --bg2:       #0a1830;
      --card:      #0b1f3a;
      --card-hover:#0e2548;
      --navy:      #0B1F51;
      --blue:      #00AEEF;
      --blue-lt:   #6ACFF8;
      --blue-dk:   #0078b3;
      --border:    rgba(0,174,239,0.15);
      --border-md: rgba(0,174,239,0.25);
      --cream:     #e8edf5;
      --cream-md:  #9ab0c8;
      --cream-dk:  #5a7a99;
      --gold:      #f4b942;
      --red:       #e85555;

      --font-head: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --font-mono: 'JetBrains Mono', monospace;

      --wrap: 1180px;
      --r:    4px;
    }

    /* ═══════════════════════════════
       RESET + BASE
    ═══════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--cream-md);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    .mgs-link { color: var(--blue-lt); border-bottom: 1px solid rgba(106,207,248,0.35); transition: color 0.2s, border-color 0.2s; }
    .mgs-link:hover { color: #fff; border-bottom-color: rgba(106,207,248,0.8); }

    /* ═══════════════════════════════
       TYPOGRAPHY
    ═══════════════════════════════ */
    h1, h2, h3, h4 {
      font-family: var(--font-head);
      color: var(--cream);
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    h1 { font-size: clamp(32px, 6vw, 68px); font-weight: 700; }
    h2 { font-size: clamp(26px, 4vw, 46px); font-weight: 700; }
    h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; }

    .eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }
    .eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--blue);
      opacity: 0.7;
      flex-shrink: 0;
    }

    /* ═══════════════════════════════
       LAYOUT
    ═══════════════════════════════ */
    .wrap {
      max-width: var(--wrap);
      margin: 0 auto;
      padding: 0 20px;
    }

    section { position: relative; }

    /* ═══════════════════════════════
       BACKGROUND GRID
    ═══════════════════════════════ */
    .bg-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    #hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    .bg-glow {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(120px);
      z-index: 0;
    }

    /* ═══════════════════════════════
       BUTTONS
    ═══════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--r);
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.22s ease;
      border: none;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--blue);
      color: #020810;
      font-weight: 700;
      letter-spacing: 0.01em;
      box-shadow: 0 0 28px rgba(0,174,239,0.3);
    }
    .btn-primary:hover {
      background: var(--blue-lt);
      box-shadow: 0 0 48px rgba(0,174,239,0.5);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--cream-md);
      border: 1px solid var(--border-md);
    }
    .btn-ghost:hover {
      border-color: var(--blue);
      color: var(--blue-lt);
      background: rgba(0,174,239,0.05);
    }

    .btn-arrow::after {
      content: '→';
      font-size: 16px;
      transition: transform 0.2s;
    }
    .btn-arrow:hover::after { transform: translateX(4px); }

    /* ═══════════════════════════════
       SCROLL REVEAL
    ═══════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ═══════════════════════════════
       NAV
    ═══════════════════════════════ */
    #nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 20px;
      transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
      border-bottom: 1px solid transparent;
    }
    #nav.scrolled {
      background: rgba(5,12,26,0.92);
      backdrop-filter: blur(16px);
      border-bottom-color: var(--border);
    }

    .nav-inner {
      max-width: var(--wrap);
      margin: 0 auto;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-logo img {
      height: 32px;
      width: auto;
      display: block;
      opacity: 0.9;
      transition: opacity 0.2s;
    }
    .nav-logo:hover img { opacity: 1; }

    .nav-links {
      display: none;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 400;
      color: var(--cream-md);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--cream); }

    .nav-cta { flex-shrink: 0; }

    /* Nav dropdown */
    .nav-dropdown {
      position: relative;
    }
    .nav-dropdown > a {
      display: flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
    }
    .nav-dropdown > a::after {
      content: '';
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid currentColor;
      opacity: 0.5;
      transition: transform 0.2s;
    }
    .nav-dropdown:hover > a::after {
      transform: rotate(180deg);
    }
    .nav-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      padding-top: 12px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s, visibility 0.2s;
      z-index: 100;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
    }
    .nav-dropdown-menu ul {
      background: rgba(7,18,36,0.97);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 8px 0;
      list-style: none;
      min-width: 220px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    }
    .nav-dropdown-menu li a {
      display: block;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 400;
      color: var(--cream-md);
      white-space: nowrap;
      transition: color 0.2s, background 0.2s;
    }
    .nav-dropdown-menu li a:hover {
      color: var(--cream);
      background: rgba(0,174,239,0.06);
    }

    /* Hamburger button */
    .nav-hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      padding: 6px;
      background: none;
      border: 1px solid var(--border);
      border-radius: var(--r);
      cursor: pointer;
      flex-shrink: 0;
    }
    .nav-hamburger span {
      display: block;
      height: 1.5px;
      background: var(--cream-md);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
      transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Mobile drawer */
    .nav-mobile {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: rgba(7,18,36,0.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 20px 20px 28px;
      transform: translateY(-110%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 99;
    }
    .nav-mobile.open { transform: translateY(0); }
    .nav-mobile ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 20px;
    }
    .nav-mobile ul li a {
      display: block;
      padding: 13px 4px;
      font-size: 16px;
      font-weight: 500;
      color: var(--cream-md);
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }
    .nav-mobile ul li:last-child a { border-bottom: none; }
    .nav-mobile ul li a:hover { color: var(--cream); }
    .nav-mobile .btn { width: 100%; text-align: center; }
    .nav-mobile-label {
      display: block;
      padding: 13px 4px;
      font-size: 11px;
      font-weight: 500;
      font-family: var(--font-mono);
      color: var(--cream-dk);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border-bottom: 1px solid var(--border);
    }
    .nav-mobile-sub a {
      padding-left: 20px !important;
      font-size: 15px !important;
    }

    @media (min-width: 768px) {
      .nav-links { display: flex; }
      .nav-hamburger { display: none; }
      .nav-mobile { display: none; }
    }

    /* ═══════════════════════════════
       DEADLINE BANNER
    ═══════════════════════════════ */
    .deadline-banner {
      background: linear-gradient(135deg, rgba(11,31,81,0.9) 0%, rgba(0,174,239,0.12) 100%);
      border-bottom: 1px solid var(--border);
      padding: 10px 20px;
      text-align: center;
      margin-top: 64px;
    }
    .deadline-banner-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .deadline-dot {
      width: 7px;
      height: 7px;
      background: var(--red);
      border-radius: 50%;
      animation: pulse-red 1.8s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes pulse-red {
      0%, 100% { box-shadow: 0 0 0 0 rgba(232,85,85,0.6); }
      50% { box-shadow: 0 0 0 6px rgba(232,85,85,0); }
    }
    .deadline-text {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--cream-md);
      letter-spacing: 0.05em;
    }
    .deadline-text strong { color: var(--cream); }
    .deadline-text .highlight { color: var(--red); font-weight: 500; }
    #countdown {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--blue-lt);
      font-weight: 500;
    }

    /* ═══════════════════════════════
       HERO
    ═══════════════════════════════ */
    .hero {
      padding: 64px 0 0;
      overflow: hidden;
      background: linear-gradient(180deg, #040a17 0%, var(--bg) 100%);
      min-height: 100svh;
      display: flex;
      flex-direction: column;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 20px;
      max-width: var(--wrap);
      margin: 0 auto;
      width: 100%;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 24px;
      padding-bottom: 32px;
    }
    @media (min-width: 768px) {
      .hero-content { padding-top: 48px; padding-bottom: 48px; }
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,174,239,0.08);
      border: 1px solid var(--border-md);
      border-radius: 100px;
      padding: 6px 14px 6px 8px;
      margin-bottom: 28px;
      width: fit-content;
    }
    .hero-eyebrow-badge {
      background: var(--blue);
      color: #020810;
      font-family: var(--font-mono);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 100px;
    }
    .hero-eyebrow-text {
      font-size: 12px;
      color: var(--blue-lt);
      letter-spacing: 0.03em;
    }

    .hero-h1 {
      max-width: 820px;
      margin-bottom: 24px;
    }
    .hero-h1 .accent { color: var(--blue); }
    .hero-h1 .deadline {
      position: relative;
      display: inline-block;
    }
    .hero-h1 .deadline::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--red);
      border-radius: 2px;
      opacity: 0.8;
    }

    .hero-sub {
      font-size: clamp(15px, 2vw, 18px);
      font-weight: 300;
      color: var(--cream-md);
      max-width: 560px;
      line-height: 1.65;
      margin-bottom: 36px;
    }
    .hero-sub strong { color: var(--cream); font-weight: 500; }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 48px;
    }

    .hero-link {
      font-size: 13px;
      color: var(--cream-dk);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: transparent;
    }
    .hero-link:hover {
      color: var(--blue-lt);
      text-decoration-color: var(--blue-lt);
    }

    /* Screenshot block */
    .hero-screenshot {
      position: relative;
      z-index: 2;
      margin-top: auto;
      padding: 0 20px;
      max-width: var(--wrap);
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      /* perspective container for 3D tilt */
      perspective: 1400px;
      perspective-origin: 50% 0%;
    }
    .hero-screenshot-frame {
      transform-origin: 50% 100%;
      will-change: transform;
      background: var(--card);
      border: 1px solid var(--border-md);
      border-radius: 8px 8px 0 0;
      overflow: hidden;
      box-shadow:
        0 -40px 120px rgba(0,174,239,0.12),
        0 0 0 1px rgba(0,174,239,0.1);
    }
    .hero-screenshot-bar {
      background: #0d1e35;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid var(--border);
    }
    .dot { width: 10px; height: 10px; border-radius: 50%; }
    .dot-r { background: #e85555; }
    .dot-y { background: #f4b942; }
    .dot-g { background: #4caf7d; }
    .hero-screenshot-bar-url {
      margin-left: 12px;
      background: rgba(0,174,239,0.06);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 3px 12px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--cream-dk);
      flex: 1;
      max-width: 320px;
    }
    .hero-screenshot img {
      width: 100%;
      display: block;
    }

    /* ═══════════════════════════════
       TRUST BAR
    ═══════════════════════════════ */
    .trust-bar {
      background: rgba(11,31,81,0.5);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 16px 20px;
    }
    .trust-bar-inner {
      max-width: var(--wrap);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 8px 24px;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      color: var(--cream-dk);
      font-family: var(--font-mono);
      letter-spacing: 0.03em;
      white-space: normal;
      text-align: center;
    }
    .trust-item svg { color: var(--blue); flex-shrink: 0; }
    .trust-sep {
      width: 1px;
      height: 14px;
      background: var(--border);
      display: none;
    }
    @media (min-width: 700px) {
      .trust-item { white-space: nowrap; text-align: left; }
      .trust-sep { display: block; }
    }

    /* ═══════════════════════════════
       PROBLEM SECTION
    ═══════════════════════════════ */
    .section-problem {
      padding: 60px 0;
      background: var(--bg);
      overflow: hidden;
    }
    @media (min-width: 768px) {
      .section-problem { padding: 100px 0; }
    }
    .problem-lead {
      font-size: 15px;
      line-height: 1.75;
      color: var(--cream-md);
      max-width: 680px;
      margin-top: 20px;
    }
    @media (min-width: 768px) {
      .problem-lead { font-size: clamp(15px, 2vw, 17px); margin-top: 28px; }
    }
    .problem-lead strong { color: var(--cream); }

    /* Pain lines */
    .problem-pains {
      margin-top: 56px;
      border-top: 1px solid var(--border);
    }
    .pain-row {
      display: flex;
      align-items: center;
      gap: 32px;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      transition: background 0.25s;
    }
    .pain-row:hover { background: rgba(232,85,85,0.03); }
    .pain-text {
      flex: 1;
      font-size: clamp(15px, 1.8vw, 18px);
      color: var(--cream-md);
      line-height: 1.5;
    }
    .pain-text strong { color: var(--cream); }
    .pain-arrow {
      color: var(--border-md);
      font-size: 20px;
      flex-shrink: 0;
      transition: color 0.25s, transform 0.25s;
    }
    .pain-row:hover .pain-arrow {
      color: var(--red);
      transform: translateX(4px);
    }
    .pain-fact {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      flex-shrink: 0;
      min-width: 160px;
      text-align: right;
    }
    .pain-num {
      font-family: var(--font-head);
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 800;
      color: var(--red);
      line-height: 1;
    }
    .pain-sub {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--cream-dk);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 5px;
    }

    @media (max-width: 640px) {
      .problem-pains { margin-top: 32px; }
      .pain-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 20px 0;
      }
      .pain-arrow { display: none; }
      .pain-fact {
        align-items: flex-start;
        text-align: left;
        min-width: 0;
        flex-direction: row;
        align-items: baseline;
        gap: 10px;
      }
      .pain-num { font-size: 20px; }
      .pain-sub { margin-top: 0; font-size: 9px; }
      .pain-text { font-size: 14px; }
    }

    /* ═══════════════════════════════
       SOLUTION SECTION
    ═══════════════════════════════ */
    /* ── Solution: sticky scroll section ── */
    .section-solution {
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg1) 60%, var(--bg) 100%);
    }

    /* Non-sticky intro scrolls normally */
    .solution-intro {
      padding: 100px 0 60px;
    }
    .solution-lead {
      font-size: clamp(15px, 2vw, 17px);
      color: var(--cream-md);
      line-height: 1.75;
      margin-top: 20px;
      max-width: 680px;
    }
    .solution-lead strong { color: var(--cream); }

    /* Scroll driver — creates the scrollable distance */
    .solution-scroll-area {
      position: relative;
      height: 300vh;           /* 3 panels × 100vh */
    }

    /* Sticky panel pins for the full scroll distance */
    .solution-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .solution-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
      width: 100%;
    }

    /* ── Cards column ── */
    .solution-cards {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .solution-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-left: 3px solid transparent;
      border-radius: var(--r);
      padding: 24px 28px;
      cursor: default;
      transition: opacity 0.5s ease, border-color 0.5s ease,
                  background 0.5s ease, transform 0.5s ease;
      opacity: 0.35;
      transform: translateX(-6px);
    }
    .solution-card.active {
      opacity: 1;
      border-left-color: var(--blue);
      background: var(--card-hover);
      transform: translateX(0);
    }
    .solution-card-num {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 500;
      color: var(--blue);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0;
      transition: opacity 0.4s ease 0.15s;
    }
    .solution-card.active .solution-card-num { opacity: 1; }
    .solution-card h3 {
      margin-bottom: 6px;
      font-size: clamp(16px, 2vw, 20px);
    }
    .solution-card p {
      font-size: 14px;
      color: var(--cream-md);
      line-height: 1.65;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
      opacity: 0;
    }
    .solution-card.active p { max-height: 120px; opacity: 1; }
    .solution-card p strong { color: var(--cream); }

    /* Progress bar under cards */
    .solution-progress {
      display: flex;
      gap: 8px;
      margin-top: 20px;
    }
    .solution-progress-dot {
      height: 3px;
      flex: 1;
      background: rgba(0,174,239,0.15);
      border-radius: 2px;
      transition: background 0.4s ease;
    }
    .solution-progress-dot.active { background: var(--blue); }

    /* ── Images column ── */
    .solution-images {
      display: grid;             /* CSS grid stacking — all children in one cell */
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,174,239,0.1);
      aspect-ratio: 1650 / 955;  /* match screenshot proportions */
    }

    .solution-img {
      grid-area: 1 / 1;          /* all images stack in same cell */
      transform: translateY(100%);
      transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
      will-change: transform;
      width: 100%;
      height: 100%;
    }
    .solution-img:first-child { transform: translateY(0); }
    .solution-img.active      { transform: translateY(0); }
    .solution-img.past        { transform: translateY(-8%); }

    .solution-img-frame {
      width: 100%;
      height: 100%;
      background: var(--card);
      display: flex;
      flex-direction: column;
    }
    .solution-img-bar {
      background: #0d1e35;
      padding: 8px 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }
    .solution-img-frame img {
      width: 100%;
      flex: 1;
      object-fit: contain;
      object-position: top;
      display: block;
      background: #f8f9fb;
    }
    /* Third image: CSS-only governance mock */
    .solution-img-mock {
      flex: 1;
      background: var(--bg2);
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      overflow: hidden;
    }
    .mock-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }
    .mock-badge {
      background: rgba(0,174,239,0.15);
      border: 1px solid var(--border-md);
      border-radius: 3px;
      padding: 3px 10px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--blue);
    }
    .mock-title { font-size: 13px; font-weight: 600; color: var(--cream); }
    .mock-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 3px;
    }
    .mock-row-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .mock-row-label { font-size: 12px; color: var(--cream-md); flex: 1; }
    .mock-row-tag {
      font-family: var(--font-mono);
      font-size: 9px;
      padding: 2px 7px;
      border-radius: 2px;
      letter-spacing: 0.08em;
    }

    /* Mobile: sticky image at top, cards scroll below */
    @media (max-width: 860px) {
      .solution-scroll-area { height: auto; }
      .solution-sticky { position: static; height: auto; overflow: visible; }
      .solution-layout { display: flex; flex-direction: column; padding: 0 0 60px; }

      /* Image moves to top of layout */
      .solution-images {
        order: -1;
        height: 240px;
        position: sticky;
        top: 64px;
        z-index: 5;
        margin-bottom: 24px;
        border-radius: 8px 8px 0 0;
      }

      /* Cross-fade instead of slide on mobile */
      .solution-img {
        opacity: 0;
        transform: none !important;
        transition: opacity 0.4s ease;
      }
      .solution-img:first-child { opacity: 1; }
      .solution-img.active  { opacity: 1; }
      .solution-img.past    { opacity: 0; }

      /* Cards always fully visible */
      .solution-card {
        opacity: 1;
        transform: none;
        border-left-color: var(--border);
        border-radius: 0;
        border-left-width: 1px;
      }
      .solution-card.active { border-left-color: var(--blue); border-left-width: 3px; background: var(--card-hover); }
      .solution-card p { max-height: none; opacity: 0.7; font-size: 14px; }
      .solution-card.active p { opacity: 1; }
      .solution-card-num { opacity: 1; }
      .solution-progress { display: none; }
    }

    /* Desktop: tabs on top, full-width image below */
    @media (min-width: 861px) {
      /* Stretch sticky so children can fill the full 100vh */
      .solution-sticky {
        align-items: stretch;
        padding-top: 72px;
      }
      .solution-sticky > .wrap {
        height: 100%;
        display: flex;
        flex-direction: column;
      }

      /* Layout becomes a vertical flex column */
      .solution-layout {
        display: flex;
        flex-direction: column;
        gap: 0;
        height: 100%;
        padding-bottom: 40px;
      }

      /* Cards become a horizontal tab strip */
      .solution-cards {
        flex-direction: row;
        gap: 0;
        flex-shrink: 0;
        border-bottom: 1px solid var(--border);
        margin-bottom: 20px;
      }

      .solution-card {
        flex: 1;
        border: none;
        border-bottom: 3px solid transparent;
        border-radius: 0;
        padding: 18px 24px 22px;
        opacity: 0.42;
        transform: none;
        background: transparent;
        margin-bottom: -1px;
        transition: opacity 0.4s ease, border-color 0.4s ease, background 0.4s ease;
      }
      .solution-card.active {
        opacity: 1;
        border-bottom-color: var(--blue);
        border-left-color: transparent;
        background: rgba(0,174,239,0.04);
        transform: none;
      }

      /* Always show paragraph in tab layout */
      .solution-card p {
        max-height: 80px;
        opacity: 0.5;
        font-size: 13px;
        transition: opacity 0.4s ease;
      }
      .solution-card.active p { opacity: 1; max-height: 80px; }

      /* Tabs act as indicator — hide separate dots */
      .solution-progress { display: none; }

      /* Image fills remaining vertical space */
      .solution-images {
        flex: 1;
        min-height: 0;
        height: auto;
      }
    }

    /* ═══════════════════════════════
       FEATURES GRID
    ═══════════════════════════════ */
    .section-features {
      padding: 100px 0;
      background: var(--bg);
      overflow: hidden;
    }
    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 52px;
    }
    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 18px 20px;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
      box-shadow: 0 0 0 rgba(0,174,239,0);
    }
    .feature-item:hover {
      border-color: rgba(0,174,239,0.45);
      box-shadow: 0 0 28px rgba(0,174,239,0.18), 0 0 6px rgba(0,174,239,0.12) inset;
      transform: translateY(-2px);
    }
    .feature-check {
      width: 20px;
      height: 20px;
      background: rgba(0,174,239,0.12);
      border: 1px solid rgba(0,174,239,0.4);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
      box-shadow: 0 0 10px rgba(0,174,239,0.25);
    }
    .feature-check svg { width: 11px; height: 11px; color: var(--blue); }
    .feature-text {
      font-size: 14px;
      color: var(--cream-md);
      line-height: 1.5;
    }
    .feature-text strong { color: var(--cream); font-weight: 500; }

    @media (min-width: 640px) {
      .features-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (min-width: 1000px) {
      .features-grid { grid-template-columns: 1fr 1fr; }
    }

    /* Screenshot in features */
    .features-screenshot {
      margin-top: 60px;
      position: relative;
    }
    .features-screenshot-frame {
      background: var(--card);
      border: 1px solid var(--border-md);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 32px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,174,239,0.08);
    }
    .features-screenshot-bar {
      background: #0d1e35;
      padding: 8px 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      border-bottom: 1px solid var(--border);
    }
    .features-screenshot img { width: 100%; }

    /* ═══════════════════════════════
       TRUST / HERITAGE SECTION
    ═══════════════════════════════ */
    .section-trust {
      padding: 100px 0;
      background: linear-gradient(135deg, #050f22 0%, #071629 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    /* ── Trust: mobile-first base ── */
    .trust-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .trust-content p {
      font-size: 15px;
      color: var(--cream-md);
      line-height: 1.75;
      margin-bottom: 18px;
    }
    .trust-content p:last-of-type { margin-bottom: 0; }
    .trust-content strong { color: var(--cream); }

    .trust-visual {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .trust-stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .trust-stat {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 20px 14px;
      text-align: center;
    }
    .trust-stat-num {
      font-family: var(--font-head);
      font-size: clamp(22px, 6vw, 48px);
      font-weight: 800;
      color: var(--blue);
      line-height: 1;
      margin-bottom: 6px;
    }
    .trust-stat-label {
      font-size: 11px;
      color: var(--cream-dk);
      letter-spacing: 0.03em;
      line-height: 1.4;
    }
    .trust-badge {
      background: var(--card);
      border: 1px solid var(--border-md);
      border-radius: var(--r);
      padding: 16px 18px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .trust-badge-icon {
      width: 40px;
      height: 40px;
      background: rgba(0,174,239,0.1);
      border: 1px solid var(--border-md);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .trust-badge-icon svg { width: 20px; height: 20px; color: var(--blue); }
    .trust-badge-text { font-size: 13px; color: var(--cream-md); line-height: 1.5; }
    .trust-badge-text strong { color: var(--cream); display: block; margin-bottom: 2px; }

    .trust-client-logo {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .trust-client-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cream-dk);
    }
    .trust-client-logo img {
      max-height: 120px;
      width: auto;
      max-width: 100%;
      display: block;
      background: #fff;
      padding: 12px 18px;
      border-radius: 8px;
      opacity: 0.9;
      transition: opacity 0.25s;
    }
    .trust-client-logo img:hover { opacity: 1; }

    /* ── Trust: tablet ── */
    @media (min-width: 600px) {
      .trust-stat { padding: 24px 18px; }
      .trust-client-logo img { max-height: 160px; padding: 14px 22px; }
    }

    /* ── Trust: desktop ── */
    @media (min-width: 900px) {
      .trust-layout { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
      .trust-content p { font-size: 17px; }
      .trust-stat { padding: 28px 20px; }
      .trust-badge { padding: 20px 24px; align-items: center; }
      .trust-badge-icon { width: 48px; height: 48px; }
      .trust-badge-icon svg { width: 24px; height: 24px; }
      .trust-client-logo img { max-height: 200px; max-width: 560px; padding: 16px 24px; }
    }

    /* ═══════════════════════════════
       HOW IT WORKS
    ═══════════════════════════════ */
    .section-how {
      padding: 100px 0;
      background: var(--bg);
      overflow: hidden;
    }
    .how-steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      margin-top: 56px;
      position: relative;
    }
    .how-step {
      display: flex;
      gap: 24px;
      padding: 32px 0;
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .how-step:last-child { border-bottom: none; }
    .how-step:hover .how-step-num { background: var(--blue); color: #020810; }
    .how-step-num {
      width: 48px;
      height: 48px;
      border: 1px solid var(--border-md);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 700;
      color: var(--blue);
      flex-shrink: 0;
      transition: all 0.25s;
    }
    .how-step-content {}
    .how-step-content h3 { margin-bottom: 8px; }
    .how-step-content p {
      font-size: 15px;
      color: var(--cream-md);
      line-height: 1.65;
    }
    .how-step-content p strong { color: var(--cream); }
    .how-step-tag {
      display: inline-block;
      margin-top: 12px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--blue);
      background: rgba(0,174,239,0.08);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 3px 8px;
      letter-spacing: 0.1em;
    }

    @media (min-width: 768px) {
      .how-steps { grid-template-columns: repeat(3, 1fr); gap: 0; }
      .how-step {
        flex-direction: column;
        padding: 40px 32px;
        border-bottom: none;
        border-right: 1px solid var(--border);
      }
      .how-step:last-child { border-right: none; }
    }

    /* ═══════════════════════════════
       PRICING
    ═══════════════════════════════ */
    .section-pricing {
      padding: 100px 0;
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg1) 50%, var(--bg) 100%);
      overflow: hidden;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 52px;
    }
    .pricing-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 40px 32px;
      position: relative;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      display: flex;
      flex-direction: column;
    }
    .pricing-card .pricing-features { flex: 1; }
    .pricing-card .btn { margin-top: auto; }
    .pricing-card:hover {
      border-color: rgba(0,174,239,0.5);
      transform: translateY(-6px);
      box-shadow: 0 0 60px rgba(0,174,239,0.22), 0 16px 48px rgba(0,0,0,0.4);
    }
    .pricing-card.featured {
      border-color: var(--blue);
      box-shadow: 0 0 80px rgba(0,174,239,0.28), 0 0 160px rgba(0,174,239,0.1), 0 16px 48px rgba(0,0,0,0.4);
    }
    .pricing-card.featured:hover {
      box-shadow: 0 0 100px rgba(0,174,239,0.38), 0 0 180px rgba(0,174,239,0.14), 0 20px 56px rgba(0,0,0,0.5);
    }
    .pricing-badge {
      position: absolute;
      top: -12px;
      left: 32px;
      background: var(--blue);
      color: #020810;
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
    }
    .pricing-tier {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 8px;
    }
    .pricing-name {
      font-family: var(--font-head);
      font-size: 26px;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 6px;
    }
    .pricing-tagline {
      font-style: italic;
      font-size: 14px;
      color: var(--cream-dk);
      margin-bottom: 28px;
    }
    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 8px;
    }
    .pricing-amount {
      font-family: var(--font-head);
      font-size: 42px;
      font-weight: 800;
      color: var(--cream);
      line-height: 1;
    }
    .pricing-currency {
      font-size: 18px;
      color: var(--cream-md);
      font-weight: 400;
      align-self: flex-start;
      padding-top: 4px;
    }
    .pricing-period {
      font-size: 13px;
      color: var(--cream-dk);
      margin-bottom: 28px;
    }
    .pricing-divider {
      height: 1px;
      background: var(--border);
      margin: 24px 0;
    }
    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }
    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: var(--cream-md);
    }
    .pricing-features li::before {
      content: '✓';
      color: var(--blue);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .pricing-note {
      margin-top: 32px;
      padding: 20px;
      background: rgba(0,174,239,0.05);
      border: 1px solid var(--border);
      border-radius: var(--r);
      font-size: 13px;
      color: var(--cream-md);
      line-height: 1.6;
    }
    .pricing-note strong { color: var(--blue); }

    @media (min-width: 768px) {
      .pricing-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ═══════════════════════════════
       FAQ
    ═══════════════════════════════ */
    .section-faq {
      padding: 100px 0;
      background: var(--bg);
    }
    .faq-list {
      margin-top: 52px;
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-item:last-child { border-bottom: none; }
    .faq-q {
      width: 100%;
      background: transparent;
      border: none;
      padding: 24px 28px;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: background 0.2s;
    }
    .faq-q:hover { background: rgba(0,174,239,0.04); }
    .faq-q-text {
      font-family: var(--font-head);
      font-size: clamp(15px, 2vw, 17px);
      font-weight: 600;
      color: var(--cream);
      text-align: left;
    }
    .faq-icon {
      width: 24px;
      height: 24px;
      border: 1px solid var(--border-md);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--blue);
      font-size: 16px;
      transition: transform 0.25s, background 0.2s;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(0,174,239,0.1); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .faq-a-inner {
      padding: 0 28px 24px;
      font-size: 15px;
      color: var(--cream-md);
      line-height: 1.75;
    }
    .faq-a-inner strong { color: var(--cream); }

    /* ═══════════════════════════════
       CTA SECTION
    ═══════════════════════════════ */
    .section-cta {
      padding: 100px 0;
      background: linear-gradient(135deg, #050f22 0%, #071629 50%, #050f22 100%);
      border-top: 1px solid var(--border);
      overflow: hidden;
    }
    .cta-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 56px;
      align-items: start;
    }
    .cta-content {}
    .cta-content h2 { margin-bottom: 16px; }
    .cta-content p {
      font-size: clamp(15px, 2vw, 17px);
      color: var(--cream-md);
      line-height: 1.75;
      margin-bottom: 32px;
    }
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 40px;
    }
    .cta-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px;
    }
    .cta-divider-line { flex: 1; height: 1px; background: var(--border); }
    .cta-divider-text {
      font-size: 12px;
      color: var(--cream-dk);
      white-space: nowrap;
      font-style: italic;
    }

    /* Email Form */
    .email-form {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 32px;
    }
    .email-form h3 {
      font-size: 18px;
      margin-bottom: 6px;
    }
    .email-form-sub {
      font-size: 13px;
      color: var(--cream-dk);
      margin-bottom: 24px;
      line-height: 1.5;
    }
    .form-field {
      margin-bottom: 14px;
    }
    .form-field label {
      display: block;
      font-size: 12px;
      font-weight: 500;
      color: var(--cream-md);
      letter-spacing: 0.04em;
      margin-bottom: 6px;
    }
    .form-field input,
    .form-field select {
      width: 100%;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--r);
      padding: 11px 14px;
      color: var(--cream);
      font-family: var(--font-body);
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s;
      -webkit-appearance: none;
    }
    .form-field input:focus,
    .form-field select:focus { border-color: var(--blue); }
    .form-field input::placeholder { color: var(--cream-dk); }
    .form-field select { color: var(--cream-dk); cursor: pointer; }
    .form-field select option { background: var(--bg2); color: var(--cream); }

    .form-checkbox {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 20px;
    }
    .form-checkbox input[type="checkbox"] {
      width: 16px;
      height: 16px;
      min-width: 16px;
      margin-top: 2px;
      accent-color: var(--blue);
      cursor: pointer;
    }
    .form-checkbox label {
      font-size: 12px;
      color: var(--cream-dk);
      line-height: 1.5;
      cursor: pointer;
    }

    .btn-submit {
      width: 100%;
      justify-content: center;
    }

    @media (min-width: 900px) {
      .cta-layout { grid-template-columns: 1fr 1fr; gap: 80px; }
    }

    /* ═══════════════════════════════
       SOCIAL PROOF ROW
    ═══════════════════════════════ */
    .section-social {
      padding: 80px 0;
      background: var(--bg1);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .social-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 48px;
    }
    .social-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px;
      position: relative;
      transition: border-color 0.25s, transform 0.25s;
    }
    .social-card:hover { border-color: var(--border-md); transform: translateY(-2px); }
    .social-quote {
      font-size: 32px;
      color: var(--blue);
      line-height: 1;
      margin-bottom: 12px;
      font-family: Georgia, serif;
      opacity: 0.6;
    }
    .social-text {
      font-size: 14px;
      color: var(--cream-md);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }
    .social-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .social-avatar {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--navy), var(--blue-dk));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      color: var(--blue-lt);
      flex-shrink: 0;
    }
    .social-author-info {}
    .social-author-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--cream);
    }
    .social-author-role {
      font-size: 11px;
      color: var(--cream-dk);
      font-family: var(--font-mono);
    }

    @media (min-width: 640px) {
      .social-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (min-width: 900px) {
      .social-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    footer {
      background: #030810;
      border-top: 1px solid var(--border);
      padding: 48px 0 32px;
    }
    .footer-inner {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 24px;
    }
    .footer-brand {}
    .footer-tagline {
      font-size: 13px;
      color: var(--cream-dk);
      margin-top: 8px;
      max-width: 260px;
      line-height: 1.5;
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 24px;
    }
    .footer-links a {
      font-size: 13px;
      color: var(--cream-dk);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--blue-lt); }
    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .footer-copy {
      font-size: 12px;
      color: var(--cream-dk);
      font-family: var(--font-mono);
    }
    .footer-atlas {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--cream-dk);
    }
    .atlas-badge {
      background: rgba(0,174,239,0.08);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 3px 8px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--blue);
      letter-spacing: 0.08em;
    }

    /* ═══════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════ */
    .section-testimonials {
      padding: 80px 0;
      background: var(--bg);
    }
    .testimonials-context {
      text-align: center;
      margin-bottom: 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .testimonials-context p {
      font-size: 13px;
      color: var(--cream-dk);
      font-family: var(--font-mono);
      letter-spacing: 0.05em;
      margin-top: 10px;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    @media (min-width: 760px) {
      .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    }
    .testimonial-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: relative;
      transition: border-color 0.25s;
    }
    .testimonial-card:hover { border-color: var(--border-md); }
    .testimonial-quote-mark {
      font-family: Georgia, serif;
      font-size: 64px;
      line-height: 0.6;
      color: var(--blue);
      opacity: 0.3;
      user-select: none;
    }
    .testimonial-body {
      font-size: 15px;
      color: var(--cream-md);
      line-height: 1.75;
      flex: 1;
      font-style: italic;
    }
    .testimonial-body strong { color: var(--cream); font-style: normal; }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }
    .testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(0,174,239,0.12);
      border: 1px solid var(--border-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 700;
      color: var(--blue);
      flex-shrink: 0;
    }
    .testimonial-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 3px;
    }
    .testimonial-role {
      font-size: 11px;
      color: var(--cream-dk);
      font-family: var(--font-mono);
      letter-spacing: 0.03em;
    }
    .testimonial-logo {
      margin-left: auto;
      height: 22px;
      opacity: 0.55;
      flex-shrink: 0;
    }

    /* ═══════════════════════════════
       SECURITY SECTION
    ═══════════════════════════════ */
    .section-security {
      padding: 64px 0;
      background: var(--bg1);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .security-header {
      text-align: center;
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .security-header h2 {
      font-size: clamp(22px, 3vw, 30px);
      margin-top: 10px;
    }
    .security-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    @media (min-width: 700px) {
      .security-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (min-width: 1000px) {
      .security-grid { grid-template-columns: repeat(6, 1fr); }
    }
    .security-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 20px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      transition: border-color 0.2s;
    }
    .security-item:hover { border-color: var(--border-md); }
    .security-icon {
      width: 36px;
      height: 36px;
      background: rgba(0,174,239,0.08);
      border: 1px solid var(--border-md);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .security-icon svg { width: 16px; height: 16px; color: var(--blue); }
    .security-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--cream);
      line-height: 1.3;
    }
    .security-sub {
      font-size: 10px;
      font-family: var(--font-mono);
      color: var(--cream-dk);
      letter-spacing: 0.04em;
    }
    .security-note {
      margin-top: 28px;
      text-align: center;
      font-size: 13px;
      color: var(--cream-dk);
      line-height: 1.6;
    }
    .security-note a { color: var(--blue-lt); border-bottom: 1px solid rgba(106,207,248,0.3); }

    /* ═══════════════════════════════
       COOKIE BANNER
    ═══════════════════════════════ */
    .cookie-banner {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 48px);
      max-width: 680px;
      background: #0d1e35;
      border: 1px solid var(--border-md);
      border-radius: 10px;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 16px 48px rgba(0,0,0,0.5);
      z-index: 99999;
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .cookie-banner.hidden {
      opacity: 0;
      transform: translateX(-50%) translateY(20px);
      pointer-events: none;
    }
    .cookie-text {
      flex: 1;
      font-size: 13px;
      color: var(--cream-md);
      line-height: 1.5;
    }
    .cookie-text strong { color: var(--cream); }
    .cookie-text a { color: var(--blue-lt); border-bottom: 1px solid rgba(106,207,248,0.3); }
    .cookie-actions {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }
    .cookie-btn {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: var(--r);
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.2s;
    }
    .cookie-btn:hover { opacity: 0.85; }
    .cookie-accept { background: var(--blue); color: #020810; }
    .cookie-decline { background: transparent; color: var(--cream-dk); border: 1px solid var(--border); }
    @media (max-width: 560px) {
      .cookie-banner { flex-direction: column; align-items: flex-start; gap: 14px; }
      .cookie-actions { width: 100%; }
      .cookie-btn { flex: 1; text-align: center; }
    }

    /* ═══════════════════════════════
       UTILITIES
    ═══════════════════════════════ */
    .text-blue { color: var(--blue); }
    .text-center { text-align: center; }

    /* Grain overlay */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.3;
    }

    /* Mobile padding adjustments */
    @media (max-width: 480px) {
      .email-form { padding: 24px 20px; }
      .how-step { padding: 24px 0; }
      .section-problem, .section-solution, .section-features,
      .section-trust, .section-how, .section-pricing,
      .section-faq, .section-cta, .section-social { padding: 72px 0; }
    }

    /* ═══════════════════════════════
       ARTICLE / BLOG POST LAYOUT
       White background for readability
    ═══════════════════════════════ */
    .article-content {
      padding: 120px 0 80px;
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 64px, #fff 180px);
    }

    .article-content h1 {
      font-family: var(--font-head);
      font-size: clamp(28px, 4.5vw, 44px);
      font-weight: 700;
      color: #0a1830;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .article-back {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-mono);
      font-size: 12px;
      color: #5a6a7c;
      margin-bottom: 24px;
      transition: color 0.2s;
    }
    .article-back:hover { color: var(--blue-dk); }
    .article-back::before {
      content: '\2190';
      font-size: 14px;
    }

    .article-content .eyebrow {
      color: var(--blue-dk);
    }
    .article-content .eyebrow::before {
      background: var(--blue-dk);
    }

    .article-meta {
      color: #7a8a9c;
      font-size: 14px;
      margin-bottom: 48px;
      padding-bottom: 32px;
      border-bottom: 1px solid #e5e9ef;
    }

    .article-content h2 {
      font-family: var(--font-head);
      font-size: clamp(20px, 3vw, 28px);
      font-weight: 600;
      color: #0a1830;
      margin-top: 48px;
      margin-bottom: 16px;
      line-height: 1.25;
    }

    .article-content h3 {
      font-family: var(--font-head);
      font-size: clamp(17px, 2.2vw, 22px);
      font-weight: 600;
      color: #1a2a3c;
      margin-top: 36px;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .article-content p {
      margin-bottom: 20px;
      color: #3a4a5c;
      font-size: 16.5px;
      line-height: 1.85;
    }

    .article-content strong {
      color: #0a1830;
      font-weight: 600;
    }

    .article-content ul, .article-content ol {
      margin: 0 0 24px 24px;
      color: #3a4a5c;
      line-height: 1.85;
      font-size: 16.5px;
    }

    .article-content li {
      margin-bottom: 6px;
    }

    .article-content blockquote {
      border-left: 3px solid var(--blue);
      padding: 16px 24px;
      margin: 28px 0;
      background: #f5f7fa;
      border-radius: 0 var(--r) var(--r) 0;
      color: #3a4a5c;
      font-style: italic;
    }

    .article-content table {
      width: 100%;
      border-collapse: collapse;
      margin: 28px 0;
      font-size: 14px;
    }

    .article-content th {
      text-align: left;
      padding: 10px 14px;
      background: #0a1830;
      color: #e8edf5;
      font-family: var(--font-mono);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      border-bottom: 1px solid #1a2a3c;
    }

    .article-content td {
      padding: 10px 14px;
      border-bottom: 1px solid #e5e9ef;
      color: #3a4a5c;
    }

    .article-content code {
      font-family: var(--font-mono);
      font-size: 13px;
      background: #f0f3f7;
      padding: 2px 6px;
      border-radius: 3px;
      color: #c0392b;
    }

    .article-content pre {
      background: #1a2030;
      padding: 20px;
      border-radius: var(--r);
      overflow-x: auto;
      margin: 24px 0;
      border: none;
    }

    .article-content pre code {
      background: none;
      padding: 0;
      font-size: 13px;
      line-height: 1.6;
      color: #e8edf5;
    }

    .article-content a {
      color: var(--blue-dk);
      border-bottom: 1px solid rgba(0,120,179,0.3);
      transition: color 0.2s, border-color 0.2s;
    }

    .article-content a:hover {
      color: #005a8c;
      border-color: #005a8c;
    }

    .article-content img {
      border-radius: var(--r);
    }

    .article-cta {
      margin-top: 56px;
      padding-top: 32px;
      border-top: 1px solid #e5e9ef;
      color: #5a6a7c;
      font-style: italic;
    }

    .article-cta a {
      color: var(--blue-dk);
      border-bottom: 1px solid rgba(0,120,179,0.3);
    }

    /* Article banner on white bg */
    .article-content .article-banner-text {
      background: linear-gradient(135deg, #0a1830 0%, #0e2548 100%);
      border-color: rgba(0,174,239,0.2);
    }
    .article-content .article-banner-text:hover {
      border-color: rgba(0,174,239,0.4);
      box-shadow: 0 4px 24px rgba(0,174,239,0.08);
    }
    .article-content .article-banner-text .banner-body strong {
      color: #e8edf5;
    }
    .article-content .article-banner-text .banner-body p {
      color: #9ab0c8;
      font-size: 13.5px;
    }
    .article-content .article-banner-text .banner-eyebrow {
      color: #00AEEF;
    }

    /* ═══════════════════════════════
       BLOG INDEX
    ═══════════════════════════════ */
    .blog-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 40px;
    }

    @media (min-width: 640px) {
      .blog-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (min-width: 960px) {
      .blog-grid { grid-template-columns: 1fr 1fr 1fr; }
    }

    .blog-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 28px;
      transition: border-color 0.25s, transform 0.25s;
    }

    .blog-card:hover {
      border-color: var(--border-md);
      transform: translateY(-3px);
    }

    .blog-card-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--blue);
      margin-bottom: 12px;
    }

    .blog-card h3 {
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 600;
      color: var(--cream);
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .blog-card p {
      font-size: 14px;
      color: var(--cream-dk);
      line-height: 1.6;
    }

    .blog-card-meta {
      margin-top: 16px;
      font-size: 12px;
      color: var(--cream-dk);
      font-family: var(--font-mono);
    }

    /* ── Blog category filter bar ── */
    .blog-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 32px;
    }
    .blog-filter {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.04em;
      color: var(--cream-dk);
      background: none;
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 8px 18px;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    .blog-filter:hover {
      color: var(--cream-md);
      border-color: var(--border-md);
    }
    .blog-filter.active {
      color: var(--cream);
      border-color: var(--blue);
      background: rgba(0,174,239,0.08);
    }

    /* ═══════════════════════════════
       ARTICLE BANNERS (promo, mid + end of article)
    ═══════════════════════════════ */
    .article-banner {
      display: block;
      margin: 40px auto;
      max-width: 780px;
      border-radius: var(--r);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: border-color 0.25s, transform 0.25s;
    }
    .article-banner:hover {
      border-color: var(--border-md);
      transform: translateY(-2px);
    }
    .article-banner img {
      width: 100%;
      height: auto;
      display: block;
    }
    .article-banner-text {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 28px 32px;
      background: linear-gradient(135deg, #071629 0%, #0b2240 100%);
      border: 1px solid rgba(0,174,239,0.25);
      border-radius: 8px;
      margin: 48px 0;
      transition: border-color 0.3s, box-shadow 0.3s;
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }
    .article-banner-text::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(0,174,239,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .article-banner-text:hover {
      border-color: rgba(0,174,239,0.45);
      box-shadow: 0 4px 24px rgba(0,174,239,0.1);
    }
    .article-banner-text .banner-icon {
      flex-shrink: 0;
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      background: rgba(0,174,239,0.1);
      color: var(--blue);
    }
    .article-banner-text .banner-icon svg {
      width: 30px;
      height: 30px;
    }
    .article-banner-text .banner-body {
      flex: 1;
      position: relative;
    }
    .article-banner-text .banner-eyebrow {
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 6px;
    }
    .article-banner-text .banner-body strong {
      color: var(--cream);
      display: block;
      font-size: 15px;
      margin-bottom: 4px;
    }
    .article-banner-text .banner-body p {
      color: var(--cream-md);
      font-size: 13.5px;
      line-height: 1.55;
      margin: 0;
    }
    .article-banner-text .btn {
      flex-shrink: 0;
      position: relative;
    }
    @media (max-width: 640px) {
      .article-banner-text { flex-direction: column; text-align: center; gap: 16px; padding: 24px 20px; }
      .article-banner-text::before { display: none; }
    }

    /* ═══════════════════════════════
       RELATED POSTS (3 cards at end of article)
    ═══════════════════════════════ */
    .related-posts {
      padding: 64px 0;
      border-top: 1px solid var(--border);
      margin-top: 64px;
    }
    .related-posts h2 {
      font-family: var(--font-head);
      font-size: clamp(20px, 3vw, 28px);
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 32px;
    }
    .related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 640px) {
      .related-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (min-width: 960px) {
      .related-grid { grid-template-columns: 1fr 1fr 1fr; }
    }

    /* ═══════════════════════════════
       HERO PRODUCT CARDS (homepage)
    ═══════════════════════════════ */
    .products-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      margin-top: 48px;
    }
    @media (min-width: 768px) {
      .products-grid { grid-template-columns: 1fr 1fr; }
    }
    .hero-product {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 36px;
      transition: border-color 0.25s, transform 0.25s;
    }
    .hero-product:hover {
      border-color: var(--border-md);
      transform: translateY(-3px);
    }
    .hero-product .product-badge {
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--blue);
      margin-bottom: 16px;
      display: inline-block;
    }
    .hero-product h3 {
      font-family: var(--font-head);
      font-size: clamp(18px, 2.5vw, 24px);
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 12px;
    }
    .hero-product p {
      color: var(--cream-dk);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .hero-product .product-screenshot {
      margin-top: 20px;
      border-radius: var(--r);
      border: 1px solid var(--border);
    }

    /* ═══════════════════════════════
       CUSTOMER LOGOS (trust bar)
    ═══════════════════════════════ */
    .customer-logos {
      padding: 48px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .customer-logos .eyebrow {
      text-align: center;
      justify-content: center;
      margin-bottom: 32px;
    }
    .customer-logos .eyebrow::before { display: none; }
    .logos-row {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px 56px;
    }
    .logos-row img {
      height: 52px;
      width: auto;
      opacity: 0.8;
      filter: invert(1);
      mix-blend-mode: screen;
      transition: opacity 0.3s;
    }
    .logos-row img:hover {
      opacity: 1;
    }

    /* ═══════════════════════════════
       VIDEO EMBED (responsive 16:9)
    ═══════════════════════════════ */
    .video-embed {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      border-radius: var(--r);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--card);
    }
    .video-embed iframe,
    .video-embed video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ═══════════════════════════════
       GENERIC PAGE (contact, privacy, etc.)
    ═══════════════════════════════ */
    .page-content {
      padding: 120px 0 80px;
    }

    .page-content h1 {
      font-family: var(--font-head);
      font-size: clamp(28px, 4.5vw, 44px);
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 32px;
    }

    .page-content h2 {
      font-family: var(--font-head);
      font-size: clamp(20px, 3vw, 26px);
      font-weight: 600;
      color: var(--cream);
      margin-top: 40px;
      margin-bottom: 14px;
    }

    .page-content p {
      color: var(--cream-md);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .page-content ul, .page-content ol {
      margin: 0 0 20px 24px;
      color: var(--cream-md);
      line-height: 1.8;
    }

    .page-content a {
      color: var(--blue-lt);
      border-bottom: 1px solid rgba(106,207,248,0.35);
    }


/* Language switcher */
.nav-lang { display:inline-flex; align-items:center; margin-left:16px; padding:4px 12px; font-family:var(--font-mono); font-size:11px; font-weight:500; letter-spacing:0.05em; color:var(--cream-dk); border:1px solid var(--border); border-radius:100px; text-decoration:none; transition:color 0.2s, border-color 0.2s; }
.nav-lang:hover { color:var(--blue-lt); border-color:var(--blue); }

/* Footer social icons */
.footer-social { display:flex; gap:16px; margin-top:16px; }
.footer-social a { color:var(--cream-dk); transition:color 0.2s; }
.footer-social a:hover { color:var(--blue-lt); }
