﻿:root {
      --obsidian: #050505;
      --obsidian-2: #0c0c0a;
      --obsidian-3: #12120f;
      --gold: #C9A84C;
      --gold-soft: #e5cf88;
      --warm: #f7f0df;
      --muted: #bcb49f;
      --line: rgba(201, 168, 76, 0.22);
      --line-strong: rgba(201, 168, 76, 0.5);
      --teal: #48d6c8;
      --copper: #b86c3e;
      --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
      --max: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 92px;
    }

    body {
      min-height: 100vh;
      background:
        radial-gradient(circle at 25% 8%, rgba(201, 168, 76, 0.17), transparent 28rem),
        radial-gradient(circle at 90% 38%, rgba(72, 214, 200, 0.09), transparent 22rem),
        linear-gradient(180deg, var(--obsidian), #080806 46%, #030303);
      color: var(--warm);
      font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(201, 168, 76, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.045) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 74%);
      z-index: -2;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 100;
      transform: translateY(-140%);
      border-radius: 8px;
      padding: 11px 14px;
      color: #080806;
      background: var(--gold-soft);
      font-weight: 700;
      transition: transform 180ms ease;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    button,
    a.button {
      font: inherit;
    }

    .wrap {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 20;
      border-bottom: 1px solid transparent;
      transition: background 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
    }

    .nav.scrolled {
      background: rgba(5, 5, 5, 0.68);
      border-color: rgba(201, 168, 76, 0.18);
      backdrop-filter: blur(18px);
    }

    .nav-inner {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0;
      font-family: "Syne", sans-serif;
      font-weight: 800;
      letter-spacing: 0;
      font-size: 1.15rem;
    }

    .brand-logo {
      display: block;
      width: 196px;
      height: auto;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line-strong);
      background: linear-gradient(135deg, rgba(201, 168, 76, 0.22), rgba(255, 255, 255, 0.03));
      box-shadow: inset 0 0 18px rgba(201, 168, 76, 0.12);
      clip-path: polygon(50% 0, 100% 28%, 100% 72%, 50% 100%, 0 72%, 0 28%);
    }

    .brand-mark span {
      color: var(--gold-soft);
      font-size: 0.88rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .nav-links a {
      transition: color 180ms ease;
    }

    .nav-links a:hover {
      color: var(--warm);
    }

    .button {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      border-radius: 8px;
      padding: 0 18px;
      cursor: pointer;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
      white-space: nowrap;
    }

    .button svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button.gold {
      color: #070705;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      box-shadow: 0 14px 34px rgba(201, 168, 76, 0.2);
      font-weight: 700;
    }

    .button.dark {
      color: var(--warm);
      border-color: rgba(247, 240, 223, 0.16);
      background: rgba(255, 255, 255, 0.045);
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 118px 0 84px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: min(72vw, 780px);
      aspect-ratio: 1;
      left: 50%;
      top: 50%;
      transform: translate(-24%, -58%);
      background: radial-gradient(circle, rgba(201, 168, 76, 0.24), transparent 62%);
      filter: blur(10px);
      pointer-events: none;
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
      align-items: center;
      gap: clamp(30px, 5vw, 64px);
    }

    .hero-grid > * {
      min-width: 0;
    }

    .eyebrow {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold-soft);
      border: 1px solid rgba(201, 168, 76, 0.32);
      background: rgba(201, 168, 76, 0.08);
      border-radius: 999px;
      padding: 8px 13px;
      font-size: 0.9rem;
      margin-bottom: 22px;
      animation: badgePulse 2.7s ease-in-out infinite;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 18px var(--gold);
    }

    h1,
    h2,
    h3 {
      font-family: "Syne", sans-serif;
      letter-spacing: 0;
      line-height: 0.98;
    }

    h1 {
      max-width: 720px;
      font-size: clamp(3rem, 6.2vw, 5.85rem);
      font-weight: 800;
    }

    .hero-title {
      text-wrap: balance;
      overflow-wrap: normal;
    }

    .hero-title .title-line {
      display: block;
    }

    .gold-text {
      color: var(--gold-soft);
      text-shadow: 0 0 32px rgba(201, 168, 76, 0.18);
    }

    .hero-copy {
      max-width: 610px;
      margin-top: 22px;
      color: var(--muted);
      font-size: clamp(1rem, 1.35vw, 1.16rem);
      line-height: 1.62;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .hero-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      border: 1px solid rgba(247, 240, 223, 0.12);
      border-radius: 999px;
      padding: 0 12px;
      color: var(--warm);
      background: rgba(255, 255, 255, 0.035);
      font-size: 0.92rem;
    }

    .hero-chip::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 14px rgba(201, 168, 76, 0.72);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(120px, 1fr));
      gap: 10px;
      margin-top: 30px;
    }

    .stat {
      min-height: 82px;
      border: 1px solid rgba(201, 168, 76, 0.16);
      border-radius: 8px;
      padding: 14px;
      background: rgba(255, 255, 255, 0.026);
    }

    .stat strong {
      display: block;
      color: var(--warm);
      font-family: "Syne", sans-serif;
      font-size: 1.55rem;
      line-height: 1;
    }

    .stat span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.35;
    }

    .hero-visual {
      position: relative;
      height: min(65vh, 570px);
      min-height: 430px;
      perspective: 1100px;
    }

    .visual-stage {
      position: absolute;
      inset: 2% 0 0;
      transform-style: preserve-3d;
      animation: stageFloat 7s ease-in-out infinite;
    }

    .monolith {
      position: absolute;
      left: 50%;
      top: 48%;
      width: min(44vw, 390px);
      height: min(56vw, 460px);
      transform: translate(-50%, -50%) rotateX(62deg) rotateZ(-34deg);
      transform-style: preserve-3d;
    }

    .plate {
      position: absolute;
      inset: 0;
      border: 1px solid rgba(201, 168, 76, 0.42);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(160deg, rgba(201, 168, 76, 0.18), rgba(3, 3, 3, 0.92) 45%, rgba(10, 10, 8, 0.98));
      box-shadow:
        var(--shadow),
        inset 0 0 70px rgba(201, 168, 76, 0.08);
      clip-path: polygon(50% 0, 100% 24%, 100% 76%, 50% 100%, 0 76%, 0 24%);
      transform-style: preserve-3d;
    }

    .plate::before,
    .plate::after {
      content: "";
      position: absolute;
      inset: 13%;
      border: 1px solid rgba(201, 168, 76, 0.32);
      clip-path: inherit;
      animation: ringBreathe 4s ease-in-out infinite;
    }

    .plate::after {
      inset: 27%;
      border-color: rgba(72, 214, 200, 0.28);
      animation-delay: -1s;
    }

    .data-line {
      position: absolute;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
      opacity: 0.8;
      transform-origin: center;
      animation: lineScan 3.8s linear infinite;
    }

    .line-a {
      width: 78%;
      left: 11%;
      top: 35%;
      transform: rotate(30deg) translateZ(36px);
    }

    .line-b {
      width: 64%;
      left: 18%;
      top: 56%;
      transform: rotate(-30deg) translateZ(58px);
      animation-delay: -1.7s;
    }

    .line-c {
      width: 50%;
      left: 25%;
      top: 69%;
      transform: rotate(30deg) translateZ(72px);
      animation-delay: -2.6s;
    }

    .node {
      position: absolute;
      width: 14px;
      height: 14px;
      border: 1px solid rgba(247, 240, 223, 0.65);
      background: var(--gold);
      box-shadow: 0 0 24px rgba(201, 168, 76, 0.7);
      clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
      animation: nodeLift 4.4s ease-in-out infinite;
    }

    .node:nth-child(5) { left: 31%; top: 29%; animation-delay: -0.6s; }
    .node:nth-child(6) { left: 64%; top: 41%; animation-delay: -1.2s; }
    .node:nth-child(7) { left: 45%; top: 64%; animation-delay: -2s; background: var(--teal); }
    .node:nth-child(8) { left: 72%; top: 70%; animation-delay: -3s; }

    .orbit-label {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 44px;
      width: max-content;
      max-width: 240px;
      padding: 0 14px;
      border: 1px solid rgba(247, 240, 223, 0.13);
      border-radius: 8px;
      background: rgba(6, 6, 5, 0.86);
      backdrop-filter: blur(12px);
      color: var(--warm);
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(0, 0, 0, 0.26);
      animation: labelDrift 6s ease-in-out infinite;
      z-index: 3;
    }

    .orbit-label small {
      color: var(--gold-soft);
      font-weight: 700;
    }

    .label-1 { top: 8%; left: 5%; }
    .label-2 { top: 32%; right: 3%; animation-delay: -1.8s; }
    .label-3 { bottom: 12%; left: 7%; animation-delay: -3.4s; }

    section {
      padding: 110px 0;
      position: relative;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 44px;
    }

    .section-kicker {
      color: var(--gold-soft);
      font-weight: 700;
      margin-bottom: 12px;
    }

    h2 {
      max-width: 780px;
      font-size: clamp(2.2rem, 5vw, 4.6rem);
    }

    .section-head p {
      max-width: 390px;
      color: var(--muted);
      line-height: 1.65;
    }

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

    .service-card {
      position: relative;
      min-height: 286px;
      border: 1px solid rgba(247, 240, 223, 0.1);
      border-radius: 8px;
      padding: 26px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(11, 11, 9, 0.74);
      transform-style: preserve-3d;
      transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
      overflow: hidden;
    }

    .service-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: translateX(-100%);
      transition: transform 380ms ease;
    }

    .service-card:hover {
      border-color: rgba(201, 168, 76, 0.42);
      background:
        linear-gradient(180deg, rgba(201, 168, 76, 0.1), rgba(255, 255, 255, 0.02)),
        rgba(11, 11, 9, 0.86);
      transform: translateY(-8px) rotateX(2deg);
    }

    .service-card:hover::before {
      transform: translateX(0);
    }

    .service-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(201, 168, 76, 0.32);
      background: rgba(201, 168, 76, 0.08);
      clip-path: polygon(50% 0, 100% 27%, 100% 73%, 50% 100%, 0 73%, 0 27%);
      margin-bottom: 34px;
      color: var(--gold-soft);
    }

    .service-icon svg {
      width: 24px;
      height: 24px;
    }

    .service-card h3 {
      font-size: 1.35rem;
      line-height: 1.12;
      margin-bottom: 14px;
    }

    .service-card p {
      color: var(--muted);
      line-height: 1.65;
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      gap: 18px;
      align-items: stretch;
    }

    .statement {
      border: 1px solid rgba(201, 168, 76, 0.18);
      border-radius: 8px;
      padding: clamp(26px, 4vw, 44px);
      background:
        linear-gradient(135deg, rgba(201, 168, 76, 0.12), transparent 48%),
        rgba(10, 10, 8, 0.78);
      min-height: 360px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }

    .statement.large {
      margin-top: 64px;
      background:
        linear-gradient(135deg, rgba(72, 214, 200, 0.08), transparent 40%),
        rgba(10, 10, 8, 0.78);
    }

    .statement .tag {
      color: var(--gold-soft);
      font-weight: 700;
      margin-bottom: 28px;
    }

    .statement p {
      color: var(--warm);
      font-size: clamp(1.18rem, 2vw, 1.65rem);
      line-height: 1.45;
    }

    .statement .stamp {
      margin-top: 44px;
      color: rgba(247, 240, 223, 0.18);
      font-family: "Syne", sans-serif;
      font-size: clamp(4rem, 9vw, 8rem);
      line-height: 0.8;
    }

    .ideas {
      padding-top: 84px;
    }

    .idea-carousel {
      position: relative;
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 34px;
      align-items: stretch;
      min-height: 520px;
      border: 1px solid rgba(201, 168, 76, 0.24);
      border-radius: 8px;
      padding: clamp(22px, 4vw, 38px);
      background:
        radial-gradient(circle at 72% 24%, rgba(201, 168, 76, 0.18), transparent 22rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .idea-carousel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(201, 168, 76, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(201, 168, 76, 0.06) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: radial-gradient(circle at 72% 45%, #000, transparent 68%);
      pointer-events: none;
    }

    .idea-copy,
    .idea-device,
    .carousel-controls {
      position: relative;
      z-index: 1;
    }

    .idea-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 390px;
    }

    .idea-step {
      width: fit-content;
      color: var(--gold-soft);
      border: 1px solid rgba(201, 168, 76, 0.34);
      border-radius: 999px;
      padding: 8px 13px;
      margin-bottom: 22px;
      background: rgba(201, 168, 76, 0.07);
      font-weight: 700;
    }

    .idea-copy h3 {
      font-size: clamp(2rem, 4vw, 3.8rem);
      line-height: 0.98;
      margin-bottom: 20px;
      max-width: 560px;
    }

    .idea-copy p {
      color: var(--muted);
      line-height: 1.7;
      font-size: 1.08rem;
      max-width: 520px;
    }

    .idea-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .idea-tags span {
      border: 1px solid rgba(247, 240, 223, 0.12);
      border-radius: 999px;
      padding: 9px 12px;
      color: var(--warm);
      background: rgba(255, 255, 255, 0.04);
    }

    .idea-device {
      align-self: center;
      min-height: 410px;
      border: 1px solid rgba(247, 240, 223, 0.12);
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(247, 240, 223, 0.08), rgba(247, 240, 223, 0.02)),
        rgba(5, 5, 5, 0.74);
      transform: perspective(1000px) rotateY(-10deg) rotateX(4deg);
      transform-style: preserve-3d;
      transition: transform 500ms ease;
      overflow: hidden;
    }

    .idea-carousel:hover .idea-device {
      transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) translateY(-6px);
    }

    .device-top {
      height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 16px;
      border-bottom: 1px solid rgba(247, 240, 223, 0.1);
    }

    .device-top span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: rgba(247, 240, 223, 0.26);
    }

    .device-top span:first-child {
      background: var(--gold);
    }

    .network-map {
      position: relative;
      min-height: 366px;
    }

    .map-node {
      position: absolute;
      width: 92px;
      height: 92px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(201, 168, 76, 0.42);
      background: rgba(8, 8, 6, 0.86);
      color: var(--warm);
      font-weight: 700;
      clip-path: polygon(50% 0, 100% 27%, 100% 73%, 50% 100%, 0 73%, 0 27%);
      box-shadow: 0 0 30px rgba(201, 168, 76, 0.14);
      animation: mapFloat 5s ease-in-out infinite;
    }

    .map-node.core {
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 118px;
      height: 118px;
      color: #080806;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      box-shadow: 0 0 52px rgba(201, 168, 76, 0.38);
    }

    .n1 { left: 12%; top: 13%; animation-delay: -0.8s; }
    .n2 { right: 11%; top: 16%; animation-delay: -1.6s; }
    .n3 { left: 9%; bottom: 14%; animation-delay: -2.4s; }
    .n4 { right: 13%; bottom: 13%; animation-delay: -3.2s; }
    .n5 { left: 43%; top: 6%; animation-delay: -4s; }

    .map-line {
      position: absolute;
      height: 2px;
      left: 50%;
      top: 50%;
      width: 34%;
      background: linear-gradient(90deg, var(--gold), transparent);
      transform-origin: left center;
      opacity: 0.65;
      animation: lineScan 3.2s linear infinite;
    }

    .l1 { transform: rotate(222deg); }
    .l2 { transform: rotate(318deg); animation-delay: -0.6s; }
    .l3 { transform: rotate(142deg); animation-delay: -1.2s; }
    .l4 { transform: rotate(38deg); animation-delay: -1.8s; }
    .l5 { transform: rotate(270deg); animation-delay: -2.4s; }

    .carousel-controls {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-top: 1px solid rgba(247, 240, 223, 0.1);
      padding-top: 24px;
    }

    .carousel-btn {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(247, 240, 223, 0.16);
      border-radius: 8px;
      color: var(--warm);
      background: rgba(255, 255, 255, 0.045);
      cursor: pointer;
      transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
    }

    .carousel-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(201, 168, 76, 0.52);
      color: var(--gold-soft);
    }

    .carousel-btn svg {
      width: 22px;
      height: 22px;
    }

    .dots {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
      flex: 1;
    }

    .dot {
      width: 34px;
      height: 5px;
      border: 0;
      border-radius: 999px;
      background: rgba(247, 240, 223, 0.16);
      cursor: pointer;
      transition: width 180ms ease, background 180ms ease;
    }

    .dot.active {
      width: 58px;
      background: linear-gradient(90deg, var(--gold), var(--gold-soft));
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 0.78fr;
      gap: 52px;
      align-items: center;
    }

    .reason {
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 22px;
      padding: 26px 0;
      border-top: 1px solid rgba(247, 240, 223, 0.12);
    }

    .reason:last-child {
      border-bottom: 1px solid rgba(247, 240, 223, 0.12);
    }

    .reason-num {
      color: var(--gold-soft);
      font-family: "Syne", sans-serif;
      font-size: 2.2rem;
    }

    .reason h3 {
      font-size: 1.3rem;
      margin-bottom: 8px;
    }

    .reason p {
      color: var(--muted);
      line-height: 1.62;
    }

    .cap-panel {
      position: relative;
      border: 1px solid rgba(201, 168, 76, 0.22);
      border-radius: 8px;
      padding: 30px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .cap-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(120deg, transparent 0 42%, rgba(201, 168, 76, 0.1) 42% 43%, transparent 43% 100%);
      background-size: 46px 46px;
      opacity: 0.42;
      pointer-events: none;
    }

    .cap-title {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
      color: var(--muted);
    }

    .cap-title strong {
      color: var(--warm);
      font-family: "Syne", sans-serif;
      font-size: 1.35rem;
    }

    .cap {
      position: relative;
      margin-bottom: 23px;
    }

    .cap:last-child {
      margin-bottom: 0;
    }

    .cap label {
      display: flex;
      justify-content: space-between;
      color: var(--warm);
      margin-bottom: 10px;
      font-size: 0.95rem;
    }

    .bar {
      height: 10px;
      border-radius: 999px;
      background: rgba(247, 240, 223, 0.08);
      overflow: hidden;
    }

    .bar span {
      display: block;
      height: 100%;
      width: 0;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--teal));
      transition: width 1.25s cubic-bezier(.2, .8, .2, 1);
    }

    .tech {
      padding-top: 60px;
    }

    .tech-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .pill {
      position: relative;
      border: 1px solid rgba(247, 240, 223, 0.12);
      border-radius: 999px;
      padding: 11px 16px;
      color: var(--warm);
      background: rgba(255, 255, 255, 0.035);
      transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
    }

    .pill:hover {
      transform: translateY(-4px);
      border-color: rgba(201, 168, 76, 0.48);
      color: var(--gold-soft);
    }

    .final-cta {
      padding: 110px 0 90px;
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(201, 168, 76, 0.26);
      border-radius: 8px;
      padding: clamp(34px, 7vw, 74px);
      background:
        radial-gradient(circle at 74% 30%, rgba(201, 168, 76, 0.26), transparent 24rem),
        linear-gradient(135deg, rgba(201, 168, 76, 0.14), rgba(255, 255, 255, 0.02) 42%, rgba(72, 214, 200, 0.08)),
        rgba(8, 8, 6, 0.92);
    }

    .cta-band h2 {
      max-width: 780px;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-top: 34px;
    }

    .cta-mail {
      color: var(--gold-soft);
      font-size: 1.15rem;
      font-weight: 700;
    }

    footer {
      border-top: 1px solid rgba(247, 240, 223, 0.1);
      padding: 34px 0;
      color: var(--muted);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 44px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid rgba(247, 240, 223, 0.11);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.035);
      overflow: hidden;
    }

    .faq-item summary {
      min-height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 20px;
      color: var(--warm);
      cursor: pointer;
      font-weight: 700;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(201, 168, 76, 0.32);
      border-radius: 50%;
      color: var(--gold-soft);
      flex: 0 0 auto;
    }

    .faq-item[open] summary::after {
      content: "-";
    }

    .faq-item p {
      color: var(--muted);
      line-height: 1.65;
      padding: 0 20px 20px;
    }

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

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    @keyframes badgePulse {
      0%, 100% { box-shadow: 0 0 0 rgba(201, 168, 76, 0); }
      50% { box-shadow: 0 0 34px rgba(201, 168, 76, 0.16); }
    }

    @keyframes stageFloat {
      0%, 100% { transform: translateY(0) rotate(0.001deg); }
      50% { transform: translateY(-18px) rotate(0.001deg); }
    }

    @keyframes ringBreathe {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.05); }
    }

    @keyframes lineScan {
      0% { opacity: 0.1; filter: brightness(0.8); }
      45% { opacity: 1; filter: brightness(1.4); }
      100% { opacity: 0.1; filter: brightness(0.8); }
    }

    @keyframes nodeLift {
      0%, 100% { transform: translateZ(38px) scale(1); }
      50% { transform: translateZ(86px) scale(1.2); }
    }

    @keyframes labelDrift {
      0%, 100% { transform: translate3d(0, 0, 80px); }
      50% { transform: translate3d(10px, -12px, 130px); }
    }

    @keyframes mapFloat {
      0%, 100% { filter: brightness(1); }
      50% { filter: brightness(1.22); }
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero {
        min-height: auto;
        padding-top: 118px;
      }

      .hero-grid,
      .mission-grid,
      .why-grid,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        height: 480px;
        order: 2;
      }

      .hero-content {
        order: 1;
      }

      .hero-title .title-line {
        display: inline;
      }

      .hero-title .title-line::after {
        content: " ";
      }

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

      .idea-carousel {
        grid-template-columns: 1fr;
      }

      .idea-device {
        transform: none;
      }

      .idea-carousel:hover .idea-device {
        transform: translateY(-4px);
      }

      .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .statement.large {
        margin-top: 0;
      }

      .section-head {
        display: block;
      }

      .section-head p {
        margin-top: 18px;
      }
    }

    @media (min-width: 1280px) {
      :root {
        --max: 1240px;
      }
    }

    @media (min-width: 1600px) {
      :root {
        --max: 1400px;
      }

      .hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
      }

      h1 {
        font-size: clamp(5.2rem, 5vw, 7rem);
      }

      h2 {
        font-size: clamp(3rem, 4vw, 5.4rem);
      }

      .hero-visual {
        height: min(62vh, 680px);
      }

      .monolith {
        width: min(34vw, 480px);
        height: min(42vw, 560px);
      }
    }

    @media (min-width: 2200px) {
      :root {
        --max: 1720px;
      }

      body {
        font-size: 1.12rem;
      }

      .hero {
        min-height: 920px;
      }

      .services-grid {
        gap: 22px;
      }

      .service-card {
        min-height: 320px;
        padding: 32px;
      }
    }

    @media (max-width: 640px) {
      .wrap {
        width: min(calc(100% - 28px), var(--max));
      }

      .nav-inner {
        height: 68px;
      }

      .brand {
        font-size: 1rem;
      }

      .brand-logo {
        width: 152px;
      }

      .button {
        width: 100%;
      }

      .nav .button {
        width: auto;
        padding: 0 14px;
      }

      .hero {
        padding-bottom: 64px;
      }

      h1 {
        font-size: clamp(2.35rem, 10.8vw, 3.55rem);
        line-height: 1.02;
      }

      .hero-title .title-line {
        display: block;
      }

      .hero-title .title-line::after {
        content: "";
      }

      .hero-chips {
        gap: 8px;
      }

      .hero-chip {
        font-size: 0.86rem;
      }

      .hero-visual {
        height: 310px;
        min-height: 310px;
        margin-top: 6px;
      }

      .monolith {
        width: min(78vw, 300px);
        height: min(88vw, 360px);
      }

      .orbit-label {
        font-size: 0.8rem;
        min-height: 36px;
        max-width: 210px;
      }

      .label-1 { left: 0; top: 5%; }
      .label-2 { right: 0; top: 38%; }
      .label-3 { left: 3%; bottom: 8%; }

      .stats,
      .services-grid {
        grid-template-columns: 1fr;
      }

      .idea-carousel {
        min-height: 0;
      }

      .idea-device {
        min-height: 340px;
      }

      .network-map {
        min-height: 298px;
      }

      .map-node {
        width: 72px;
        height: 72px;
        font-size: 0.82rem;
      }

      .map-node.core {
        width: 92px;
        height: 92px;
      }

      .dot {
        width: 22px;
      }

      .dot.active {
        width: 38px;
      }

      section {
        padding: 76px 0;
      }

      .service-card {
        min-height: 240px;
      }

      .reason {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .footer-inner {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 430px) {
      .wrap {
        width: min(calc(100% - 24px), var(--max));
      }

      .nav .button {
        min-height: 40px;
        font-size: 0.88rem;
      }

      .nav .button svg {
        display: none;
      }

      .hero {
        padding-top: 94px;
      }

      h1 {
        font-size: clamp(2.08rem, 10.6vw, 3rem);
      }

      h2 {
        font-size: clamp(2rem, 10vw, 3rem);
      }

      .eyebrow {
        font-size: 0.78rem;
        line-height: 1.35;
      }

      .hero-actions {
        gap: 10px;
      }

      .hero-visual {
        height: 286px;
        min-height: 286px;
      }

      .orbit-label {
        max-width: 172px;
        padding: 0 10px;
        font-size: 0.72rem;
      }

      .label-1 { top: 4%; }
      .label-2 { top: 36%; }
      .label-3 { bottom: 7%; }

      .idea-device {
        min-height: 300px;
      }

      .network-map {
        min-height: 258px;
      }

      .footer-links {
        flex-direction: column;
        gap: 10px;
      }
    }

    @media (max-width: 360px) {
      .brand-logo {
        width: 132px;
      }

      .hero-chip {
        width: 100%;
      }

      h1 {
        font-size: clamp(1.96rem, 10.2vw, 2.58rem);
      }

      .stat {
        min-height: 68px;
      }
    }

    @media (min-width: 981px) and (max-height: 760px) {
      .hero {
        align-items: flex-start;
        padding-top: 96px;
        padding-bottom: 46px;
      }

      h1 {
        font-size: clamp(3rem, 5.2vw, 5rem);
      }

      .eyebrow {
        margin-bottom: 16px;
      }

      .hero-copy {
        margin-top: 16px;
        line-height: 1.5;
      }

      .hero-chips {
        margin-top: 18px;
      }

      .hero-actions {
        margin-top: 22px;
      }

      .stats {
        margin-top: 22px;
      }

      .stat {
        min-height: 72px;
        padding: 11px 12px;
      }

      .stat strong {
        font-size: 1.35rem;
      }

      .hero-visual {
        height: 470px;
        min-height: 410px;
      }
    }

