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

  :root {
    --void: #04060d;
    --deep: #070b17;
    --surface: #0c1225;
    --panel: #111827;
    --border: rgba(100,150,255,0.12);
    --border-bright: rgba(100,180,255,0.3);
    --accent: #3B82F6;
    --accent-glow: #60A5FA;
    --accent-cold: #06B6D4;
    --orange: #F97316;
    --orange-bright: #FB923C;
    --orange-dim: rgba(249,115,22,0.12);
    --text: #E8EDF8;
    --muted: #7B8DB0;
    --dim: #3A4560;
    --tag: #1E3A5F;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--void);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--orange-bright);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: screen;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(96,165,250,0.4);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.12s ease;
  }

  /* Star field canvas */
  #stars { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

  /* Nebula blobs */
  .nebula {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
  }
  .nebula-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(249,115,22,0.09) 0%, transparent 70%); top: -100px; right: -100px; }
  .nebula-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(6,182,212,0.07) 0%, transparent 70%); bottom: 20%; left: -150px; }
  .nebula-3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%); top: 40%; right: 10%; }

  /* Layout */
  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 2.5rem; position: relative; z-index: 1; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.2rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.4s;
  }
  nav.scrolled {
    background: rgba(4,6,13,0.85);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-mark {
    width: 52px; height: auto;
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .logo-mark svg { width: 36px; height: 36px; }
  .logo-text { font-size: 1.05rem; font-weight: 700; color: var(--text); letter-spacing: 0.04em; }
  .logo-text span { color: var(--orange-bright); }
  .nav-links { display: flex; align-items: center; gap: 2.5rem; }
  .nav-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    background: transparent;
    border: 1px solid rgba(249,115,22,0.5);
    color: var(--orange-bright);
    padding: 0.55rem 1.3rem;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
  }
  .nav-cta:hover { background: rgba(249,115,22,0.1); border-color: var(--orange); color: var(--text); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--orange-bright);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 2px;
    background: rgba(249,115,22,0.06);
  }
  .hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

  h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
  h1 .line-accent { color: transparent; -webkit-text-stroke: 1px var(--orange-bright); }
  h1 .highlight { color: var(--orange-bright); }

  .hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-family: 'DM Mono', monospace;
    font-weight: 300;
  }

  .hero-actions { display: flex; gap: 1rem; align-items: center; }
  .btn-primary {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%); transform: translateX(-100%); transition: transform 0.5s; }
  .btn-primary:hover::after { transform: translateX(100%); }
  .btn-primary:hover { background: #ea6c0a; transform: translateY(-1px); }
  .btn-ghost {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: flex; align-items: center; gap: 6px;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--text); }
  .btn-ghost svg { transition: transform 0.2s; }
  .btn-ghost:hover svg { transform: translateX(3px); }

  /* Hero visual */
  .hero-visual { position: relative; }
  .orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border);
    animation: rotate linear infinite;
  }
  .orbit-1 { width: 340px; height: 340px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 20s; }
  .orbit-2 { width: 480px; height: 480px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 35s; animation-direction: reverse; border-style: dashed; border-color: rgba(100,150,255,0.06); }
  .orbit-3 { width: 620px; height: 620px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 55s; border-color: rgba(100,150,255,0.04); }
  @keyframes rotate { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

  .orbit-dot {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange-bright);
    top: -4px; left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--orange);
  }
  .orbit-dot-cold { background: var(--accent-glow); box-shadow: 0 0 12px var(--accent-glow); }

  .hero-core {
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #3a1a05, #04060d);
    border: 1px solid rgba(249,115,22,0.35);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 60px rgba(249,115,22,0.15), inset 0 0 40px rgba(249,115,22,0.08);
  }
  .hero-core-inner {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #FB923C, #7c2d0a);
    box-shadow: 0 0 40px rgba(249,115,22,0.7);
    animation: breathe 4s ease-in-out infinite;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-core-inner img {
    width: 72px; height: auto;
    filter: brightness(1.2) drop-shadow(0 0 6px rgba(255,255,255,0.4));
  }
  @keyframes breathe { 0%,100%{transform:scale(1); box-shadow: 0 0 40px rgba(249,115,22,0.7)} 50%{transform:scale(1.08); box-shadow: 0 0 80px rgba(249,115,22,1)} }

  .hero-placeholder { height: 640px; position: relative; }

  /* STATS BAR */
  .stats-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
    background: rgba(11,18,37,0.5);
    backdrop-filter: blur(10px);
    position: relative; z-index: 1;
  }
  .stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .stat { text-align: center; }
  .stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .stat-num span { color: var(--orange-bright); }
  .stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-family: 'DM Mono', monospace; }

  /* SECTION */
  section { padding: 7rem 0; position: relative; z-index: 1; }
  .section-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-cold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: flex; align-items: center; gap: 10px;
  }
  .section-tag::before { content: ''; width: 24px; height: 1px; background: var(--accent-cold); }
  h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.2rem;
  }
  .section-sub { font-size: 1rem; color: var(--muted); max-width: 520px; line-height: 1.8; font-family: 'DM Mono', monospace; font-weight: 300; }

  /* DIVISIONS */
  .divisions { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-top: 4rem; }
  .division-card {
    background: var(--deep);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .division-card:hover { background: var(--surface); }
  .division-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .division-card:hover::before { opacity: 1; }
  .div-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--tag);
    color: var(--accent-glow);
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
  }
  .div-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
  .div-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.8rem; }
  .div-sub { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.8rem; font-family: 'DM Mono', monospace; font-weight: 300; }
  .div-features { list-style: none; }
  .div-features li {
    color: var(--muted);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 10px;
    font-family: 'DM Mono', monospace;
    font-weight: 300;
  }
  .div-features li::before { content: '→'; color: var(--accent-glow); font-size: 0.75rem; flex-shrink: 0; }
  .div-features li:last-child { border-bottom: none; }

  /* PRODUCTS */
  .products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 4rem; }
  .product-card {
    background: var(--deep);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }
  .product-card:hover { border-color: var(--border-bright); transform: translateY(-3px); }
  .product-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-cold));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  .product-card:hover::after { transform: scaleX(1); }
  .product-label { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-cold); margin-bottom: 1rem; }
  .product-name { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
  .product-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.7; font-family: 'DM Mono', monospace; font-weight: 300; }
  .product-tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1.5rem; }
  .ptag {
    font-size: 0.7rem;
    padding: 0.25rem 0.65rem;
    border-radius: 2px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    color: var(--accent-glow);
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.06em;
  }

  /* WHY US */
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
  .why-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--deep);
    position: relative;
    transition: all 0.3s;
  }
  .why-card:hover { border-color: rgba(100,150,255,0.25); background: var(--surface); }
  .why-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    color: var(--dim);
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
  }
  .why-icon { font-size: 1.8rem; margin-bottom: 1rem; }
  .why-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
  .why-desc { color: var(--muted); font-size: 0.83rem; line-height: 1.7; font-family: 'DM Mono', monospace; font-weight: 300; }

  /* CTA SECTION */
  .cta-section {
    text-align: center;
    padding: 6rem 0;
    position: relative;
  }
  .cta-glow {
    position: absolute;
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.1) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .cta-section h2 { margin-bottom: 1.2rem; }
  .cta-section p { color: var(--muted); margin-bottom: 2.5rem; font-family: 'DM Mono', monospace; font-weight: 300; font-size: 0.95rem; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
    position: relative; z-index: 1;
  }
  .footer-inner { display: flex; align-items: center; justify-content: space-between; }
  .footer-copy { color: var(--dim); font-size: 0.78rem; font-family: 'DM Mono', monospace; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { color: var(--dim); text-decoration: none; font-size: 0.78rem; font-family: 'DM Mono', monospace; transition: color 0.2s; }
  .footer-links a:hover { color: var(--muted); }

  /* GRID LINES bg texture */
  .grid-lines {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(60,100,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(60,100,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  /* CONTACT FORM */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
  .contact-info { }
  .contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.8rem; }
  .contact-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--orange-dim);
    border: 1px solid rgba(249,115,22,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1rem;
  }
  .contact-detail-label { font-size: 0.7rem; font-family: 'DM Mono', monospace; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; }
  .contact-detail-val { font-size: 0.92rem; color: var(--text); font-weight: 600; }
  .contact-detail-val a { color: var(--orange-bright); text-decoration: none; }
  .contact-detail-val a:hover { text-decoration: underline; }

  .contact-form-wrap {
    background: var(--deep);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .contact-form-wrap::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: 0.72rem; font-family: 'DM Mono', monospace; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    appearance: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: rgba(249,115,22,0.5);
    background: rgba(249,115,22,0.04);
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: var(--dim); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select option { background: var(--panel); color: var(--text); }
  .form-error { font-size: 0.7rem; color: #f87171; font-family: 'DM Mono', monospace; margin-top: 0.3rem; display: none; }
  .form-error.show { display: block; }
  .form-submit { width: 100%; margin-top: 0.5rem; padding: 0.9rem; font-size: 0.9rem; cursor: pointer; }

  .form-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
  }
  .form-success.show { display: block; }
  .success-icon { font-size: 3rem; margin-bottom: 1rem; }
  .success-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
  .success-sub { color: var(--muted); font-size: 0.85rem; font-family: 'DM Mono', monospace; font-weight: 300; }

  /* NEBULA SECTION */
  .nebula-section { padding: 5rem 0; position: relative; z-index: 1; overflow: hidden; }
  .nebula-visual-wrap { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; margin-top: 3rem; }
  .nebula-svg-container { position: relative; width: 100%; max-width: 800px; height: 420px; }
  .nebula-label {
    position: absolute;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex; align-items: center; gap: 6px;
  }
  .nebula-label::before { content: ''; width: 16px; height: 1px; background: currentColor; }

  /* SCROLL ANIMATIONS */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ============================================================
     MOBILE RESPONSIVE — everything below 768px
  ============================================================ */
  @media (max-width: 768px) {
    /* Hide custom cursor on touch devices */
    .cursor, .cursor-ring { display: none; }
    body { cursor: auto; }

    .wrap { padding: 0 1.25rem; }

    /* NAV — hide links, keep logo + CTA */
    .nav-links a:not(.nav-cta) { display: none; }
    .nav-links { gap: 1rem; }
    .nav-cta { padding: 0.45rem 1rem; font-size: 0.75rem; }
    .logo-text { font-size: 0.9rem; }

    /* HERO — stack vertically, orb below text */
    .hero { padding: 6rem 0 3rem; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-visual { order: -1; }
    .hero-placeholder { height: 280px; }
    h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-sub { font-size: 0.9rem; max-width: 100%; }
    .hero-actions { flex-wrap: wrap; gap: 0.75rem; }
    .btn-primary { width: 100%; text-align: center; justify-content: center; }

    /* Scale down orbit rings */
    .orbit-1 { width: 200px; height: 200px; }
    .orbit-2 { width: 280px; height: 280px; }
    .orbit-3 { width: 360px; height: 360px; }
    .hero-core { width: 120px; height: 120px; }
    .hero-core-inner { width: 70px; height: 70px; }

    /* STATS — 2x2 grid */
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-num { font-size: 1.8rem; }

    /* SECTIONS */
    section { padding: 4rem 0; }
    h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .section-sub { font-size: 0.88rem; }

    /* DIVISIONS — stack to single column */
    .divisions { grid-template-columns: 1fr; }
    .division-card { padding: 2rem; }

    /* PRODUCTS — stack */
    .products-grid { grid-template-columns: 1fr; gap: 1rem; }
    .product-card { padding: 1.75rem; }

    /* WHY GRID — 2 columns on mobile */
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .why-card { padding: 1.25rem; }
    .why-desc { font-size: 0.78rem; }

    /* NEBULA SECTION */
    .nebula-visual-wrap { height: 420px !important; }

    /* CONTACT — stack */
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 1.5rem; }

    /* FOOTER */
    .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  }

  @media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .hero-placeholder { height: 240px; }
    .orbit-1 { width: 160px; height: 160px; }
    .orbit-2 { width: 220px; height: 220px; }
    .orbit-3 { width: 280px; height: 280px; }
    .hero-core { width: 100px; height: 100px; }
    .hero-core-inner { width: 58px; height: 58px; }
    .division-card { padding: 1.5rem; }
    .nebula-visual-wrap { height: 280px !important; }
  }

  /* scanline flicker on hero */
  .scanline {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 4px);
    z-index: 0;
  }
