/* ══════════════════════════════════════════════════
   IronLabs Tech — global.css
   Shared styles for ALL pages (header, footer,
   utilities, reveal animations, cursor, etc.)
══════════════════════════════════════════════════ */

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

/* ── ROOT VARS ───────────────────────────────────── */
:root {
  --red:     #ff2200;
  --amber:   #ffb300;
  --dark:    #040000;
  --dark2:   #090100;
  --text:    rgba(255, 235, 215, 0.88);
  --dim:     rgba(255, 200, 160, 0.42);
  --border:  rgba(255, 34, 0, 0.18);
  --glow-r:  0 0 28px rgba(255, 34, 0, 0.65), 0 0 80px rgba(255, 34, 0, 0.18);
  --glow-a:  0 0 28px rgba(255, 179, 0, 0.6),  0 0 80px rgba(255, 179, 0, 0.16);
  --glow-rs: 0 0 12px rgba(255, 34, 0, 0.5);
  --glow-as: 0 0 12px rgba(255, 179, 0, 0.5);
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: inherit; }
section { position: relative; }

/* ── CUSTOM CURSOR ────────────────────────────────── */
.cursor-arrow {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; will-change: transform;
  filter: drop-shadow(0 0 4px rgba(255, 179, 0, 0.55))
          drop-shadow(0 0 10px rgba(255, 179, 0, 0.2));
  transform: translate(0, 0);
}
.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 9997;
  width: 72px; height: 72px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 179, 0, 0.13) 0%,
    rgba(255, 179, 0, 0.04) 50%,
    transparent 70%);
  pointer-events: none; will-change: transform;
}
body.hov .cursor-arrow {
  filter: drop-shadow(0 0 6px rgba(255, 179, 0, 1))
          drop-shadow(0 0 14px rgba(255, 179, 0, 0.5));
}
body.hov .cursor-glow {
  background: radial-gradient(circle,
    rgba(255, 179, 0, 0.22) 0%,
    rgba(255, 179, 0, 0.07) 50%,
    transparent 70%);
}
@media (pointer: coarse) {
  .cursor-arrow, .cursor-glow { display: none; }
  body { cursor: auto; }
}

/* ── SCROLL PROGRESS BAR ─────────────────────────── */
#sb {
  position: fixed; top: 0; left: 0; z-index: 9000;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--red), var(--amber));
  box-shadow: var(--glow-rs);
}

/* ── CORNER DECORATIONS ──────────────────────────── */
.cdeco {
  position: fixed; z-index: 100; pointer-events: none;
  width: 22px; height: 22px;
}
.cdeco::before, .cdeco::after { content: ''; position: absolute; }
.cdeco::before { width: 100%; height: 1px; top: 0; left: 0; background: rgba(255, 34, 0, .5); }
.cdeco::after  { width: 1px; height: 100%; top: 0; left: 0; background: rgba(255, 34, 0, .5); }
.cdeco.tl { top: 12px; left: 12px; }
.cdeco.tr { top: 12px; right: 12px; transform: scaleX(-1); }
.cdeco.bl { bottom: 12px; left: 12px; transform: scaleY(-1); }
.cdeco.br { bottom: 12px; right: 12px; transform: scale(-1); }

