:root {
      --ink: #0d1b2a;
      --navy: #071a33;
      --navy-2: #0a2446;
      --blue: #1463ff;
      --blue-2: #3b82f6;
      --sky: #38bdf8;
      --pale: #eaf3ff;
      --mist: #f5f8fc;
      --white: #ffffff;
      --muted: #66758a;
      --line: #d9e3f0;
      --success: #43d7a6;
      --radius-sm: 14px;
      --radius: 24px;
      --radius-lg: 36px;
      --shadow: 0 24px 80px rgba(13, 27, 42, .12);
      --container: 1240px;
    }

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

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: "Manrope", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    body.menu-open { overflow: hidden; }

    img { display: block; width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }

    ::selection { color: var(--white); background: var(--blue); }

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 1000;
      padding: 12px 16px;
      color: var(--white);
      background: var(--blue);
      border-radius: 8px;
      transform: translateY(-150%);
    }

    .skip-link:focus { transform: none; }

    .container {
      width: min(calc(100% - 48px), var(--container));
      margin-inline: auto;
    }

    .section { padding: 120px 0; }
    .section--tight { padding: 88px 0; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 22px;
      color: var(--blue);
      font-size: 12px;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 28px;
      height: 2px;
      background: currentColor;
      content: "";
    }

    .eyebrow--light { color: #8bc5ff; }

    h1, h2, h3, p { margin-top: 0; }

    h1, h2, h3 {
      margin-bottom: 0;
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -.045em;
    }

    h1 { font-size: clamp(52px, 5.7vw, 86px); }
    h2 { font-size: clamp(42px, 5.1vw, 72px); }
    h3 { font-size: clamp(24px, 2.2vw, 34px); }

    .section-heading {
      display: grid;
      grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr);
      gap: 72px;
      align-items: end;
      margin-bottom: 60px;
    }

    .section-heading p {
      max-width: 480px;
      margin-bottom: 4px;
      color: var(--muted);
      font-size: 18px;
    }

    .btn {
      display: inline-flex;
      min-height: 54px;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      line-height: 1;
      transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
    }

    .btn:hover { transform: translateY(-2px); }
    .btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 3px solid rgba(56, 189, 248, .5);
      outline-offset: 3px;
    }

    .btn--primary {
      color: var(--white);
      background: var(--blue);
      box-shadow: 0 14px 38px rgba(20, 99, 255, .32);
    }

    .btn--primary:hover { background: #2a72ff; }

    .btn--ghost {
      color: var(--white);
      border-color: rgba(255, 255, 255, .25);
      background: rgba(255, 255, 255, .06);
    }

    .btn--ghost:hover { background: rgba(255, 255, 255, .12); }

    .btn--dark {
      color: var(--white);
      background: var(--navy);
    }

    .arrow {
      display: inline-grid;
      width: 28px;
      height: 28px;
      place-items: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, .13);
      transition: transform .25s ease;
    }

    .arrow::before {
      width: 7px;
      height: 7px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      content: "";
      transform: translateX(-2px) rotate(45deg);
    }

    a:hover .arrow, button:hover .arrow { transform: translateX(3px); }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 100;
      width: 100%;
      color: var(--white);
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      transition: color .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
    }

    .site-header.is-scrolled {
      color: var(--ink);
      background: rgba(255, 255, 255, .93);
      border-color: rgba(13, 27, 42, .08);
      box-shadow: 0 10px 40px rgba(13, 27, 42, .08);
      backdrop-filter: blur(18px);
    }

    .nav {
      display: flex;
      min-height: 86px;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -.04em;
    }

    .brand-mark {
      position: relative;
      display: inline-grid;
      width: 34px;
      height: 34px;
      place-items: center;
      overflow: hidden;
      border-radius: 10px;
      background: var(--blue);
      box-shadow: 0 0 0 5px rgba(20, 99, 255, .14);
    }

    .brand-mark::before,
    .brand-mark::after {
      position: absolute;
      width: 20px;
      height: 3px;
      background: var(--white);
      border-radius: 999px;
      content: "";
    }

    .brand-mark::before { transform: rotate(45deg); }
    .brand-mark::after { transform: rotate(-45deg); }

    .brand strong { color: #64b8ff; font-weight: 800; }
    .is-scrolled .brand strong { color: var(--blue); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
      margin-left: auto;
    }

    .nav-links > a {
      position: relative;
      font-size: 14px;
      font-weight: 700;
    }

    .nav-links > a:not(.btn)::after {
      position: absolute;
      right: 0;
      bottom: -7px;
      left: 0;
      height: 2px;
      background: var(--sky);
      content: "";
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .25s ease;
    }

    .nav-links > a:hover::after { transform: scaleX(1); transform-origin: left; }
    .site-header.is-scrolled .btn--nav { color: var(--white); background: var(--blue); }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      border: 1px solid currentColor;
      color: inherit;
      background: transparent;
      border-radius: 50%;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      background: currentColor;
      content: "";
      transition: transform .25s ease, opacity .25s ease;
    }

    .menu-toggle.is-active span { opacity: 0; }
    .menu-toggle.is-active::before { transform: translateY(6px) rotate(45deg); }
    .menu-toggle.is-active::after { transform: translateY(-6px) rotate(-45deg); }

    .hero {
      position: relative;
      min-height: 950px;
      overflow: hidden;
      color: var(--white);
      background:
        radial-gradient(circle at 86% 18%, rgba(20, 99, 255, .35), transparent 31%),
        radial-gradient(circle at 60% 90%, rgba(56, 189, 248, .12), transparent 28%),
        var(--navy);
    }

    .hero::before {
      position: absolute;
      inset: 0;
      opacity: .2;
      background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(to right, transparent 5%, #000 50%, transparent 100%);
      content: "";
    }

    .hero::after {
      position: absolute;
      right: -240px;
      bottom: -320px;
      width: 760px;
      height: 760px;
      border: 1px solid rgba(126, 191, 255, .18);
      border-radius: 50%;
      box-shadow: 0 0 0 100px rgba(20, 99, 255, .035), 0 0 0 200px rgba(20, 99, 255, .025);
      content: "";
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      min-height: 820px;
      grid-template-columns: minmax(0, 1.13fr) minmax(420px, .87fr);
      gap: 80px;
      align-items: center;
      padding-top: 120px;
    }

    .hero-copy { padding-bottom: 16px; }

    .hero h1 { max-width: 820px; }

    .hero h1 span {
      display: block;
      color: #79c5ff;
      font-weight: 500;
      letter-spacing: -.055em;
    }

    .hero-lead {
      max-width: 660px;
      margin: 32px 0 36px;
      color: #b9c9dc;
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.55;
    }

    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 28px;
      margin-top: 38px;
      color: #c7d6e8;
      font-size: 13px;
      font-weight: 700;
    }

    .hero-proof span { display: inline-flex; align-items: center; gap: 8px; }

    .hero-proof span::before {
      display: inline-block;
      width: 7px;
      height: 7px;
      background: var(--success);
      border-radius: 50%;
      box-shadow: 0 0 0 5px rgba(67, 215, 166, .12);
      content: "";
    }

    .system-panel {
      position: relative;
      min-height: 540px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
      box-shadow: 0 40px 110px rgba(0, 0, 0, .25);
      backdrop-filter: blur(14px);
    }

    .system-panel::before {
      position: absolute;
      inset: 14px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 27px;
      content: "";
    }

    .system-top {
      position: absolute;
      top: 30px;
      right: 34px;
      left: 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #a9bbd0;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .live-dot { display: inline-flex; align-items: center; gap: 7px; color: #8ff0ca; }

    .live-dot::before {
      width: 7px;
      height: 7px;
      background: var(--success);
      border-radius: 50%;
      box-shadow: 0 0 0 6px rgba(67, 215, 166, .11);
      content: "";
      animation: pulse 2.2s infinite;
    }

    .system-core {
      position: absolute;
      top: 50%;
      left: 50%;
      display: grid;
      width: 164px;
      height: 164px;
      place-items: center;
      text-align: center;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 50%;
      background: radial-gradient(circle at 35% 28%, #2c7dff, #0e4dd1 65%, #0a3da7);
      box-shadow: 0 0 0 18px rgba(20,99,255,.08), 0 26px 60px rgba(3,30,93,.45);
      transform: translate(-50%, -50%);
    }

    .system-core strong { display: block; font-size: 22px; letter-spacing: -.04em; }
    .system-core small { display: block; margin-top: 3px; color: #bed8ff; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }

    .system-orbit {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 365px;
      height: 365px;
      border: 1px solid rgba(124, 183, 255, .2);
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    .system-orbit::before {
      position: absolute;
      top: -4px;
      left: 50%;
      width: 8px;
      height: 8px;
      background: var(--sky);
      border-radius: 50%;
      box-shadow: 0 0 18px var(--sky);
      content: "";
      transform: translateX(-50%);
      transform-origin: 4px 186px;
      animation: orbit 10s linear infinite;
    }

    .system-node {
      position: absolute;
      z-index: 2;
      min-width: 126px;
      padding: 14px 16px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 15px;
      background: rgba(7, 26, 51, .84);
      box-shadow: 0 16px 35px rgba(0,0,0,.18);
    }

    .system-node span { display: block; margin-bottom: 4px; color: #8fa5bf; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
    .system-node strong { display: block; font-size: 15px; }
    .system-node b { color: #7fbeff; font-size: 11px; font-weight: 700; }

    .node-1 { top: 104px; left: 34px; }
    .node-2 { top: 116px; right: 30px; }
    .node-3 { right: 32px; bottom: 68px; }
    .node-4 { bottom: 72px; left: 36px; }

    .system-line {
      position: absolute;
      z-index: 1;
      top: 50%;
      left: 50%;
      width: 330px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(89,160,255,.52), transparent);
      transform: translate(-50%, -50%);
    }

    .line-2 { transform: translate(-50%, -50%) rotate(90deg); }

    .system-caption {
      position: absolute;
      right: 34px;
      bottom: 26px;
      left: 34px;
      display: flex;
      justify-content: space-between;
      color: #8094ae;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .capability-strip {
      position: relative;
      z-index: 5;
      margin-top: -70px;
    }

    .capability-inner {
      display: grid;
      grid-template-columns: 1.15fr repeat(3, 1fr);
      overflow: hidden;
      color: var(--white);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 24px;
      background: #0b2548;
      box-shadow: 0 26px 70px rgba(3, 20, 40, .22);
    }

    .capability-item {
      min-height: 138px;
      padding: 28px 30px;
      border-right: 1px solid rgba(255,255,255,.1);
    }

    .capability-item:last-child { border-right: 0; }
    .capability-item:first-child { background: var(--blue); }

    .capability-item small { display: block; margin-bottom: 12px; color: #8da5bf; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
    .capability-item:first-child small { color: #c7dcff; }
    .capability-item strong { font-size: 17px; }
    .capability-item p { margin: 6px 0 0; color: #aebed1; font-size: 12px; line-height: 1.5; }
    .capability-item:first-child p { color: #dce9ff; }

    .work { padding-top: 150px; background: var(--white); }

    .work-grid {
      display: grid;
      grid-template-columns: 1.18fr .82fr;
      gap: 24px;
    }

    .project-card {
      position: relative;
      min-height: 430px;
      overflow: hidden;
      color: var(--white);
      border-radius: var(--radius);
      background: var(--navy);
      isolation: isolate;
    }

    .project-card:first-child { grid-row: span 2; min-height: 884px; }

    .project-card img {
      position: absolute;
      inset: 0;
      z-index: -2;
      height: 100%;
      object-fit: cover;
      transition: transform .8s cubic-bezier(.2,.7,.2,1);
    }

    .project-card:first-child img { object-position: 69% center; }
    .project-card:nth-child(2) img { object-position: 67% center; }
    .project-card:nth-child(3) img { object-position: 65% center; }
    .project-card:hover img { transform: scale(1.035); }

    .project-card::after {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(3,17,31,.04) 20%, rgba(3,17,31,.88) 100%);
      content: "";
    }

    .project-card::before {
      position: absolute;
      z-index: 1;
      top: -70%;
      left: -90%;
      width: 72%;
      height: 240%;
      pointer-events: none;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.05) 28%, rgba(255,255,255,.5) 50%, rgba(190,225,255,.13) 70%, transparent 100%);
      content: "";
      opacity: 0;
      transform: rotate(-35deg);
    }

    .project-card:hover::before { animation: glassSweep .9s cubic-bezier(.25,.6,.3,1); }

    .project-top {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px;
    }

    .project-tag {
      display: inline-flex;
      min-height: 38px;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 999px;
      background: rgba(6,24,40,.24);
      backdrop-filter: blur(10px);
      font-size: 10px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: .12em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .project-link {
      position: relative;
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      border-radius: 50%;
      background: rgba(255,255,255,.95);
      color: var(--blue);
      font-size: 20px;
      animation: externalLinkColor 4s ease-in-out infinite;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .project-link::before {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 15px;
      height: 15px;
      border: 2px solid currentColor;
      border-radius: 4px;
      content: "";
      transform: translate(-58%, -42%);
    }

    .project-link::after {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 14px;
      height: 14px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      background:
        linear-gradient(135deg, transparent 43%, currentColor 44%, currentColor 55%, transparent 56%),
        var(--white);
      content: "";
      transform: translate(-18%, -76%);
    }

    .project-link:hover {
      background: var(--white);
      box-shadow: 0 10px 28px rgba(20,99,255,.25);
      transform: scale(1.08);
    }

    .project-info {
      position: absolute;
      z-index: 2;
      right: 0;
      bottom: 0;
      left: 0;
      padding: 32px;
    }

    .project-info h3 { max-width: 520px; margin-bottom: 12px; font-size: clamp(28px, 3.2vw, 46px); }
    .project-card:not(:first-child) .project-info h3 { font-size: clamp(26px, 2.4vw, 34px); }
    .project-info p { max-width: 510px; margin: 0; color: #d7e2ec; font-size: 14px; }

    .project-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .project-meta span {
      padding: 6px 10px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 999px;
      color: #dce8f4;
      font-size: 10px;
      font-weight: 700;
    }

    .growth {
      overflow: hidden;
      color: var(--white);
      background: var(--navy);
    }

    .growth .section-heading p { color: #aebfd2; }

    .growth-track {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      margin-top: 74px;
      border-top: 1px solid rgba(255,255,255,.16);
    }

    .growth-track::before {
      position: absolute;
      top: -2px;
      left: 0;
      width: 25%;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--sky));
      content: "";
      animation: scan 6s ease-in-out infinite;
    }

    .growth-step {
      position: relative;
      min-height: 270px;
      padding: 45px 30px 20px 0;
    }

    .growth-step::before {
      position: absolute;
      top: -7px;
      left: 0;
      width: 13px;
      height: 13px;
      border: 3px solid var(--navy);
      background: var(--blue);
      border-radius: 50%;
      box-shadow: 0 0 0 1px rgba(255,255,255,.2);
      content: "";
    }

    .growth-step small { color: #6faefc; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
    .growth-step h3 { margin: 18px 0 16px; font-size: 27px; }
    .growth-step p { max-width: 250px; margin-bottom: 0; color: #9fb1c7; font-size: 14px; }

    .services { background: var(--mist); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .service-card {
      position: relative;
      min-height: 310px;
      padding: 32px 34px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      transition: color .3s ease, background .3s ease, transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    }

    .service-card:hover {
      color: var(--white);
      border-color: var(--blue);
      background: var(--blue);
      box-shadow: 0 24px 70px rgba(20, 99, 255, .22);
      transform: translateY(-5px);
    }

    .service-card--featured {
      border-color: var(--blue);
      box-shadow: inset 0 0 0 1px rgba(20, 99, 255, .16);
    }

    .service-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--blue);
      font-size: 10px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .service-kicker::before {
      width: 22px;
      height: 2px;
      background: currentColor;
      content: "";
    }

    .service-card h3 { max-width: 440px; margin: 36px 0 14px; }
    .service-card p { max-width: 490px; margin-bottom: 0; color: var(--muted); font-size: 15px; transition: color .3s ease; }
    .service-card:hover p { color: #dce9ff; }
    .service-card:hover .service-kicker { color: #dce9ff; }

    .service-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 12px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .service-list li {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #527092;
      font-size: 13px;
      font-weight: 700;
      transition: color .3s ease;
    }

    .service-list li + li::before {
      color: #9fb0c4;
      content: "·";
    }

    .service-card:hover .service-list li,
    .service-card:hover .service-list li + li::before { color: #dce9ff; }

    .process { background: var(--white); }

    .process-grid {
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: 100px;
      align-items: start;
    }

    .process-intro { position: sticky; top: 130px; }
    .process-intro p { max-width: 430px; margin: 28px 0 32px; color: var(--muted); font-size: 18px; }

    .process-list { border-top: 1px solid var(--line); }

    .process-item {
      display: grid;
      grid-template-columns: 70px minmax(0, 1fr);
      gap: 24px;
      padding: 34px 0;
      border-bottom: 1px solid var(--line);
    }

    .process-item > span { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
    .process-item h3 { margin-bottom: 12px; font-size: 28px; }
    .process-item p { max-width: 590px; margin-bottom: 0; color: var(--muted); }

    .ownership {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background:
        radial-gradient(circle at 12% 18%, rgba(56,189,248,.24), transparent 33%),
        radial-gradient(circle at 88% 82%, rgba(20,99,255,.44), transparent 38%),
        linear-gradient(125deg, #071a33 8%, #0a2a56 34%, #0d4eac 52%, #09264a 74%, #071a33 92%);
      background-size: 180% 180%, 190% 190%, 260% 260%;
      animation: ownershipFlow 15s ease-in-out infinite;
    }

    .ownership::after {
      position: absolute;
      top: -180px;
      right: -110px;
      width: 480px;
      height: 480px;
      border: 1px solid rgba(134,198,255,.16);
      border-radius: 50%;
      box-shadow: 0 0 0 70px rgba(81,162,255,.045), 0 0 0 140px rgba(81,162,255,.026);
      content: "";
    }

    .ownership-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 100px;
      align-items: center;
    }

    .ownership-copy p { max-width: 620px; margin: 28px 0 0; color: #b8c9dd; font-size: 18px; }

    .ownership-points { display: grid; gap: 12px; }

    .ownership-point {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 18px;
      align-items: center;
      padding: 22px;
      border: 1px solid rgba(150,204,255,.18);
      border-radius: 18px;
      background: rgba(5, 24, 48, .5);
      box-shadow: 0 16px 45px rgba(0,0,0,.12);
      backdrop-filter: blur(10px);
    }

    .ownership-point span {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      color: #9bd0ff;
      border-radius: 14px;
      background: rgba(84, 167, 255, .14);
      font-size: 17px;
      font-weight: 800;
    }

    .ownership-point strong { display: block; margin-bottom: 3px; font-size: 15px; }
    .ownership-point p { margin: 0; color: #aebfd2; font-size: 12px; }

    .faq-wrap {
      display: grid;
      grid-template-columns: .68fr 1.32fr;
      gap: 100px;
    }

    .faq-intro p { max-width: 360px; margin: 26px 0 0; color: var(--muted); }

    .faq-intro h2 {
      font-size: clamp(38px, 4.2vw, 60px);
      white-space: nowrap;
    }

    .faq-list { border-top: 1px solid var(--line); }

    .faq-item { border-bottom: 1px solid var(--line); }

    .faq-question {
      display: grid;
      width: 100%;
      grid-template-columns: 1fr 44px;
      gap: 20px;
      align-items: center;
      padding: 26px 0;
      color: var(--ink);
      border: 0;
      background: transparent;
      text-align: left;
      font-size: 18px;
      font-weight: 700;
    }

    .faq-icon {
      display: grid;
      width: 40px;
      height: 40px;
      place-items: center;
      color: var(--blue);
      border: 1px solid var(--line);
      border-radius: 50%;
      transition: transform .25s ease, color .25s ease, background .25s ease;
    }

    .faq-question[aria-expanded="true"] .faq-icon { color: var(--white); background: var(--blue); transform: rotate(45deg); }

    .faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
    .faq-answer > div { overflow: hidden; }
    .faq-answer p { max-width: 720px; margin: 0; padding: 0 64px 0 0; color: var(--muted); }
    .faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
    .faq-item.is-open .faq-answer p { padding-bottom: 26px; }

    .contact {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background:
        radial-gradient(circle at 15% 10%, rgba(56,189,248,.18), transparent 30%),
        radial-gradient(circle at 95% 95%, rgba(20,99,255,.34), transparent 38%),
        var(--navy);
    }

    .contact::before {
      position: absolute;
      inset: 0;
      opacity: .13;
      background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
      background-size: 80px 80px;
      content: "";
    }

    .contact-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 90px;
      align-items: start;
    }

    .contact-copy h2 { max-width: 620px; }
    .contact-copy > p { max-width: 540px; margin: 28px 0 44px; color: #aebfd2; font-size: 18px; }

    .next-steps { display: grid; gap: 14px; }

    .next-step {
      display: flex;
      gap: 14px;
      align-items: center;
      color: #d9e5f1;
      font-size: 13px;
      font-weight: 700;
    }

    .next-step span {
      display: grid;
      width: 30px;
      height: 30px;
      flex: 0 0 auto;
      place-items: center;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 50%;
      color: #80c2ff;
      font-size: 10px;
    }

    .contact-form {
      padding: 36px;
      color: var(--ink);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 35px 100px rgba(0,0,0,.24);
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .field { margin-bottom: 18px; }
    .field label { display: block; margin-bottom: 8px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

    .field input, .field select, .field textarea {
      width: 100%;
      min-height: 54px;
      padding: 14px 16px;
      color: var(--ink);
      border: 1px solid #d8e1ec;
      border-radius: 12px;
      background: #f8fafc;
      outline: 0;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .field textarea { min-height: 128px; resize: vertical; }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(20,99,255,.1); }

    .form-footer { display: flex; gap: 18px; align-items: center; justify-content: space-between; }
    .form-note { max-width: 260px; margin: 0; color: #7c8999; font-size: 10px; line-height: 1.5; }
    .form-success { display: none; margin-top: 16px; padding: 13px 15px; color: #0d6149; border-radius: 10px; background: #e7fbf4; font-size: 12px; font-weight: 700; }
    .form-success.is-visible { display: block; }

    .site-footer { color: var(--white); background: #041325; }

    .footer-main {
      display: grid;
      grid-template-columns: 1.3fr repeat(3, .7fr);
      gap: 64px;
      padding: 74px 0 56px;
    }

    .footer-brand p { max-width: 390px; margin: 24px 0 0; color: #8fa2b9; font-size: 14px; }
    .footer-col h3 { margin-bottom: 20px; color: #7f94ad; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
    .footer-col a { display: block; width: fit-content; margin: 9px 0; color: #c6d3e0; font-size: 13px; }
    .footer-col a:hover { color: #79c5ff; }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      padding: 24px 0 30px;
      color: #6d829b;
      border-top: 1px solid rgba(255,255,255,.09);
      font-size: 11px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .75s ease, transform .75s ease;
    }

    .reveal.is-visible { opacity: 1; transform: none; }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .55; transform: scale(.78); }
    }

    @keyframes orbit { to { transform: translateX(-50%) rotate(360deg); } }

    @keyframes scan {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(300%); }
    }

    @keyframes externalLinkColor {
      0%, 100% { color: #1463ff; }
      42% { color: #38bdf8; }
      72% { color: #4c62ff; }
    }

    @keyframes glassSweep {
      0% { left: -90%; opacity: 0; }
      18% { opacity: .75; }
      72% { opacity: .45; }
      100% { left: 130%; opacity: 0; }
    }

    @keyframes ownershipFlow {
      0%, 100% { background-position: 0% 20%, 100% 80%, 0% 50%; }
      35% { background-position: 65% 75%, 25% 15%, 55% 35%; }
      70% { background-position: 100% 25%, 0% 65%, 100% 60%; }
    }

    @media (max-width: 1080px) {
      .nav-links { gap: 24px; }
      .hero-inner { grid-template-columns: 1fr .85fr; gap: 34px; }
      .system-panel { transform: scale(.88); transform-origin: center right; }
      .process-grid, .faq-wrap { gap: 60px; }
      .contact-grid { gap: 50px; }
    }

    @media (max-width: 900px) {
      .section { padding: 88px 0; }
      .section-heading { grid-template-columns: 1fr; gap: 24px; }
      .menu-toggle { display: block; }

      .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        width: min(86vw, 420px);
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 8px;
        padding: 90px 40px 40px;
        color: var(--white);
        background: var(--navy);
        box-shadow: -20px 0 60px rgba(0,0,0,.22);
        transform: translateX(105%);
        transition: transform .3s ease;
      }

      .nav-links.is-open { transform: none; }
      .nav-links > a { padding: 13px 0; font-size: 20px; }
      .nav-links .btn {
        width: 100%;
        justify-content: space-between;
        margin-top: 16px;
        padding: 0 16px 0 20px;
        color: var(--white);
        background: var(--blue);
        font-size: 14px;
        white-space: nowrap;
      }
      .nav-links .btn .arrow { flex: 0 0 28px; }
      .menu-toggle { position: relative; z-index: 3; }
      .menu-toggle.is-active { color: var(--white); }

      .hero { min-height: auto; }
      .hero-inner { min-height: auto; grid-template-columns: 1fr; padding: 174px 0 150px; }
      .hero-copy { max-width: 760px; }
      .system-panel { width: min(100%, 570px); min-height: 510px; margin: 0 auto; transform: none; }
      .capability-strip { margin-top: -76px; }
      .capability-inner { grid-template-columns: repeat(2, 1fr); }
      .capability-item:nth-child(2) { border-right: 0; }
      .capability-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }

      .work-grid { grid-template-columns: 1fr; }
      .project-card:first-child { grid-row: auto; min-height: 650px; }
      .project-card { min-height: 520px; }
      .growth-track { grid-template-columns: repeat(2, 1fr); }
      .growth-track::before { animation: none; width: 50%; }
      .growth-step { min-height: 230px; }
      .services-grid { grid-template-columns: 1fr; }
      .process-grid, .ownership-grid, .faq-wrap, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
      .process-intro { position: static; }
      .footer-main { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 620px) {
      .container { width: min(calc(100% - 32px), var(--container)); }
      .section { padding: 76px 0; }
      .nav { min-height: 74px; }
      .nav-links { padding-right: 28px; padding-left: 28px; }
      .hero-inner { padding: 142px 0 130px; }
      .hero h1 { font-size: clamp(47px, 14vw, 66px); }
      .hero-lead { margin-top: 24px; font-size: 17px; }
      .hero-actions { align-items: stretch; flex-direction: column; }
      .hero-actions .btn { width: 100%; }
      .hero-proof { align-items: flex-start; flex-direction: column; gap: 10px; }
      .system-panel { min-height: 440px; }
      .system-orbit { width: 280px; height: 280px; }
      .system-orbit::before { transform-origin: 4px 144px; }
      .system-core { width: 135px; height: 135px; }
      .system-node { min-width: 104px; padding: 10px 12px; }
      .system-node strong { font-size: 12px; }
      .node-1 { top: 90px; left: 20px; }
      .node-2 { top: 102px; right: 18px; }
      .node-3 { right: 18px; bottom: 58px; }
      .node-4 { bottom: 62px; left: 20px; }
      .system-line { width: 260px; }
      .system-caption { right: 24px; left: 24px; }
      .capability-inner { grid-template-columns: 1fr; }
      .capability-item { min-height: 118px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
      .work { padding-top: 110px; }
      .project-card:first-child, .project-card { min-height: 520px; }
      .project-info { padding: 24px; }
      .project-info p { display: none; }
      .growth-track { grid-template-columns: 1fr; }
      .growth-track::before { width: 100%; }
      .growth-step { min-height: 0; padding: 38px 0; }
      .growth-step p { max-width: 100%; }
      .service-card { min-height: 290px; padding: 28px; }
      .service-card h3 { margin-top: 32px; }
      .process-item { grid-template-columns: 46px 1fr; gap: 12px; }
      .ownership-point { grid-template-columns: 46px 1fr; padding: 17px; }
      .ownership-point span { width: 42px; height: 42px; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .contact-form { padding: 24px; }
      .form-footer { align-items: stretch; flex-direction: column-reverse; }
      .form-footer .btn { width: 100%; }
      .form-note { max-width: none; }
      .footer-main { grid-template-columns: 1fr; gap: 34px; }
      .footer-bottom { flex-direction: column; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }
