/* =============================================
       DESIGN TOKENS & RESETS
    ============================================= */
    :root {
      --navy:       #001f5b;
      --navy-deep:  #000d2e;
      --navy-mid:   #002a7a;
      --cyan:       #00c8ff;
      --cyan-dark:  #0099cc;
      --cyan-glow:  rgba(0,200,255,0.18);
      --silver:     #a8b8cc;
      --white:      #f4f8ff;
      --off-white:  #e8eef8;
      --gray-text:  #8a9bb8;
      --dark-card:  #040e25;
      --border:     rgba(0,200,255,0.15);
      --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
      --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --ease-snappy: cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      scroll-padding-top: 88px;
      background-color: #00081e;
    }

    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      min-height: 100%;
      background-color: #00081e;
    }

    body {
      color: var(--white);
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    main {
      display: block;
      margin: 0;
      padding: 0;
      background-color: #010816;
    }

    section,
    footer,
    header,
    nav {
      margin-block: 0;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Barlow Condensed', sans-serif;
      letter-spacing: -0.01em;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    @media (prefers-reduced-motion: reduce) {
      * { animation: none !important; transition: none !important; }
    }

    /* =============================================
       SCROLLBAR
    ============================================= */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--navy-deep); }
    ::-webkit-scrollbar-thumb { background: var(--cyan-dark); border-radius: 3px; }

    /* =============================================
       NAV
    ============================================= */
    #main-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 1000;
      margin: 0;
      padding: 0;
      background: transparent !important;
      border-bottom: none;
      box-shadow: none !important;
      transition: background 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
    }
    #main-nav:not(.scrolled) {
      background: transparent !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      border-bottom: none !important;
      box-shadow: none !important;
    }
    #main-nav.scrolled {
      background: rgba(0, 13, 46, 0.96) !important;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 18px 0;
      transition: padding 0.35s var(--ease-smooth);
    }
    #main-nav.scrolled .nav-inner {
      padding: 12px 0;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      line-height: 0;
    }
    .nav-logo svg {
      display: block;
      height: 38px;
      width: auto;
      max-width: none;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--off-white);
      padding: 8px 14px;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .nav-links a:hover {
      color: var(--cyan);
      background: rgba(0,200,255,0.08);
    }
    .nav-links a:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 2px;
    }
    .nav-cta {
      background: var(--cyan);
      color: var(--navy-deep) !important;
      font-weight: 700 !important;
      padding: 10px 20px !important;
      border-radius: 8px !important;
      transition: background 0.2s, box-shadow 0.2s, transform 0.2s !important;
    }
    .nav-cta:hover {
      background: #33d4ff !important;
      box-shadow: 0 0 20px rgba(0,200,255,0.45) !important;
      transform: translateY(-1px) !important;
      color: var(--navy-deep) !important;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      border-radius: 8px;
      border: none;
      background: transparent;
      z-index: 1100;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.3s var(--ease-smooth), opacity 0.3s;
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hamburger:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(0,8,30,0.98);
      backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      z-index: 1050;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s var(--ease-smooth), visibility 0.35s;
    }
    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
    }
    .mobile-menu a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--white);
      padding: 10px 32px;
      border-radius: 12px;
      transition: color 0.2s, background 0.2s;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      transform: translateY(20px);
      opacity: 0;
      transition: transform 0.4s var(--ease-snappy), opacity 0.4s, color 0.2s, background 0.2s;
    }
    .mobile-menu.open a {
      transform: translateY(0);
      opacity: 1;
    }
    .mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
    .mobile-menu.open a:nth-child(2) { transition-delay: 0.10s; }
    .mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
    .mobile-menu.open a:nth-child(4) { transition-delay: 0.20s; }
    .mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
    .mobile-menu.open a:nth-child(6) { transition-delay: 0.30s; }
    .mobile-menu.open a:nth-child(7) { transition-delay: 0.35s; }
    .mobile-menu a:hover { color: var(--cyan); background: rgba(0,200,255,0.08); }
    .mobile-menu-cta {
      background: var(--cyan) !important;
      color: var(--navy-deep) !important;
      margin-top: 16px;
    }

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

    /* =============================================
       HERO
    ============================================= */
    #hero {
      position: relative;
      min-height: 100svh;
      margin-top: 0;
      display: flex;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
      background: #00081e;
    }
    .hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      min-height: 100svh;
    }
    .hero-video-wrap iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: max(100vw, 177.78vh);
      height: max(56.25vw, 100vh);
      min-height: 100svh;
      transform: translate(-50%, -50%);
      pointer-events: none;
      border: none;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 8, 30, 0.2) 0%,
        rgba(0, 13, 46, 0.5) 35%,
        rgba(0, 25, 80, 0.55) 70%,
        rgba(0, 8, 30, 0.78) 100%
      );
      z-index: 1;
    }
    /* Animated mesh behind content */
    .hero-mesh {
      position: absolute;
      inset: 0;
      z-index: 2;
      overflow: hidden;
      pointer-events: none;
    }
    .hero-mesh::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 60vw;
      height: 60vw;
      background: radial-gradient(ellipse, rgba(0,200,255,0.12) 0%, transparent 65%);
      border-radius: 50%;
      animation: floatGlow 8s ease-in-out infinite alternate;
    }
    .hero-mesh::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: -10%;
      width: 50vw;
      height: 50vw;
      background: radial-gradient(ellipse, rgba(0,60,180,0.18) 0%, transparent 65%);
      border-radius: 50%;
      animation: floatGlow 10s ease-in-out infinite alternate-reverse;
    }
    @keyframes floatGlow {
      from { transform: translate(0, 0) scale(1); }
      to   { transform: translate(30px, -20px) scale(1.06); }
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 780px;
      padding: 120px 0 80px;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,200,255,0.12);
      border: 1px solid rgba(0,200,255,0.3);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--cyan);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 24px;
      opacity: 0;
      transform: translateY(16px);
      animation: slideUp 0.5s var(--ease-snappy) 0.2s forwards;
    }
    .hero-eyebrow::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--cyan);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }
    .hero-title {
      font-size: clamp(3.2rem, 8vw, 7rem);
      font-weight: 900;
      line-height: 0.95;
      text-transform: uppercase;
      margin-bottom: 24px;
      opacity: 0;
      transform: translateY(20px);
      animation: slideUp 0.6s var(--ease-snappy) 0.4s forwards;
    }
    .hero-title .accent {
      background: linear-gradient(90deg, var(--cyan) 0%, #4de3ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: clamp(1.05rem, 2vw, 1.3rem);
      font-weight: 400;
      color: var(--off-white);
      line-height: 1.6;
      max-width: 560px;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeIn 0.4s var(--ease-smooth) 0.8s forwards;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      opacity: 0;
      transform: scale(0.94);
      animation: popIn 0.3s var(--ease-bounce) 1.0s forwards;
    }
    @keyframes slideUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      to { opacity: 1; }
    }
    @keyframes popIn {
      to { opacity: 1; transform: scale(1); }
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--cyan);
      color: var(--navy-deep);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 10px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .btn-primary:hover {
      background: #33d4ff;
      box-shadow: 0 0 30px rgba(0,200,255,0.5);
      transform: translateY(-2px);
    }
    .btn-primary:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 10px;
      border: 2px solid rgba(255,255,255,0.25);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }
    .btn-ghost:hover {
      border-color: var(--cyan);
      background: rgba(0,200,255,0.08);
      transform: translateY(-2px);
    }
    .btn-ghost:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

    /* Hero stats bar */
    .hero-stats {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 3;
      background: rgba(0,13,46,0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-top: 1px solid var(--border);
    }
    .hero-stats-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      divide-x: 1px solid var(--border);
    }
    .stat-item {
      padding: 20px 24px;
      border-right: 1px solid var(--border);
      opacity: 0;
      animation: fadeIn 0.5s ease 1.4s forwards;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--cyan);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.78rem;
      color: var(--gray-text);
      margin-top: 4px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeIn 0.5s ease 1.6s forwards;
    }
    .scroll-indicator span {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray-text);
    }
    .scroll-mouse {
      width: 22px;
      height: 36px;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 11px;
      display: flex;
      justify-content: center;
      padding-top: 6px;
    }
    .scroll-mouse::before {
      content: '';
      width: 3px;
      height: 6px;
      background: var(--cyan);
      border-radius: 2px;
      animation: scrollDown 1.5s ease-in-out infinite;
    }
    @keyframes scrollDown {
      0% { transform: translateY(0); opacity: 1; }
      100% { transform: translateY(10px); opacity: 0; }
    }

    @media (max-width: 768px) {
      .hero-stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }
      .stat-item:nth-child(2) { border-right: none; }
      .scroll-indicator { display: none; }
    }
    @media (max-width: 480px) {
      .hero-stats-inner { grid-template-columns: 1fr 1fr; }
    }

    /* =============================================
       SECTION UTILITIES
    ============================================= */
    .section-pad {
      padding: 120px 0;
    }
    .section-pad-sm {
      padding: 80px 0;
    }

    @media (max-width: 768px) {
      .section-pad { padding: 64px 0; }
      .section-pad-sm { padding: 48px 0; }
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 16px;
    }
    .section-eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--cyan);
    }

    .section-title {
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 800;
      line-height: 1.05;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .section-desc {
      font-size: 1.05rem;
      color: var(--gray-text);
      line-height: 1.75;
      max-width: 600px;
    }

    .text-cyan { color: var(--cyan); }
    .text-center { text-align: center; }
    .mx-auto { margin-left: auto; margin-right: auto; }

    /* reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s var(--ease-snappy), transform 0.5s var(--ease-snappy);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* =============================================
       SECTION 2: THE PROBLEM
    ============================================= */
    #about {
      background: linear-gradient(180deg, var(--navy-deep) 0%, #020b1e 100%);
      position: relative;
      overflow: hidden;
    }
    #about::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyan-dark), transparent);
    }
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .problem-side h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.05;
      margin-bottom: 20px;
    }
    .problem-items {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 32px;
    }
    .problem-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,80,80,0.15);
      border-radius: 14px;
      transition: border-color 0.3s, background 0.3s;
    }
    .problem-item:hover {
      border-color: rgba(255,80,80,0.35);
      background: rgba(255,80,80,0.04);
    }
    .problem-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background: rgba(255,80,80,0.12);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .problem-icon svg { color: #ff6060; }
    .problem-item-text h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 4px;
      text-transform: uppercase;
    }
    .problem-item-text p {
      font-size: 0.88rem;
      color: var(--gray-text);
      line-height: 1.6;
    }

    /* Solution side */
    .solution-items {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 32px;
    }
    .solution-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px;
      background: rgba(0,200,255,0.04);
      border: 1px solid rgba(0,200,255,0.14);
      border-radius: 14px;
      transition: border-color 0.3s, background 0.3s;
    }
    .solution-item:hover {
      border-color: rgba(0,200,255,0.3);
      background: rgba(0,200,255,0.08);
    }
    .solution-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background: rgba(0,200,255,0.12);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .solution-icon svg { color: var(--cyan); }
    .solution-item-text h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 4px;
      text-transform: uppercase;
    }
    .solution-item-text p {
      font-size: 0.88rem;
      color: var(--gray-text);
      line-height: 1.6;
    }

    .vs-divider {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    @media (max-width: 900px) {
      .problem-grid { grid-template-columns: 1fr; gap: 32px; }
    }

    /* =============================================
       SECTION 3: HOW IT WORKS
    ============================================= */
    #how-it-works {
      background: #020b1e;
      position: relative;
    }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 64px;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--cyan-dark), var(--cyan), var(--cyan-dark), transparent);
      z-index: 0;
    }
    .step-card {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 24px;
    }
    .step-num {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
      border: 2px solid var(--cyan);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--cyan);
      margin-bottom: 24px;
      box-shadow: 0 0 0 6px var(--navy-deep), 0 0 24px rgba(0,200,255,0.25);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .step-card:hover .step-num {
      box-shadow: 0 0 0 6px var(--navy-deep), 0 0 40px rgba(0,200,255,0.5);
      transform: translateY(-4px);
    }
    .step-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 16px;
      color: var(--cyan);
    }
    .step-card h4 {
      font-size: 1.15rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .step-card p {
      font-size: 0.875rem;
      color: var(--gray-text);
      line-height: 1.65;
    }
    @media (max-width: 900px) {
      .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .steps-grid::before { display: none; }
    }
    @media (max-width: 500px) {
      .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    }

    /* =============================================
       SECTION 4: KEY BENEFITS
    ============================================= */
    #benefits {
      background: linear-gradient(180deg, #020b1e 0%, var(--navy-deep) 100%);
    }
    .benefits-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-bottom: 80px;
    }
    .benefits-bento {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto auto;
      gap: 16px;
    }
    .benefit-card {
      background: var(--dark-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px 24px;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
      cursor: default;
    }
    .benefit-card:hover {
      border-color: rgba(0,200,255,0.4);
      box-shadow: 0 8px 40px rgba(0,200,255,0.1);
      transform: translateY(-4px);
    }
    .benefit-card.wide { grid-column: span 2; }
    .benefit-card.tall { grid-row: span 2; }
    .benefit-icon-wrap {
      width: 48px;
      height: 48px;
      background: rgba(0,200,255,0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: var(--cyan);
    }
    .benefit-card h4 {
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 8px;
    }
    .benefit-card p {
      font-size: 0.83rem;
      color: var(--gray-text);
      line-height: 1.6;
    }
    .benefit-stat {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--cyan);
      line-height: 1;
      margin-bottom: 4px;
    }
    @media (max-width: 1100px) {
      .benefits-intro { grid-template-columns: 1fr; gap: 40px; }
      .benefits-bento { grid-template-columns: 1fr 1fr; }
      .benefit-card.wide { grid-column: span 2; }
    }
    @media (max-width: 600px) {
      .benefits-bento { grid-template-columns: 1fr; }
      .benefit-card.wide { grid-column: span 1; }
    }

    /* =============================================
       SECTION 5: TECH TEASER
    ============================================= */
    #tech-teaser {
      background: linear-gradient(135deg, #001240 0%, #000d2e 50%, #001a4a 100%);
      position: relative;
      overflow: hidden;
    }
    #tech-teaser::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0,200,255,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    .tech-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .tech-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 40px;
    }
    .tech-spec-item {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px;
    }
    .tech-spec-item .spec-val {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--cyan);
      line-height: 1;
      margin-bottom: 4px;
    }
    .tech-spec-item .spec-label {
      font-size: 0.78rem;
      color: var(--gray-text);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .tech-visual {
      position: relative;
    }
    .tech-visual-card {
      background: var(--dark-card);
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
      position: relative;
    }
    .tech-visual-card img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      opacity: 0.9;
    }
    .tech-visual-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(0,13,46,0.9);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .tech-visual-badge .dot {
      width: 8px;
      height: 8px;
      background: #00ff88;
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }
    .tech-visual-badge span {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--white);
    }
    @media (max-width: 900px) {
      .tech-grid { grid-template-columns: 1fr; gap: 40px; }
      .tech-specs { grid-template-columns: 1fr 1fr; }
    }

    /* =============================================
       SECTION 6: PROTOTYPE & PROGRESS
    ============================================= */
    #prototype {
      background: var(--navy-deep);
      position: relative;
    }
    .prototype-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 40px;
      position: relative;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 19px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--cyan) 0%, transparent 100%);
    }
    .timeline-item {
      display: flex;
      gap: 24px;
      padding-bottom: 32px;
      position: relative;
    }
    .timeline-dot {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background: var(--dark-card);
      border: 2px solid var(--cyan);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }
    .timeline-dot.done { background: var(--cyan); }
    .timeline-dot svg { color: var(--navy-deep); }
    .timeline-dot.pending svg { color: var(--cyan); }
    .timeline-body h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .timeline-body span {
      font-size: 0.75rem;
      color: var(--cyan);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .timeline-body p {
      font-size: 0.85rem;
      color: var(--gray-text);
      margin-top: 6px;
      line-height: 1.6;
    }

    .proto-gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .proto-gallery-item {
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--dark-card);
      position: relative;
    }
    .proto-gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s var(--ease-smooth);
    }
    .proto-gallery-item:hover img { transform: scale(1.05); }
    .proto-gallery-item:first-child {
      grid-column: span 2;
      aspect-ratio: 16/7;
    }
    .proto-gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,8,30,0.7) 0%, transparent 60%);
    }
    .proto-gallery-label {
      position: absolute;
      bottom: 12px;
      left: 12px;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--off-white);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    @media (max-width: 900px) {
      .prototype-layout { grid-template-columns: 1fr; gap: 40px; }
    }

    /* =============================================
       SECTION 7: SERVICES
    ============================================= */
    #services {
      background: #020b1e;
      position: relative;
      overflow: hidden;
    }
    #services::after {
      content: '';
      position: absolute;
      bottom: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(0,60,150,0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 64px;
    }
    .service-card {
      background: var(--dark-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--cyan), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .service-card:hover {
      border-color: rgba(0,200,255,0.3);
      box-shadow: 0 12px 40px rgba(0,200,255,0.08);
      transform: translateY(-4px);
    }
    .service-card:hover::before { opacity: 1; }
    .service-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3rem;
      font-weight: 900;
      color: rgba(0,200,255,0.12);
      line-height: 1;
      margin-bottom: 16px;
    }
    .service-icon {
      width: 52px;
      height: 52px;
      background: rgba(0,200,255,0.1);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--cyan);
    }
    .service-card h4 {
      font-size: 1.15rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .service-card p {
      font-size: 0.875rem;
      color: var(--gray-text);
      line-height: 1.7;
    }
    @media (max-width: 1000px) {
      .services-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .services-grid { grid-template-columns: 1fr; }
    }

    /* =============================================
       SECTION 8: COMPARISON
    ============================================= */
    #comparison {
      background: var(--navy-deep);
    }
    .comparison-table-wrap {
      overflow-x: auto;
      margin-top: 64px;
      border-radius: 20px;
      border: 1px solid var(--border);
    }
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 700px;
    }
    .comparison-table thead {
      background: rgba(0,200,255,0.06);
    }
    .comparison-table th {
      padding: 20px 24px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      text-align: center;
      border-bottom: 1px solid var(--border);
    }
    .comparison-table th:first-child { text-align: left; }
    .comparison-table th.hytrak-col {
      color: var(--cyan);
      background: rgba(0,200,255,0.08);
    }
    .comparison-table td {
      padding: 16px 24px;
      font-size: 0.9rem;
      text-align: center;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      color: var(--gray-text);
    }
    .comparison-table td:first-child {
      text-align: left;
      color: var(--white);
      font-weight: 500;
    }
    .comparison-table td.hytrak-col { color: var(--white); background: rgba(0,200,255,0.04); }
    .comparison-table tr:last-child td { border-bottom: none; }
    .comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
    .comparison-table tr:hover td.hytrak-col { background: rgba(0,200,255,0.07); }
    .check-icon { color: #00e076; font-size: 1.1rem; }
    .cross-icon { color: #ff5555; font-size: 1.1rem; }
    .partial-icon { color: #ffa040; font-size: 1.1rem; }

    /* =============================================
       SECTION 9: MARQUEE / SOCIAL PROOF
    ============================================= */
    #social-proof {
      background: #020b1e;
      padding: 64px 0;
      overflow: hidden;
    }
    .marquee-label {
      text-align: center;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gray-text);
      margin-bottom: 32px;
    }
    .marquee-track {
      overflow: hidden;
      white-space: nowrap;
      -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
      mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    }
    .marquee-inner {
      display: inline-flex;
      gap: 48px;
      animation: marquee 28s linear infinite;
      padding: 8px 0;
    }
    .marquee-inner:hover { animation-play-state: paused; }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--dark-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 20px;
      white-space: nowrap;
    }
    .marquee-item svg { color: var(--cyan); flex-shrink: 0; }
    .marquee-item span {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--off-white);
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 64px;
    }
    .stats-card {
      background: var(--dark-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 24px;
      text-align: center;
    }
    .stat-counter {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--cyan);
      line-height: 1;
      display: block;
    }
    .stats-card p {
      font-size: 0.85rem;
      color: var(--gray-text);
      margin-top: 8px;
    }
    @media (max-width: 768px) {
      .stats-row { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 420px) {
      .stats-row { grid-template-columns: 1fr; }
    }

    /* =============================================
       SECTION 10: NEWS
    ============================================= */
    #news {
      background: linear-gradient(180deg, var(--navy-deep) 0%, #020b1e 100%);
    }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 64px;
    }
    .news-card {
      background: var(--dark-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .news-card:hover {
      border-color: rgba(0,200,255,0.3);
      box-shadow: 0 8px 32px rgba(0,200,255,0.08);
      transform: translateY(-4px);
    }
    .news-card-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
    }
    .news-card-body {
      padding: 24px;
    }
    .news-tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--cyan);
      background: rgba(0,200,255,0.1);
      border-radius: 100px;
      padding: 4px 10px;
      margin-bottom: 12px;
    }
    .news-card-body h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .news-card-body p {
      font-size: 0.84rem;
      color: var(--gray-text);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .news-card-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.76rem;
      color: var(--gray-text);
    }
    .news-card-meta span { color: var(--silver); font-weight: 500; }
    @media (max-width: 900px) {
      .news-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .news-grid { grid-template-columns: 1fr; }
    }

    /* =============================================
       SECTION 11: TEAM
    ============================================= */
    #team {
      background: #020b1e;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 64px;
    }
    .team-card {
      background: var(--dark-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .team-card:hover {
      border-color: rgba(0,200,255,0.3);
      box-shadow: 0 8px 32px rgba(0,200,255,0.08);
      transform: translateY(-4px);
    }
    .team-card.featured {
      grid-column: span 3;
      display: grid;
      grid-template-columns: 300px 1fr;
    }
    .team-card-photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top;
      background: var(--navy-mid);
    }
    .team-card.featured .team-card-photo {
      aspect-ratio: auto;
      height: 100%;
      min-height: 280px;
    }
    .team-card-body {
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .team-role {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 8px;
    }
    .team-card-body h3 {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .team-card-body p {
      font-size: 0.88rem;
      color: var(--gray-text);
      line-height: 1.7;
    }
    .team-card-body h4 {
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    @media (max-width: 900px) {
      .team-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr 1fr; }
      .team-card.featured .team-card-photo { aspect-ratio: 16/9; object-position: center top; height: auto; }
    }
    @media (max-width: 500px) {
      .team-grid { grid-template-columns: 1fr; }
    }

    /* =============================================
       CTA BANNER
    ============================================= */
    #cta-banner {
      background: linear-gradient(135deg, #002a7a 0%, #001550 45%, #010816 100%);
      border: none;
      position: relative;
      overflow: hidden;
      margin: 0;
      padding-bottom: 0;
    }
    #cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300C8FF' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 1;
      pointer-events: none;
    }
    #cta-banner::after {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(0,200,255,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }
    .cta-inner h2 {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.05;
      margin-bottom: 16px;
    }
    .cta-inner p {
      font-size: 1.05rem;
      color: var(--off-white);
      margin-bottom: 40px;
      line-height: 1.7;
    }
    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .urgency-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #ffa040;
      background: rgba(255,160,64,0.1);
      border: 1px solid rgba(255,160,64,0.25);
      border-radius: 100px;
      padding: 6px 14px;
      margin-bottom: 20px;
    }
    .urgency-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #ffa040;
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    #cta-banner .container {
      position: relative;
      z-index: 1;
    }

    /* =============================================
       CONTACT FORM (in CTA section)
    ============================================= */
    .contact-form-mini {
      background: rgba(4, 14, 37, 0.92);
      border: 1px solid rgba(0, 200, 255, 0.22);
      border-radius: 20px;
      padding: 36px 40px 40px;
      margin: 64px auto 80px;
      max-width: 620px;
      position: relative;
      z-index: 2;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    }
    .contact-form-mini__title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 8px;
      color: var(--white);
    }
    .contact-form-mini__desc {
      font-size: 0.875rem;
      color: var(--gray-text);
      margin-bottom: 28px;
      line-height: 1.6;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 0;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 18px;
    }
    .form-group label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--cyan);
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      background: rgba(0, 16, 48, 0.65);
      border: 1px solid rgba(0, 200, 255, 0.2);
      border-radius: 10px;
      padding: 13px 16px;
      font-size: 0.9rem;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      width: 100%;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(138, 155, 184, 0.85);
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--cyan);
      background: rgba(0, 20, 60, 0.85);
      box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.12);
    }
    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }
    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a9bb8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
      cursor: pointer;
    }
    .form-group select option {
      background: var(--navy-deep);
      color: var(--white);
    }
    .contact-form-mini .btn-primary {
      width: 100%;
      justify-content: center;
      margin-top: 8px;
      padding: 15px 28px;
      font-size: 1rem;
      letter-spacing: 0.08em;
    }
    .form-alert {
      border-radius: 10px;
      padding: 14px 16px;
      margin-bottom: 20px;
      font-size: 0.875rem;
      line-height: 1.5;
    }
    .form-alert--success {
      background: rgba(0, 200, 255, 0.12);
      border: 1px solid rgba(0, 200, 255, 0.35);
      color: var(--cyan);
    }
    .form-alert--error {
      background: rgba(255, 85, 85, 0.1);
      border: 1px solid rgba(255, 85, 85, 0.35);
      color: #ff8a8a;
    }
    .form-error {
      font-size: 0.78rem;
      color: #ff8a8a;
    }
    @media (max-width: 600px) {
      .contact-form-mini {
        padding: 28px 24px 32px;
      }
      .form-row { grid-template-columns: 1fr; }
    }

    /* =============================================
       FOOTER
    ============================================= */
    .site-footer {
      background: #010816;
      border: none;
      position: relative;
      overflow: hidden;
      margin: 0;
      padding: 0;
    }

    #cta-banner + .site-footer {
      margin-top: 0;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.15fr 1.85fr;
      gap: 56px;
      padding: 56px 0 40px;
      align-items: start;
      position: relative;
    }
    .footer-brand-block {
      max-width: 360px;
      overflow: visible;
    }
    .footer-logo {
      display: inline-flex;
      margin-bottom: 20px;
      transition: opacity 0.2s;
    }
    .footer-logo:hover { opacity: 0.88; }
    .footer-logo svg {
      display: block;
      height: 38px;
      width: auto;
      max-width: none;
    }
    .footer-tagline {
      font-size: 0.9rem;
      color: var(--gray-text);
      line-height: 1.75;
      margin-bottom: 20px;
    }
    .footer-contact-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px;
    }
    .footer-contact-pills span {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--cyan);
      background: rgba(0,200,255,0.08);
      border: 1px solid rgba(0,200,255,0.22);
      border-radius: 100px;
      padding: 6px 12px;
    }
    .footer-links-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-text);
      transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    }
    .footer-social a:hover {
      background: rgba(0,200,255,0.12);
      border-color: var(--cyan);
      color: var(--cyan);
      transform: translateY(-2px);
    }
    .footer-social a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
    .footer-col h5 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--white);
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(0,200,255,0.12);
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-col ul a {
      font-size: 0.875rem;
      color: var(--gray-text);
      transition: color 0.2s, transform 0.2s;
      display: inline-block;
    }
    .footer-col ul a:hover {
      color: var(--cyan);
      transform: translateX(3px);
    }
    .footer-col ul a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
    .footer-newsletter-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      padding: 28px 32px;
      margin-bottom: 8px;
      background: rgba(255,255,255,0.025);
      border: 1px solid var(--border);
      border-radius: 20px;
    }
    .footer-newsletter-copy h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 6px;
    }
    .footer-newsletter-copy p {
      font-size: 0.84rem;
      color: var(--gray-text);
      max-width: 420px;
    }
    .newsletter-form {
      display: flex;
      gap: 8px;
      flex: 1;
      min-width: min(100%, 320px);
      max-width: 420px;
    }
    .newsletter-form input {
      flex: 1;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 16px;
      font-size: 0.875rem;
      color: var(--white);
      outline: none;
      transition: border-color 0.2s;
      min-width: 0;
    }
    .newsletter-form input::placeholder { color: var(--gray-text); }
    .newsletter-form input:focus { border-color: var(--cyan); }
    .newsletter-form button {
      background: var(--cyan);
      color: var(--navy-deep);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 12px 20px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s, box-shadow 0.2s;
    }
    .newsletter-form button:hover {
      background: #33d4ff;
      box-shadow: 0 0 16px rgba(0,200,255,0.35);
    }
    .newsletter-form button:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-bottom p {
      font-size: 0.8rem;
      color: var(--gray-text);
    }
    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }
    .footer-bottom-links a {
      font-size: 0.8rem;
      color: var(--gray-text);
      transition: color 0.2s;
    }
    .footer-bottom-links a:hover { color: var(--cyan); }

    @media (max-width: 1000px) {
      .footer-top { grid-template-columns: 1fr; gap: 40px; }
      .footer-brand-block { max-width: none; }
      .footer-links-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
      .footer-newsletter-bar { flex-direction: column; align-items: stretch; padding: 24px; }
      .newsletter-form { max-width: none; }
    }
    @media (max-width: 600px) {
      .footer-top { padding: 48px 0 32px; }
      .footer-links-grid { grid-template-columns: 1fr; gap: 24px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .newsletter-form { flex-direction: column; }
      .newsletter-form button { width: 100%; }
    }

    /* =============================================
       MISC UTILITY CLASSES
    ============================================= */
    .tag-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
      border: 1px solid rgba(0,200,255,0.3);
      color: var(--cyan);
      background: rgba(0,200,255,0.06);
    }
    .divider-line {
      width: 100%;
      height: 0;
      margin: 0;
      padding: 0;
      border: none;
      background: none;
    }

    /* Spotlight cursor effect */
    .spotlight {
      position: fixed;
      width: 400px;
      height: 400px;
      pointer-events: none;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,200,255,0.04) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      z-index: 9999;
      transition: left 0.1s, top 0.1s;
    }

    /* Logo SVG fallback */
    .logo-text-fallback {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--white);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .logo-text-fallback span { color: var(--cyan); }