/* ============================================
   RAJAMODS7 — CYBERPUNK HACKER THEME
   ============================================ */

:root {
  --red: #FF0000;
  --red-dim: #CC0000;
  --red-glow: rgba(255, 0, 0, 0.4);
  --red-faint: rgba(255, 0, 0, 0.08);
  --black: #000000;
  --dark: #0A0A0A;
  --dark2: #111111;
  --dark3: #1A1A1A;
  --white: #FFFFFF;
  --grey: #888888;
  --grey-dim: #444444;
  --font-display: 'Orbitron', monospace;
  --font-mono: 'Share Tech Mono', monospace;
  --font-body: 'Rajdhani', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: crosshair;
}
a { text-decoration: none; color: inherit; }

/* ---- SCANLINES ---- */
.scanlines {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0,0,0,0.15) 2px,
    rgba(0,0,0,0.15) 4px
  );
  animation: scanMove 8s linear infinite;
}
@keyframes scanMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

/* ---- NOISE ---- */
.noise {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  opacity: 0.03;
  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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ---- PARTICLES CANVAS ---- */
#particles {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,0,0,0.85);
  border-bottom: 1px solid rgba(255,0,0,0.3);
  backdrop-filter: blur(10px);
  padding: 0 2rem;
  height: 60px;
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 900;
  letter-spacing: 0.1em;
}
.logo-bracket { color: var(--red); }
.logo-text { color: var(--white); }
.logo-accent { color: var(--red); }

.nav { display: flex; gap: 2rem; }
.nav-link {
  font-family: var(--font-mono);
  font-size: 0.75rem; letter-spacing: 0.15em;
  color: var(--grey);
  transition: color 0.2s, text-shadow 0.2s;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-link:hover { color: var(--red); text-shadow: 0 0 10px var(--red); }
.nav-link:hover::after { transform: scaleX(1); }

.header-status { display: flex; align-items: center; gap: 0.5rem; }
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.5s ease-in-out infinite;
}
.status-text {
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--red); letter-spacing: 0.1em;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--red); }
  50% { opacity: 0.4; box-shadow: 0 0 3px var(--red); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 2rem 4rem;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 16rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,0,0,0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
  animation: bgTextPulse 4s ease-in-out infinite;
}
@keyframes bgTextPulse {
  0%, 100% { -webkit-text-stroke-color: rgba(255,0,0,0.06); }
  50% { -webkit-text-stroke-color: rgba(255,0,0,0.12); }
}

.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; text-align: center; max-width: 800px;
}

/* System bar */
.system-bar {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--white); letter-spacing: 0.1em;
}
.progress-bar {
  width: 160px; height: 14px;
  border: 1px solid var(--red);
  position: relative; overflow: hidden;
}
.progress-fill {
  height: 100%; width: 0%;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px, var(--red) 6px,
    transparent 6px, transparent 10px
  );
  transition: width 0.05s linear;
  box-shadow: 0 0 10px var(--red);
}
.sys-pct { color: var(--red); font-weight: bold; min-width: 3ch; }

/* Terminal line */
.terminal-line {
  font-family: var(--font-mono); font-size: 0.85rem;
  color: var(--grey); letter-spacing: 0.05em;
  background: rgba(255,0,0,0.04);
  border: 1px solid rgba(255,0,0,0.15);
  padding: 0.5rem 1rem;
  border-radius: 2px;
}
.prompt { color: var(--red); margin-right: 0.5rem; }
.cmd { color: var(--white); }
.cursor {
  color: var(--red);
  animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Mask */
.hero-mask-wrapper {
  position: relative; width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.mask-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(255,0,0,0.2) 0%, transparent 70%);
  animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.hero-mask {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  box-shadow: 0 0 30px rgba(255,0,0,0.4), inset 0 0 20px rgba(255,0,0,0.1);
  position: relative; overflow: hidden;
}
.hero-mask::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 8px,
    rgba(255,0,0,0.03) 8px, rgba(255,0,0,0.03) 9px
  );
}
.mask-eyes { display: flex; gap: 2rem; }
.eye {
  width: 36px; height: 36px;
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 10px var(--red);
  animation: eyeFlicker 3s ease-in-out infinite;
}
.eye-x {
  width: 100%; height: 100%;
  background:
    linear-gradient(45deg, transparent 40%, var(--red) 40%, var(--red) 60%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, var(--red) 40%, var(--red) 60%, transparent 60%);
}
@keyframes eyeFlicker {
  0%, 90%, 100% { opacity: 1; }
  92% { opacity: 0.2; }
  94% { opacity: 1; }
  96% { opacity: 0.4; }
  98% { opacity: 1; }
}
.mask-smile {
  width: 80px; height: 20px;
  border: 1px solid var(--red);
  overflow: hidden;
}
.smile-grid {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px, var(--red) 4px,
    transparent 4px, transparent 8px
  );
  opacity: 0.8;
}

/* Hero title */
.hero-title-block { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero-sub {
  font-family: var(--font-mono); font-size: 0.9rem;
  letter-spacing: 0.4em; color: var(--white);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.05em;
  text-shadow: 0 0 30px rgba(255,0,0,0.8), 0 0 60px rgba(255,0,0,0.4);
  position: relative;
}
/* Glitch effect */
.glitch { animation: glitch 4s infinite; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; width: 100%;
}
.glitch::before {
  color: var(--red);
  animation: glitchTop 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translate(-2px, -2px);
  opacity: 0.8;
}
.glitch::after {
  color: #ff6666;
  animation: glitchBot 4s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  transform: translate(2px, 2px);
  opacity: 0.8;
}
@keyframes glitch {
  0%, 90%, 100% { transform: none; }
  91% { transform: skew(-1deg); }
  92% { transform: skew(1deg) translateX(3px); }
  93% { transform: none; }
}
@keyframes glitchTop {
  0%, 90%, 100% { transform: translate(-2px, -2px); }
  91% { transform: translate(4px, -2px); }
  92% { transform: translate(-4px, -2px); }
}
@keyframes glitchBot {
  0%, 90%, 100% { transform: translate(2px, 2px); }
  91% { transform: translate(-4px, 2px); }
  92% { transform: translate(4px, 2px); }
}

.hero-tagline {
  font-family: var(--font-mono); font-size: 0.8rem;
  letter-spacing: 0.25em; color: var(--grey);
}

/* Name frame */
.hero-name-frame {
  position: relative; padding: 0.75rem 2.5rem;
  border: 2px solid var(--red);
  box-shadow: 0 0 20px rgba(255,0,0,0.3), inset 0 0 20px rgba(255,0,0,0.05);
}
.frame-corner {
  position: absolute; width: 10px; height: 10px;
  border-color: var(--red); border-style: solid;
}
.frame-corner.tl { top: -3px; left: -3px; border-width: 3px 0 0 3px; }
.frame-corner.tr { top: -3px; right: -3px; border-width: 3px 3px 0 0; }
.frame-corner.bl { bottom: -3px; left: -3px; border-width: 0 0 3px 3px; }
.frame-corner.br { bottom: -3px; right: -3px; border-width: 0 3px 3px 0; }
.frame-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 900; letter-spacing: 0.2em;
  color: var(--red);
  text-shadow: 0 0 20px rgba(255,0,0,0.6);
}

.hero-slogan {
  font-family: var(--font-mono); font-size: 0.85rem;
  letter-spacing: 0.15em; color: var(--grey);
  line-height: 1.8;
}
.slogan-accent { color: var(--red); font-weight: bold; }

/* CTA Buttons */
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.15em;
  border: 1px solid; cursor: pointer;
  transition: all 0.2s; position: relative; overflow: hidden;
  text-transform: uppercase;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: currentColor; opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 0.1; }
.btn:hover { transform: translateY(-2px); }
.btn-icon { font-size: 1rem; }

.btn-primary {
  background: var(--red); color: var(--black);
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(255,0,0,0.4);
}
.btn-primary:hover { box-shadow: 0 0 30px rgba(255,0,0,0.7); }

.btn-secondary {
  background: transparent; color: var(--red);
  border-color: var(--red);
}
.btn-secondary:hover { box-shadow: 0 0 20px rgba(255,0,0,0.3); }

.btn-tg {
  background: transparent; color: #29b6f6;
  border-color: #29b6f6;
}
.btn-tg:hover { box-shadow: 0 0 20px rgba(41,182,246,0.3); }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  position: relative; z-index: 10;
  padding: 6rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--red); letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.accent { color: var(--red); text-shadow: 0 0 20px rgba(255,0,0,0.5); }
.section-desc {
  font-family: var(--font-body); font-size: 1rem;
  color: var(--grey); max-width: 500px; margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   STORE GRID
   ============================================ */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-bottom: 2rem;
}
.store-card {
  position: relative;
  background: var(--dark2);
  border: 1px solid rgba(255,0,0,0.2);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; text-align: center;
  transition: all 0.3s; overflow: hidden;
  cursor: pointer;
  opacity: 0; transform: translateY(30px);
  animation: cardReveal 0.6s forwards;
}
.store-card:nth-child(1) { animation-delay: 0.1s; }
.store-card:nth-child(2) { animation-delay: 0.2s; }
.store-card:nth-child(3) { animation-delay: 0.3s; }
.store-card:nth-child(4) { animation-delay: 0.4s; }
@keyframes cardReveal {
  to { opacity: 1; transform: translateY(0); }
}
.store-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(255,0,0,0.2);
}
.store-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 30px rgba(255,0,0,0.15);
}
.card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,0,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.featured-tag {
  position: absolute; top: 0; right: 0;
  background: var(--red); color: var(--black);
  font-family: var(--font-mono); font-size: 0.6rem;
  padding: 0.25rem 0.75rem; letter-spacing: 0.1em;
}
.card-icon { font-size: 2.5rem; }
.card-title {
  font-family: var(--font-display); font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.15em; color: var(--white);
}
.card-desc {
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--grey); line-height: 1.6;
}
.card-badge {
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--red); border: 1px solid rgba(255,0,0,0.4);
  padding: 0.2rem 0.75rem; letter-spacing: 0.15em;
}
.card-btn {
  display: block; width: 100%;
  background: transparent; color: var(--red);
  border: 1px solid var(--red);
  font-family: var(--font-display); font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.15em;
  padding: 0.6rem; text-align: center;
  transition: all 0.2s; margin-top: auto;
}
.card-btn:hover {
  background: var(--red); color: var(--black);
  box-shadow: 0 0 20px rgba(255,0,0,0.4);
}
.store-note {
  text-align: center;
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--grey); letter-spacing: 0.05em;
}
.note-icon { color: var(--red); margin-right: 0.5rem; }
.inline-link { color: var(--red); border-bottom: 1px solid rgba(255,0,0,0.4); }
.inline-link:hover { text-shadow: 0 0 10px var(--red); }

/* ============================================
   AI SECTION
   ============================================ */
.ai-section { position: relative; overflow: hidden; }
.ai-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.ai-showcase { position: relative; z-index: 1; display: flex; justify-content: center; }
.ai-card-main {
  position: relative;
  background: var(--dark2);
  border: 1px solid rgba(255,0,0,0.3);
  padding: 3rem 2.5rem;
  max-width: 500px; width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(255,0,0,0.1);
  overflow: hidden;
}
.ai-pulse {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,0,0,0.1) 0%, transparent 60%);
  animation: aiPulse 3s ease-in-out infinite;
}
@keyframes aiPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.ai-icon-wrap {
  position: relative; width: 100px; height: 100px;
  margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;
}
.ai-icon { font-size: 3rem; position: relative; z-index: 2; }
.ai-rings { position: absolute; inset: 0; }
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,0,0,0.4);
  animation: ringExpand 2s ease-out infinite;
}
.r1 { inset: 0; animation-delay: 0s; }
.r2 { inset: -15px; animation-delay: 0.6s; }
.r3 { inset: -30px; animation-delay: 1.2s; }
@keyframes ringExpand {
  0% { opacity: 1; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.3); }
}
.ai-name {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 900; letter-spacing: 0.2em;
  color: var(--red); text-shadow: 0 0 20px rgba(255,0,0,0.5);
  margin-bottom: 0.5rem;
}
.ai-tagline {
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--grey); margin-bottom: 1.5rem; line-height: 1.6;
}
.ai-features { text-align: left; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.ai-feat {
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--white); display: flex; align-items: center; gap: 0.75rem;
}
.feat-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 6px var(--red);
  flex-shrink: 0;
}
.ai-cta-block { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.ai-cta-label {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--grey); letter-spacing: 0.05em;
}
.ai-buy-btn { font-size: 0.75rem; padding: 1rem 2rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { max-width: 700px; }
.contact-grid { margin-bottom: 2rem; }
.contact-card {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255,0,0,0.3);
  background: var(--dark2);
  transition: all 0.3s; position: relative; overflow: hidden;
  cursor: pointer;
}
.contact-card:hover {
  border-color: var(--red);
  transform: translateX(6px);
  box-shadow: 0 0 30px rgba(255,0,0,0.2);
}
.contact-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(255,0,0,0.08) 0%, transparent 60%);
}
.tg-card:hover .contact-card-glow {
  background: radial-gradient(circle at 0% 50%, rgba(41,182,246,0.1) 0%, transparent 60%);
}
.contact-icon {
  font-size: 2.5rem; flex-shrink: 0;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,0,0,0.3);
  color: #29b6f6;
}
.tg-card .contact-icon { border-color: rgba(41,182,246,0.3); }
.contact-info { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.contact-platform {
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--grey); letter-spacing: 0.2em;
}
.contact-handle {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--white); letter-spacing: 0.05em;
}
.contact-action {
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--red); letter-spacing: 0.1em;
}
.contact-arrow {
  font-size: 1.5rem; color: var(--red);
  transition: transform 0.2s;
}
.contact-card:hover .contact-arrow { transform: translateX(6px); }

/* Terminal */
.contact-terminal {
  background: #0a0a0a; border: 1px solid rgba(255,0,0,0.2);
  border-radius: 4px; overflow: hidden;
}
.ct-header {
  background: var(--dark3); padding: 0.5rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid rgba(255,0,0,0.1);
}
.ct-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.ct-dot.red { background: #ff5f57; }
.ct-dot.yellow { background: #febc2e; }
.ct-dot.green { background: #28c840; }
.ct-title {
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--grey); margin-left: 0.5rem;
}
.ct-body {
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.8rem;
}
.ct-prompt { color: var(--red); margin-right: 0.5rem; }
.ct-cmd { color: var(--white); }
.ct-out { color: var(--grey); padding-left: 1rem; }
.ct-hl { color: var(--white); }
.ct-green { color: #28c840; }
.ct-blink { color: var(--red); animation: blink 0.8s step-end infinite; }

/* ============================================
   FOOTER
   ============================================ */
footer.footer {
  position: relative; z-index: 10;
  border-top: 1px solid rgba(255,0,0,0.2);
  padding: 3rem 2rem;
  text-align: center;
  background: var(--dark);
}
.footer-inner { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.footer-logo {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 900; letter-spacing: 0.2em; color: var(--white);
}
.footer-slogan {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--grey); letter-spacing: 0.15em;
}
.footer-links { display: flex; gap: 2rem; }
.footer-link {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--grey); letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--red); }
.footer-copy {
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--grey-dim); letter-spacing: 0.1em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav { display: none; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .store-grid { grid-template-columns: 1fr; }
  .contact-card { flex-direction: column; text-align: center; }
  .contact-arrow { display: none; }
  .system-bar { flex-direction: column; gap: 0.5rem; }
  .progress-bar { width: 200px; }
}

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