/* ── HEADER ──────────────────────────────────────── */
.il-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 52px;
  transition: background .5s, border-color .5s, backdrop-filter .5s;
}
.il-header.solid {
  background: rgba(4, 0, 0, .95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.il-header--home { background: transparent; }
.il-header--scrolled {
  background: rgba(4, 0, 0, .95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* Logo */
.il-logo {
  font-family: 'Orbitron', monospace; font-weight: 900;
  font-size: 14px; letter-spacing: 4px; color: #fff;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.il-logo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); box-shadow: var(--glow-r);
  animation: blink 1.4s step-start infinite;
  flex-shrink: 0;
}
.il-logo-accent { color: var(--red); }
.il-logo-tag {
  font-size: 8px; letter-spacing: 5px;
  color: rgba(255, 179, 0, .4);
  align-self: flex-end; margin-bottom: 1px; margin-left: 2px;
}

/* Nav */
.il-nav { display: flex; align-items: center; }
.il-nav a {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--dim); padding: 0 18px; height: 64px;
  display: flex; align-items: center;
  transition: color .2s; border-bottom: 2px solid transparent;
  text-decoration: none;
}
.il-nav a:hover { color: var(--amber); border-bottom-color: var(--amber); }
.nav-cta {
  margin-left: 16px !important;
  padding: 9px 22px !important;
  height: auto !important;
  border: 1px solid var(--red) !important;
  border-bottom: 1px solid var(--red) !important;
  color: var(--red) !important;
  font-size: 9px !important;
  letter-spacing: 3px;
  transition: background .3s, box-shadow .3s !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.nav-cta:hover {
  background: rgba(255, 34, 0, .1) !important;
  box-shadow: var(--glow-r) !important;
  color: #fff !important;
  border-bottom-color: var(--red) !important;
}

/* Hamburger */
.il-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 850;
}
.il-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--amber); border-radius: 1px;
  transition: transform .3s, opacity .3s;
}
.il-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.il-hamburger.open span:nth-child(2) { opacity: 0; }
.il-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.il-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 820;
  width: 280px; background: rgba(4, 0, 0, .98);
  border-left: 1px solid var(--border);
  padding: 80px 32px 40px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.16, 1, .3, 1);
  backdrop-filter: blur(20px);
}
.il-drawer.open { transform: translateX(0); }
.il-drawer a {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--dim); padding: 16px 0;
  border-bottom: 1px solid rgba(255, 34, 0, .08);
  display: block; transition: color .2s, padding-left .2s;
  text-decoration: none;
}
.il-drawer a:hover { color: var(--amber); padding-left: 8px; }

/* Admin bar offset */
.admin-bar .il-header { top: 32px; }

/* ── FOOTER ──────────────────────────────────────── */
.il-footer {
  background: rgba(4, 0, 0, .98);
  border-top: 1px solid var(--border);
}
.il-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding: 80px 52px 60px;
  max-width: 1200px; margin: 0 auto;
}
.il-footer-logo {
  font-family: 'Orbitron', monospace; font-weight: 900;
  font-size: 20px; letter-spacing: 3px; color: #fff; margin-bottom: 14px;
}
.il-footer-logo span { color: var(--red); }
.il-footer-tag {
  font-size: 12px; color: var(--dim); line-height: 1.8; margin-bottom: 28px;
}
.il-socials { display: flex; gap: 10px; }
.il-soc {
  width: 38px; height: 38px; border: 1px solid rgba(255, 34, 0, .18);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255, 200, 160, .4);
  transition: border-color .3s, color .3s, box-shadow .3s;
  text-decoration: none;
}
.il-soc:hover { border-color: var(--amber); color: var(--amber); box-shadow: var(--glow-as); }
.fh {
  font-family: 'Orbitron', monospace; font-size: 9px;
  letter-spacing: 4px; color: rgba(255, 179, 0, .3);
  text-transform: uppercase; margin-bottom: 20px;
}
.flinks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.flinks a {
  font-size: 13px; color: rgba(255, 200, 160, .4);
  transition: color .2s, padding-left .2s; display: block;
  text-decoration: none;
}
.flinks a:hover { color: var(--amber); padding-left: 6px; }
.status-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.status-list li {
  font-size: 10px; letter-spacing: 2px;
  color: rgba(255, 200, 160, .35);
  display: flex; align-items: center; gap: 8px;
}
.sdot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red); box-shadow: var(--glow-rs);
  animation: blink 1.4s step-start infinite;
  flex-shrink: 0;
}
.sdot.a { background: var(--amber); box-shadow: var(--glow-as); animation: none; }
.sdot.d { background: rgba(255, 200, 160, .15); box-shadow: none; animation: none; }
.fnode { margin-top: 22px; font-size: 9px; letter-spacing: 3px; color: rgba(255, 179, 0, .18); }
.footer-bar {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
  max-width: 1200px; margin: 0 auto;
  padding: 18px 52px;
  border-top: 1px solid rgba(255, 34, 0, .06);
  font-size: 9px; letter-spacing: 2px;
  color: rgba(255, 200, 160, .2);
}

