/* ============================
       TOKENS & RESET
    ============================ */
    :root {
      --orange: #f97316;
      --orange-light: #ffa200;
      --orange-dark: #f95b16;
      --dark: #122435;
      --black: #111111;
      --dark-card:  rgba(255,255,255,0.05);
      --dark-border:rgba(255,255,255,0.10);
      --white:      #ffffff;
      --grey-100:   #f3f4f6;
      --light-grey: #f6f9fc;
      --grey-400:   #9ca3af;
      --grey-500:   #6b7280;
      --grey-700:   #374151;
      --gold:       #f59e0b;
      --mid-grey:   #f4f4f5;
      --container:  1500px;
      --container-narrow:  700px;
      --pad:        40px;
      --radius:     12px;
      --box-shadow-small: 0 20.187px 40.374px -20.187px rgba(0, 0, 0, .1);
      --section-gap: 20px;
      --section-pad: 100px;

      --color-green: #15be53;
      --color-green-light: #00e472;
      --color-red-light: #fc4c42;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    /* Kill the default mobile tap-highlight rectangle - without this,
       tapping buttons/links/labels (slider arrows, carousel dots, the
       gap toggle, etc.) flashes a dark grey/black box over the element's
       bounding box on touch devices. */
    html, body, a, button, label, input, .industry-tile, .tiles-arrow, .carousel-dot, .ui-toggle {
      -webkit-tap-highlight-color: transparent;
      -webkit-touch-callout: none;
    }

    body {
      font-family: 'Sora', sans-serif;
      background-color: var(--white);
      color: var(--black);
      line-height: 1.65;
      overflow-x: hidden;
      font-size: 15px;
    }

    /* ── Global type scale - Poppins ────────────────────────── */
    h1 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 300; line-height: 1.06; letter-spacing: -2px;   margin-bottom: 0; }
    h2 { font-size: clamp(26px, 3.4vw, 48px); font-weight: 400; line-height: 1.12; letter-spacing: -1.2px; margin-bottom: 0; }
    h3 { font-size: clamp(15px, 1.4vw, 19px); font-weight: 700; line-height: 1.25; letter-spacing: -0.2px; margin-bottom: 10px; }
    h4 { font-size: 14px;                      font-weight: 600; line-height: 1.3;                          margin-bottom: 6px; }
    h1 strong { font-weight: 600; }
    h2 strong { font-weight: 600; }

    /* h1 rendered at the h2 scale - for pages whose top section heading is the page H1.
       No margin-bottom here: it would out-specify spacing classes like .control-heading */
    h1.h-as-h2 { font-size: clamp(26px, 3.4vw, 48px); font-weight: 400; line-height: 1.12; letter-spacing: -1.2px; max-width: var(--container-narrow); }
    p  { font-size: 16px; line-height: 1.5; margin-bottom: 20px; }
    p:last-child { margin-bottom: 0; }
    .eyebrow {
      font-size: 14px; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px !important;
    }

    /* Intro / lede paragraph - used under hero h1s and section intros */
    .lede { max-width: var(--container-narrow); opacity: .75; margin-bottom: 32px; }
    .ax-white .lede, .ax-light .lede, .bg-grey .lede { opacity: .65; }

    hr{display: block; width: 100%; height: auto; background: none; border: none; border-top: 1px solid rgba(255,255,255,0.2); padding: 0; margin: 100px auto; max-width: var(--container);}

    /* ============================
       LAYOUT
    ============================ */
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--pad);
    }



    /* ============================
       V3 MODULAR SECTION CARDS
       Page bg is dark; sections are
       self-contained rounded cards
       with a subtle white border.
    ============================ */
    body {
      padding: 0 var(--section-gap) var(--section-gap);   /* no top gap - nav sits flush */
    }


    #hero{padding-bottom: 0;}

    .ax-section {
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.10);
      margin-bottom: var(--section-gap);  /* gap between cards */
      padding: var(--section-pad) 0;
    }
    /* Only clip sections that need it (e.g. hero, platform) - not the control section,
       as overflow:hidden breaks position:sticky on child elements */
    .ax-section.ax-clip { overflow: hidden; position: relative; }

    /* Dark cards */
    .ax-dark {
      background: var(--dark);
      color: var(--white);
    }

    /* Light/white cards */
    .ax-white {
      background: #ffffff;
      color: var(--black);
    }


    /* Light grey card (footer) */
    .ax-light {
      background: var(--light-grey);
      color: var(--dark);
    }

    /* Control section overrides on white background */
    .ax-white.section-control            { color: var(--black); }
    .ax-white .control-col > p           { color: rgba(0,0,0,0.65); opacity: 1; }
    .ax-white .control-heading           { color: var(--black); }
    .ax-white .control-feature           { background: var(--light-grey); border-color: rgba(0,0,0,0.06); }
    .ax-white .control-feature h3        { color: var(--black); }
    .ax-white .control-feature p         { color: rgba(0,0,0,0.55); opacity: 1; }
    .ax-white .control-feature li        { color: rgba(0,0,0,0.55); opacity: 1; }
    .ax-white .control-feature-screenshot {
      background: #ffffff;
      border-left-color: rgba(0,0,0,0.06);
      position: relative;
      overflow: hidden;
    }
    .ax-white .control-feature-screenshot::before { border-color: rgba(0,0,0,0.08); }
    /* Gradient overlay - animated by GSAP */
    .ax-white .control-feature-screenshot .screenshot-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top right, var(--orange-dark), var(--orange-light));
      opacity: 0;
      pointer-events: none;
    }
    /* Keep the screenshot img above the gradient overlay */
    .ax-white .control-feature-screenshot img {
      position: relative;
      z-index: 1;
    }

    .bg-dark{background-color: var(--dark); color: var(--white);}
    .bg-grey{background-color: var(--light-grey);}

    /* Section heading - h2 scale from global; colour inherits from section theme */
    .h-section { margin-bottom: 20px; }


    /* ============================
       BUTTONS
    ============================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 22px;
      border-radius: 6px;
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      border: 2px solid transparent;
      transition: opacity 0.18s, transform 0.18s;
      white-space: nowrap;
    }
    .btn:hover {background: var(--dark);}

    .btn-orange {
      background: linear-gradient(to top right, var(--orange-dark), var(--orange-light));
      color: #fff;
      border-color: transparent;
    }
    /* On dark sections, hover swaps to a white background with dark text */
    .ax-dark .btn-orange:hover,
    .bg-dark .btn-orange:hover {
      background: var(--white);
      color: var(--dark);
    }


    /* ============================
       NAV
    ============================ */
    .site-nav {
      position: relative;
      width: 100%;
      z-index: 200;
      background: #fff;
      border-bottom: 1px solid #eef0f3;
    }

    /* The visual bar lives inside .container → .nav-inner */
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px 15px 0;
    }

    /* Logo - far left */
    .nav-logo{display: flex; align-items: flex-start; gap: 12px; justify-content: center; /*transform: translateX(calc(-27% - 10px));*/ margin-left: 20px;}
    .nav-logo img{display: block; height: 30px;}
    .nav-logo-icon {display: block; }
    .nav-logo-text {opacity: 1; transition: all 0.35s ease 0s;}


    /* Right side: two modules */
    .nav-right-group {
      display: flex;
      align-items: stretch;
      gap: 12px;
    }

    /* Module 1: page links pill */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
      padding: 5px 6px;
      border-radius: 12px;
      background: transparent;
      transition: background 0.35s ease;
    }
    .site-nav.is-scrolled .nav-links {
      background: var(--dark);
    }
    .nav-links a {
      color: var(--dark);
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      padding: 6px 12px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color 0.35s ease, background 0.15s;
      white-space: nowrap;
    }
    .nav-links a:hover                          { background: rgba(0,0,0,0.06); }
    .site-nav.is-scrolled .nav-links a          { color: rgba(255,255,255,0.85); }
    .site-nav.is-scrolled .nav-links a:hover    { color: #fff; background: rgba(255,255,255,0.1); }
    .nav-links .has-caret::after {
      content: '';
      display: inline-block;
      width: 8px; height: 5px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'%3E%3Cpath d='M1 1l3 3 3-3' stroke='rgba(17,17,17,0.45)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
      transition: background-image 0s;
    }
    .site-nav.is-scrolled .nav-links .has-caret::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'%3E%3Cpath d='M1 1l3 3 3-3' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    /* Module 2: auth + cta pill */
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 5px 5px 5px 6px;
      border-radius: 12px;
      background: transparent;
      transition: background 0.35s ease;
    }
    .site-nav.is-scrolled .nav-actions {
      background: var(--dark);
    }
    .nav-login {
      color: var(--dark);
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      padding: 6px 12px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color 0.35s ease, background 0.15s;
      white-space: nowrap;
    }
    .nav-login:hover                        { background: rgba(0,0,0,0.06); }
    .site-nav.is-scrolled .nav-login        { color: rgba(255,255,255,0.85); }
    .site-nav.is-scrolled .nav-login:hover  { color: #fff; background: rgba(255,255,255,0.1); }
    .nav-login.has-caret::after {
      content: '';
      display: inline-block;
      width: 8px; height: 5px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'%3E%3Cpath d='M1 1l3 3 3-3' stroke='rgba(17,17,17,0.45)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    }
    .site-nav.is-scrolled .nav-login.has-caret::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'%3E%3Cpath d='M1 1l3 3 3-3' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    }
    .nav-demo {
      background: linear-gradient(to top right, var(--orange-dark), var(--orange-light));
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: opacity 0.18s, transform 0.18s;
      white-space: nowrap;
    }
    .nav-demo:hover { opacity: 0.88; transform: translateY(-1px); }

    /* ============================
       NAV DROPDOWNS
    ============================ */
    .menu-item-has-children {
      position: relative;
    }

    /* Sub-menu panel */
    .sub-menu {
      list-style: none;
      padding: 18px 8px 8px; /* top padding bridges the visual gap without a physical gap */
      margin: 0;
      position: absolute;
      top: 100%;             /* flush to li bottom - no gap for cursor to fall through */
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 200px;
      background: var(--dark);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.22);
      z-index: 300;
      /* Hidden by default */
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.18s ease, transform 0.18s ease;
    }

    /* Open state - toggled by JS (.is-open) and hover fallback */
    .menu-item-has-children:hover > .sub-menu,
    .menu-item-has-children.is-open > .sub-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    /* Sub-menu items */
    .sub-menu li a {
      display: block;
      padding: 8px 12px;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      border-radius: 7px;
      white-space: nowrap;
      transition: background 0.15s, color 0.15s;
    }
    .sub-menu li a:hover {
      background: rgba(255,255,255,0.08);
      color: #fff;
    }

    /* Small arrow pointing up toward the trigger */
    .sub-menu::before {
      content: '';
      position: absolute;
      top: 10px;           /* sits within the padding zone */
      left: 50%;
      transform: translateX(-50%);
      width: 12px; height: 6px;
      background: var(--dark);
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }

    /* ============================
       HERO  (dark bg)
    ============================ */

    /* One wrapper: fills the hero section exactly, never overflows it */
    .hero-video {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }

    /* Video fills the box, very subtle */
    .hero-video video {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.1;
      display: block;
    }

    /* Bottom gradient - fades to --dark so the cut-off is invisible */
    .hero-video::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 35%;
      background: linear-gradient(to bottom, transparent, var(--dark));
      pointer-events: none;
    }

    /* Full-bleed photorealistic lunar backdrop - base layer of the hero.
       Scrim: darken the top (headline legibility) and fade the bottom into
       --dark so the hero blends into the next section. */
    .hero-lunar {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
      background-color: var(--dark);
      background-image:
        linear-gradient(to bottom,
          rgba(8,14,22,0.55) 0%,
          rgba(8,14,22,0.12) 30%,
          rgba(8,14,22,0.10) 55%,
          rgba(18,36,53,0.92) 100%),
        url("img/lunar-hero.webp");
      background-size: cover, cover;
      background-position: center top, center center;
      background-repeat: no-repeat, no-repeat;
    }
    /* the old stylised SVG stays in markup but is superseded by the photo */
    .hero-lunar svg { display: none; }
    /* photo replaces the subtle tech video */
    .hero-video { display: none; }

    /* Trust Centre hero - photographic security backdrop.
       Left-weighted scrim keeps the left-aligned white heading legible. */
    .ax-section.trust-hero {
      position: relative;
      background-color: var(--dark);
      background-image:
        linear-gradient(90deg,
          rgba(9,18,33,0.92) 0%,
          rgba(9,18,33,0.72) 38%,
          rgba(9,18,33,0.35) 72%,
          rgba(9,18,33,0.15) 100%),
        url("img/trust-hero.webp");
      background-size: cover, cover;
      background-position: center, center;
      background-repeat: no-repeat, no-repeat;
    }

    /* Terms of Service hero - same photographic treatment as the Trust Centre */
    .ax-section.terms-hero {
      position: relative;
      background-color: var(--dark);
      background-image:
        linear-gradient(90deg,
          rgba(9,18,33,0.92) 0%,
          rgba(9,18,33,0.72) 38%,
          rgba(9,18,33,0.35) 72%,
          rgba(9,18,33,0.15) 100%),
        url("img/terms-hero.webp");
      background-size: cover, cover;
      background-position: center, center;
      background-repeat: no-repeat, no-repeat;
    }

    /* Privacy Policy hero - same photographic treatment as the Trust Centre */
    .ax-section.privacy-hero {
      position: relative;
      background-color: var(--dark);
      background-image:
        linear-gradient(90deg,
          rgba(9,18,33,0.92) 0%,
          rgba(9,18,33,0.72) 38%,
          rgba(9,18,33,0.35) 72%,
          rgba(9,18,33,0.15) 100%),
        url("img/privacy-hero.webp");
      background-size: cover, cover;
      background-position: center, center;
      background-repeat: no-repeat, no-repeat;
    }

    /* Cookie Policy hero - same photographic treatment as the Trust Centre */
    .ax-section.cookie-hero {
      position: relative;
      background-color: var(--dark);
      background-image:
        linear-gradient(90deg,
          rgba(9,18,33,0.92) 0%,
          rgba(9,18,33,0.72) 38%,
          rgba(9,18,33,0.35) 72%,
          rgba(9,18,33,0.15) 100%),
        url("img/cookie-hero.webp");
      background-size: cover, cover;
      background-position: center, center;
      background-repeat: no-repeat, no-repeat;
    }

    /* About hero - same photographic treatment as the Trust Centre */
    .ax-section.about-hero {
      position: relative;
      background-color: var(--dark);
      background-image:
        linear-gradient(90deg,
          rgba(9,18,33,0.92) 0%,
          rgba(9,18,33,0.72) 38%,
          rgba(9,18,33,0.35) 72%,
          rgba(9,18,33,0.15) 100%),
        url("img/about-hero.webp");
      background-size: cover, cover;
      background-position: center, center;
      background-repeat: no-repeat, no-repeat;
    }

    /* Platform Overview hero - same photographic treatment as the Trust Centre */
    .ax-section.platform-hero {
      position: relative;
      background-color: var(--dark);
      background-image:
        linear-gradient(90deg,
          rgba(9,18,33,0.92) 0%,
          rgba(9,18,33,0.72) 38%,
          rgba(9,18,33,0.35) 72%,
          rgba(9,18,33,0.15) 100%),
        url("img/platform-hero.webp");
      background-size: cover, cover;
      background-position: center, center;
      background-repeat: no-repeat, no-repeat;
    }

    /* Case study hero (HBS Healthcare) - same photographic treatment */
    .ax-section.casestudy-hero {
      position: relative;
      background-color: var(--dark);
      background-image:
        linear-gradient(90deg,
          rgba(9,18,33,0.92) 0%,
          rgba(9,18,33,0.72) 38%,
          rgba(9,18,33,0.35) 72%,
          rgba(9,18,33,0.15) 100%),
        url("img/medical-hero.webp");
      background-size: cover, cover;
      background-position: center, center;
      background-repeat: no-repeat, no-repeat;
    }

    /* "The Gap" section - photographic backdrop (already has .section-gap) */
    .ax-section.section-gap {
      position: relative;
      background-color: var(--dark);
      background-image:
        linear-gradient(90deg,
          rgba(9,18,33,0.92) 0%,
          rgba(9,18,33,0.72) 38%,
          rgba(9,18,33,0.35) 72%,
          rgba(9,18,33,0.15) 100%),
        url("img/gap-hero.webp");
      background-size: cover, cover;
      background-position: center, center;
      background-repeat: no-repeat, no-repeat;
    }

    /* "How Axonyx works" flow section - photographic backdrop (already has .section-flow) */
    .ax-section.section-flow {
      position: relative;
      background-color: var(--dark);
      background-image:
        linear-gradient(90deg,
          rgba(9,18,33,0.90) 0%,
          rgba(9,18,33,0.70) 38%,
          rgba(9,18,33,0.45) 72%,
          rgba(9,18,33,0.35) 100%),
        url("img/everyprompt-hero.webp");
      background-size: cover, cover;
      background-position: center, center;
      background-repeat: no-repeat, no-repeat;
    }

    /* "In progress" status pill next to certification card titles */
    .cert-status {
      display: inline-block;
      margin-left: 8px;
      vertical-align: middle;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #b45309;
      background: rgba(249,115,22,0.12);
      border: 1px solid rgba(249,115,22,0.35);
      border-radius: 999px;
      padding: 2px 9px;
      white-space: nowrap;
    }

    /* Hero text + ferris wheel sit well above the video */
    .hero {
      position: relative;
      z-index: 10;
      padding: 0;
      text-align: center;
    }



    .hero h1 { margin-bottom: 26px; }   /* size/weight from h1 global */

    .hero-sub {
      max-width: var(--container-narrow);
      margin: 0 auto 44px;
    }

    .hero-ctas {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin-bottom: 80px;
    }

    /* ── Unified toggle - used in gap section ── */
    .ui-toggle-wrap {
      display: flex; align-items: center; gap: 16px;
    }
    .ui-toggle-label {
     font-weight: 600; white-space: nowrap;
      opacity: .38; transition: opacity .3s;
      cursor: default;
    }
    .ui-toggle-label.is-active { opacity: 1; }

    .ui-toggle {
      position: relative; display: inline-block;
      width: 54px; height: 28px; flex-shrink: 0;
      touch-action: manipulation;
    }
    /* Full-size + zero-opacity (not width/height:0) - a 0x0 focusable input
       can make mobile Safari scroll-into-view to (0,0) on focus, i.e. jump
       the whole page to the top when the toggle is tapped. */
    .ui-toggle input { opacity: 0; width: 100%; height: 100%; margin: 0; position: absolute; top: 0; left: 0; cursor: pointer; touch-action: manipulation; }

    .ui-slider {
      position: absolute; cursor: pointer;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(255,255,255,0.14);
      border-radius: 34px;
      touch-action: manipulation;
      transition: background .35s, box-shadow .5s;
    }
    .ui-slider:before {
      position: absolute; content: "";
      height: 20px; width: 20px; left: 4px; bottom: 4px;
      background: #fff; border-radius: 50%;
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      box-shadow: 0 1px 4px rgba(0,0,0,0.25);
    }
    .ui-toggle input:checked + .ui-slider {
      background: linear-gradient(to top right, var(--orange-dark), var(--orange-light));
      animation: ui-toggle-pulse 2s ease-in-out infinite;
    }
    .ui-toggle input:not(:checked) + .ui-slider { box-shadow: none; animation: none; }
    .ui-toggle input:checked + .ui-slider:before { transform: translateX(26px); }

    @keyframes ui-toggle-pulse {
      0%   { box-shadow: 0 0  6px  2px rgba(249,115,22,0.20); }
      50%  { box-shadow: 0 0 22px 10px rgba(249,115,22,0.55); }
      100% { box-shadow: 0 0  6px  2px rgba(249,115,22,0.20); }
    }


    /* ============================
       FERRIS WHEEL ANIMATION
    ============================ */
    .ferris-scene {
      position: relative;
      overflow: visible;
      z-index: 10;
      margin-top: 100px;                     /* allow text to rise above scene top */
      clip-path: inset(-100px -9999px 0px -9999px); /* open sides wide - parent section clips at viewport edge */
      /* Height drives scale; JS derives the width from it */
      height: 50vh;
      min-height: 500px;
      left: 50%;
      transform: translateX(-50%);           /* always centred regardless of overflow */
    }
    /* Each orbiting node */
    .ferris-node {
      position: absolute;
      top: 0; left: 0;
      width: 68px; height: 68px;
    }
    /* Zero-width anchor centred above icon - GSAP drives opacity + y-lift */
    .node-text-wrap {
      position: absolute;
      bottom: calc(100% + 16px);
      left: 50%;
      width: 0;
      height: 38px;
      pointer-events: none;
    }
    /* Clip masks: one on each side of the anchor. Text can't bleed across. */
    .ntw-clip-left {
      position: absolute;
      right: 10px;          /* right edge sits at the anchor point */
      width: 240px;
      height: 38px;
      overflow: visible;
    }
    .ntw-clip-right {
      position: absolute;
      left: 10px;           /* left edge sits at the anchor point */
      width: 240px;
      height: 38px;
      overflow: visible;
    }
    /* Red panel: zero-width div whose right edge is at the clip's right (= anchor) */
    .node-text-red {
      position: absolute;
      right: 0; top: 0;
      width: 0; height: 38px;
    }
    /* Green panel: zero-width div whose left edge is at the clip's left (= anchor) */
    .node-text-green {
      position: absolute;
      left: 0; top: 0;
      width: 0; height: 38px;
    }
    /* Red: spans extend LEFT from the zero-width anchor */
    .node-text-red .txt-label,
    .node-text-red .txt-issue {
      position: absolute;
      left: 0;
      transform: translateX(-100%);
      color: var(--color-red-light);
      white-space: nowrap;
    }
    /* Green: spans extend RIGHT from the zero-width anchor */
    .node-text-green .txt-label,
    .node-text-green .txt-issue {
      position: absolute;
      left: 0;
      transform: translateX(0);
      color: var(--color-green-light);
      white-space: nowrap;
    }
    .node-text-red .txt-label,
    .node-text-green .txt-label { top: 0;    font-size: 11px; font-weight: 400; }
    .node-text-red .txt-issue,
    .node-text-green .txt-issue { top: 20px; font-size: 16px; font-weight: 700; }
    /* Icon circle */
    .node-icon {
      width: 68px; height: 68px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 4px 28px rgba(0,0,0,.35);
      overflow: hidden;
    }
    .node-icon svg, .node-icon img { width: 100%; height: 100%; display: block; }

    /* Pulsing red border - shown when node is on the left (red/warning) arc */
    @keyframes node-ring-red {
      0%   { border-color: transparent; box-shadow: 0 0 0 0   rgba(231,76,60,0.75), 0 4px 28px rgba(0,0,0,.35); }
      50%  { border-color: red; box-shadow: 0 0 0 15px rgba(231,76,60,0.25), 0 4px 28px rgba(0,0,0,.35); }
      100% { border-color: transparent; box-shadow: 0 0 0 0   rgba(231,76,60,0),    0 4px 28px rgba(0,0,0,.35); }

    }
    .ferris-node.is-pulsing-red .node-icon {
      border: 2px solid transparent;
      animation: node-ring-red 1.1s ease-in-out infinite;
    }

    /* Green tick badge - shown when node is on the right (green) arc */
    .node-tick {
      position: absolute;
      top: -4px; right: -4px;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--color-green-light);
      border: 2px solid var(--black);
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transform: scale(0.4);
      transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
      pointer-events: none;
      z-index: 2;
    }
    .node-tick svg { width: 11px; height: 11px; display: block; }
    .ferris-node.is-right .node-tick {
      opacity: 1;
      transform: scale(1);
    }
    /* Axonyx fixed centre */
    .ferris-axonyx { position: absolute; top: 0; left: 0; z-index: 20; pointer-events: none; }
    .ferris-axonyx-centre { transform: translate(-50%,-50%); }

    /* Hero sub-copy + CTA - pinned to the bottom of the ferris scene */
    .hero-below-circle {
      position: absolute;
      bottom: 68px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      width: min(640px, 80vw);
      pointer-events: auto;
      z-index: 25;
    }
    .hero-below-circle .hero-sub {
      margin: 0 auto 32px;
      max-width: 100%;
    }
    .hero-below-circle .hero-ctas {
      margin-bottom: 0;
    }
    .ferris-axonyx-centre::before{content: ' '; display: block; width: 1px; height: 280px; z-index: -1; background: #fff; position: absolute;left: 50%; top: 50%; transform: translateY(-50%); opacity: 0.4; animation: axonyx-apex-line 1.5s ease-in-out infinite;}
    @keyframes axonyx-apex-line {
      0% { opacity: 0.5; }
      50% { opacity: 0.2; }
      100% { opacity: 0.5; }
    }
    .ferris-axonyx-outer {
      width: 160px; height: 160px; border-radius: 50%;
      background: linear-gradient(to top right, var(--orange-dark), var(--orange-light));
      display: flex; align-items: center; justify-content: center;
      animation: apex-glow 2.4s ease-in-out infinite;
    }

    @keyframes apex-glow {
      0%   { box-shadow: 0 0  8px  4px rgba(249,115,22,0.18); }
      50%  { box-shadow: 0 0 32px 16px rgba(249,115,22,0.55); }
      100% { box-shadow: 0 0  8px  4px rgba(249,115,22,0.18); }
    }
    .ferris-axonyx-inner {
      width: 128px; height: 128px; border-radius: 50%;
      background: transparent;
      border: none;
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .ferris-axonyx-inner svg { width: 80px; height: 80px; }
    .ferris-pulse {
      position: absolute; inset: 0;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,.85);
      opacity: 0;
      pointer-events: none;
    }

    /* ============================
       LOGO BAR  (dark bg)
    ============================ */
    .logo-bar { padding: 0; }

    .stat-row {
      display: flex;
      justify-content: center;
      gap: 60px;
      margin-bottom: 56px;
      text-align: center;
    }
    .stat-number {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 700;
      color: var(--orange);
      letter-spacing: -1px;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: 14px;
      font-weight: 400;
    }

    .logo-bar-intro {
      text-align: center;
      max-width: var(--container-narrow);
      margin: 0px auto 56px !important;
      line-height: 1.65;
    }

    /* Marquee - full-width, edge-faded */
    .marquee-outer {
      overflow: hidden;
      width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
      );
      mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
      );
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 28s linear infinite;
    }

    /* Pause on hover - nice UX touch */
    .marquee-outer:hover .marquee-track {
      /*animation-play-state: paused;*/
    }

    .marquee-set {
      display: flex;
      align-items: center;
      gap: 64px;
      padding-right: 64px; /* matches gap so loop is seamless */
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); } /* -50% = one full set width */
    }

    .logo-img {
      display: block;
      height: 44px;
      width: auto;
      max-width: 144px;
      object-fit: contain;
      flex-shrink: 0;
      opacity: 0.35;
      filter: grayscale(1);
      transition: opacity 0.4s ease, filter 0.4s ease;
    }

    .logo-img:hover {
      opacity: 0.65;
      filter: grayscale(0);
    }

    /* On dark sections, invert logos so they read against the background */
    .bg-dark .logo-img {
      filter: grayscale(1) invert(1);
      opacity: 0.8;
    }

    .bg-dark .logo-img:hover {
      filter: grayscale(0) invert(1);
      opacity: 1;
    }

    /* ============================
       FOOTER
    ============================ */
    .site-footer {
      padding: 80px 0 0;
      background: var(--light-grey);
      color: var(--dark);
    }

    .footer-main {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 80px;
      padding-bottom: 64px;
      border-bottom: 1px solid rgba(17,24,39,0.1);
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 340px; /* keeps the intro text column-width beside the nav */
    }
    .footer-brand img {
      display: block;
      width: 200px;
      transform: translateY(-12px);
    }

    .footer-nav {
      display: flex;
      gap: 64px;
    }

    .footer-col-heading {
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col ul li a {
      font-size: 14px;
      font-weight: 400;
      color: var(--grey-500);
      text-decoration: none;
      transition: color 0.15s;
    }

    .footer-col ul li a:hover { color: var(--dark); }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 0;
    }

    .footer-legal {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    .footer-legal a {
      color: var(--grey-500);
      text-decoration: none;
      transition: color 0.15s;
    }

    .footer-legal a:hover { color: var(--dark); }

    .footer-legal span {
      color: var(--grey-500);
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .footer-social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(17,24,39,0.15);
      color: var(--grey-500);
      text-decoration: none;
      transition: border-color 0.15s, color 0.15s;
    }

    .footer-social-link:hover {
      border-color: var(--dark);
      color: var(--dark);
    }


    .section-white { background: #fff; color: var(--black); }

    /* ============================
       STOCK IMAGE SECTION (Platform)
    ============================ */
    .section-stock-img { padding-bottom: 0; color: var(--black); }
    .section-stock-img .h-section,
    .section-stock-img .section-sub { color: var(--black); }
    .section-stock-img .laptop-frame {
      background-color: rgba(247, 223, 198, 0.25);
      backdrop-filter: blur(22px) saturate(1.3);
      -webkit-backdrop-filter: blur(22px) saturate(1.3);
    }
    .section-sub { color: rgba(17,17,17,0.7); max-width: 620px; margin: 20px auto 56px; text-align: center; }
    .section-heading-wrap { text-align: center; margin-bottom: 56px; }

    .platform-cta { text-align: center; }


    .btn-dark2 { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; background: var(--dark); color: #ffffff; border-radius: 6px; font-weight: 600; font-size: 14px; text-decoration: none; transition: background .18s, color .18s, opacity .18s, transform .18s; }
    .btn-dark2:hover { background: #ffffff; color: var(--dark); }


    /* Tile-by-tile slider - clipped viewport, JS-driven transform */
    .tiles-track-outer {
      overflow: hidden;
      cursor: grab;
      -webkit-user-select: none; user-select: none;
      -webkit-touch-callout: none;
      touch-action: pan-y;
      padding-bottom: 4px;
    }
    .tiles-track-outer:active { cursor: grabbing; }
    .tiles-track {
      display: flex; gap: 20px; width: max-content;
      /* Left edge matches container content; bleeds right */
      padding-left: max(calc((100vw - var(--container)) / 2 + var(--pad)), var(--pad));
      padding-right: 80px;
      transition: transform 0.45s cubic-bezier(.22,.61,.36,1);
      will-change: transform;
    }
    /* Prevent native image drag/select interfering with swipe & drag */
    .tiles-track-outer img,
    .features-grid img {
      -webkit-user-drag: none;
      user-drag: none;
      -khtml-user-drag: none;
      -moz-user-drag: none;
      -o-user-drag: none;
      pointer-events: none;
    }

    /* Heading row + slider arrow nav */
    .tiles-heading-wrap {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
    }
    .tiles-nav { display: flex; gap: 12px; flex-shrink: 0; }
    .tiles-arrow {
      display: flex; align-items: center; justify-content: center;
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(17,17,17,0.15);
      background: #fff;
      color: var(--dark);
      cursor: pointer;
      touch-action: manipulation;
      transition: background 0.18s, border-color 0.18s, color 0.18s, opacity 0.18s;
    }
    .tiles-arrow svg { width: 18px; height: 18px; display: block; }
    .tiles-arrow:hover { background: var(--dark); border-color: var(--dark); color: #fff; }
    .tiles-arrow.is-end { opacity: 0.35; cursor: default; }
    .tiles-arrow.is-end:hover { background: #fff; border-color: rgba(17,17,17,0.15); color: var(--dark); }


    .industry-tile {
      /*flex: 0 0 calc((var(--container) - var(--pad) * 2 - 48px) / 3);*/
      flex: 0 0 450px;
      aspect-ratio: 3 / 4;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
    }
    .industry-tile-bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      display: block;
    }
    /* Orange colour-wash: multiply blends orange over the greyscale image */
    .industry-tile-overlay {
      position: absolute; inset: 0; z-index: 1;
      mix-blend-mode: multiply;
    }
    /* Gradient scrim for legibility */
    .industry-tile-scrim {
      position: absolute; inset: 0; z-index: 2;
      background: linear-gradient(to top,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.18) 55%,
        transparent 100%);
    }
    .industry-tile-content {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 28px 22px 24px;
      z-index: 3;
    }
    .industry-tile-content h3 { font-weight: 600; color: #fff; }  /* larger tile heading weight */
    .industry-tile-content p  { color: rgba(255,255,255,0.8); margin-bottom: 14px; }

    /* ── Secondary / text button ── */
    .btn-text {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      letter-spacing: 0.01em;
      border: none;
      background: none;
      padding: 0;
      cursor: pointer;
      position: relative;
    }
    .btn-text::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 1px;
      background: currentColor;
      opacity: 0.45;
      transition: opacity 0.18s;
    }
    .btn-text:hover::after { opacity: 1; }
    .btn-text .btn-text-arrow {
      display: inline-block;
      transition: transform 0.2s ease;
      font-style: normal;
    }
    .btn-text:hover .btn-text-arrow { transform: translateX(3px); }

    .section-enterprise { padding-bottom: 0; overflow: hidden; }
    .section-enterprise-footer { display: flex; align-items: center; justify-content: space-between; padding: 48px 0 60px; }
    .section-enterprise-footer p { max-width: var(--container-narrow); margin: 0; }


    /* 3-col grid: left third = content, right two-thirds = compliance cards */
    .audit-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
    .audit-heading { margin-bottom: 20px; color: var(--black); }   /* h2 global scale */
    .audit-col > p { color: #555; margin-bottom: 28px; }
    .audit-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
    .audit-features li { display: flex; align-items: center; gap: 10px; color: #333; }
    .audit-features li::before { content: '•'; color: var(--orange); font-size: 18px; line-height: 1; flex-shrink: 0; }
    .ax-dark .audit-features li { color: rgba(255,255,255,0.75); }

    /* ============================
       PRODUCT FEATURE ROWS
       (Global Web Proxy and similar product pages)
    ============================ */
    .proxy-feature-grid { display: flex; align-items: center; gap: 60px; }
    .proxy-feature-grid > div { flex: 1 1 0; min-width: 0; }
    .proxy-feature-grid.is-reversed { flex-direction: row-reverse; }
    .proxy-feature-grid h2 { margin-bottom: 16px; }
    .proxy-feature-grid .css-icon-wrapper { margin-bottom: 20px; }
    .proxy-feature-grid > div:first-child > p { color: rgba(17,17,17,0.65); }
    .ax-dark .proxy-feature-grid > div:first-child > p,
    .ax-light .proxy-feature-grid > div:first-child > p { color: rgba(17,17,17,0.55); }

    /* Service icon row - small grayscale logos inside a feature card */
    .service-icon-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-top: 24px;
    }
    .service-icon-row img {
      display: block;
      width: 32px;
      height: 32px;
      object-fit: contain;
      opacity: 0.55;
      filter: grayscale(1);
      transition: opacity 0.3s ease, filter 0.3s ease;
    }
    .service-icon-row img:hover {
      opacity: 1;
      filter: grayscale(0);
    }

    /* Compliance card grid - 2 columns within the right two-thirds */
    .compliance-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch;}
    .compliance-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border: 1.5px solid var(--color-green);
      border-radius: 10px;
      padding: 22px 24px;
      background: #f0fdf4;
    }
    .compliance-card p  { color: #555; margin: 0; line-height: 1.5; }
    .compliance-logo-wrap {
      flex-shrink: 0;
      width: 80px;
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .compliance-logo { display: block; width: 100%; height: 100%; object-fit: contain; }

    /* Control */
    .section-control { padding-bottom: calc(var(--section-pad) * 1.4); color: #ffffff; }
    .section-control .eyebrow { display: block; margin-bottom: 20px; }
    /* Left sticky / right scrolling - mirrors apart-layout pattern from home-v2 */
    .control-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: start;
    }
    .control-sticky {
      position: sticky;
      top: 160px;
    }
    .control-heading { margin-bottom: 20px; }   /* h2 global scale */
    .control-col > p { opacity: .75; margin-bottom: 32px; }
    /* 1×4 stacked cards in the right column */
    .control-features { display: flex; flex-direction: column; gap: 20px; }
    .control-feature {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      min-height: 220px;
    }
    .control-feature-text {
      padding: 56px 40px;
      display: flex;
      flex-direction: column-reverse;
      justify-content: space-between;
    }
    .control-feature-icon,
    .feature-icon{
      width: 55px;
      height: 55px;
      border-radius: 10px;
      display: flex; align-items: flex-start; justify-content: flex-start;
      flex-shrink: 0;
    }
    .control-feature-icon img,
    .control-feature-icon svg,
    .feature-icon img,
    .feature-icon svg{width: 55px; height: 55px;}
    .control-feature-icon svg,
    .feature-icon svg{stroke: var(--orange-dark); stroke-width: 1;}
    .feature-icon{margin-bottom: 12px;}

    .control-feature p  { opacity: .6; }
    /* Bullet list - markers align with text edge, font matches paragraph */
    .control-feature ul {
      list-style: none;
      margin: 16px 0 0;
      padding: 0;
    }
    .control-feature li {
      position: relative;
      padding-left: 1.2em;
      margin-bottom: 8px;
      opacity: .6;
    }
    .control-feature li::before {
      content: '\2022';
      position: absolute;
      left: 0;
    }
    .control-feature-screenshot {
      border-left: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(255,255,255,0.15);
      position: relative; overflow: hidden;
    }
    .control-feature-screenshot::before {
      content: '';
      position: absolute; inset: 16px;
      border: 1px dashed rgba(255,255,255,0.1);
      border-radius: 8px;
    }

    /* Gap */
    .section-gap .eyebrow { display: block; margin-bottom: 20px; }
    .gap-heading { margin-bottom: 16px; }   /* h2 global scale */
    .gap-sub { opacity: .6; margin-bottom: 40px; }

    /* ── Risk toggle ── */
    /* gap-toggle CSS consolidated into .ui-toggle above */

    /* ── Risk grid ── */
    .risk-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 48px;
    }
    .risk-card {
      background: rgba(231,76,60,0.08);
      border: 1px solid rgba(231,76,60,0.45);
      border-radius: 10px;
      padding: 22px 24px;
      transition: background .45s ease var(--risk-delay, 0ms), border-color .45s ease var(--risk-delay, 0ms);
      overflow: hidden;
    }
    .risk-card-header {
      display: flex; justify-content: space-between; align-items: flex-start;
    }
    .risk-card-header h3 { margin: 0; }
    .risk-icon-stack { position: relative; width: 32px; height: 32px; flex-shrink: 0; }
    .risk-icon {
      position: absolute; top: 0; left: 0; width: 32px; height: 32px;
      transition: opacity .4s ease var(--risk-delay, 0ms);
    }
    .risk-icon-logo    { opacity: 0; }
    .risk-icon-warning { opacity: 1; color: #e74c3c; }
    .risk-card-body {
      max-height: 0; opacity: 0;
      overflow: hidden;
      transition: max-height .45s ease var(--risk-delay, 0ms), opacity .45s ease var(--risk-delay, 0ms), margin-top .45s ease var(--risk-delay, 0ms);
      color: rgba(255,255,255,0.55);
      margin-top: 0;
    }
    .risk-card-body p { margin: 0; }

    /* Active (With Axonyx) state */
    .gap-risk-active .risk-card {
      background: rgba(57,181,74,0.3);
      border-color: var(--color-green);
    }
    .gap-risk-active .risk-icon-warning { opacity: 0; }
    .gap-risk-active .risk-icon-logo    { opacity: 1; }
    .gap-risk-active .risk-card-body    { max-height: 120px; opacity: 1; margin-top: 14px; }

    /* CTA orange */
    .cta-orange-grid { display: flex; grid-template-columns: 1fr auto; gap: 40px; align-items: center; justify-content: space-between; background: linear-gradient(to top right, var(--orange-dark), var(--orange-light)); border-radius: 20px; padding:40px; box-sizing: border-box;}
    .cta-orange-heading { font-weight: 600; margin-bottom: 24px; }   /* h2 global scale, bolder weight for CTA */
    .cta-orange-sub { margin-bottom: 36px;}
    .cta-orange-logo { display: block; width: 30%; aspect-ratio: 1/1; background: #fff; border-radius: 22px; overflow: hidden; }
    .cta-orange-logo img{display: block; width: 100%;}

    /* ── Axonyx layer: slow orange glow (state 2) ── */
    @keyframes axonyx-pulse {
      0%, 100% { filter: drop-shadow(0 0 4px rgba(245,158,11,0.2)); }
      50%       { filter: drop-shadow(0 0 24px rgba(245,158,11,0.92)); }
    }
    #axonyx-layer-rect.axonyx-glowing {
      animation: axonyx-pulse 2.2s ease-in-out infinite;
    }


    /* Laptop Frame Container */
    .laptop-container {
      width: 100%;
      max-width: calc(var(--container) + 200px); /* Overflows the 1200px content width */
      margin: 0 auto;
      padding: 0 20px;
    }

    .laptop-frame {
      background-color: #f7dfc6; /* Inner screen bezel color */

      /* Creates a multi-layered premium hardware edge:
         1. Outer metallic finish line
         2. Main dark display enclosure frame
         3. Subtle dark inner shadow for depth */
      border: 9px solid #333333;
      border-bottom: 0;
      outline: 1px solid rgba(255,255,255,0.4);
      border-radius: 48px 48px 0 0;

      /* Adds a smooth 3D bevel look to the inner display edge */
      box-shadow:
        inset 0 4px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        0 25px 60px rgba(0, 0, 0, 0.25);

      overflow: hidden;
      position: relative;
      padding: 24px 60px 40px 60px; /* Padding creates the screen edge width */
    }

    /* Top Bar of the Screen */
    .screen-top-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 20px;
      font-size: 0.9rem;
      color: #333;
    }

    .window-dots {
      display: flex;
      gap: 8px;
    }

    .window-dots .dot {
      width: 14px;
      height: 14px;
      background-color: #1a1a1a;
      border-radius: 50%;
    }

    /* White App Window */
    .app-window {
      background-color: #ffffff;
      border-radius: 25px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      width: 100%;
      min-height: 400px;
    }

    /* App Header */
    .app-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 40px;
      border-bottom: 1px solid #f0f0f0;
    }

    .logo {
      display: flex;
      align-items: center;
      font-size: 1.5rem;
      font-weight: 600;
      letter-spacing: -0.02em;
    }


    .app-header-dots {
      display: flex;
      gap: 6px;
    }
    .app-header-dots .dot {
      width: 10px;
      height: 10px;
      background-color: #e0e0e0;
      border-radius: 50%;
    }

    /* Main Content Area */
    .app-content {
      padding: 60px 40px;
    }

    .content-inner {
      max-width: var(--container);
      margin: 0 auto;
    }

    /* 3 Column Grid */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 50px;
      -webkit-user-select: none; user-select: none;
      -webkit-touch-callout: none;
    }

    .feature-column {
      display: flex;
      flex-direction: column;
    }

    .feature-column h3 {
      color: var(--dark);
    }

    .feature-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 12px;
    }


    .feature-column .col-sub {
      color: #f06400;
      font-size: 0.95rem;
      margin-bottom: 20px;
    }

    .feature-column p.desc {
      color: #444;
      line-height: 1.6;
      font-size: 1rem;
    }

    /* Pure CSS Globe Icon */
    .css-icon-wrapper {
      position: relative;
      width: 55px;
      height: 55px;
      flex-shrink: 0;
    }
    .css-icon-wrapper img{
      width: 55px;
    }


    /* Buttons Row (100% width) */
    .button-row {
      width: 100%;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Carousel nav - hidden on desktop */
    .carousel-nav { display: none; }

    /* Hamburger - hidden on desktop */
    .nav-hamburger { display: none; }

    @media (max-width: 900px) {
      /* Convert features-grid to a scroll-snap carousel */
      .features-grid {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 0;
        margin-bottom: 24px;
      }
      .features-grid::-webkit-scrollbar { display: none; }

      .feature-column {
        flex: 0 0 100%;
        scroll-snap-align: start;
        padding-right: 4px; /* prevents last pixel clipping */
      }

      /* Show dot nav */
      .carousel-nav {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 28px;
      }
      .carousel-dot {
        background: var(--light-grey);
        border: none;
        border-radius: 100px;
        padding: 5px 16px;
        font-size: 12px;
        font-weight: 600;
        color: rgba(17,17,17,0.45);
        cursor: pointer;
        touch-action: manipulation;
        transition: background 0.2s, border-color 0.2s, color 0.2s;
      }
      .carousel-dot.is-active {
        background: linear-gradient(to top right, var(--orange-dark), var(--orange-light));;
        color: #fff;
      }
    }


    /* ============================
       RESPONSIVE
    ============================ */

    /* ── Control-feature cards stack (≤1100px) ── */
    @media (max-width: 1100px) {
      /* Each control-feature card → single column */
      .control-feature {
        grid-template-columns: 1fr;
        min-height: unset;
      }

      /* Icon above text (base rule is column-reverse; stacked flips to column = icon first) */
      .control-feature-text {
        flex-direction: column;
        padding: 32px 24px;
      }
      .control-feature-icon { margin-bottom: 20px; }

      /* Screenshot panel: 3:2 aspect ratio when stacked below text */
      .control-feature-screenshot {
        min-height: unset;
        aspect-ratio: 3 / 2;
      }

      /* Swap gradient from diagonal orange → vertical light-grey-to-orange */
      .ax-white .control-feature-screenshot .screenshot-gradient {
        background: linear-gradient(to bottom, var(--light-grey), var(--orange-dark));
        opacity: 1;
      }
    }

    /* ── Tablet (≤900px) ── */
    @media (max-width: 900px) {
      :root { --section-pad: 72px; }

      /* Footer logo - back to compact size on smaller screens */
      .footer-brand img { width: 120px; transform: none; }

      /* Stock image / laptop section */
      .laptop-frame { padding: 16px 20px 20px 20px; }

      .app-window { padding: 0px; }
      .app-header{
        padding: 15px 20px;
      }
      .app-content {
        padding: 20px 20px;
      }
      .laptop-container {
        padding: 0;
      }


      /* ── Nav ── */
      .nav-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 8px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 210;
        position: relative;
        flex-shrink: 0;
      }
      .nav-hamburger span {
        display: block;
        height: 2px;
        background: var(--dark);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
      }
      /* Hamburger → X when open */
      .site-nav.is-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .site-nav.is-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
      .site-nav.is-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
      /* ── Mobile nav pinning ──
         The nav bar (logo + logo icon) sits in normal flow and scrolls
         off with the page. Only the hamburger button is pinned to the
         viewport - as a white, padded pill in the top-right corner. */
      .site-nav { position: relative; top: auto; }


      .nav-logo {
        margin: 0;
      }
      .nav-hamburger {
        position: fixed;
        top: 10px;
        right: 20px;
        width: auto;
        height: auto;
        padding: 10px;
        aspect-ratio: 1 / 1;
        gap: 5px;
        box-sizing: border-box;
        background: #fff;
        border-radius: 5px;
      }
      .nav-hamburger span { width: 22px; }
      /* Keep the bars dark on the white pill, even once the page is scrolled */
      .site-nav.is-scrolled .nav-hamburger span { background: var(--dark); }

      /* Fullscreen overlay menu */
      .nav-right-group {
        position: fixed;
        inset: 0;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;   /* top-align so long menus scroll naturally */
        padding: 80px 32px 48px;
        gap: 0;
        z-index: 200;
        overflow-y: auto;              /* scroll if content taller than viewport */
        /* Hidden state - visibility:hidden removes it from hit-testing AND
           tab order entirely, including children that set their own
           pointer-events (which would otherwise punch through opacity:0) */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
      }
      .site-nav.is-open .nav-right-group {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
      }

      /* Nav links - sensible stacked size */
      .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background: none !important;
        padding: 0;
        gap: 0;
        margin-bottom: 24px;
      }
      .nav-links li { width: 100%; }
      .nav-links a,
      .site-nav.is-scrolled .nav-links a {
        font-size: 18px;
        font-weight: 600;
        color: #fff;
        padding: 12px 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        letter-spacing: -0.01em;
        transform: none !important;    /* block any desktop hover transforms */
      }
      .nav-links a:hover,
      .nav-links a:focus { background: none !important; opacity: 0.75; }

      /* Hide carets on mobile */
      .nav-links a.has-caret::after,
      .nav-login.has-caret::after { display: none; }

      /* Sub-menus: flatten to static list, override ALL desktop rules.
         NOTE: no `pointer-events: auto` here - it would override the closed
         overlay's pointer-events:none and make invisible links clickable.
         `inherit` follows the overlay's open/closed state instead. */
      .sub-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: inherit !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 4px 0 12px 16px !important;
        min-width: 0 !important;
        transition: none !important;
      }
      .sub-menu::before { display: none !important; }
      .sub-menu li a {
        font-size: 14px;
        font-weight: 400;
        color: rgba(255,255,255,0.55);
        padding: 6px 0;
        border-radius: 0;
        transform: none !important;
      }
      .sub-menu li a:hover { background: none !important; color: #fff; opacity: 1; }

      /* Parent item: border wraps whole block including sub-menu */
      .menu-item-has-children > a {
        border-bottom: none !important;
      }
      .menu-item-has-children {
        border-bottom: 1px solid rgba(255,255,255,0.08);
        width: 100%;
      }

      /* Actions */
      .nav-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background: none !important;
        padding: 0;
        gap: 12px;
      }
      .nav-login,
      .site-nav.is-scrolled .nav-login {
        color: rgba(255,255,255,0.6);
        font-size: 16px;
        padding: 8px 0;
      }
      .nav-demo { width: 100%; justify-content: center; font-size: 16px; padding: 14px 20px; }

      /* Governance at scale - 3 stats wrap to single column */
      .stat-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 32px;
      }
      .stat-col{width: 40%;}

      /* Audit ready - 1fr 2fr → single column */
      .audit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      /* Product feature rows - side-by-side → stacked, always heading-first */
      .proxy-feature-grid,
      .proxy-feature-grid.is-reversed {
        flex-direction: column;
        gap: 32px;
      }

      /* Compliance cards: stack with logo on top, text below */
      .compliance-card {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 12px;
      }

      /* Purpose-built quote + button → stack */
      .section-enterprise-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
      }

      /* Industry tile slider - show ~2 tiles per view */
      .industry-tile { flex: 0 0 380px; }

      /* The answer isn't banning AI - sticky/scroll → single column */
      .control-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .control-sticky { position: static; }

      /* AI adoption risk grid - 3 col → 2 col */
      .risk-grid { grid-template-columns: repeat(2, 1fr); }

      /* CTA orange (Sovereign AI) - text + image → stack */
      .cta-orange-grid {
        flex-direction: column;
        gap: 32px;
      }
      .cta-orange-logo { width: 100%; max-width: 380px; }

      /* 3-column feature grid → 2 col */
      .features-grid { grid-template-columns: repeat(2, 1fr); }

      /* Footer - brand + nav → stack */
      .footer-main {
        flex-direction: column;
        gap: 40px;
      }
      .footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); }

      .non-mobile{display: none;}

    }

    /* ── Mobile (≤600px) ── */
    @media (max-width: 600px) {
      :root {
        --section-pad: 56px;
        --section-gap: 12px;
        --pad: 20px;
      }

      /* Industry tile slider - one tile per view, never wider than viewport */
      .industry-tile { flex: 0 0 calc(80vw - (var(--pad) * 2)); }
      .tiles-track { padding-right: 20px; }
      .tiles-heading-wrap { align-items: flex-start; }
      .tiles-nav { gap: 8px; }
      .tiles-arrow { width: 40px; height: 40px; }
      .tiles-arrow svg { width: 16px; height: 16px; }

      /* 2-col risk grid → 1 col */
      .risk-grid { grid-template-columns: 1fr; }

      /* 2-col features → 1 col */
      .features-grid { grid-template-columns: 1fr; }

      /* Footer nav → 2 cols on small screens */
      .footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

      /* Footer bottom - legal + social → stack */
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      /* CTA card */
      /* Full-width orange card - remove container gutters */
      .section-cta .container { padding: 0; }
      .cta-orange-grid { padding: 40px 32px; }
      .cta-orange-logo { max-width: 100%; }
    }

    /* ============================
       CONTACT FORM
    ============================ */
    .container-narrow { max-width: var(--container-narrow); }

    .contact-card {
      background: var(--dark-card);
      border: 1px solid var(--dark-border);
      border-radius: 20px;
      padding: 48px;
      box-sizing: border-box;
    }

    .contact-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: linear-gradient(to top right, var(--orange-dark), var(--orange-light));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      color: #fff;
    }

    .contact-card h1 {
      text-align: center;
      margin-bottom: 12px;
    }

    .contact-sub {
      text-align: center;
      opacity: 0.65;
      margin-bottom: 36px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-group {
      margin-bottom: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group label {
      font-size: 13px;
      font-weight: 600;
    }

    .input-icon-wrap {
      position: relative;
      display: flex;
      align-items: center;
    }

    .input-icon-wrap svg {
      position: absolute;
      left: 14px;
      width: 18px;
      height: 18px;
      opacity: 0.4;
      pointer-events: none;
    }

    .input-icon-wrap input {
      padding-left: 44px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--dark-border);
      border-radius: 8px;
      padding: 12px 16px;
      color: var(--white);
      font-family: inherit;
      font-size: 15px;
      box-sizing: border-box;
      transition: border-color 0.18s, background 0.18s;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: rgba(255,255,255,0.35);
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--orange);
      background: rgba(255,255,255,0.06);
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 120px;
      line-height: 1.5;
    }

    .contact-form select {
      appearance: none;
      cursor: pointer;
      padding-right: 40px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      background-size: 18px;
    }

    .contact-form select option {
      color: #000;
    }

    .btn-block {
      width: 100%;
      padding: 16px;
      font-size: 15px;
    }

    .contact-note {
      text-align: center;
      font-size: 14px;
      opacity: 0.6;
      margin: 28px 0 16px;
    }

    .contact-badges {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      font-size: 13px;
      opacity: 0.55;
    }

    .contact-badges span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .form-alert {
      border-radius: 10px;
      padding: 14px 18px;
      margin-bottom: 24px;
      font-size: 14px;
      line-height: 1.5;
    }

    .form-alert-success {
      background: rgba(21,190,83,0.12);
      border: 1px solid rgba(21,190,83,0.35);
      color: var(--color-green-light);
    }

    .form-alert-error {
      background: rgba(252,76,66,0.1);
      border: 1px solid rgba(252,76,66,0.35);
      color: var(--color-red-light);
    }

    .form-alert-error ul {
      margin: 0;
      padding-left: 18px;
    }

    .form-alert-error li {
      margin-bottom: 4px;
    }

    .form-alert-error li:last-child {
      margin-bottom: 0;
    }

    @media (max-width: 860px) {
      .form-grid { grid-template-columns: 1fr; }
      .contact-card { padding: 32px 24px; }
    }


    /* ============================
       DATA TABLE - provider coverage
    ============================ */
    /* Wrapper: spacing below the section h2 + horizontal scroll on small screens */
    .provider-table-wrap {
      margin-top: 40px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border: 1px solid rgba(17,17,17,0.08);
      border-radius: var(--radius);
      background: var(--white);
    }

    .provider-table {
      width: 100%;
      min-width: 720px;
      border-collapse: collapse;
      font-size: 14px;
      color: var(--dark);
    }

    .provider-table thead th {
      text-align: left;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--grey-500);
      background: var(--light-grey);
      padding: 16px 20px;
      border-bottom: 1px solid rgba(17,17,17,0.10);
      white-space: nowrap;
    }

    .provider-table tbody td {
      padding: 16px 20px;
      vertical-align: top;
      font-weight: 300;
      line-height: 1.5;
      color: rgba(17,17,17,0.70);
      border-bottom: 1px solid rgba(17,17,17,0.06);
    }

    .provider-table tbody tr:last-child td { border-bottom: none; }

    .provider-table tbody tr:hover { background: rgba(249,115,22,0.04); }

    .provider-table .provider-name {
      font-weight: 500;
      color: var(--dark);
      white-space: nowrap;
    }

    @media (max-width: 860px) {
      .provider-table-wrap { margin-top: 28px; }
      .provider-table thead th,
      .provider-table tbody td { padding: 14px 16px; }
    }


    /* ============================
       SIMPLE 2-COLUMN LAYOUT
       Generic two-up grid; collapses to a single column on small screens.
    ============================ */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: stretch;
      margin-bottom: 40px;   /* breathing room before following content (e.g. a button) */
    }

    /* Lists inside the 2-col layout: bullets align flush with the heading's
       left edge (the global reset zeroes ul padding, which otherwise lets the
       markers overflow ~20px to the left). */
    .two-col ul {
      list-style-position: outside;
      padding-left: 1.1em;
      margin: 0;
      margin-top: 20px;   /* gap between the heading above and the list */
    }
    .two-col li { margin-bottom: 8px; }
    .two-col li:last-child { margin-bottom: 0; }

    @media (max-width: 860px) {
      .two-col { grid-template-columns: 1fr; }
    }


    /* ============================
       REUSABLE CONTENT COMPONENTS
       Generic building blocks used across content
       pages (Trust Centre, etc.). Theme-aware via the
       .ax-dark / .ax-white / .ax-light section classes.
    ============================ */

    /* ── Section intro (eyebrow + heading + lede) ───────────── */
    .section-intro { max-width: 720px; margin-bottom: 48px; }
    .section-intro .eyebrow { display: block; }
    .section-intro h2 { margin-bottom: 16px; }
    .section-intro p { opacity: .65; margin-bottom: 0; }
    .ax-dark .section-intro p { opacity: .75; }

    /* ── Responsive column grids ────────────────────────────── */
    .col-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .col-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    /* Nested grid sitting inside a card/text block needs top spacing */
    .col-grid-2.is-nested,
    .col-grid-3.is-nested { margin-top: 24px; }

    /* ── Stat tiles (large figure + caption) ────────────────── */
    .stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .stat-tile {
      text-align: center;
      padding: 44px 24px;
      background: var(--light-grey);
      border: 1px solid rgba(0,0,0,0.05);
      border-radius: 16px;
    }
    .stat-tile h2 { margin-bottom: 6px; }
    .stat-tile-sub {
      font-size: 14px; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--orange);
    }

    /* ── Info card ──────────────────────────────────────────── */
    .info-card {
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 16px;
      padding: 30px;
    }
    /* On white sections, fill the card with light-grey for contrast */
    .ax-white .info-card { background: var(--light-grey); border-color: rgba(0,0,0,0.05); }
    .info-card h3 { color: var(--dark); margin-bottom: 10px; }
    .info-card h4 { color: var(--dark); font-size: 15px; margin-bottom: 6px; }
    .info-card > p { color: rgba(17,17,17,0.6); font-size: 15px; margin-bottom: 0; }
    .info-card .check-list { margin-top: 16px; }
    .info-card-sub h4 { display: flex; align-items: center; gap: 8px; }

    /* ── Tick list ──────────────────────────────────────────── */
    .check-list { list-style: none; margin: 0; padding: 0; }
    .check-list li {
      position: relative;
      padding-left: 26px;
      margin-bottom: 10px;
      font-size: 14px;
      line-height: 1.5;
      color: rgba(17,17,17,0.6);
    }
    .check-list li:last-child { margin-bottom: 0; }
    .check-list li::before {
      content: '';
      position: absolute; left: 0; top: 6px;
      width: 14px; height: 14px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
      background-size: contain; background-repeat: no-repeat;
    }
    .ax-dark .check-list li { color: rgba(255,255,255,0.7); }
    /* Exclusion variant - swaps the tick for a cross (e.g. prohibited items) */
    .check-list.is-exclusion li::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
    }

    /* ── Sub-processor list (name + description rows) ────────── */
    .subprocessor-list { list-style: none; margin: 0 0 22px; padding: 0; }
    .subprocessor-list li {
      display: flex; flex-direction: column;
      padding: 16px 0;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .subprocessor-list li:first-child { padding-top: 0; }
    .subprocessor-name { font-weight: 700; color: var(--dark); font-size: 15px; }
    .subprocessor-desc { font-size: 14px; color: rgba(17,17,17,0.55); }

    /* ── Warning / disclosure notice ────────────────────────── */
    .notice-warning {
      background: rgba(245,158,11,0.08);
      border: 1px solid rgba(245,158,11,0.45);
      border-radius: 16px;
      padding: 30px;
    }
    .notice-warning h4 { color: var(--dark); font-size: 16px; margin-bottom: 10px; }
    .notice-warning p { color: rgba(17,17,17,0.7); font-size: 15px; }
    .notice-warning a { color: var(--orange); font-weight: 600; text-decoration: none; }
    .notice-warning a:hover { text-decoration: underline; }

    /* ── Stacked content block ──────────────────────────────── */
    .content-block { margin-top: 40px; }
    .content-block:first-child { margin-top: 0; }
    .content-block > h3 { color: var(--dark); margin-bottom: 12px; }
    .ax-dark .content-block > h3 { color: #fff; }
    .content-block > p { opacity: .7; max-width: 820px; }

    /* ── Inline text link ───────────────────────────────────── */
    .text-link { color: var(--orange); font-weight: 600; text-decoration: none; }
    .text-link:hover { text-decoration: underline; }

    /* ── Responsive collapse ────────────────────────────────── */
    @media (max-width: 980px) {
      .col-grid-3 { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 760px) {
      .stat-grid,
      .col-grid-2,
      .col-grid-3 { grid-template-columns: 1fr; }
    }

    /* ============================
       NEW HOMEPAGE SECTIONS
       (running-order update)
    ============================ */
    .nsec-heading { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.15; color: var(--dark); margin: 14px 0 18px; font-weight: 400; }
    .nsec-heading strong { font-weight: 600; }
    .nsec-heading-light { color: #fff; }
    .nsec-sub { max-width: 720px; color: var(--grey-700); margin-bottom: 40px; }
    .nsec-sub-light { color: rgba(255,255,255,0.75); }

    /* Why blocking AI fails */
    .path-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
    .path-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 28px; }
    .path-card h3 { margin-bottom: 10px; color: var(--dark); font-size: 20px; }
    .path-card p { color: var(--grey-700); font-size: 15px; line-height: 1.6; }
    .path-card.is-answer { border-color: var(--orange); box-shadow: 0 10px 30px rgba(249,115,22,0.12); }
    .path-card.is-answer h3 { color: var(--orange-dark); }

    /* How Axonyx works */
    .flow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
    .flow-step { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 14px; padding: 24px; }
    .flow-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 14px; }
    .flow-step h3 { color: #fff; margin-bottom: 8px; font-size: 18px; }
    .flow-step p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; }

    /* Proof in practice */
    .proof-grid { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: center; }
    .proof-logo img { width: 100%; max-width: 260px; height: auto; display: block; }
    .section-proof p { max-width: 640px; color: var(--grey-700); margin-bottom: 28px; }
    @media (max-width: 800px) {
      .proof-grid { grid-template-columns: 1fr; gap: 28px; }
      .proof-logo img { max-width: 180px; }
    }

    /* Resources */
    .resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
    .resource-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 26px; display: flex; flex-direction: column; }
    .resource-card h3 { color: var(--dark); font-size: 18px; margin-bottom: 10px; }
    .resource-card p { color: var(--grey-700); font-size: 14.5px; line-height: 1.6; flex: 1; }
    .resource-card a { margin-top: 16px; color: var(--orange-dark); font-weight: 600; font-size: 14.5px; text-decoration: none; }
    .resource-card a:hover { text-decoration: underline; }

    /* ============================
       CONTACT - GLOBAL PARTNER REACH MAP
    ============================ */
    .world-map {
      position: relative;
      margin-top: 48px;
      aspect-ratio: 1000 / 403;
      border: 1px solid var(--dark-border);
      border-radius: 16px;
      overflow: hidden;
      background:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        radial-gradient(ellipse at 50% 30%, #16293e 0%, #0e1c2b 75%);
      background-size: 40px 40px, 40px 40px, cover;
    }
    .wm-base {
      position: absolute; inset: 0; width: 100%; height: 100%;
      display: block; opacity: 0; transition: opacity 1s ease .1s;
    }
    .map-live .wm-base { opacity: 1; }
    .wm-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }

    .wm-line {
      fill: none; stroke: var(--orange); stroke-width: 1.1; opacity: .45;
      stroke-dasharray: 900; stroke-dashoffset: 900;
    }
    .map-live .wm-line { animation: wm-draw 1.4s ease forwards .9s; }
    @keyframes wm-draw { to { stroke-dashoffset: 0; } }

    .wm-node { opacity: 0; }
    .map-live .wm-node { animation: wm-in .5s ease forwards; }
    .map-live .wm-hub { animation-delay: .5s; }
    @keyframes wm-in { to { opacity: 1; } }

    .wm-dot  { fill: var(--orange-light); }
    .wm-halo { fill: var(--orange); opacity: .22; }
    .map-live .wm-partner .wm-halo,
    .map-live .wm-hub .wm-halo { animation: wm-pulse 3s ease-in-out infinite 2.6s; }
    @keyframes wm-pulse {
      0%, 100% { opacity: .18; transform: scale(1); }
      50%      { opacity: .38; transform: scale(1.35); }
    }
    .wm-halo { transform-origin: center; transform-box: fill-box; }

    .wm-node text {
      fill: rgba(255,255,255,0.85); font-size: 15px; font-weight: 600;
      letter-spacing: .04em; paint-order: stroke; stroke: rgba(14,28,43,0.8); stroke-width: 3px;
    }

    .wm-caption {
      position: absolute; left: 0; right: 0; bottom: 18px; text-align: center;
      color: #fff; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
      font-size: 13px; opacity: 0; transition: opacity .8s ease 2.5s;
    }
    .map-live .wm-caption { opacity: .9; }

    @media (max-width: 700px) {
      .wm-node text { font-size: 22px; }
      .world-map { border-radius: 10px; }
    }

    /* Fix: .contact-form input's padding shorthand overrides the icon
       inset (equal specificity, later in file) - restore it here */
    .contact-form .input-icon-wrap input { padding-left: 44px; }

    /* Resource card email capture */
    .resource-form { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
    .resource-form input {
      width: 100%; box-sizing: border-box; padding: 10px 12px; font-family: inherit; font-size: 14px;
      border: 1px solid #d1d5db; border-radius: 8px; color: var(--dark); background: #fff;
    }
    .resource-form input:focus { outline: none; border-color: var(--orange); }
    .resource-form button {
      padding: 10px 14px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
      background: var(--orange); color: #fff; border: none; border-radius: 8px; transition: background .18s;
    }
    .resource-form button:hover { background: var(--orange-dark); }
    .resource-form button:disabled { opacity: .6; cursor: default; }
    .resource-form-msg { font-size: 13px; color: var(--grey-500); min-height: 18px; }
    .resource-form-msg.is-ok { color: #15803d; font-weight: 600; }
    .resource-form-msg.is-error { color: #b91c1c; }

    /* ============================
       BOOK A DEMO - Calendly page
    ============================ */
    .book-grid { display: grid; grid-template-columns: minmax(300px, 5fr) 7fr; gap: 48px; align-items: start; }
    .book-intro { position: sticky; top: 90px; }
    .book-intro > p { color: var(--grey-700); }
    .book-points { list-style: none; padding: 0; margin: 28px 0; display: flex; flex-direction: column; gap: 18px; }
    .book-points li {
      background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px 20px;
      font-size: 14.5px; line-height: 1.6; color: var(--grey-700);
    }
    .book-points li strong { display: block; color: var(--dark); margin-bottom: 3px; }
    .book-note { font-size: 14px; color: var(--grey-500); }
    .book-calendar {
      background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
      box-shadow: 0 12px 32px rgba(18,36,53,0.08); overflow: hidden; padding: 8px;
    }
    @media (max-width: 900px) {
      .book-grid { grid-template-columns: 1fr; }
      .book-intro { position: static; }
    }

    /* ── case study page ── */
    .cs-glance { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
    .cs-logo img { width: 100%; max-width: 190px; }
    .cs-facts .info-card h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--grey-500); margin-bottom: 8px; }
    .cs-quote { border-left: 4px solid var(--orange); background: #fff7ed; border-radius: 0 12px 12px 0; padding: 24px 28px; margin: 40px 0 28px; }
    .cs-quote p { font-size: 18px; line-height: 1.55; color: var(--dark); margin: 0 0 12px; }
    .cs-quote-attr { font-size: 14px !important; color: var(--grey-500) !important; margin: 0 !important; }
    .cs-source { font-size: 13.5px; color: var(--grey-500); }
    @media (max-width: 760px) { .cs-glance { grid-template-columns: 1fr; } }

    /* ── resource request modal ── */
    .resource-cta {
      margin-top: 16px; align-self: flex-start; background: none; border: none; padding: 0;
      font-family: inherit; color: var(--orange-dark); font-weight: 600; font-size: 14.5px; cursor: pointer;
    }
    .resource-cta:hover { text-decoration: underline; }
    .res-modal { position: fixed; inset: 0; z-index: 600; display: flex; align-items: center; justify-content: center; padding: 20px; }
    .res-modal[hidden] { display: none; }
    .res-modal-overlay { position: absolute; inset: 0; background: rgba(14,24,36,0.6); backdrop-filter: blur(4px); opacity: 0; transition: opacity .2s ease; }
    .res-modal-card {
      position: relative; background: #fff; border-radius: 18px; padding: 36px;
      width: 100%; max-width: 440px; box-shadow: 0 24px 64px rgba(14,24,36,0.35);
      transform: translateY(14px) scale(.97); opacity: 0; transition: transform .2s ease, opacity .2s ease;
    }
    .res-modal.is-open .res-modal-overlay { opacity: 1; }
    .res-modal.is-open .res-modal-card { transform: none; opacity: 1; }
    .res-modal-card h3 { color: var(--dark); font-size: 22px; margin: 8px 0 8px; }
    .res-modal-sub { color: var(--grey-700); font-size: 14.5px; margin-bottom: 20px; }
    .res-modal-close {
      position: absolute; top: 14px; right: 16px; background: none; border: none; cursor: pointer;
      font-size: 26px; line-height: 1; color: var(--grey-400); padding: 4px;
    }
    .res-modal-close:hover { color: var(--dark); }
    .res-modal-form { display: flex; flex-direction: column; gap: 10px; }
    .res-modal-form input {
      padding: 12px 14px; font-family: inherit; font-size: 15px;
      border: 1px solid #d1d5db; border-radius: 10px; color: var(--dark);
    }
    .res-modal-form input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.15); }
    .res-modal-submit {
      padding: 12px 16px; font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer;
      background: var(--orange); color: #fff; border: none; border-radius: 10px; transition: background .18s;
    }
    .res-modal-submit:hover { background: var(--orange-dark); }
    .res-modal-submit:disabled { opacity: .6; cursor: default; }
    .res-modal-msg { min-height: 20px; font-size: 14px; color: var(--grey-500); margin: 10px 0 0; }
    .res-modal-msg.is-ok { color: #15803d; font-weight: 600; font-size: 15px; }
    .res-modal-msg.is-error { color: #b91c1c; }
    .res-modal-note { font-size: 12.5px; color: var(--grey-400); margin: 14px 0 0; }

    /* ============================
       PLATFORM OVERVIEW PAGE
    ============================ */
    .arch-row { display: grid; grid-template-columns: 1fr auto 1.2fr auto 1fr; gap: 18px; align-items: stretch; margin: 8px 0 32px; }
    .arch-col { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 24px; }
    .arch-col h3 { color: var(--dark); font-size: 16px; margin-bottom: 12px; }
    .arch-col ul { list-style: none; margin: 0; padding: 0; }
    .arch-col li { color: var(--grey-700); font-size: 14px; padding: 5px 0; border-bottom: 1px dashed #eef0f3; }
    .arch-col li:last-child { border-bottom: none; }
    .arch-axonyx { background: var(--dark); border-color: var(--dark); box-shadow: 0 14px 34px rgba(18,36,53,.22); }
    .arch-axonyx h3 { color: var(--orange-light); }
    .arch-axonyx li { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.08); }
    .arch-arrow { align-self: center; font-size: 28px; color: var(--orange); font-weight: 600; }
    @media (max-width: 860px) {
      .arch-row { grid-template-columns: 1fr; }
      .arch-arrow { transform: rotate(90deg); justify-self: center; }
    }
    .plat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
    .plat-card {
      display: flex; flex-direction: column; background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
      padding: 26px; text-decoration: none; transition: border-color .18s, box-shadow .18s, transform .18s;
    }
    .plat-card:hover { border-color: var(--orange); box-shadow: 0 12px 30px rgba(249,115,22,.12); transform: translateY(-2px); }
    .plat-card h3 { color: var(--dark); font-size: 18px; margin-bottom: 10px; }
    .plat-card p { color: var(--grey-700); font-size: 14.5px; line-height: 1.6; flex: 1; margin-bottom: 14px; }
    .plat-link { color: var(--orange-dark); font-weight: 600; font-size: 14px; }

    /* Platform - deployment mode cards */
    .deploy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-bottom: 28px; }
    .deploy-card {
      background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 30px;
      display: flex; flex-direction: column;
    }
    .deploy-card h3 { color: var(--dark); font-size: 21px; margin: 14px 0 10px; }
    .deploy-lede { color: var(--grey-700); font-size: 15px; margin-bottom: 16px; }
    .deploy-card ul { list-style: none; margin: 0 0 18px; padding: 0; flex: 1; }
    .deploy-card li {
      color: var(--grey-700); font-size: 14.5px; line-height: 1.55; padding: 7px 0 7px 26px;
      position: relative; border-bottom: 1px dashed #eef0f3;
    }
    .deploy-card li:last-child { border-bottom: none; }
    .deploy-card li::before {
      content: ''; position: absolute; left: 0; top: 12px; width: 15px; height: 15px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
    }
    .deploy-tag {
      align-self: flex-start; font-size: 12px; font-weight: 600; letter-spacing: .05em;
      text-transform: uppercase; border-radius: 999px; padding: 5px 12px;
    }
    .deploy-tag-cloud { background: #fff7ed; color: var(--orange-dark); border: 1px solid #fed7aa; }
    .deploy-tag-self  { background: #eef2f7; color: var(--dark); border: 1px solid #d6dee8; }
    .deploy-fit { font-size: 13.5px; color: var(--grey-500); margin: 0; border-top: 1px solid #eef0f3; padding-top: 14px; }

    /* Converse - browser-framed product showcase */
    .section-showcase .browser-frame {
      max-width: 1080px; margin: 8px auto 0; border-radius: 14px; overflow: hidden;
      border: 1px solid #d6dee8; background: #fff;
      box-shadow: 0 30px 70px rgba(18,36,53,0.18);
    }
    .browser-bar {
      display: flex; align-items: center; gap: 8px; padding: 11px 16px;
      background: #f3f5f8; border-bottom: 1px solid #e5e9ef;
    }
    .browser-dot { width: 11px; height: 11px; border-radius: 50%; background: #cbd3dd; }
    .browser-dot:nth-child(1) { background: #ff5f57; }
    .browser-dot:nth-child(2) { background: #febc2e; }
    .browser-dot:nth-child(3) { background: #28c840; }
    .browser-url {
      margin-left: 12px; flex: 1; max-width: 320px; background: #fff; border: 1px solid #e2e7ee;
      border-radius: 7px; padding: 5px 14px; font-size: 12.5px; color: var(--grey-500); text-align: center;
    }
    .browser-shot { display: block; width: 100%; height: auto; }

    /* ── Discover integrations logo strip ── */
    .int-group-title { text-align:center; color:var(--grey-500); font-size:12.5px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; margin:36px 0 18px; }
    .int-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(150px, 1fr)); gap:16px; max-width:960px; margin:0 auto; }
    .int-grid-cloud { max-width:640px; grid-template-columns:repeat(3, 1fr); }
    .int-logo-card {
      display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
      background:#fff; border:1px solid #e8ebef; border-radius:12px; padding:22px 14px; min-height:104px;
      color:#9aa4b2; transition:color .18s, border-color .18s, box-shadow .18s, transform .18s;
    }
    .int-logo-card:hover { color:#1f2937; border-color:#d3dae2; box-shadow:0 8px 22px rgba(18,36,53,.07); transform:translateY(-2px); }
    .int-logo { height:34px; width:auto; max-width:130px; display:block; }
    .int-wordmark { height:34px; display:flex; align-items:center; font-size:19px; font-weight:700; letter-spacing:-.01em; }
    .int-label { font-size:12px; color:var(--grey-400); font-weight:500; }
    .int-grid-cloud .int-logo { height:42px; }
    .int-note { text-align:center; color:var(--grey-500); font-size:14px; margin-top:28px; }
    @media (max-width:520px){ .int-grid-cloud { grid-template-columns:1fr; max-width:280px; } }

    /* text-only feature cards (no screenshot column) span full width */
    .control-feature:not(:has(.control-feature-screenshot)) { grid-template-columns: 1fr; }

    /* ── Discover GitHub repo card ── */
    .repo-card { max-width:720px; margin:0 auto; background:#fff; border:1px solid #e5e7eb; border-radius:16px; padding:28px; box-shadow:0 12px 30px rgba(18,36,53,.06); }
    .repo-head { display:flex; align-items:center; gap:16px; }
    .repo-gh { width:38px; height:38px; color:var(--dark); flex-shrink:0; }
    .repo-name { font-size:18px; font-weight:600; color:var(--dark); text-decoration:none; }
    .repo-name:hover { color:var(--orange-dark); }
    .repo-desc { margin:2px 0 0; color:var(--grey-500); font-size:14px; }
    .repo-badge { margin-left:auto; align-self:flex-start; font-size:12px; font-weight:600; color:#15803d; border:1px solid #bbf7d0; background:#f0fdf4; border-radius:999px; padding:3px 11px; }
    .repo-quick { margin-top:22px; }
    .repo-quick-label { display:block; font-size:12px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--grey-500); margin-bottom:8px; }
    .repo-code { background:#0e1c2b; color:#e2e8f0; border-radius:10px; padding:16px 18px; overflow-x:auto; font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:13.5px; line-height:1.7; margin:0; }
    .repo-code code { color:inherit; background:none; }
    .repo-actions { display:flex; align-items:center; gap:20px; margin-top:22px; flex-wrap:wrap; }
    .repo-link { color:var(--grey-700); font-size:14px; text-decoration:none; }
    .repo-link:hover { color:var(--orange-dark); }

    /* ── Free tool shout-out band ── */
    .section-freetool { background: #fff; }
    .freetool-band {
      display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center;
      background:
        linear-gradient(135deg, rgba(15,26,42,0.82) 0%, rgba(10,18,30,0.60) 55%, rgba(10,18,30,0.55) 100%),
        url("img/discover-band.webp") center/cover no-repeat,
        #0f1f30;
      border: 1px solid rgba(249,115,22,0.3); border-radius: 20px; padding: 40px 44px;
      box-shadow: 0 20px 50px rgba(18,36,53,0.18); position: relative; overflow: hidden;
    }
    .freetool-band::after {
      content: ''; position: absolute; top: -40%; right: -8%; width: 340px; height: 340px;
      background: radial-gradient(circle, rgba(249,115,22,0.18), transparent 70%); pointer-events: none;
    }
    .freetool-grade {
      width: 128px; height: 128px; border-radius: 50%; border: 3px solid var(--orange);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      box-shadow: 0 0 40px rgba(249,115,22,0.35) inset, 0 0 24px rgba(249,115,22,0.25);
      flex-shrink: 0;
    }
    .freetool-grade span { font-size: 56px; font-weight: 700; color: var(--orange-light); line-height: 1; }
    .freetool-grade small { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }
    .freetool-pill {
      display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: #fff; background: linear-gradient(to top right, var(--orange-dark), var(--orange-light));
      border-radius: 999px; padding: 5px 14px; margin-bottom: 14px;
    }
    .freetool-h { color: #fff; font-size: clamp(24px, 3vw, 34px); line-height: 1.15; font-weight: 600; margin-bottom: 12px; }
    .freetool-sub { color: rgba(255,255,255,0.75); max-width: 620px; margin-bottom: 22px; }
    .freetool-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
    .freetool-gh {
      display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85);
      text-decoration: none; font-weight: 600; font-size: 14px;
    }
    .freetool-gh svg { width: 20px; height: 20px; }
    .freetool-gh:hover { color: #fff; }
    .freetool-tags { color: rgba(255,255,255,0.5); font-size: 13px; margin: 18px 0 0; }
    @media (max-width: 720px) {
      .freetool-band { grid-template-columns: 1fr; gap: 24px; padding: 32px 26px; text-align: center; }
      .freetool-grade { margin: 0 auto; width: 100px; height: 100px; }
      .freetool-grade span { font-size: 44px; }
      .freetool-sub { margin-left: auto; margin-right: auto; }
      .freetool-actions { justify-content: center; }
    }

    /* Eyebrow was orange-on-orange (invisible) inside the orange CTA boxes */
    .cta-orange-grid .eyebrow { color: #fff; }

    /* ── Book demo: qualify form gating the calendar ── */
    .book-form-wrap { background:#fff; border:1px solid #e5e7eb; border-radius:16px; padding:32px; box-shadow:0 12px 32px rgba(18,36,53,.08); }
    .book-step { display:inline-block; font-size:12px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--orange-dark); margin-bottom:10px; }
    .book-step-done { color:#15803d; }
    .book-form-title { color:var(--dark); font-size:22px; margin-bottom:8px; }
    .book-form-sub { color:var(--grey-700); font-size:14.5px; margin-bottom:22px; }
    .book-form .bf-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
    .bf-group { display:flex; flex-direction:column; margin-bottom:16px; }
    .bf-group label { font-size:13px; font-weight:600; color:var(--dark); margin-bottom:6px; }
    .bf-group input, .bf-group select {
      padding:11px 13px; font-family:inherit; font-size:15px; border:1px solid #d1d5db; border-radius:9px; color:var(--dark); background:#fff;
    }
    .bf-group input:focus, .bf-group select:focus { outline:none; border-color:var(--orange); box-shadow:0 0 0 3px rgba(249,115,22,.15); }
    .btn-block { width:100%; justify-content:center; margin-top:6px; }
    .bf-msg { min-height:18px; font-size:13.5px; color:var(--grey-500); margin:10px 0 0; }
    .bf-msg.is-error { color:#b91c1c; }
    .bf-note { font-size:12.5px; color:var(--grey-400); margin:12px 0 0; text-align:center; }
    @media (max-width:520px){ .book-form .bf-row { grid-template-columns:1fr; } }
