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

      :root {
        --cyan: #00d4e8;
        --cyan-dim: rgba(0, 212, 232, 0.18);
        --cyan-glow: rgba(0, 212, 232, 0.55);
        --navy: #03080f;
        --navy-mid: #071525;
        --navy-light: #0b1e35;
        --white: #f0f4f8;
        --muted: rgba(240, 244, 248, 0.45);
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        background: var(--navy);
        color: var(--white);
        font-family: "DM Sans", sans-serif;
        overflow-x: hidden;
        cursor: none;
      }

      /* Custom cursor */
      .cursor {
        position: fixed;
        width: 10px;
        height: 10px;
        background: var(--cyan);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition:
          transform 0.1s,
          width 0.3s,
          height 0.3s,
          opacity 0.3s;
        box-shadow:
          0 0 12px var(--cyan),
          0 0 30px var(--cyan-glow);
      }
      .cursor-ring {
        position: fixed;
        width: 36px;
        height: 36px;
        border: 1px solid var(--cyan-glow);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition:
          transform 0.18s ease,
          width 0.3s,
          height 0.3s;
      }

      /* ─── NAV ─── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 28px 56px;
        background: linear-gradient(
          to bottom,
          rgba(3, 8, 15, 0.9) 0%,
          transparent 100%
        );
      }
      .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: "Sora", sans-serif;
        font-size: 14px;
        letter-spacing: 0.04em;
        font-weight: 700;
        color: var(--white);
        text-decoration: none;
      }
      .nav-logo .o-ring {
        width: 22px;
        height: 22px;
        border: 2.5px solid var(--cyan);
        border-radius: 50%;
        box-shadow:
          0 0 8px var(--cyan),
          0 0 20px var(--cyan-glow);
        animation: pulse-ring 3s ease-in-out infinite;
      }
      @keyframes pulse-ring {
        0%,
        100% {
          box-shadow:
            0 0 8px var(--cyan),
            0 0 20px var(--cyan-glow);
        }
        50% {
          box-shadow:
            0 0 16px var(--cyan),
            0 0 40px var(--cyan-glow),
            0 0 60px rgba(0, 212, 232, 0.2);
        }
      }
      .nav-links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 40px;
        list-style: none;
      }
      .nav-links a {
        font-family: "DM Sans", sans-serif;
        font-size: 12px;
        letter-spacing: 0.14em;
        color: var(--muted);
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.3s;
      }
      .nav-links a:hover {
        color: var(--cyan);
      }
      .nav-cta {
        font-family: "Sora", sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        color: var(--cyan);
        text-decoration: none;
        border: 1px solid var(--cyan-glow);
        padding: 10px 22px;
        border-radius: 2px;
        transition:
          background 0.3s,
          box-shadow 0.3s;
      }
      .nav-cta:hover {
        background: var(--cyan-dim);
        box-shadow: 0 0 20px var(--cyan-glow);
      }

      /* ─── HERO ─── */
      #hero {
        position: relative;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }

      #star-canvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
      }

      .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        animation: hero-rise 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
      }
      @keyframes hero-rise {
        from {
          opacity: 0;
          transform: translateY(40px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* The big ORION wordmark */
      .orion-wordmark {
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Sora", sans-serif;
        font-size: clamp(64px, 10vw, 136px);
        font-weight: 700;
        letter-spacing: -0.01em;
        line-height: 1;
        color: var(--white);
        text-shadow: 0 0 80px rgba(0, 212, 232, 0.12);
        width: 100%;
      }
      .orion-o {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: transparent;
      }
      .orion-o svg {
        position: absolute;
        width: 100%;
        height: 100%;
      }
      .orion-o-inner {
        visibility: hidden;
      }

      /* Brand name block — ORION + Capital Technologies grouped together */
      .hero-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .hero-sub {
        font-family: "Sora", sans-serif;
        font-weight: 600;
        font-size: clamp(14px, 1.9vw, 22px);
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(240, 244, 248, 0.7);
        margin-top: 6px;
        text-shadow:
          0 0 40px rgba(0, 0, 0, 0.8),
          0 2px 12px rgba(0, 0, 0, 0.6);
        animation: hero-rise 1.4s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      /* Thin dividing rule between brand and tagline */
      .hero-rule {
        width: 40px;
        height: 1px;
        background: linear-gradient(
          to right,
          transparent,
          rgba(0, 212, 232, 0.5),
          transparent
        );
        margin: 68px auto 0;
        animation: hero-rise 1.4s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      .hero-tagline {
        font-family: "DM Sans", sans-serif;
        font-size: clamp(13px, 1.3vw, 17px);
        font-weight: 300;
        font-style: normal;
        color: rgba(240, 244, 248, 0.5);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-top: 24px;
        text-shadow:
          0 0 30px rgba(0, 0, 0, 0.9),
          0 2px 8px rgba(0, 0, 0, 0.7);
        animation: hero-rise 1.4s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
      }
      .hero-tagline span {
        color: var(--cyan);
      }

      .scroll-cue {
        position: absolute;
        bottom: 44px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        z-index: 2;
        animation: hero-rise 1.8s 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
      }
      .scroll-cue span {
        font-size: 9px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--muted);
      }
      .scroll-line {
        width: 1px;
        height: 52px;
        background: linear-gradient(to bottom, var(--cyan), transparent);
        animation: scroll-drop 1.8s ease-in-out infinite;
      }
      @keyframes scroll-drop {
        0% {
          transform: scaleY(0);
          transform-origin: top;
          opacity: 1;
        }
        50% {
          transform: scaleY(1);
          transform-origin: top;
          opacity: 1;
        }
        100% {
          transform: scaleY(1);
          transform-origin: bottom;
          opacity: 0;
        }
      }

      /* ─── DIVIDER ─── */
      .section-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(
          to right,
          transparent,
          var(--cyan-glow),
          transparent
        );
        opacity: 0.4;
      }

      /* ─── SERVICES ─── */
      #services {
        position: relative;
        padding: 120px 56px 140px;
        background: linear-gradient(
          to bottom,
          var(--navy) 0%,
          var(--navy-mid) 100%
        );
      }

      .section-label {
        font-family: "Sora", sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--cyan);
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .section-label.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .section-heading {
        font-family: "Sora", sans-serif;
        font-size: clamp(28px, 3.5vw, 46px);
        font-weight: 700;
        line-height: 1.18;
        color: var(--white);
        max-width: 640px;
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.7s 0.1s ease,
          transform 0.7s 0.1s ease;
      }
      .section-heading.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 72px;
      }
      .flagship-card {
        border-color: rgba(0, 212, 232, 0.22) !important;
        background: rgba(0, 212, 232, 0.04) !important;
      }
      .flagship-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(
          to right,
          transparent,
          var(--cyan),
          transparent
        );
        opacity: 0.6;
      }

      .service-card {
        position: relative;
        background: rgba(11, 30, 53, 0.6);
        border: 1px solid rgba(0, 212, 232, 0.12);
        border-radius: 4px;
        padding: 48px 40px 52px;
        overflow: hidden;
        backdrop-filter: blur(12px);
        opacity: 0;
        transform: translateY(40px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease,
          border-color 0.4s,
          box-shadow 0.4s;
        cursor: none;
      }
      .service-card.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .service-card:hover {
        border-color: rgba(0, 212, 232, 0.45);
        box-shadow:
          0 0 40px rgba(0, 212, 232, 0.08),
          inset 0 0 60px rgba(0, 212, 232, 0.03);
      }
      .service-card:nth-child(2) {
        transition-delay: 0.12s;
      }
      .service-card:nth-child(3) {
        transition-delay: 0.24s;
      }

      .card-glow {
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        background: radial-gradient(
          circle,
          var(--cyan-glow) 0%,
          transparent 70%
        );
        opacity: 0;
        transition: opacity 0.5s;
        pointer-events: none;
      }
      .service-card:hover .card-glow {
        opacity: 0.2;
      }

      .card-number {
        font-family: "Sora", sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.16em;
        color: var(--cyan);
        margin-bottom: 32px;
      }
      .card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 28px;
        stroke: var(--cyan);
        fill: none;
        stroke-width: 1.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        filter: drop-shadow(0 0 6px var(--cyan-glow));
      }
      .card-title {
        font-family: "Sora", sans-serif;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: -0.01em;
        line-height: 1.35;
        color: var(--white);
        margin-bottom: 20px;
      }
      .card-body {
        font-size: 14px;
        font-weight: 300;
        line-height: 1.8;
        color: var(--muted);
      }
      .card-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 32px;
        font-family: "Sora", sans-serif;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.06em;
        color: var(--cyan);
        text-decoration: none;
        transition: gap 0.3s;
      }
      .card-link:hover {
        gap: 14px;
      }
      .card-link svg {
        width: 14px;
        height: 14px;
        stroke: var(--cyan);
        fill: none;
        stroke-width: 1.5;
      }

      /* ─── SPECTRUM ─── */
      #spectrum {
        padding: 120px 56px;
        background: var(--navy-mid);
        position: relative;
        overflow: hidden;
      }
      .spectrum-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
      }
      .spectrum-left .section-heading {
        max-width: 100%;
      }

      .spectrum-copy {
        font-size: 15px;
        font-weight: 300;
        line-height: 1.9;
        color: var(--muted);
        margin-top: 28px;
        opacity: 0;
        transform: translateY(20px);
        transition:
          opacity 0.7s 0.2s ease,
          transform 0.7s 0.2s ease;
      }
      .spectrum-copy.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .spectrum-right {
        opacity: 0;
        transform: translateX(40px);
        transition:
          opacity 0.9s 0.1s ease,
          transform 0.9s 0.1s ease;
      }
      .spectrum-right.visible {
        opacity: 1;
        transform: translateX(0);
      }

      .client-spectrum {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .spectrum-item {
        display: flex;
        align-items: center;
        padding: 28px 0;
        border-bottom: 1px solid rgba(0, 212, 232, 0.08);
        gap: 24px;
      }
      .spectrum-item:first-child {
        border-top: 1px solid rgba(0, 212, 232, 0.08);
      }
      .spectrum-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--cyan);
        flex-shrink: 0;
        box-shadow: 0 0 8px var(--cyan);
      }
      .spectrum-item-label {
        font-family: "Sora", sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.02em;
        color: var(--white);
      }
      .spectrum-item-desc {
        margin-left: auto;
        font-size: 12px;
        font-weight: 300;
        letter-spacing: 0.06em;
        color: var(--muted);
        text-align: right;
      }

      /* The dividing axis line */
      .axis-line {
        width: 100%;
        height: 1px;
        margin: 20px 0 28px;
        background: linear-gradient(
          to right,
          var(--cyan),
          rgba(0, 212, 232, 0.1)
        );
        position: relative;
      }
      .axis-label {
        position: absolute;
        right: 0;
        top: -22px;
        font-size: 10px;
        letter-spacing: 0.2em;
        color: var(--cyan);
        text-transform: uppercase;
      }

      /* ─── STATS ─── */
      #stats {
        padding: 100px 56px;
        background: linear-gradient(
          to bottom,
          var(--navy-mid) 0%,
          var(--navy) 100%
        );
      }
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
        max-width: 1100px;
        margin: 0 auto;
      }
      .stat-block {
        padding: 52px 40px;
        border: 1px solid rgba(0, 212, 232, 0.07);
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }
      .stat-block.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .stat-block:nth-child(2) {
        transition-delay: 0.1s;
      }
      .stat-block:nth-child(3) {
        transition-delay: 0.2s;
      }
      .stat-block:nth-child(4) {
        transition-delay: 0.3s;
      }
      .stat-num {
        font-family: "Syncopate", sans-serif;
        font-size: clamp(36px, 4vw, 56px);
        font-weight: 700;
        color: var(--cyan);
        text-shadow: 0 0 30px var(--cyan-glow);
        letter-spacing: -0.02em;
        line-height: 1;
      }
      .stat-label {
        font-size: 11px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 14px;
      }

      /* ─── CTA ─── */
      #cta {
        padding: 160px 56px;
        background: var(--navy);
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 700px;
        background: radial-gradient(
          circle,
          rgba(0, 212, 232, 0.06) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .cta-heading {
        font-family: "Sora", sans-serif;
        font-size: clamp(36px, 5.5vw, 68px);
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: var(--white);
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }
      .cta-heading.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .cta-heading em {
        font-style: normal;
        background: linear-gradient(135deg, var(--cyan), #fff 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .cta-sub {
        margin-top: 24px;
        font-size: 15px;
        font-weight: 300;
        color: var(--muted);
        letter-spacing: 0.04em;
        opacity: 0;
        transform: translateY(20px);
        transition:
          opacity 0.7s 0.15s ease,
          transform 0.7s 0.15s ease;
      }
      .cta-sub.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .cta-btn {
        display: inline-block;
        margin-top: 52px;
        font-family: "Sora", sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: var(--navy);
        background: var(--cyan);
        padding: 18px 48px;
        border-radius: 2px;
        text-decoration: none;
        box-shadow:
          0 0 30px var(--cyan-glow),
          0 0 60px rgba(0, 212, 232, 0.2);
        opacity: 0;
        transform: translateY(20px);
        transition:
          opacity 0.7s 0.3s ease,
          transform 0.7s 0.3s ease,
          box-shadow 0.3s;
      }
      .cta-btn.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .cta-btn:hover {
        box-shadow:
          0 0 50px var(--cyan),
          0 0 100px rgba(0, 212, 232, 0.3);
        transform: translateY(-2px);
      }

      /* ─── FOOTER ─── */
      footer {
        padding: 40px 56px;
        border-top: 1px solid rgba(0, 212, 232, 0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: "Sora", sans-serif;
        font-size: 12px;
        letter-spacing: 0.04em;
        font-weight: 700;
        color: var(--muted);
      }
      .footer-logo .o-ring {
        width: 14px;
        height: 14px;
        border: 1.5px solid var(--cyan);
        border-radius: 50%;
      }
      .footer-copy {
        font-size: 11px;
        color: rgba(240, 244, 248, 0.2);
        letter-spacing: 0.06em;
      }

      /* ─── RESPONSIVE ─── */
      @keyframes draw-o {
        to {
          stroke-dashoffset: 0;
        }
      }

      @media (max-width: 900px) {
        nav {
          padding: 24px 28px;
        }
        .nav-links {
          display: none;
        }
        #services,
        #spectrum,
        #cta {
          padding: 80px 28px;
        }
        #stats {
          padding: 60px 28px;
        }
        .services-grid {
          grid-template-columns: 1fr;
        }
        .spectrum-inner {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        footer {
          flex-direction: column;
          gap: 16px;
          text-align: center;
        }
        .contact-form .form-row {
          grid-template-columns: 1fr;
        }
      }

      /* ─── CONTACT FORM ─── */
      .contact-form {
        max-width: 540px;
        margin: 52px auto 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
        text-align: left;
      }
      .contact-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }
      .contact-form input[type="text"],
      .contact-form input[type="email"],
      .contact-form textarea {
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(0, 212, 232, 0.18);
        border-radius: 2px;
        padding: 13px 16px;
        color: var(--white);
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        font-weight: 300;
        outline: none;
        transition: border-color 0.3s;
        -webkit-appearance: none;
      }
      .contact-form input[type="text"]::placeholder,
      .contact-form input[type="email"]::placeholder,
      .contact-form textarea::placeholder {
        color: var(--muted);
      }
      .contact-form input[type="text"]:focus,
      .contact-form input[type="email"]:focus,
      .contact-form textarea:focus {
        border-color: rgba(0, 212, 232, 0.55);
      }
      .contact-form textarea {
        resize: vertical;
        min-height: 120px;
        line-height: 1.7;
      }
      .form-btn {
        align-self: center;
        margin-top: 8px;
        font-family: "Sora", sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: var(--navy);
        background: var(--cyan);
        padding: 18px 48px;
        border-radius: 2px;
        border: none;
        cursor: pointer;
        box-shadow:
          0 0 30px var(--cyan-glow),
          0 0 60px rgba(0, 212, 232, 0.2);
        transition:
          box-shadow 0.3s,
          transform 0.3s;
      }
      .form-btn:hover {
        box-shadow:
          0 0 50px var(--cyan),
          0 0 100px rgba(0, 212, 232, 0.3);
        transform: translateY(-2px);
      }
      .form-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
      }
      .form-success {
        font-family: "Sora", sans-serif;
        font-size: 15px;
        font-weight: 300;
        color: var(--cyan);
        letter-spacing: 0.04em;
        margin-top: 16px;
        text-align: center;
      }
      .form-error {
        font-size: 12px;
        color: rgba(240, 244, 248, 0.4);
        margin-top: 8px;
        letter-spacing: 0.04em;
        text-align: center;
      }