/* ── UTILITIES ───────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
}
.slabel {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.slabel::before { content: ''; display: block; height: 1px; width: 28px; background: var(--amber); }
.sh2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
}
.sp {
  font-size: 15px; font-weight: 300;
  line-height: 1.85; color: var(--dim); max-width: 480px;
}
.accent-r { color: var(--red); text-shadow: var(--glow-r); }
.accent-a { color: var(--amber); text-shadow: var(--glow-a); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-p {
  display: inline-block;
  padding: 15px 40px;
  background: var(--red); color: #fff !important;
  font-family: 'Orbitron', monospace; font-size: 10px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: box-shadow .3s, transform .3s, background .3s;
  text-decoration: none;
}
.btn-p:hover {
  background: var(--amber); color: #000 !important;
  box-shadow: var(--glow-a); transform: translateY(-3px);
}
.btn-g {
  display: inline-block;
  padding: 15px 40px;
  background: transparent; color: var(--amber) !important;
  font-family: 'Orbitron', monospace; font-size: 10px;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  border: 1px solid rgba(255, 179, 0, .4); cursor: pointer;
  transition: border-color .3s, box-shadow .3s, background .3s;
  text-decoration: none;
}
.btn-g:hover {
  border-color: var(--amber);
  background: rgba(255, 179, 0, .06);
  box-shadow: var(--glow-a);
}

/* ── REVEAL ANIMATIONS ───────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(48px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
[data-reveal="left"]  { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal].visible { opacity: 1; transform: none; }

[data-stagger] > * {
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
[data-stagger].visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: .00s; }
[data-stagger].visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .10s; }
[data-stagger].visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .20s; }
[data-stagger].visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .30s; }
[data-stagger].visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: .40s; }
[data-stagger].visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: .50s; }


/* ── NAV DROPDOWN ────────────────────────────────────────────────────────── */
.il-nav-item {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
}

.il-nav-dd-trigger {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: default !important;
}

.il-dd-caret {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  opacity: 0.5;
}

.il-nav-item:hover .il-dd-caret,
.il-nav-item.is-open .il-dd-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.il-dropdown {
  position: absolute;
  top: 64px;
  left: 0;
  min-width: 230px;
  background: rgba(3, 0, 0, 0.98);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 900;
}

.il-nav-item:hover .il-dropdown,
.il-nav-item.is-open .il-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}

.il-dropdown a {
  display: block !important;
  height: auto !important;
  padding: 14px 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-left: none !important;
}

.il-dropdown a:last-child { border-bottom: none !important; }

.il-dropdown a:hover {
  background: rgba(255, 179, 0, 0.04);
  border-bottom-color: rgba(255, 255, 255, 0.04) !important;
}

.il-dd-label {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dim);
  text-transform: uppercase;
  transition: color 0.15s;
}

.il-dd-sub {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  color: #2e2926;
  margin-top: 3px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  transition: color 0.15s;
}

.il-dropdown a:hover .il-dd-label { color: var(--amber); }
.il-dropdown a:hover .il-dd-sub   { color: #4a4440; }

/* ── MY ACCOUNT icon ──────────────────────────────────────────────────────── */
.il-nav-account {
  padding: 0 14px !important;
  border-bottom: 2px solid transparent !important;
}
.il-nav-account svg { display: block; stroke: currentColor; }

/* ── CART icon in nav ────────────────────────────────────────────────────── */
.il-nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10px !important;
  border-bottom: 2px solid transparent !important;
  color: var(--text-dim);
  transition: color .2s;
}
.il-nav-cart:hover { color: var(--amber) !important; }
.il-nav-cart svg   { display: block; stroke: currentColor; }

.il-cart-count {
  position: absolute;
  top: -5px;
  right: 2px;
  min-width: 15px;
  height: 15px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-family: var(--font-ui);
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* Inline variant for mobile drawer */
.il-cart-count--inline {
  position: static;
  display: inline-flex;
  margin-left: 6px;
  vertical-align: middle;
}

@media (max-width: 768px) { .il-nav-item { display: none; } }

/* ── DRAWER: grouped sections ────────────────────────────────────────────── */
.il-drawer-group-label {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 7px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  padding: 24px 0 10px;
  border-top: 1px solid rgba(255, 34, 0, 0.1);
  margin-top: 4px;
}
.il-drawer-group-label:first-child { border-top: none; padding-top: 0; }

.il-drawer-sub a {
  font-size: 10px !important;
  letter-spacing: 2px !important;
  color: #3a3530 !important;
  padding: 12px 0 12px 16px !important;
  border-bottom-color: rgba(255, 34, 0, 0.04) !important;
}
.il-drawer-sub a:hover { color: var(--amber) !important; padding-left: 24px !important; }


/* ── ABOUT PAGE ──────────────────────────────────────────────────────────── */
.il-about-page,
.il-contact-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 0 120px;
}
.il-about-tag {
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 14px;
}
.il-about-heading {
  font-family: 'Orbitron', monospace;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: 1px;
  margin: 0 0 28px;
  line-height: 1.2;
}
.il-about-body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--dim);
}
.il-about-body p { margin: 0 0 20px; }
.il-about-body p:last-child { margin-bottom: 0; }

.il-placeholder-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  border: 1px dashed rgba(255, 34, 0, 0.15);
  background: rgba(255, 34, 0, 0.02);
  text-align: center;
  padding: 40px;
  gap: 16px;
}
.il-placeholder-icon { font-size: 28px; opacity: 0.2; color: var(--amber); }

.il-about-divider { display: flex; align-items: center; margin: 64px 0; }
.il-about-divider span {
  display: block; width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--red), transparent 60%);
  opacity: 0.25;
}

/* ── CONTACT PAGE ─────────────────────────────────────────────────────────── */
.il-contact-page {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}
.il-contact-form { margin-top: 12px; }
.il-cf-row { display: flex; flex-direction: column; gap: 20px; }
.il-cf-row--half { flex-direction: row; }
.il-cf-field { display: flex; flex-direction: column; gap: 8px; flex: 1; margin-bottom: 20px; }
.il-cf-field label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--dim);
}
.il-cf-field label span { color: var(--red); margin-left: 2px; }

.il-cf-field input,
.il-cf-field textarea {
  background: #0b0804;
  border: 1px solid #2a2218;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  padding: 12px 16px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  resize: vertical;
}
.il-cf-field input:focus,
.il-cf-field textarea:focus {
  border-color: rgba(255, 179, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.06);
}
.il-cf-field input::placeholder,
.il-cf-field textarea::placeholder { color: #2e2820; }

.il-cf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 32px;
  background: var(--red);
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background 0.2s, box-shadow 0.2s;
}
.il-cf-btn:hover { background: #cc1a00; box-shadow: 0 0 24px rgba(255,34,0,0.35); }
.il-cf-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.il-form-status {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; letter-spacing: 0.5px;
  padding: 10px 14px; margin-top: 16px; display: none;
}
.il-form-status:not(:empty) { display: block; }
.il-form-status.is-success { border-left: 2px solid var(--amber); color: var(--amber); background: rgba(255,179,0,0.05); }
.il-form-status.is-error   { border-left: 2px solid var(--red); color: #ff6655; background: rgba(255,34,0,0.05); }

.il-contact-info { padding-top: 4px; }
.il-contact-info-item { display: flex; flex-direction: column; gap: 6px; margin-bottom: 32px; }
.il-ci-label {
  font-family: 'Orbitron', monospace; font-size: 8px;
  letter-spacing: 3px; color: var(--red); text-transform: uppercase;
}
.il-ci-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; color: var(--dim); text-decoration: none; transition: color 0.2s;
}
a.il-ci-value:hover { color: var(--amber); }

.il-ci-socials { display: flex; gap: 10px; margin-top: 4px; }
.il-ci-soc {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,34,0,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,200,160,0.35);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
}
.il-ci-soc:hover { border-color: var(--amber); color: var(--amber); box-shadow: 0 0 12px rgba(255,179,0,0.2); }

.il-contact-note {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; color: #3a3530; line-height: 1.7;
  border-top: 1px solid var(--border); padding-top: 24px; margin-top: 8px;
}
.il-contact-note svg { flex-shrink: 0; margin-top: 2px; stroke: var(--dim); opacity: 0.4; }

@media (max-width: 768px) {
  .il-about-page, .il-contact-page { padding: 48px 0 80px; }
  .il-contact-page { grid-template-columns: 1fr; gap: 48px; }
  .il-cf-row--half { flex-direction: column; }
  .il-about-heading { font-size: clamp(18px, 5vw, 26px); }
  .il-about-divider { margin: 40px 0; }
}
/* ── KEYFRAMES ───────────────────────────────────── */
@keyframes blink    { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes hf       { to { opacity: 1; transform: none; } }
@keyframes wu       { to { transform: translateY(0); } }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes slowPulse { 0%, 100% { opacity: .6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes ticker   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes sd       { 0% { height: 50px; opacity: 1; } 100% { height: 0; opacity: 0; transform: translateY(50px); } }
@keyframes scrollDrop { 0% { height: 50px; opacity: 1; } 100% { height: 0; opacity: 0; transform: translateY(50px); } }

/* ── RESPONSIVE HEADER / FOOTER ──────────────────── */
@media (max-width: 768px) {
  .il-header { padding: 0 20px; }
  .il-nav a:not(.nav-cta) { display: none; }
  .il-hamburger { display: flex; }
  .il-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px; padding: 60px 24px 40px;
  }
  .footer-bar { padding: 18px 24px; }
  .container { padding: 0 24px; }
}
@media (max-width: 480px) {
  .il-footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px; }
  .footer-bar { flex-direction: column; text-align: center; }
  .il-nav a:not(.nav-cta) { display: none; }
}

/* ── ROADMAP PILLS ───────────────────────────────────────────────────────── */
.il-about-roadmap {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 36px; border: 1px solid var(--border);
}
.il-rm-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
}
.il-rm-item:last-child { border-bottom: none; }
.il-rm-dot { width: 6px; height: 6px; border-radius: 50%; background: #2a2420; flex-shrink: 0; }
.il-rm-live .il-rm-dot { background: var(--amber); box-shadow: 0 0 8px rgba(255,179,0,0.6); }
.il-rm-label { font-family: 'Space Grotesk', sans-serif; font-size: 13px; color: var(--dim); flex: 1; }
.il-rm-live .il-rm-label { color: var(--text); }
.il-rm-status {
  font-family: 'Orbitron', monospace; font-size: 7px; letter-spacing: 2px;
  color: #3a3530; border: 1px solid #2a2420; padding: 3px 8px;
}
.il-rm-live .il-rm-status {
  color: var(--amber); border-color: rgba(255,179,0,0.3); background: rgba(255,179,0,0.04);
}

/* ── FOUNDER CARD ────────────────────────────────────────────────────────── */
.il-founder-card {
  display: flex; align-items: flex-start; gap: 24px;
  margin-top: 36px; padding: 28px;
  border: 1px solid var(--border);
  background: rgba(255,34,0,0.02);
  position: relative;
}
.il-founder-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.il-founder-avatar {
  width: 64px; height: 64px; flex-shrink: 0;
  border: 1px solid rgba(255,34,0,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim);
  overflow: hidden;
}
.il-founder-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.il-founder-name {
  font-family: 'Orbitron', monospace; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; color: var(--text); text-transform: uppercase; margin-bottom: 6px;
}
.il-founder-role {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px;
  color: var(--red); letter-spacing: 0.5px; margin-bottom: 10px;
}
.il-founder-note {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px;
  color: var(--dim); line-height: 1.7;
}
@media (max-width: 768px) { .il-founder-card { flex-direction: column; gap: 16px; } }
