    :root {
      --bg-deep: #0f1226;
      --bg-mid: #1a1f3c;
      --accent-cyan: #00f5ff;
      --accent-magenta: #ff3cac;
      --accent-purple: #9d4edd;
      --accent-green: #00ff99;
      --text-primary: #e6e9ff;
      --text-muted: #9aa4ff;
      --glass: rgba(255, 255, 255, 0.05);
      --glass-dark: rgba(0, 0, 0, 0.3);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: radial-gradient(circle at 20% 30%, #1c1f4a 0%, var(--bg-deep) 60%);
      color: var(--text-primary);
      overflow-x: hidden;
      min-height: 100vh;
      line-height: 1.6;
    }

    .container {
      width: 90%;
      max-width: 1100px;
      margin: 0 auto;
    }

    /* Typography */
    h1 {
      font-size: clamp(3rem, 8vw, 5rem);
      letter-spacing: -2px;
      text-transform: uppercase;
      background: linear-gradient(to bottom, #fff, var(--text-muted));
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
    }

    h2 {
      font-size: clamp(1.6rem, 5vw, 2.2rem);
      margin-bottom: 15px;
      font-weight: 700;
    }

    p {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 700px;
      margin: auto;
    }

    /* Call to Action Group (Aligned to Screenshot) */
    .cta-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-top: 40px;
    }

    /* Buttons */
    .btn-primary, .btn-outline {
      padding: 14px 28px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-block;
      text-align: center;
    }

    .btn-primary {
      background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
      color: #fff;
      box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(255, 60, 172, 0.6);
    }

    .btn-primary:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .btn-outline {
      border: 1px solid var(--accent-purple);
      color: var(--accent-cyan);
      background: rgba(0, 0, 0, 0.2);
      box-shadow: 0 0 15px rgba(157, 78, 221, 0.25);
    }

    .btn-outline:hover {
      background: rgba(157, 78, 221, 0.1);
      box-shadow: 0 0 25px rgba(157, 78, 221, 0.45);
    }

    /* Hero Section */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .glow-bg {
      position: absolute;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(157,78,221,0.15) 0%, transparent 70%);
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 0;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 3;
    }

    /* GLASS CONTAINERS - FIXED WIDTH & BORDERS */
    .glass-container {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 45px 30px;
      border-radius: 24px;
      max-width: 600px; /* Force constraint */
      width: 100%;
      margin: 0 auto;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      position: relative;
    }

    .section {
      padding: 100px 0;
      text-align: center;
    }

    /* FORM STYLES - FIXED "WHITE BOX" ISSUE */
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;
      text-align: left;
    }

    .form-group label {
      font-size: 0.75rem;
      color: var(--accent-cyan);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 700;
    }

    .form-group input, 
    .form-group select,
    .form-group textarea {
      background-color: var(--glass-dark) !important;
      border: 1px solid rgba(255, 255, 255, 0.15) !important;
      padding: 14px 18px;
      border-radius: 12px;
      color: #fff !important;
      font-family: 'Inter', sans-serif !important;
      font-size: 1rem;
      width: 100%;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      appearance: none;
      -webkit-appearance: none;
    }

    .form-group textarea {
      min-height: 120px;
      line-height: 1.5;
    }

    .form-group input:focus, 
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--accent-magenta) !important;
      box-shadow: 0 0 15px rgba(255, 60, 172, 0.2);
    }

    /* TERMINAL OUTPUT */
    .terminal-output {
      font-family: 'Courier New', monospace; 
      text-align: left; 
      background: rgba(0, 0, 0, 0.45); 
      padding: 25px; 
      border-radius: 14px; 
      border-left: 4px solid var(--accent-green);
      margin-top: 25px;
      font-size: 0.95rem;
    }

    .terminal-output p {
      margin: 0 0 12px 0;
      color: var(--text-muted);
      max-width: 100%;
    }

    .sys-msg { color: var(--accent-green) !important; font-weight: bold; }
    .sys-alert { color: var(--accent-cyan) !important; }

    .cursor-blink::after {
      content: "_";
      animation: blink 1s step-end infinite;
      color: var(--accent-green);
    }

    /* FOOTER V6 GIMBAL - CORRECTED SVG STYLES & LAYOUT */
    .footer {
      background: #080a16;
      padding: 80px 0 40px;
      border-top: 1px solid rgba(157, 78, 221, 0.2);
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 50px;
      flex-wrap: wrap;
      gap: 30px;
    }

    .footer-info {
      text-align: right;
    }

    .footer-info p {
      margin: 0 0 5px 0;
      max-width: none; /* Overrides global centering */
      color: #fff;
      font-weight: 500;
      font-size: 0.75rem;
    }

    .footer-info a {
      color: var(--accent-cyan);
      text-decoration: none;
      font-size: 0.75rem;
      transition: color 0.3s ease;
    }

    .footer-info a:hover {
      color: var(--accent-magenta);
    }

    .footer-bottom {
      border-top: 1px solid var(--glass);
      padding-top: 20px;
      font-family: 'Courier New', monospace;
      color: var(--cyan-muted);
      opacity: 0.6;
      font-size: 0.95rem;
      text-align: center;
    }

    .v6-svg {
      filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.4));
    }

    .v6-gimbal-01, .v6-gimbal-02, .v6-gimbal-03 { 
      transform-origin: 50px 50px; 
    }
    .v6-gimbal-01 { transform: rotateX(65deg) rotateY(10deg); }
    .v6-gimbal-02 { transform: rotateX(-45deg) rotateY(35deg); }
    .v6-gimbal-03 { transform: rotateX(15deg) rotateY(75deg); }

    .v6-ring {
      transform-origin: 50px 50px;
      animation: v6-spin linear infinite;
      animation-play-state: paused;
      will-change: transform;
    }

    .v6-ring.ring-1 { animation-duration: 8s; }
    .v6-ring.ring-2 { animation-duration: 12s; animation-direction: reverse; }
    .v6-ring.ring-3 { animation-duration: 6s; }
    
    .v6-scanner {
      animation: v6-scan 4s ease-in-out infinite;
      animation-play-state: paused;
    }

    .v6-svg.is-animating .v6-ring,
    .v6-svg.is-animating .v6-scanner {
      animation-play-state: running;
    }

    @keyframes v6-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    @keyframes v6-scan { 
      0%, 100% { transform: translateY(15px); opacity: 0; } 
      50% { transform: translateY(85px); opacity: 1; } 
    }

    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

    /* Reveal animations */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease-out;
    }
    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .footer-grid { text-align: center; justify-content: center; }
      .footer-info { text-align: center; }
    }

  