/* ============================================================
   SYNDICATE ROBOTICS — styles.css
   ============================================================ */

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

:root {
  --red: #CC0000;
  --red-hot: #FF2222;
  --red-glow: rgba(204,0,0,0.25);
  --bg: #080808;
  --surface: #111111;
  --surface2: #181818;
  --border: rgba(204,0,0,0.2);
  --text: #F0F0F0;
  --muted: #888888;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  height: 68px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--red-hot); }

.nav-cta {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: none;
  padding: 0.5rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.nav-cta:hover { background: var(--red-hot); box-shadow: 0 0 20px var(--red-glow); }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
}

.circuit-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slash {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, transparent 40%, rgba(204,0,0,0.06) 40%, rgba(204,0,0,0.12) 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-slash::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  animation: scanline 3s ease-in-out infinite;
}

@keyframes scanline {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; box-shadow: 0 0 20px var(--red); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--red);
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title .red { color: var(--red); }

.hero-title .outline {
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: none;
  padding: 0.85rem 2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover { background: var(--red-hot); box-shadow: 0 0 30px var(--red-glow); }

.btn-ghost {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.85rem 2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-ghost:hover { border-color: var(--red); color: var(--red); }

/* Stat bar */
.hero-stats {
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  display: block;
}

.stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== TICKER ===== */
.ticker {
  background: var(--red);
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-block;
  animation: ticker 25s linear infinite;
}

.ticker-inner span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 2.5rem;
}

.ticker-inner span::before {
  content: '//';
  color: rgba(255,255,255,0.5);
  margin-right: 0.8rem;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 3rem 4rem;
  position: relative;
}

.section-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--red);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.section-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--red);
  opacity: 0.5;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-body {
  color: var(--muted);
  max-width: 620px;
  font-weight: 300;
  line-height: 1.8;
  font-size: 1.02rem;
}

/* ===== DIRECTIVE ===== */
#directive {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.directive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.directive-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pillar {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: default;
  transition: background 0.2s;
}

.pillar:last-child { border-bottom: none; }

.pillar:hover .pillar-num { color: var(--red-hot); }

.pillar-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.4;
  line-height: 1;
  min-width: 48px;
  transition: color 0.2s, opacity 0.2s;
}

.pillar:hover .pillar-num { opacity: 1; }

.pillar-content h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.pillar-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.directive-quote {
  border-left: 3px solid var(--red);
  padding: 2rem 2.5rem;
  background: rgba(204,0,0,0.04);
}

.directive-quote blockquote {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 1rem;
}

.directive-quote cite {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== GENESIS ===== */
#genesis { background: var(--bg); }

.genesis-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  margin-top: 3rem;
}

.genesis-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.genesis-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), transparent);
}

.timeline-item {
  display: flex;
  gap: 1.8rem;
  padding-bottom: 2.5rem;
  position: relative;
}

.timeline-dot {
  width: 30px;
  height: 30px;
  border: 2px solid var(--red);
  background: var(--bg);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.timeline-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
}

.timeline-item.active .timeline-dot {
  background: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}

.timeline-item.active .timeline-dot::after { background: var(--white); }

.timeline-text h4 {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.timeline-text h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.timeline-text p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.genesis-story h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--text);
}

.genesis-story p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
  font-weight: 300;
}

/* ===== THE TEAM ===== */
#team {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.team-card {
  background: var(--surface2);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s;
}

.team-card:hover { background: #1e1e1e; }

.team-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.team-card:hover::before { transform: scaleX(1); }

.member-avatar {
  width: 60px;
  height: 60px;
  background: var(--surface);
  border: 2px solid var(--border);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.member-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.member-role {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.member-bio {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== ROBOT ===== */
#robot {
  background: var(--bg);
  overflow: hidden;
}

.robot-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.robot-visual {
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-svg {
  width: 60%;
  opacity: 0.85;
}

.robot-scan {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  animation: scan 2.5s ease-in-out infinite;
  box-shadow: 0 0 15px var(--red);
}

@keyframes scan {
  0% { top: 10%; opacity: 1; }
  100% { top: 90%; opacity: 0.3; }
}

.robot-corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--red);
  border-style: solid;
  opacity: 0.5;
}

.rc-tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.rc-tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.rc-bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.rc-br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.robot-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  color: var(--red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.robot-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.spec-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.spec-key {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.spec-val.highlight { color: var(--red); }

.robot-desc { margin-top: 2rem; }

.robot-desc p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

/* ===== SPONSORS ===== */
#sponsors {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.sponsors-header {
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.sponsors-header .section-eyebrow { justify-content: center; }
.sponsors-header .section-eyebrow::after { display: none; }

.sponsors-empty {
  border: 1px dashed rgba(255,255,255,0.1);
  padding: 4rem 2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  position: relative;
}

.sponsors-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.sponsors-empty h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.sponsors-empty p {
  font-size: 0.88rem;
  color: rgba(136,136,136,0.6);
  max-width: 380px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.tier-badge {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tier-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tier-badge.gold .tier-name { color: #FFD700; }
.tier-badge.silver .tier-name { color: #A8A8A8; }
.tier-badge.bronze .tier-name { color: #CD7F32; }

.tier-perk {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ===== CONTACT ===== */
#contact { background: var(--bg); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(204,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  appearance: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--red); }

.field select option { background: var(--surface2); }

.field textarea { min-height: 120px; }

.form-submit {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: none;
  padding: 0.95rem 2rem;
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  align-self: flex-start;
}

.form-submit:hover { background: var(--red-hot); box-shadow: 0 0 30px var(--red-glow); }

.form-note {
  font-size: 0.78rem;
  color: rgba(136,136,136,0.5);
  margin-top: 0.3rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-logo span { color: var(--red); }

.footer-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: rgba(136,136,136,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.footer-socials { display: flex; gap: 1rem; }

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.social-link:hover { border-color: var(--red); color: var(--red); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ===== HAMBURGER (mobile) ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  section { padding: 4rem 1.5rem; }
  #hero { padding: 0 1.5rem; }
  .hero-stats { left: 1.5rem; right: 1.5rem; flex-wrap: wrap; gap: 1.5rem; bottom: 2rem; }

  .directive-grid,
  .genesis-layout,
  .robot-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .form-row { grid-template-columns: 1fr; }
  .sponsor-tiers { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-inner, .robot-scan, .hero-slash::before { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(8,8,8,0.97);
  z-index: 99;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 0;
  border-top: 1px solid var(--border);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--red); }
