  :root {
      --deep-navy: #0f1a2b;
      --navy: #1c2e4a;
      --steel: #52677d;
      --mist: #bdc4d4;
      --sand: #d1cfc9;
      --accent: #4a9eff;
      --accent-glow: rgba(74, 158, 255, 0.15);
  }

  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Fira Code', monospace;
      background-color: var(--deep-navy);
      color: var(--sand);
      overflow-x: hidden;
      cursor: none;
  }

  /* Custom Cursor */
  .cursor {
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.1s ease;
      mix-blend-mode: screen;
  }

  .cursor-ring {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(74, 158, 255, 0.4);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
  }

  /* Scrollbar */
  ::-webkit-scrollbar {
      width: 4px;
  }

  ::-webkit-scrollbar-track {
      background: var(--deep-navy);
  }

  ::-webkit-scrollbar-thumb {
      background: var(--steel);
  }

  /* ── NOISE OVERLAY ── */
  body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1000;
      opacity: 0.4;
  }

  /* ── GRID BACKGROUND ── */
  .grid-bg {
      position: fixed;
      inset: 0;
      background-image:
          linear-gradient(rgba(74, 158, 255, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(74, 158, 255, 0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
  }

  /* ── NAV ── */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 24px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(82, 103, 125, 0.2);
      backdrop-filter: blur(12px);
      background: rgba(15, 26, 43, 0.7);
      transition: padding 0.3s ease;
  }

  .nav-logo {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--mist);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .nav-logo .bracket {
      color: var(--accent);
      font-weight: 300;
  }

  .nav-links {
      display: flex;
      list-style: none;
      gap: 40px;
      align-items: center;
  }

  .nav-links a {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--steel);
      text-decoration: none;
      position: relative;
      transition: color 0.2s ease;
  }

  .nav-links a::before {
      content: '//';
      position: absolute;
      left: -18px;
      color: var(--accent);
      opacity: 0;
      transition: opacity 0.2s ease;
      font-size: 11px;
  }

  .nav-links a:hover {
      color: var(--mist);
  }

  .nav-links a:hover::before {
      opacity: 1;
  }

  .nav-cta {
      font-size: 11px !important;
      font-weight: 500 !important;
      color: var(--accent) !important;
      border: 1px solid rgba(74, 158, 255, 0.3) !important;
      padding: 8px 20px;
      letter-spacing: 0.12em !important;
      transition: background 0.2s ease, border-color 0.2s ease !important;
  }

  .nav-cta:hover {
      background: var(--accent-glow) !important;
      border-color: var(--accent) !important;
  }

  .nav-cta::before {
      display: none !important;
  }

  /* ── HERO ── */
  #hero {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 0 60px;
  }

  .hero-inner {
      max-width: 900px;
      padding-top: 80px;
  }

  .hero-tag {
      font-size: 11px;
      font-weight: 500;
      color: var(--accent);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 12px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.2s forwards;
  }

  .hero-tag::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--accent);
  }

  .hero-title {
      font-size: clamp(48px, 8vw, 96px);
      font-weight: 700;
      line-height: 0.95;
      letter-spacing: -0.02em;
      color: var(--mist);
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.4s forwards;
  }

  .hero-title .accent-word {
      color: transparent;
      -webkit-text-stroke: 1px var(--accent);
      position: relative;
  }

  .hero-title .glow-word {
      color: var(--accent);
      text-shadow: 0 0 60px rgba(74, 158, 255, 0.4);
  }

  .hero-desc {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--steel);
      max-width: 480px;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.6s forwards;
  }

  .hero-desc .comment {
      color: rgba(82, 103, 125, 0.5);
      display: block;
      margin-bottom: 8px;
      font-size: 12px;
  }

  .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.8s forwards;
  }

  .btn-primary {
      font-family: 'Fira Code', monospace;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      color: var(--deep-navy);
      background: var(--accent);
      border: none;
      padding: 14px 32px;
      cursor: none;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-decoration: none;
      display: inline-block;
  }

  .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: white;
      opacity: 0;
      transition: opacity 0.2s ease;
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(74, 158, 255, 0.4);
  }

  .btn-secondary {
      font-family: 'Fira Code', monospace;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.12em;
      color: var(--steel);
      background: transparent;
      border: none;
      cursor: none;
      padding: 14px 0;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: color 0.2s ease;
  }

  .btn-secondary:hover {
      color: var(--mist);
  }

  .btn-secondary .arrow {
      display: inline-block;
      transition: transform 0.2s ease;
  }

  .btn-secondary:hover .arrow {
      transform: translateX(4px);
  }

  /* Hero decoration */
  .hero-decoration {
      position: absolute;
      right: 60px;
      top: 50%;
      transform: translateY(-50%);
      width: 380px;
      height: 380px;
      pointer-events: none;
      opacity: 0;
      animation: fadeIn 1.2s ease 1s forwards;
  }

  .hex-ring {
      position: absolute;
      border: 1px solid rgba(74, 158, 255, 0.15);
      border-radius: 50%;
      animation: spin linear infinite;
  }

  .hex-ring:nth-child(1) {
      inset: 0;
      animation-duration: 40s;
  }

  .hex-ring:nth-child(2) {
      inset: 30px;
      animation-duration: 30s;
      animation-direction: reverse;
      border-style: dashed;
  }

  .hex-ring:nth-child(3) {
      inset: 70px;
      animation-duration: 20s;
      border-color: rgba(74, 158, 255, 0.08);
  }

  .hex-center {
      position: absolute;
      inset: 110px;
      background: radial-gradient(circle at center, rgba(74, 158, 255, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .hex-dot {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 20px var(--accent);
      animation: pulse 2s ease-in-out infinite;
  }

  /* ── STATS ── */
  .stats-bar {
      position: relative;
      z-index: 1;
      border-top: 1px solid rgba(82, 103, 125, 0.15);
      border-bottom: 1px solid rgba(82, 103, 125, 0.15);
      background: rgba(28, 46, 74, 0.3);
      padding: 32px 60px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
  }

  .stat-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding-left: 20px;
      border-left: 2px solid rgba(74, 158, 255, 0.2);
  }

  .stat-num {
      font-size: 28px;
      font-weight: 700;
      color: var(--mist);
      letter-spacing: -0.02em;
  }

  .stat-num .accent {
      color: var(--accent);
  }

  .stat-label {
      font-size: 11px;
      font-weight: 400;
      color: var(--steel);
      letter-spacing: 0.1em;
  }

  /* ── SERVICES ── */
  #services {
      position: relative;
      z-index: 1;
      padding: 120px 60px;
  }

  .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 64px;
  }

  .section-tag {
      font-size: 11px;
      font-weight: 500;
      color: var(--accent);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .section-tag::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--accent);
  }

  .section-title {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      color: var(--mist);
      letter-spacing: -0.02em;
      line-height: 1.1;
  }

  .section-title span {
      color: transparent;
      -webkit-text-stroke: 1px rgba(189, 196, 212, 0.4);
  }

  .view-all {
      font-size: 12px;
      color: var(--steel);
      text-decoration: none;
      letter-spacing: 0.1em;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s ease;
      padding-bottom: 4px;
  }

  .view-all:hover {
      color: var(--mist);
  }

  .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
  }

  .service-card {
      background: rgba(28, 46, 74, 0.3);
      border: 1px solid rgba(82, 103, 125, 0.12);
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s ease, border-color 0.3s ease;
      cursor: none;
  }

  .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--accent-glow), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .service-card:hover {
      background: rgba(28, 46, 74, 0.6);
      border-color: rgba(74, 158, 255, 0.2);
  }

  .service-card:hover::before {
      opacity: 1;
  }

  .service-num {
      font-size: 11px;
      font-weight: 500;
      color: var(--accent);
      letter-spacing: 0.15em;
      margin-bottom: 24px;
      opacity: 0.6;
  }

  .service-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 24px;
      color: var(--accent);
      opacity: 0.8;
  }

  .service-name {
      font-size: 18px;
      font-weight: 600;
      color: var(--mist);
      letter-spacing: -0.01em;
      margin-bottom: 14px;
      line-height: 1.2;
  }

  .service-desc {
      font-size: 12px;
      font-weight: 300;
      color: var(--steel);
      line-height: 1.8;
  }

  .service-tag-list {
      margin-top: 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
  }

  .tag {
      font-size: 10px;
      font-weight: 400;
      color: var(--steel);
      border: 1px solid rgba(82, 103, 125, 0.3);
      padding: 4px 10px;
      letter-spacing: 0.08em;
  }

  /* ── ABOUT / PROCESS ── */
  #about {
      position: relative;
      z-index: 1;
      padding: 120px 60px;
      border-top: 1px solid rgba(82, 103, 125, 0.1);
  }

  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
  }

  .about-text p {
      font-size: 13px;
      font-weight: 300;
      color: var(--steel);
      line-height: 1.9;
      margin-bottom: 20px;
  }

  .about-text p strong {
      color: var(--mist);
      font-weight: 500;
  }

  .about-text p .highlight {
      color: var(--accent);
  }

  .process-list {
      display: flex;
      flex-direction: column;
      gap: 0;
  }

  .process-item {
      display: flex;
      gap: 24px;
      padding: 24px 0;
      border-bottom: 1px solid rgba(82, 103, 125, 0.12);
      position: relative;
      cursor: none;
      transition: background 0.2s ease;
  }

  .process-item:first-child {
      border-top: 1px solid rgba(82, 103, 125, 0.12);
  }

  .process-num {
      font-size: 11px;
      font-weight: 500;
      color: var(--accent);
      letter-spacing: 0.15em;
      min-width: 36px;
      padding-top: 2px;
  }

  .process-content h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--mist);
      margin-bottom: 8px;
      letter-spacing: -0.01em;
  }

  .process-content p {
      font-size: 12px;
      font-weight: 300;
      color: var(--steel);
      line-height: 1.7;
  }

  /* ── TERMINAL CTA ── */
  #contact {
      position: relative;
      z-index: 1;
      padding: 120px 60px;
  }

  .terminal-card {
      background: rgba(15, 26, 43, 0.8);
      border: 1px solid rgba(82, 103, 125, 0.2);
      padding: 60px;
      position: relative;
      overflow: hidden;
      max-width: 800px;
      margin: 0 auto;
  }

  .terminal-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
  }

  .terminal-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(82, 103, 125, 0.15);
  }

  .terminal-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
  }

  .terminal-dot:nth-child(1) {
      background: #ff5f57;
  }

  .terminal-dot:nth-child(2) {
      background: #ffbd2e;
  }

  .terminal-dot:nth-child(3) {
      background: #28ca41;
  }

  .terminal-title-bar {
      font-size: 11px;
      color: var(--steel);
      letter-spacing: 0.1em;
      margin-left: auto;
  }

  .terminal-body {
      text-align: center;
  }

  .terminal-prompt {
      font-size: 12px;
      color: var(--steel);
      margin-bottom: 24px;
  }

  .terminal-prompt .cmd {
      color: var(--accent);
  }

  .terminal-heading {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      color: var(--mist);
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 20px;
  }

  .terminal-sub {
      font-size: 13px;
      font-weight: 300;
      color: var(--steel);
      line-height: 1.7;
      max-width: 400px;
      margin: 0 auto 40px;
  }

  .terminal-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      align-items: center;
  }

  /* ── FOOTER ── */
  footer {
      position: relative;
      z-index: 1;
      padding: 40px 60px;
      border-top: 1px solid rgba(82, 103, 125, 0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .footer-logo {
      font-size: 13px;
      font-weight: 600;
      color: var(--mist);
      letter-spacing: 0.1em;
  }

  .footer-logo .bracket {
      color: var(--accent);
      font-weight: 300;
  }

  .footer-copy {
      font-size: 11px;
      color: var(--steel);
      letter-spacing: 0.08em;
  }

  .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
  }

  .footer-links a {
      font-size: 11px;
      color: var(--steel);
      text-decoration: none;
      letter-spacing: 0.08em;
      transition: color 0.2s ease;
  }

  .footer-links a:hover {
      color: var(--mist);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  @keyframes spin {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 1;
          box-shadow: 0 0 20px var(--accent);
      }

      50% {
          opacity: 0.5;
          box-shadow: 0 0 40px var(--accent);
      }
  }

  @keyframes blink {

      0%,
      100% {
          opacity: 1;
      }

      50% {
          opacity: 0;
      }
  }

  .cursor-blink {
      display: inline-block;
      width: 2px;
      height: 1em;
      background: var(--accent);
      vertical-align: text-bottom;
      animation: blink 1s step-end infinite;
      margin-left: 2px;
  }

  /* Scroll reveal */
  .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
      opacity: 1;
      transform: none;
  }

  /* Responsive */
  @media (max-width: 900px) {
      nav {
          padding: 20px 24px;
      }

      #hero {
          padding: 0 24px;
      }

      .hero-decoration {
          display: none;
      }

      .stats-bar {
          grid-template-columns: repeat(2, 1fr);
          padding: 32px 24px;
      }

      #services {
          padding: 80px 24px;
      }

      .services-grid {
          grid-template-columns: 1fr;
      }

      #about {
          padding: 80px 24px;
      }

      .about-grid {
          grid-template-columns: 1fr;
          gap: 48px;
      }

      #contact {
          padding: 80px 24px;
      }

      .terminal-card {
          padding: 36px 24px;
      }

      footer {
          padding: 32px 24px;
          flex-direction: column;
          gap: 24px;
          text-align: center;
      }

      .nav-links {
          display: none;
      }
  }