
    :root {
      --bg: #232529;
      --bg-rgb: 35, 37, 41;
      --deep-bg: #0f1115;
      --surface-bg: #1c1f26;
      --ink: #f4f4f5;
      --ink-rgb: 244, 244, 245;
      --muted: rgba(var(--ink-rgb), 0.44);
      --faint: rgba(var(--ink-rgb), 0.06);
      --line: rgba(var(--ink-rgb), 0.08);
      --success: #0033ff;
      --teal: #14b8a6;
      --indigo: #6366f1;
      --rose: #f43f5e;
      --amber: #f59e0b;
      --blue: #3b82f6;
      --surface: rgba(var(--bg-rgb), 0.78);
      --shadow: 0 10px 18px rgba(0, 0, 0, 0.3), 0 2px 5px rgba(0, 0, 0, 0.2);
      --radius: 12px;

      /* ── Typography tokens ── */
      --font-body:    'Helvetica Neue', Helvetica, Arial, sans-serif;
      --font-heading: 'Playfair Display', serif;
      --font-mono:    'Space Mono', monospace;
      --title-rail-width: 3px;
      --title-rail-gap: 24px;
      --title-rail-offset: calc((var(--title-rail-width) + var(--title-rail-gap)) * -1);
    }

    /* ── Global font defaults ── */
    body {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 400;
      line-height: 1.15;
    }

    code, pre, .mono {
      font-family: var(--font-mono);
    }

    body.light-mode {
      --bg: #f8f8f7;
      --bg-rgb: 248, 248, 247;
      --deep-bg: #ffffff;
      --surface-bg: #ffffff;
      --ink: #070707;
      --ink-rgb: 7, 7, 7;
      --line: rgba(7, 7, 7, 0.12);
      --shadow: 0 10px 18px rgba(0, 0, 0, 0.075), 0 2px 5px rgba(0, 0, 0, 0.045);
    }

    @import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap');

    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      letter-spacing: -0.01em;
      overflow-x: hidden;
    }

    /* THE GLOBAL SHELL */
    .site-shell {
      width: 100%;
      max-width: 1720px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      border-left: 1px solid var(--line);
      border-right: 1px solid var(--line);
      min-height: 0;
    }

    /* INTERSECTION NODES (+) */
    .node-plus {
      position: absolute;
      width: 13px;
      height: 13px;
      z-index: 10;
      pointer-events: none;
      color: var(--line);
    }
    .node-plus::before, .node-plus::after {
      content: "";
      position: absolute;
      background: currentColor;
    }
    .node-plus::before { top: 6px; left: 0; width: 100%; height: 1px; }
    .node-plus::after { left: 6px; top: 0; width: 1px; height: 100%; }

    .node-tl { top: -7px; left: -7px; }
    .node-tr { top: -7px; right: -7px; }
    .node-bl { bottom: -7px; left: -7px; }
    .node-br { bottom: -7px; right: -7px; }

    [data-reveal] {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 800ms ease, transform 1000ms cubic-bezier(.19,1,.22,1);
    }

    [data-reveal].is-revealed {
      opacity: 1;
      transform: translateY(0);
    }

    [data-reveal-stagger] > * {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 600ms ease, transform 800ms cubic-bezier(.19,1,.22,1);
    }

    [data-reveal-stagger].is-revealed > * {
      opacity: 1;
      transform: translateY(0);
    }

    .is-revealed > *:nth-child(1) { transition-delay: 50ms; }
    .is-revealed > *:nth-child(2) { transition-delay: 150ms; }
    .is-revealed > *:nth-child(3) { transition-delay: 250ms; }
    .is-revealed > *:nth-child(4) { transition-delay: 350ms; }
    .is-revealed > *:nth-child(5) { transition-delay: 450ms; }
    .is-revealed > *:nth-child(6) { transition-delay: 550ms; }
    .is-revealed > *:nth-child(7) { transition-delay: 650ms; }
    .is-revealed > *:nth-child(8) { transition-delay: 750ms; }
    .is-revealed > *:nth-child(9) { transition-delay: 850ms; }
    .is-revealed > *:nth-child(10) { transition-delay: 950ms; }

    /* ── SHARED GRID CONTAINER ─────────────────────────────────────────── */
    .page-grid {
      width: min(calc(100% - 32px), 1200px);
      margin: 0 auto;
      box-sizing: border-box;
    }
    @media (min-width: 1536px) {
      .page-grid { max-width: 1320px; }
    }

    @media (min-width: 1920px) {
      .site-shell {
        max-width: 100%;
        border-left: 0;
        border-right: 0;
      }

      .page-grid {
        width: min(calc(100% - 120px), 1900px);
        max-width: 1900px;
      }
    }

    @media (min-width: 3440px) {
      .site-shell {
        max-width: 100%;
      }

      .page-grid {
        width: min(calc(100% - 160px), 2400px);
        max-width: 2400px;
      }
    }

    /* ── Prevent media overflow ─────────────────────────────────────────── */
    img, iframe, video { max-width: 100%; }

    .site-nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(var(--bg-rgb), 0.95);
      backdrop-filter: blur(16px);
    }

    .nav-inner {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      min-height: 100px;
      padding-top: 55px;
      padding-bottom: 12px;
      position: relative;
    }

    .brand {
      display: inline-flex;
      align-items: center;
    }

    .brand img {
      height: 56px;
      width: auto;
      display: block;
    }

    .brand-mark {
      width: 22px;
      height: 22px;
      border: 1px solid rgba(0, 51, 255, 0.5);
      border-radius: 6px;
      display: grid;
      place-items: center;
      background: rgba(0, 51, 255, 0.15);
      box-shadow: inset 0 1px 0 rgba(0, 51, 255, 0.3);
    }

    .brand-mark::before {
      content: "";
      width: 8px;
      height: 8px;
      border: 1px solid #0033ff;
      transform: rotate(45deg);
    }

    .nav-links {
      display: flex;
      align-items: flex-end;
      gap: 96px;
      font-size: 19px;
      font-weight: 400;
      color: #0033ff;
      position: absolute;
      left: 55%;
      transform: translateX(-50%);
      bottom: 12px;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .nav-links a {
      color: #0033ff;
      text-decoration: none;
      letter-spacing: 0.01em;
      line-height: 1;
      white-space: nowrap;
    }

    .nav-links a:hover,
    .nav-links a.active {
      text-decoration: underline;
    }

    .button-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .btn {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 16px;
      border: 1px solid rgba(var(--ink-rgb), 0.14);
      border-radius: 8px;
      background: linear-gradient(180deg, var(--surface-bg), var(--bg));
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
      color: var(--ink);
      text-decoration: none;
      font-size: 13px;
      font-weight: 700;
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .btn:hover {
      transform: translateY(-1px);
      border-color: rgba(var(--ink-rgb), 0.22);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .btn.primary {
      background: #0033ff;
      color: #fff;
      border-color: #0033ff;
      box-shadow: 0 10px 22px rgba(0, 51, 255, 0.3);
    }

    .hero {
      min-height: auto;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      gap: 60px;
      padding-top: 40px;
      padding-bottom: 100px;
      margin-top: 0;
      border-bottom: 1px solid var(--line);
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      flex: 1;
      max-width: 50%;
      padding-left: 27px;
    }

    .hero-copy h1 {
      display: grid;
      grid-template-columns: var(--title-rail-width) var(--title-rail-gap) minmax(0, 1fr);
      margin: 0;
      font-size: clamp(32px, 4vw, 56px);
      line-height: 1.1;
      font-weight: 400;
      letter-spacing: -0.02em;
      border-left: 0;
      padding-left: 0;
      margin-left: var(--title-rail-offset);
      font-family: 'Playfair Display', serif;
    }

    .hero-copy h1::before {
      content: "";
      display: block;
      grid-column: 1;
      align-self: stretch;
      width: var(--title-rail-width);
      background: var(--success);
    }

    .hero-title-text {
      grid-column: 3;
      min-width: 0;
    }

    .hero-copy h1 .title-accent {
      color: var(--success);
    }

    .hero-subtitle {
      margin: 36px 0 0 var(--title-rail-offset);
      color: var(--ink);
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 19px;
      line-height: 1.3;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-copy p {
      max-width: 100%;
      margin: 28px 0 0;
      margin-left: var(--title-rail-offset);
      color: rgba(var(--ink-rgb), 0.62);
      font-size: 19px;
      line-height: 1.6;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-weight: 400;
    }

    .hero-copy p .highlight {
      display: block;
      font-size: 26px;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .hero-copy p strong {
      color: var(--ink);
      font-weight: 700;
    }

    .hero .button-row {
      margin-top: 40px;
      margin-left: var(--title-rail-offset);
      justify-content: flex-start;
    }

    .hero-visual {
      position: relative;
      flex: 1;
      max-width: 50%;
      min-width: 0;
      margin: 0;
      overflow: hidden;
    }

    .hero-animation-panel {
      position: relative;
      flex: 1;
      max-width: 50%;
      min-width: 0;
      padding-top: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    .hero-animation-frame {
      width: min(100%, 580px);
      height: 510px;
      border: 0;
      display: block;
      background: transparent;
    }

    .hero-animation-mobile {
      display: none;
      width: 100%;
      margin: 28px 0 0;
      overflow: hidden;
      position: relative;
    }

    .hero-animation-mobile iframe {
      width: 100%;
      border: 0;
      display: block;
      background: transparent;
    }

    @media (max-width: 1023px) {
      .hero-animation-mobile {
        height: 510px !important;
      }

      .hero-animation-mobile iframe {
        height: 510px !important;
      }
    }

    .connection-stage {
      position: absolute;
      top: 0;
      left: 0;
      width: 800px;
      height: 700px;
      transform: scale(0.73);
      transform-origin: top left;
      display: grid;
      place-items: center;
      isolation: isolate;
    }

    .platform-core {
      position: relative;
      z-index: 110;
      width: 140px;
      height: 140px;
      background: var(--surface-bg);
      border: 1px solid rgba(var(--ink-rgb), 0.12);
      border-radius: 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 0 30px rgba(0,0,0,0.05);
      animation: corePulse 4s ease-in-out infinite;
      transform: translateZ(0);
    }

    @keyframes corePulse {
      0%, 100% { transform: scale(1); box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 0 30px rgba(0,0,0,0.05); }
      50% { transform: scale(1.03); box-shadow: 0 25px 60px rgba(0,0,0,0.18), 0 0 50px rgba(0,0,0,0.1); }
    }

    .core-icon {
      width: 32px;
      height: 32px;
      color: var(--ink);
    }

    .core-label {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .connection-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .service-node {
      position: absolute;
      z-index: 100;
      padding: 10px 18px;
      background: var(--surface-bg);
      border: 1px solid rgba(var(--ink-rgb), 0.08);
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 500;
      white-space: nowrap;
      transform: translateZ(0);
    }

    .service-node {
      position: absolute;
      background: var(--surface-bg);
      padding: 8px 16px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--ink);
      white-space: nowrap;
      z-index: 120;
      transform: translate(-50%, -50%); /* Center on coordinates */
      transition: all 0.4s ease;
      border: 1px solid transparent;
      animation: nodePulse 10s linear infinite;
    }

    .service-node.node-active {
      border-color: var(--success) !important;
      box-shadow: 0 12px 30px rgba(0, 51, 255, 0.22), 0 0 0 3px rgba(0, 51, 255, 0.12) !important;
      transform: translate(-50%, -50%) scale(1.08) !important;
      transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
    }

    /* Perfect circle: 10 nodes × 36° — R=290, centre=(400,350) in SVG 800×700 */
    .node-1  { top:  8.6%; left: 50.0%; }  /* 0°   (400, 60)  */
    .node-2  { top: 20%; left: 79%; }  /* 36°  adjusted right  */
    .node-3  { top: 37.1%; left: 84.5%; }  /* 72°  (676,260)  */
    .node-4  { top: 62.9%; left: 84.5%; }  /* 108° (676,440)  */
    .node-5  { top: 83.6%; left: 71.3%; }  /* 144° (570,585)  */
    .node-6  { top: 91.4%; left: 50.0%; }  /* 180° (400,640)  */
    .node-7  { top: 83.6%; left: 28.8%; }  /* 216° (230,585)  */
    .node-8  { top: 62.9%; left: 15.5%; }  /* 252° (124,440)  */
    .node-9  { top: 37.1%; left: 15.5%; }  /* 288° (124,260)  */
    .node-10 { top: 20%; left: 21%; }  /* 324° adjusted left   */

    .node-1 .check { background: #10b981; border-color: #10b981; } /* Emerald */
    .node-2 .check { background: #6366f1; border-color: #6366f1; } /* Indigo */
    .node-3 .check { background: #f43f5e; border-color: #f43f5e; } /* Rose */
    .node-4 .check { background: #f59e0b; border-color: #f59e0b; } /* Amber */
    .node-5 .check { background: #3b82f6; border-color: #3b82f6; } /* Blue */
    .node-6 .check { background: #8b5cf6; border-color: #8b5cf6; } /* Violet */
    .node-7 .check { background: #f97316; border-color: #f97316; } /* Orange */
    .node-8 .check { background: #06b6d4; border-color: #06b6d4; } /* Cyan */
    .node-9 .check { background: #ec4899; border-color: #ec4899; } /* Pink */
    .node-10 .check { background: #7c3aed; border-color: #7c3aed; } /* Deep Purple */

    .service-node .check {
      color: #fff;
      width: 14px;
      height: 14px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      flex: 0 0 14px;
    }

    .connection-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    }

    .conn-path {
      fill: none;
      stroke: rgba(var(--ink-rgb), 0.06);
      stroke-width: 1.5;
      stroke-dasharray: 4 4;
    }

    /* Clock hand — tapered polygon, no glow */
    #clock-hand-group polygon {
      fill: var(--ink);
    }
    #clock-hand-group .pivot {
      fill: var(--ink);
    }

    .page-section {
      padding: 100px 10vw;
      position: relative;
    }

    /* ANIMATED DASH BORDER */
    .dash-border {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background-image: linear-gradient(to right, var(--line) 50%, transparent 50%);
      background-size: 20px 1px;
      animation: marchingAnts 1s linear infinite;
    }

    @keyframes marchingAnts {
      from { background-position: 0 0; }
      to { background-position: 20px 0; }
    }

    .section-grid {
      display: grid;
      grid-template-columns: 140px minmax(0, 1fr);
      gap: 48px;
      align-items: start;
    }

    .section-kicker-wrap {
      display: flex;
      align-items: center;
      gap: 24px;
      position: sticky;
      top: 140px;
    }

    .section-label {
      font-size: 9px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--muted);
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      white-space: nowrap;
    }

    .section-kicker {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 11px;
      font-weight: 500;
      color: var(--ink);
      padding: 12px 0;
      border-left: 1px solid var(--line);
      margin-left: 10px;
    }

    .section-heading {
      margin: 0;
      font-size: clamp(40px, 5.2vw, 72px);
      line-height: 0.98;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    /* SCROLLABLE ROW */
    .card-grid-container {
      position: relative;
      margin-top: 48px;
    }

    .card-grid {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      padding: 10px 5vw 40px;
      margin: 0 -5vw; /* Bleed to screen edges */
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .card-grid::after {
      content: "";
      flex: 0 0 100px; /* Large buffer at the end to prevent right clipping */
    }

    .card-grid::-webkit-scrollbar {
      display: none; /* Hide scrollbar Chrome/Safari */
    }

    .info-card {
      flex: 0 0 340px;
      scroll-snap-align: start;
      min-height: auto;
      padding: 32px 32px 40px;
      background: var(--bg);
      border: 1px solid rgba(var(--ink-rgb), 0.06);
      border-radius: 16px;
      transition: all 400ms cubic-bezier(.19,1,.22,1);
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .info-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.06);
      border-color: rgba(7, 7, 7, 0.1);
    }

    .info-card-icon {
      width: 124px;
      height: 124px;
      margin-bottom: 32px;
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .info-card-icon svg {
      width: 100%;
      height: 100%;
    }

    .info-card h3 {
      margin: 0 0 8px;
      font-size: 19px;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .info-card p {
      margin: 0 0 24px;
      color: rgba(var(--ink-rgb), 0.54);
      font-size: 15px;
      line-height: 1.5;
      flex-grow: 1;
    }

    .scroll-nav {
      position: absolute;
      top: -64px;
      right: 0;
      display: flex;
      gap: 12px;
    }

    .scroll-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(var(--ink-rgb), 0.1);
      background: var(--surface-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      color: var(--ink);
    }

    .scroll-btn:hover {
      background: var(--success);
      color: #fff;
      border-color: var(--success);
    }

    @media (max-width: 980px) {
      .scroll-nav { display: none; }
      .info-card { flex: 0 0 280px; }
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      text-decoration: none;
      margin-top: auto;
      transition: gap 200ms ease;
    }

    .card-link:hover { gap: 10px; }
    .card-link::after { content: "→"; font-size: 16px; }

    .info-card:hover {
      background: var(--surface-bg);
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    }

    .info-card:hover::before {
      opacity: 1;
    }

    .info-card-icon {
      width: 24px;
      height: 24px;
      margin-bottom: 20px;
      color: var(--ink);
    }

    .info-card h3 {
      margin: 0 0 12px;
      font-size: 17px;
      font-weight: 500;
    }

    .info-card p {
      margin: 0;
      color: rgba(var(--ink-rgb), 0.60);
      font-size: 14px;
      line-height: 1.5;
    }

    .video-container {
      margin-top: 54px;
      width: 100%;
      min-height: 520px;
      display: grid;
      place-items: center;
      position: relative;
      background: var(--bg); /* Match video background */
      border-radius: 24px;
      border: 1px solid var(--line);
      overflow: hidden;
      transition: all 800ms ease;
    }

    .video-container.wow-mode {
      background: var(--surface-bg);
      border-color: rgba(0, 51, 255, 0.4);
      box-shadow: inset 0 0 50px rgba(0, 51, 255, 0.05);
    }

    .video-container.wow-mode {
      background: var(--surface-bg);
      border-color: rgba(0, 51, 255, 0.4);
      box-shadow: 0 0 40px rgba(0, 51, 255, 0.15), inset 0 0 60px rgba(0, 51, 255, 0.05);
    }

    .flux-line {
      position: absolute;
      background: linear-gradient(90deg, transparent, var(--success), transparent);
      height: 1px;
      width: 150px;
      opacity: 0;
      z-index: 5; /* Moved above grid */
      pointer-events: none;
    }

    .flux-line.v {
      width: 1px;
      height: 150px;
      background: linear-gradient(180deg, transparent, var(--success), transparent);
    }

    .wow-mode .flux-line {
      opacity: 0.6;
      animation: fluxMove 3s linear infinite;
    }

    @keyframes fluxMove {
      0% { transform: translate(-100%, -100%); }
      100% { transform: translate(500%, 500%); }
    }

    .scanline {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent, rgba(0, 51, 255, 0.03) 50%, transparent);
      background-size: 100% 4px;
      pointer-events: none;
      z-index: 6; /* Highest layer */
      opacity: 0;
    }

    .wow-mode .scanline {
      opacity: 1;
      animation: scan 8s linear infinite;
    }

    @keyframes scan {
      from { transform: translateY(-100%); }
      to { transform: translateY(100%); }
    }

    .transformation-flash {
      position: absolute;
      inset: 0;
      background: #0033ff;
      opacity: 0;
      pointer-events: none;
      z-index: 20;
    }

    .transformation-flash.active {
      animation: flashEffect 800ms ease-out forwards;
    }

    @keyframes flashEffect {
      0% { opacity: 0.8; }
      100% { opacity: 0; }
    }

    .system-status {
      position: absolute;
      top: 24px;
      right: 32px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--muted);
      opacity: 0;
      transform: translateX(10px);
      transition: all 600ms ease;
      z-index: 10;
    }

    .wow-mode .system-status {
      opacity: 1;
      transform: translateX(0);
      color: var(--success);
    }

    .status-pulse {
      width: 6px;
      height: 6px;
      background: currentColor;
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(0, 51, 255, 0.1);
      animation: statusBlink 1s infinite;
    }

    @keyframes statusBlink {
      50% { opacity: 0.4; }
    }

    .timeline-rail {
      position: absolute;
      bottom: 40px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: rgba(var(--ink-rgb), 0.08);
      z-index: 5;
    }

    .timeline-progress {
      position: absolute;
      top: -1px;
      left: 0;
      height: 3px;
      background: var(--success);
      width: 0%;
      box-shadow: 0 0 15px var(--success);
    }

    .timeline-dot {
      position: absolute;
      top: -4px;
      right: -5px;
      width: 10px;
      height: 10px;
      background: var(--success);
      border-radius: 50%;
      box-shadow: 0 0 20px var(--success), 0 0 40px var(--success);
    }

    .timeline-labels {
      position: absolute;
      bottom: 12px;
      left: 10%;
      right: 10%;
      display: flex;
      justify-content: space-between;
      z-index: 5;
    }

    .timeline-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(var(--ink-rgb), 0.3);
      transition: color 300ms ease, transform 300ms ease;
    }

    .timeline-label.is-active {
      color: var(--ink);
      font-weight: 600;
      transform: translateY(-2px);
    }

    #journey-video {
      width: 100%;
      height: 100%;
      display: block;
      position: relative;
      z-index: 3;
      object-fit: cover; /* Ensures no white space on sides */
    }

    .loader-overlay {
      position: absolute;
      inset: 0;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: opacity 600ms ease;
    }

    .loader-bar {
      width: 200px;
      height: 2px;
      background: var(--line);
      border-radius: 2px;
      overflow: hidden;
      margin-top: 16px;
    }

    .loader-progress {
      width: 0%;
      height: 100%;
      background: var(--success);
      transition: width 200ms ease;
    }

    .user-cloud,
    .metric-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 34px;
    }

    .chip {
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      border: 1px solid rgba(var(--ink-rgb), 0.12);
      border-radius: 10px;
      padding: 0 16px;
      background: var(--surface-bg);
      box-shadow: 0 4px 10px rgba(0,0,0,0.04);
      font-size: 14px;
      font-weight: 500;
      color: rgba(var(--ink-rgb), 0.72);
      transition: all 300ms ease;
      cursor: default;
    }

    .chip:hover {
      transform: translateY(-2px) scale(1.05);
      border-color: var(--success);
      color: var(--ink);
      box-shadow: 0 8px 16px rgba(0, 51, 255, 0.1);
    }

    .cta-band {
      padding: 106px 10vw;
      text-align: center;
      border-bottom: 1px solid var(--line);
    }

    .cta-band h2 {
      margin: 0 auto;
      max-width: 820px;
      font-size: clamp(48px, 6.2vw, 86px);
      line-height: 0.96;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    .cta-band p {
      max-width: 760px;
      margin: 22px auto 0;
      color: rgba(var(--ink-rgb), 0.66);
      font-size: 17px;
      line-height: 1.55;
    }

    .cta-band .button-row {
      justify-content: center;
      margin-top: 34px;
    }

    .footer {
      min-height: 150px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 0 5vw;
      color: rgba(var(--ink-rgb), 0.58);
      font-size: 14px;
    }

    /* ══════════════════════════════════════════════════════════════════════
       RESPONSIVE BREAKPOINTS — mobile-first min-width approach
       ══════════════════════════════════════════════════════════════════════ */

    
    /* ── Hero grid layout ─────────────────────────────────────────────── */
    .hero-grid {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 60px;
    }
    /* ── Nav links absolute positioning only on desktop ─────────────────── */
    @media (max-width: 1023px) {
      .page-grid,
      .hero-grid,
      .nav-inner {
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
      }
      .nav-inner { position: relative; }
      .hero {
        flex-direction: column;
        margin-top: 0;
      }
      .hero-grid {
        align-items: stretch;
      }
      .hero-copy {
        max-width: 100%;
        width: 100%;
        min-width: 0;
        padding-left: 0;
      }
      .hero-copy h1,
      .hero-subtitle,
      .hero-copy p,
      .hero .button-row {
        margin-left: 0;
      }
      .hero-copy h1 {
        grid-template-columns: var(--title-rail-width) var(--title-rail-gap) minmax(0, 1fr);
      }
      .hero-copy p,
      .hero-subtitle {
        max-width: 100%;
        overflow-wrap: break-word;
      }
      .hero-animation-mobile,
      .hero-animation-mobile iframe {
        max-width: 100%;
      }
    }
/* ── 0–479px : mobile ─────────────────────────────────────────────── */
    @media (max-width: 479px) {
      .page-grid,
      .hero-grid,
      .nav-inner {
        width: calc(100vw - 48px) !important;
        max-width: calc(100vw - 48px) !important;
      }
      .site-nav { height: 60px; }
      .nav-inner {
        padding: 10px 0;
        min-height: 60px;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
      }
      .brand img { height: 36px; }
      .nav-links { display: none !important; }
      .hamburger { display: flex !important; }
      .site-nav .button-row {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        flex-wrap: nowrap;
        gap: 8px;
      }
      #theme-toggle {
        display: none !important;
      }
      .hamburger {
        display: flex !important;
        flex: 0 0 32px;
        width: 32px;
      }
      .button-row {
        flex-wrap: nowrap;
      }

      
      .hero {
        padding: 30px 0 44px;
        gap: 24px;
      }
      .hero-grid { flex-direction: column; gap: 24px; }
      .hero-copy { max-width: 100%; flex: none; }
      .hero-copy h1 { font-size: clamp(26px, 8vw, 36px); }
      .hero-copy p {
        max-width: calc(100vw - 48px);
        font-size: 15px;
      }
      .hero-subtitle {
        font-size: 12px;
        letter-spacing: 0.04em;
        line-height: 1.35;
      }
      .hero-animation-panel { display: none; }
      .hero-animation-mobile { display: block; height: 500px; }
      .hero-animation-mobile iframe { width: 100%; height: 500px; }
      
    }

    /* ── 480–767px : large mobile ─────────────────────────────────────── */
    @media (min-width: 480px) and (max-width: 767px) {
      .site-nav { height: 64px; }
      .nav-inner {
        padding: 12px 0;
        min-height: 64px;
        align-items: center;
        padding-top: 12px;
        padding-bottom: 12px;
      }
      .brand img { height: 40px; }
      .nav-links { display: none !important; }
      .hamburger { display: flex !important; }

      .hero {
        flex-direction: column;
        margin-top: 0;
        padding: 32px 0 56px;
        gap: 28px;
      }
      .hero-copy { max-width: 100%; flex: none; }
      .hero-copy h1 { font-size: clamp(28px, 7vw, 40px); }
      .hero-copy p { font-size: 16px; }
      .hero-subtitle {
        font-size: 13px;
        letter-spacing: 0.05em;
      }
      .hero-animation-panel { display: none; }
      .hero-grid { flex-direction: column; gap: 28px; }
      .hero-animation-mobile { display: block; }
      .hero-animation-mobile iframe { width: 100%; }
    }

    /* ── 768–1023px : tablet ──────────────────────────────────────────── */
    @media (min-width: 768px) and (max-width: 1023px) {
      .site-nav { height: 70px; }
      .nav-inner {
        align-items: center;
        min-height: 70px;
        padding: 16px 0;
        padding-top: 16px;
        padding-bottom: 12px;
      }
      .brand img { height: 48px; }
      .nav-links { display: none !important; }
      .hamburger { display: flex !important; }

      .hero {
        flex-direction: column;
        margin-top: 0;
        padding: 40px 0 64px;
        gap: 36px;
      }
      .hero-copy { max-width: 100%; flex: none; }
      .hero-copy h1 { font-size: clamp(32px, 5vw, 48px); }
      .hero-copy p { font-size: 17px; }
      .hero-animation-panel { display: none; }
      .hero-grid { flex-direction: column; gap: 36px; }
      .hero-animation-mobile { display: block; }
      .hero-animation-mobile iframe { width: 100%; }
    }

    /* ── 1024–1279px : small laptop ───────────────────────────────────── */
    @media (min-width: 1024px) and (max-width: 1279px) {
      .brand img { height: 52px; }
      .nav-links { display: flex !important; gap: 48px; font-size: 16px; }
      .hamburger { display: none !important; }
      .nav-inner { min-height: 80px; padding-top: 24px; }

      .hero {
        flex-direction: row;
        min-height: auto;
        margin-top: 0;
        padding: 40px 0 80px;
        gap: 40px;
      }
      .hero-copy { flex: 1; max-width: 50%; }
      .hero-copy h1 { font-size: clamp(36px, 3.5vw, 48px); }
      .hero-animation-panel,
      .inner-page-panel { display: flex; flex: 1; max-width: 50%; min-width: 0; }
      .hero-animation-mobile { display: none; }
      .hero-grid { flex-direction: row; gap: 40px; }
      .hero-animation-frame { width: min(100%, 480px); height: 510px; }
    }

    /* ── 1280–1535px : desktop ────────────────────────────────────────── */
    @media (min-width: 1280px) and (max-width: 1535px) {
      .brand img { height: 60px; }
      .nav-links { display: flex !important; gap: 72px; font-size: 18px; }
      .hamburger { display: none !important; }
      .nav-inner { min-height: 100px; padding-top: 40px; }

      .hero {
        min-height: auto;
        margin-top: 0;
        padding: 40px 0 100px;
        gap: 60px;
      }
      .hero-copy h1 { font-size: clamp(40px, 3.5vw, 56px); }
      .hero-animation-panel,
      .inner-page-panel { display: flex; flex: 1; max-width: 50%; min-width: 0; }
      .hero-animation-mobile { display: none; }
      .hero-grid { flex-direction: row; gap: 60px; }
      .hero-animation-frame { width: min(100%, 540px); height: 510px; }
    }

    /* ── 1536px+ : large desktop ──────────────────────────────────────── */
    @media (min-width: 1536px) {
      .brand img { height: 68px; }
      .nav-links { display: flex !important; gap: 96px; font-size: 19px; }
      .hamburger { display: none !important; }
      .nav-inner { min-height: 110px; padding-top: 55px; }

      .hero {
        min-height: auto;
        margin-top: 0;
        padding-top: 48px;
        gap: 80px;
      }
      .hero-copy h1 { font-size: clamp(44px, 3vw, 60px); }
      .hero-animation-panel,
      .inner-page-panel { display: flex; flex: 1; max-width: 50%; min-width: 0; }
      .hero-animation-mobile { display: none; }
      .hero-grid { flex-direction: row; gap: 80px; }
      .hero-animation-frame { width: min(100%, 580px); height: 510px; }
    }

    @media (min-width: 1920px) {
      .nav-links {
        gap: clamp(110px, 7vw, 180px);
        font-size: 21px;
      }

      .hero {
        padding-top: 72px;
      }

      .hero-grid {
        gap: clamp(120px, 9vw, 260px);
      }

      .hero-copy {
        max-width: 46%;
      }

      .brand img {
        height: 78px;
      }

      .hero-copy h1 {
        font-size: clamp(64px, 3.2vw, 82px);
      }

      .hero-subtitle {
        font-size: 22px;
      }

      .hero-copy p {
        max-width: 980px;
        font-size: 22px;
      }

      .hero .button-row {
        margin-top: 48px;
      }

      .hero .btn.primary {
        min-height: 64px !important;
        padding: 0 44px !important;
        font-size: 21px !important;
      }

      .hero-animation-panel,
      .inner-page-panel {
        max-width: 54%;
      }

      .hero-animation-frame {
        width: min(100%, 860px);
        height: 632px;
      }
    }

    @media (min-width: 3440px) {
      .hero-grid {
        gap: clamp(180px, 11vw, 360px);
      }

      .brand img {
        height: 86px;
      }

      .hero-copy h1 {
        font-size: clamp(76px, 2.4vw, 96px);
      }

      .hero-subtitle {
        font-size: 24px;
      }

      .hero-copy p {
        max-width: 1120px;
        font-size: 24px;
      }

      .hero .btn.primary {
        min-height: 70px !important;
        padding: 0 52px !important;
        font-size: 23px !important;
      }

      .hero-animation-frame {
        width: min(100%, 960px);
        height: 720px;
      }
    }
    #nav-close { display: none; }

    .mob-nav-link {
      padding: 20px 32px;
      font-size: 19px;
      font-weight: 400;
      color: #0033ff;
      text-decoration: none !important;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      background: var(--bg);
      display: block;
    }

    .mob-nav-link:hover,
    .mob-nav-link:active,
    .mob-nav-link.active {
      text-decoration: underline !important;
    }
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: #0033ff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger.is-open span:nth-child(1) { transform: none; }
    .hamburger.is-open span:nth-child(2) { opacity: 1; }
    .hamburger.is-open span:nth-child(3) { transform: none; }

    @media (max-width: 1023px) {
      .hamburger { display: flex; }

      /* Hide hamburger when menu is open — the X inside the dropdown handles closing */
      .hamburger.is-open { display: none; }

      .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        z-index: 9999;
        transform: none;
        padding-top: 80px;
      }

      .nav-links.is-open {
        display: flex;
      }

      #nav-close {
        display: flex !important;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 32px;
        color: #0033ff;
        line-height: 1;
        padding: 4px 8px;
        font-weight: bold;
      }

      .nav-links a {
        font-size: 18px;
        padding: 16px 24px;
        width: 100%;
        border-bottom: 1px solid rgba(0,51,255,0.1);
        background: #ffffff;
        box-sizing: border-box;
        color: #0033ff;
        text-decoration: none;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }

      .nav-links a:hover,
      .nav-links a.active {
        text-decoration: underline;
      }

      .nav-links a:last-child {
        border-bottom: none;
      }
    }

  

    /* ── Capital Partners Section ──────────────────────────────────────── */
    .cp-page-shell {
      border-bottom: 1px solid var(--line);
    }

    .inner-page-copy {
      min-width: 0;
    }

    .inner-page-panel {
      display: none;
      flex: 1;
      max-width: 50%;
      min-width: 0;
    }

    .cp-page-hero .hero-animation-panel {
      padding-top: 0;
      transform: translateY(clamp(-56px, -3vw, -28px));
    }

    .cp-page-hero .hero-animation-frame {
      width: min(100%, 720px);
      height: 650px;
    }

    .cp-page-hero .hero-animation-mobile,
    .cp-page-hero .hero-animation-mobile iframe {
      height: 430px !important;
    }

    .site-shell > .hero:not(.cp-page-hero):not(.inner-page-hero) .hero-animation-panel {
      padding-top: 0;
      transform: translateY(clamp(-56px, -3vw, -28px));
    }

    .cp-page-hero .page-grid,
    .page-shell .page-grid,
    .cp-grid,
    .cp-card {
      min-width: 0;
    }

    .cp-intro,
    .cp-highlight,
    .cp-card-title,
    .cp-card-text {
      max-width: 100%;
      overflow-wrap: break-word;
      word-break: normal;
    }

    .cp-section {
      border-bottom: 1px solid var(--line);
      padding: 100px 0;
    }

    .cp-header {
      margin-bottom: 32px;
    }

    .cp-kicker {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--success);
      font-family: var(--font-body);
      margin-bottom: 20px;
    }

    .cp-heading {
      margin: 0;
      font-size: clamp(22px, 2.4vw, 34px);
      font-weight: 400;
      line-height: 1.35;
      letter-spacing: -0.01em;
      color: var(--ink);
      font-family: var(--font-heading);
      max-width: 820px;
    }

    .cp-intro {
      font-size: 19px;
      line-height: 1.7;
      color: rgba(var(--ink-rgb), 0.62);
      font-family: var(--font-body);
      font-weight: 400;
      max-width: 860px;
      margin: 0 0 32px;
    }

    .cp-highlight {
      color: rgba(var(--ink-rgb), 0.62);
      font-family: var(--font-body);
      font-size: 19px;
      font-weight: 400;
      line-height: 1.6;
      margin: 28px 0 0;
      max-width: 860px;
      padding-left: 0;
      border-left: 0;
    }

    .cp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      border: 1px solid var(--line);
      border-radius: 16px;
      overflow: hidden;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .cp-card {
      padding: 36px 32px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      transition: background 0.3s ease;
    }

    .cp-card:hover {
      background: rgba(var(--ink-rgb), 0.03);
    }

    .cp-card:nth-child(3n) {
      border-right: none;
    }

    .cp-card:nth-child(4),
    .cp-card:nth-child(5),
    .cp-card:nth-child(6) {
      border-bottom: none;
    }

    .cp-card-icon {
      width: 36px;
      height: 36px;
      color: var(--success);
      margin-bottom: 20px;
    }

    .cp-card-icon svg {
      width: 100%;
      height: 100%;
    }

    .cp-card-title {
      margin: 0 0 10px;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--ink);
      font-family: var(--font-body);
    }

    .cp-card-text {
      margin: 0;
      font-size: 14px;
      line-height: 1.6;
      color: rgba(var(--ink-rgb), 0.6);
      font-family: var(--font-body);
      font-weight: 400;
    }

    @media (max-width: 980px) {
      .cp-section { padding: 72px 0; }
      .cp-grid { grid-template-columns: repeat(2, 1fr); }
      .cp-card:nth-child(3n) { border-right: 1px solid var(--line); }
      .cp-card:nth-child(2n) { border-right: none; }
      .cp-card:nth-child(4),
      .cp-card:nth-child(5),
      .cp-card:nth-child(6) { border-bottom: 1px solid var(--line); }
      .cp-card:nth-child(5),
      .cp-card:nth-child(6) { border-bottom: none; }
    }

    @media (max-width: 640px) {
      .cp-page-shell .page-grid,
      .page-shell .page-grid {
        width: calc(100vw - 48px) !important;
        max-width: calc(100vw - 48px) !important;
      }
      .cp-intro {
        font-size: 16px;
        line-height: 1.65;
      }
      .cp-highlight {
        font-size: 18px;
      }
      .cp-section { padding: 56px 0; }
      .cp-grid { grid-template-columns: 1fr; }
      .cp-card { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
      .cp-card:last-child { border-bottom: none !important; }
      .cp-heading { font-size: clamp(20px, 5vw, 28px); }
    }

    @media (max-width: 520px) {
      .cp-page-shell .page-grid,
      .page-shell .page-grid {
        width: min(calc(100vw - 48px), 342px) !important;
        max-width: min(calc(100vw - 48px), 342px) !important;
        margin-left: 24px !important;
        margin-right: auto !important;
      }
    }

    /* ── Capital Partners Section Animations ───────────────────────────── */

    /* Kicker slides up */
    .cp-kicker {
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 600ms ease, transform 600ms cubic-bezier(.19,1,.22,1);
    }
    .cp-kicker.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Intro fades in */
    .cp-intro {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 700ms ease 100ms, transform 700ms cubic-bezier(.19,1,.22,1) 100ms;
    }
    .cp-intro.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Highlight line — border color fades in, no reflow */
    .cp-highlight {
      opacity: 0;
      transform: translateY(12px);
      border-left: 3px solid transparent;
      transition: opacity 600ms ease 200ms,
                  transform 600ms cubic-bezier(.19,1,.22,1) 200ms,
                  border-left-color 500ms ease 600ms;
    }
    .cp-highlight.is-visible {
      opacity: 1;
      transform: translateY(0);
      border-left-color: var(--success);
    }

    /* Cards stagger in */
    .cp-card {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 600ms ease, transform 700ms cubic-bezier(.19,1,.22,1),
                  background 0.3s ease;
    }
    .cp-card.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Icon pulse on card hover */
    .cp-card:hover .cp-card-icon svg {
      animation: iconPulse 0.6s ease;
    }

    @keyframes iconPulse {
      0%   { transform: scale(1); }
      40%  { transform: scale(1.18); }
      100% { transform: scale(1); }
    }

    @media (max-width: 1023px) {
      .site-nav .hamburger {
        display: flex !important;
        position: relative;
        z-index: 3;
      }
      .site-nav .hamburger span {
        background: #0033ff !important;
      }
    }

    @media (max-width: 479px) {
      .site-nav #theme-toggle {
        display: none !important;
      }
      .site-nav .hamburger {
        position: fixed !important;
        top: 14px;
        right: 24px;
      }
    }

    /* ── Site Footer ── */
    .site-footer {
      border-top: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(var(--ink-rgb), 0.018), rgba(var(--bg-rgb), 0) 54%),
        rgba(var(--bg-rgb), 0.97);
      color: var(--ink);
      margin-top: 64px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(160px, 0.6fr) max-content;
      grid-template-areas:
        "intro spacer brand"
        "social spacer links"
        "legal spacer links";
      align-items: start;
      min-height: 0;
      padding-top: 40px;
      padding-bottom: 34px;
      position: relative;
      column-gap: clamp(44px, 6vw, 96px);
      row-gap: 16px;
    }

    .footer-copy {
      grid-area: intro;
      max-width: 520px;
    }

    .footer-copy h2 {
      margin: 0;
      color: var(--ink);
      font-family: var(--font-heading);
      font-size: clamp(30px, 2.6vw, 42px);
      line-height: 1;
      letter-spacing: 0;
      font-weight: 400;
    }

    .footer-copy p {
      margin: 28px 0 0;
      max-width: 660px;
      color: rgba(var(--ink-rgb), 0.58);
      font-size: 18px;
      line-height: 1.65;
      font-family: var(--font-body);
    }

    .footer-email {
      display: inline-block;
      margin-top: 18px;
      color: #0033ff;
      font-family: var(--font-body);
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 0.01em;
      text-decoration: none;
    }

    .footer-email:hover {
      text-decoration: underline;
    }

    .site-footer .brand {
      grid-area: brand;
      justify-self: end;
      align-self: start;
      width: 140px;
      display: grid;
      place-items: start;
      padding-top: 4px;
    }

    .site-footer .brand img {
      height: 50px;
      filter: drop-shadow(0 14px 26px rgba(0, 51, 255, 0.18));
    }

    .footer-links {
      grid-area: links;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      justify-self: end;
      flex-wrap: nowrap;
      width: 140px;
      gap: 24px;
      font-size: 13px;
      font-weight: 700;
      color: #0033ff;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .footer-links a {
      color: #0033ff;
      text-decoration: none;
      letter-spacing: 0.01em;
      line-height: 1;
      white-space: nowrap;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .footer-links a:hover {
      text-decoration: underline;
      transform: translateY(-1px);
    }

    .site-footer .social-icons {
      grid-area: social;
      margin-top: 2px;
    }

    .site-footer .social-icons a {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(var(--ink-rgb), 0.12);
      border-radius: 6px;
      background: var(--surface-bg);
      color: var(--ink) !important;
      transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    }

    .site-footer .social-icons a:hover {
      border-color: rgba(0, 51, 255, 0.45);
      background: rgba(0, 51, 255, 0.06);
      transform: translateY(-1px);
    }

    .site-footer .social-icons svg {
      width: 18px !important;
      height: 18px !important;
    }

    .site-footer .copyright {
      grid-area: legal;
      font-size: 13px;
      color: rgba(var(--ink-rgb), 0.52);
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      letter-spacing: 0;
      margin-top: 2px;
    }

    @media (max-width: 1023px) {
      .footer-inner {
        grid-template-columns: minmax(0, 1fr) minmax(150px, 200px);
        grid-template-areas:
          "intro brand"
          "links brand"
          "social brand"
          "legal brand";
      }

      .footer-links {
        justify-content: flex-start;
        justify-self: start;
        flex-wrap: nowrap;
        gap: 16px;
      }
    }

    @media (max-width: 767px) {
      .footer-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
          "intro"
          "brand"
          "links"
          "social"
          "legal";
        align-items: flex-start;
        text-align: left;
        min-height: auto;
        padding-top: 42px;
        padding-bottom: 42px;
        gap: 28px;
      }

      .footer-copy h2 {
        font-size: clamp(42px, 13vw, 58px);
      }

      .footer-copy p {
        margin-top: 20px;
        font-size: 16px;
      }

      .site-footer .brand {
        justify-self: start;
        width: auto;
        display: grid;
        place-items: center;
        padding-right: 0;
        margin-right: 0;
      }

      .site-footer .brand img {
        width: 132px;
        height: auto;
      }

      .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        font-size: 16px;
      }

      .site-footer .social-icons {
        align-self: flex-start;
      }
    }
