
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --navy: #0a0f1e;
      --navy-mid: #111827;
      --navy-light: #1a2540;
      --electric: #00d4ff;
      --electric-dim: #0099bb;
      --accent: #ff6b35;
      --gold: #f5c842;
      --white: #f0f4f8;
      --muted: #8a9ab5;
      --border: rgba(0, 212, 255, 0.15);
      --grid-line: rgba(0, 212, 255, 0.06);
    }
/* ============================= */
/* MOBILE RESPONSIVE FIX */
/* ============================= */

@media (max-width: 1024px) {

  nav {
    padding: 1rem 1.5rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  /* HERO */
  #hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    text-align: center;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .stat-chips {
    position: static;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .hero-visual {
    display: none;
  }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  /* VALUES */
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 2rem;
  }

  /* CONTACT */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  footer {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Extra small devices */
@media (max-width: 480px) {

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .service-card {
    padding: 1.8rem;
  }

  .about-metric {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .metric-num {
    font-size: 1.5rem;
  }

}

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lora', Georgia, serif;
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
    }

    /* === GRID BACKGROUND === */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 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;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 4rem;
      background: rgba(10, 15, 30, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .logo-main {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.3rem;
      letter-spacing: 0.08em;
      color: var(--electric);
      line-height: 1;
    }

    .logo-sub {
      font-family: 'DM Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.25em;
      color: var(--muted);
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--electric);
      transition: width 0.3s;
    }

    .nav-links a:hover { color: var(--electric); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--electric);
      padding: 0.6rem 1.4rem;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s, transform 0.2s;
    }

    .nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

    /* === HERO === */
    #hero {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 0 4rem;
      padding-top: 6rem;
      overflow: hidden;
    }

    .hero-glow {
      position: absolute;
      top: -100px; right: -100px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
      border-radius: 50%;
      animation: pulse 6s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.7; }
    }

    .hero-badge {
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--electric);
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.8s ease both;
    }

    .hero-badge::before {
      content: '';
      display: block;
      width: 2rem; height: 1px;
      background: var(--electric);
    }

    h1 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(2.8rem, 5vw, 5rem);
      line-height: 1.05;
      color: var(--white);
      animation: fadeUp 0.8s 0.1s ease both;
    }

    h1 em {
      font-style: normal;
      color: var(--electric);
    }

    .hero-sub {
      margin-top: 1.5rem;
      font-size: 1.1rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 480px;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      margin-top: 2.5rem;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .btn-primary {
      font-family: 'DM Mono', monospace;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--electric);
      padding: 1rem 2.2rem;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      border: 1px solid var(--electric);
    }

    .btn-primary:hover { background: transparent; color: var(--electric); }

    .btn-secondary {
      font-family: 'DM Mono', monospace;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--electric);
      padding: 1rem 2.2rem;
      text-decoration: none;
      border: 1px solid var(--border);
      transition: all 0.3s;
    }

    .btn-secondary:hover { border-color: var(--electric); }

    /* HERO VISUAL RIGHT */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 480px;
      animation: fadeIn 1.2s 0.4s ease both;
    }

    .cable-art {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .cable-art svg {
      width: 100%;
      height: 100%;
    }

    .stat-chips {
      position: absolute;
      bottom: 2rem;
      left: 0;
      display: flex;
      gap: 1.5rem;
      animation: fadeUp 0.8s 0.5s ease both;
    }

    .chip {
      background: var(--navy-light);
      border: 1px solid var(--border);
      padding: 1rem 1.5rem;
    }

    .chip-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--electric);
      line-height: 1;
    }

    .chip-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 0.3rem;
    }

    /* === SECTIONS COMMON === */
    section {
      position: relative;
      z-index: 1;
      padding: 6rem 4rem;
    }

    .section-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--electric);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .section-label::before {
      content: '';
      width: 1.5rem; height: 1px;
      background: var(--electric);
    }

    h2 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: clamp(2rem, 3.5vw, 3rem);
      line-height: 1.1;
    }

    /* === ABOUT === */
    #about {
      background: var(--navy-light);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-text h2 { margin-bottom: 1.5rem; }
    .about-text h2 span { color: var(--electric); }

    .about-text p {
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .about-industries {
      margin-top: 2rem;
    }

    .about-industries h4 {
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .industry-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .tag {
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      color: var(--electric);
      border: 1px solid var(--border);
      padding: 0.4rem 0.9rem;
      transition: all 0.3s;
    }

    .tag:hover { background: var(--electric); color: var(--navy); }

    .about-card-stack {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .about-metric {
      background: var(--navy-mid);
      border: 1px solid var(--border);
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s;
    }

    .about-metric:hover { background: rgba(0, 212, 255, 0.05); }

    .metric-info h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 600;
    }

    .metric-info p {
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      color: var(--muted);
      margin-top: 0.25rem;
      letter-spacing: 0.1em;
    }

    .metric-num {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--electric);
    }

    /* === SERVICES === */
    #services { max-width: 1200px; margin: 0 auto; }

    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3rem;
    }

    .services-header h2 { max-width: 400px; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
    }

    .service-card {
      background: var(--navy-mid);
      padding: 2.5rem;
      transition: background 0.4s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--electric);
      transition: width 0.4s;
    }

    .service-card:hover { background: var(--navy-light); }
    .service-card:hover::after { width: 100%; }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 1.2rem;
    }

    .service-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

    .service-card p {
      font-family: 'Lora', serif;
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .service-arrow {
      display: inline-block;
      margin-top: 1.2rem;
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--electric);
      text-decoration: none;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s;
    }

    .service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

    /* === VALUES === */
    #values {
      background: var(--navy-light);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .values-inner { max-width: 1200px; margin: 0 auto; }

    .values-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .values-header .section-label { justify-content: center; }
    .values-header h2 { margin-bottom: 1rem; }
    .values-header h2 span { color: var(--electric); }
    .values-header p { color: var(--muted); max-width: 500px; margin: 0 auto; line-height: 1.7; }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      background: var(--border);
    }

    .value-card {
      background: var(--navy-mid);
      padding: 3rem;
      position: relative;
      overflow: hidden;
    }

    .value-card::before {
      content: attr(data-num);
      position: absolute;
      top: 2rem; right: 2rem;
      font-family: 'Syne', sans-serif;
      font-size: 5rem;
      font-weight: 800;
      color: rgba(0, 212, 255, 0.06);
      line-height: 1;
    }

    .value-card:hover::before { color: rgba(0, 212, 255, 0.1); }

    .value-icon {
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .value-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .value-card p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.8;
    }

    /* === VISION BANNER === */
    #vision {
      text-align: center;
      padding: 5rem 4rem;
      background: var(--navy);
      position: relative;
    }

    .vision-inner { max-width: 800px; margin: 0 auto; }

    .vision-quote {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: clamp(1.4rem, 3vw, 2.2rem);
      color: var(--white);
      line-height: 1.5;
      margin-bottom: 2rem;
    }

    .vision-quote span { color: var(--electric); font-style: normal; }

    .vision-meta {
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* === CONTACT === */
    #contact {
      background: var(--navy-light);
      border-top: 1px solid var(--border);
    }

    .contact-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .contact-left h2 { margin-bottom: 1.5rem; }
    .contact-left h2 span { color: var(--electric); }

    .contact-left p {
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .contact-details { display: flex; flex-direction: column; gap: 1px; }

    .contact-row {
      background: var(--navy-mid);
      border: 1px solid var(--border);
      padding: 1.2rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .contact-row-icon {
      font-size: 1rem;
      width: 2rem;
      text-align: center;
      flex-shrink: 0;
    }

    .contact-row-text {
      font-family: 'DM Mono', monospace;
      font-size: 0.75rem;
      color: var(--white);
      letter-spacing: 0.03em;
    }

    .contact-row-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.2rem;
    }

    .contact-form { display: flex; flex-direction: column; gap: 1px; }

    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }

    label {
      font-family: 'DM Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
    }

    input, textarea {
      background: var(--navy-mid);
      border: 1px solid var(--border);
      color: var(--white);
      font-family: 'Lora', serif;
      font-size: 0.9rem;
      padding: 1rem 1.2rem;
      outline: none;
      transition: border-color 0.3s;
      width: 100%;
    }

    input:focus, textarea:focus { border-color: var(--electric); }
    textarea { height: 130px; resize: vertical; }

    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-bottom: 1px; }

    .form-submit {
      font-family: 'DM Mono', monospace;
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--electric);
      border: none;
      padding: 1.1rem 2rem;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s;
      width: 100%;
      margin-top: 1px;
    }

    .form-submit:hover { background: var(--gold); }

    /* === FOOTER === */
    footer {
      position: relative;
      z-index: 1;
      background: var(--navy);
      border-top: 1px solid var(--border);
      padding: 2rem 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-legal {
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem;
      color: var(--muted);
      letter-spacing: 0.08em;
      line-height: 1.8;
    }

    .footer-legal span { color: var(--electric); }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
    }

    .footer-links a {
      font-family: 'DM Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover { color: var(--electric); }

    /* === ANIMATIONS === */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger children */
    .stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

    /* === TICKER === */
    .ticker-bar {
      position: relative;
      z-index: 2;
      background: var(--electric);
      overflow: hidden;
      padding: 0.6rem 0;
    }

    .ticker-track {
      display: flex;
      gap: 4rem;
      white-space: nowrap;
      animation: ticker 22s linear infinite;
    }

    .ticker-track span {
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--navy);
      font-weight: 500;
    }

    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* Responsive */
    @media (max-width: 900px) {
      nav { padding: 1rem 2rem; }
      .nav-links { display: none; }
      section { padding: 4rem 2rem; }
      #hero { grid-template-columns: 1fr; padding: 8rem 0rem 4rem; }
      .hero-visual { display: none; }
      .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
      .services-grid { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 1rem; text-align: center; }
      .services-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
    }
