/* ========================================
   MACROHARD — INDUSTRIAL HARDWARE WEBSITE
   CSS Stylesheet
   ======================================== */

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --accent: #e8ff00;
  --accent2: #ff4d00;
  --text: #f0ede8;
  --text-muted: #888;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(232,255,0,0.3);
  --card-bg: #121212;
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.2s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}
.cursor.hover { transform: translate(-50%, -50%) scale(1.8); opacity: 0.5; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(10,10,10,0.98); border-bottom-color: var(--border-accent); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--text);
}
.logo-bracket { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 100px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,255,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,255,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.15) 2px,
    rgba(0,0,0,0.15) 4px
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(100px, 16vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}
.hero-title .line2 {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}
.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
  font-weight: 700;
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,255,0,0.25);
}
.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ===== HERO TICKER ===== */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  z-index: 2;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  height: 100%;
  align-items: center;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  padding-right: 60px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== STATS ===== */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 64px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 0 60px;
  flex: 1;
  min-width: 180px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}
.stat-divider {
  font-family: var(--font-mono);
  color: var(--border);
  font-size: 24px;
  user-select: none;
}

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 60px; }
.section-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9;
  color: var(--text);
}
.section-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text-muted);
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 48px;
  background: var(--bg);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  cursor: none;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.product-card:hover { background: #181818; border-color: rgba(232,255,0,0.2); transform: translateY(-4px); }
.product-card:hover::before { transform: scaleX(1); }
.product-card.featured { border-color: rgba(232,255,0,0.25); }
.product-card.featured::before { transform: scaleX(1); background: var(--accent2); }

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  background: var(--accent);
  color: #000;
  border-radius: 2px;
  font-weight: 700;
}
.card-badge.hot { background: var(--accent2); color: #fff; }

.card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}
.card-img-placeholder {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: transform 0.3s;
}
.product-card:hover .card-img-placeholder { transform: scale(1.08) rotate(2deg); }

.cpu-img { color: var(--accent); background: rgba(232,255,0,0.06); }
.gpu-img { color: #00d4ff; background: rgba(0,212,255,0.06); }
.mobo-img { color: #ff8c00; background: rgba(255,140,0,0.06); }
.ram-img { color: #a855f7; background: rgba(168,85,247,0.06); }
.ssd-img { color: #22c55e; background: rgba(34,197,94,0.06); }
.cooler-img { color: #38bdf8; background: rgba(56,189,248,0.06); }

.card-img-placeholder svg { width: 80%; height: 80%; }

.card-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}
.card-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}
.card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.card-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.card-specs span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(232,255,0,0.08);
  border: 1px solid rgba(232,255,0,0.2);
  padding: 4px 10px;
  border-radius: 2px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.card-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
}
.btn-detail {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-detail:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== BRANDS ===== */
.brands {
  padding: 100px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.brand-item {
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  transition: var(--transition);
  cursor: default;
}
.brand-item:hover { background: var(--bg3); }
.brand-item span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: color 0.25s;
}
.brand-item:hover span { color: var(--accent); }

/* ===== TEAM ===== */
.team {
  padding: 100px 48px;
  background: var(--bg);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { border-color: rgba(232,255,0,0.2); transform: translateY(-4px); }

.team-img-wrap { position: relative; overflow: hidden; }


.team-info { padding: 28px; }
.team-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 6px;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.team-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 48px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.contact-inner { max-width: 600px; margin: 0 auto; }
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 24px;
}
.contact-title em {
  font-style: normal;
  color: var(--accent);
}
.contact-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.contact-info {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-info span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 24px;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--bg2);
  border: 1px solid var(--border-accent);
  max-width: 640px;
  width: 100%;
  padding: 48px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 14px;
  transition: var(--transition);
}
.modal-close:hover { border-color: var(--accent); color: var(--accent); }

.modal-content .modal-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.modal-content h2 {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--text);
  margin-bottom: 8px;
}
.modal-content .modal-price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.modal-content .modal-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.modal-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.modal-specs-table tr { border-bottom: 1px solid var(--border); }
.modal-specs-table td {
  padding: 10px 0;
  font-size: 13px;
}
.modal-specs-table td:first-child {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  width: 40%;
}
.modal-specs-table td:last-child { color: var(--text); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO INNER LAYOUT ===== */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.hero-content { flex: 0 0 auto; max-width: 540px; }

/* ===== HARDWARE VISUAL ===== */
.hero-visual {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hw-scene {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbit rings */
.hw-orbit {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px dashed rgba(232,255,0,0.15);
  animation: orbitSpin 18s linear infinite;
}
.hw-orbit--2 {
  width: 340px;
  height: 340px;
  border-color: rgba(232,255,0,0.07);
  animation-duration: 28s;
  animation-direction: reverse;
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* CPU center */
.hw-cpu {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cpuFloat 4s ease-in-out infinite;
}
@keyframes cpuFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}
.hw-cpu-svg { width: 100%; height: 100%; filter: drop-shadow(0 0 12px rgba(232,255,0,0.25)); }
.hw-cpu-glow {
  position: absolute;
  inset: 20%;
  background: radial-gradient(circle, rgba(232,255,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 2.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.15); }
}

/* Satellites orbiting */
.hw-satellite {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.6));
}
.hw-satellite svg { display: block; }

.hw-sat-1 {
  width: 70px;
  animation: sat1Orbit 12s linear infinite;
  transform-origin: 50% calc(50% + 140px);
}
.hw-sat-2 {
  width: 62px;
  animation: sat2Orbit 16s linear infinite;
  transform-origin: 50% calc(50% + 140px);
}
.hw-sat-3 {
  width: 78px;
  animation: sat3Orbit 20s linear infinite;
  transform-origin: 50% calc(50% + 140px);
}
.hw-sat-4 {
  width: 58px;
  animation: sat4Orbit 14s linear infinite;
  transform-origin: 50% calc(50% + 140px);
}

@keyframes sat1Orbit {
  from { transform: rotate(0deg)   translateY(-140px) rotate(0deg); }
  to   { transform: rotate(360deg) translateY(-140px) rotate(-360deg); }
}
@keyframes sat2Orbit {
  from { transform: rotate(90deg)  translateY(-140px) rotate(-90deg); }
  to   { transform: rotate(450deg) translateY(-140px) rotate(-450deg); }
}
@keyframes sat3Orbit {
  from { transform: rotate(200deg) translateY(-140px) rotate(-200deg); }
  to   { transform: rotate(560deg) translateY(-140px) rotate(-560deg); }
}
@keyframes sat4Orbit {
  from { transform: rotate(285deg) translateY(-140px) rotate(-285deg); }
  to   { transform: rotate(645deg) translateY(-140px) rotate(-645deg); }
}

/* Data particles */
.hw-particles { position: absolute; inset: 0; pointer-events: none; }
.hw-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.p1 { top: 50%; left: 50%; animation: particleFly1 3s ease-in-out infinite; }
.p2 { top: 50%; left: 50%; animation: particleFly2 3.8s ease-in-out infinite 0.5s; background: #00d4ff; }
.p3 { top: 50%; left: 50%; animation: particleFly3 2.6s ease-in-out infinite 1s; background: #a855f7; }
.p4 { top: 50%; left: 50%; animation: particleFly4 4s ease-in-out infinite 1.5s; background: #ff8c00; }

@keyframes particleFly1 {
  0%   { transform: translate(0,0); opacity: 1; }
  100% { transform: translate(-130px, -80px); opacity: 0; }
}
@keyframes particleFly2 {
  0%   { transform: translate(0,0); opacity: 1; }
  100% { transform: translate(120px, -100px); opacity: 0; }
}
@keyframes particleFly3 {
  0%   { transform: translate(0,0); opacity: 1; }
  100% { transform: translate(-90px, 120px); opacity: 0; }
}
@keyframes particleFly4 {
  0%   { transform: translate(0,0); opacity: 1; }
  100% { transform: translate(110px, 100px); opacity: 0; }
}

/* System label */
.hw-label {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: rgba(232,255,0,0.06);
  border: 1px solid rgba(232,255,0,0.2);
  padding: 6px 14px;
  border-radius: 2px;
  white-space: nowrap;
}
.hw-label-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ===== TEAM PHOTO ===== */
.team-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

/* Responsive hero visual */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; }
  .hero-visual { flex: none; width: 100%; max-width: 340px; }
  .hw-scene { width: 280px; height: 280px; }
  .hw-orbit { width: 220px; height: 220px; }
  .hw-orbit--2 { width: 270px; height: 270px; }
  .hw-cpu { width: 140px; height: 140px; }
  .hw-sat-1, .hw-sat-2, .hw-sat-3, .hw-sat-4 { transform-origin: 50% calc(50% + 110px); }
  @keyframes sat1Orbit { from { transform: rotate(0deg)   translateY(-110px) rotate(0deg); } to { transform: rotate(360deg) translateY(-110px) rotate(-360deg); } }
  @keyframes sat2Orbit { from { transform: rotate(90deg)  translateY(-110px) rotate(-90deg); } to { transform: rotate(450deg) translateY(-110px) rotate(-450deg); } }
  @keyframes sat3Orbit { from { transform: rotate(200deg) translateY(-110px) rotate(-200deg); } to { transform: rotate(560deg) translateY(-110px) rotate(-560deg); } }
  @keyframes sat4Orbit { from { transform: rotate(285deg) translateY(-110px) rotate(-285deg); } to { transform: rotate(645deg) translateY(-110px) rotate(-645deg); } }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 80px; }
  .stats-bar { gap: 20px; padding: 40px 20px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 20px; }
  .products, .brands, .team, .contact { padding: 60px 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .modal { padding: 28px; }
  .modal-content h2 { font-size: 32px; }
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}
