/* ══════════════════════════════════════
   TEWO — OFFICIAL SITE
   Main Stylesheet
   ══════════════════════════════════════ */

/* ══════════════════════════════════════
   CSS RESET & VARIABLES
   ══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #000000;
  --white: #FFFFFF;
  --accent: #00BFFF;          /* changed from #7CFF00 (green) to DeepSkyBlue */
  --accent-dim: rgba(0,191,255,0.15);   /* semi-transparent blue */
  --accent-glow: rgba(0,191,255,0.4);   /* glow effect in blue */
  --gray-1: #111111;
  --gray-2: #1a1a1a;
  --gray-3: #2a2a2a;
  --gray-4: #888888;
  --font-display: 'Anton', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Instrument Sans', sans-serif;
}

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--accent) var(--black); }
body { background: var(--black); color: var(--white); font-family: var(--font-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════
   GRAIN OVERLAY
   ══════════════════════════════════════ */
.grain { position: fixed; top: -50%; left: -50%; width: 200%; height: 200%; pointer-events: none; z-index: 9999; opacity: 0.06; }
.grain::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: grainShift 0.4s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-5%, -5%); }
  50% { transform: translate(5%, 2%); }
  75% { transform: translate(-2%, 5%); }
  100% { transform: translate(0, 0); }
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}
nav.hidden { transform: translateY(-100%); }
.nav-logo { font-family: var(--font-display); font-size: 24px; letter-spacing: 2px; text-transform: uppercase; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white); transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  background: var(--accent); color: var(--black); padding: 8px 16px;
  border: none; font-weight: 700; transition: all 0.2s;
}
.nav-cta:hover { background: var(--white); box-shadow: 0 0 20px var(--accent-glow); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001;
  padding: 8px; margin: -8px; /* Expand click area */
}
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; display: block; }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu[aria-hidden="true"] { display: none; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 36px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ══════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  flex-direction: column; overflow: hidden; padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,191,255,0.04) 0%, transparent 60%);
}
.hero-scanlines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.03;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.1) 2px, rgba(255,255,255,0.1) 4px);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; }
.hero-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px; opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(80px, 18vw, 200px);
  line-height: 0.85; letter-spacing: -2px; text-transform: uppercase;
  position: relative; margin-bottom: 24px;
  opacity: 0; animation: glitchIn 1s ease 0.5s forwards;
}
.hero-title::before, .hero-title::after {
  content: ''; display: none;
}
.hero-subtitle {
  font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,0.5);
  max-width: 460px; margin: 0 auto 40px; line-height: 1.6;
  opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero-cta-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 1s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--black); padding: 14px 32px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(0,191,255,0.15); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 14px 32px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  opacity: 0; animation: fadeUp 0.8s ease 1.4s forwards;
}
.scroll-indicator svg { animation: bounce 2s ease infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes glitchIn {
  0% { opacity: 0; transform: translateY(40px) skewX(-5deg); filter: blur(10px); }
  50% { opacity: 0.8; transform: translateY(-5px) skewX(2deg); filter: blur(0); }
  70% { transform: translateY(3px) skewX(-1deg); }
  100% { opacity: 1; transform: translateY(0) skewX(0); }
}

/* ══════════════════════════════════════
   SECTION DEFAULTS
   ══════════════════════════════════════ */
section { padding: 100px 24px; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(32px, 6vw, 56px);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.section-desc { color: rgba(255,255,255,0.5); max-width: 500px; line-height: 1.6; margin-bottom: 48px; }
.divider {
  width: 100%; height: 1px; position: relative; overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(0,191,255,0.3), transparent);
}

/* ══════════════════════════════════════
   LATEST RELEASE / CAROUSEL
   ══════════════════════════════════════ */
#latest { background: var(--gray-1); }
.latest-carousel {
  position: relative;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  transition: all 0.3s;
  z-index: 10;
}
.carousel-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.latest-slides-wrapper {
  overflow: hidden;
}
.latest-slides {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.latest-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.latest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.latest-art-wrap { position: relative; }
.latest-art {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
  filter: saturate(0.9) contrast(1.05);
  transition: filter 0.5s;
}
.latest-art:hover { filter: saturate(1.1) contrast(1.1); }
.latest-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: var(--black);
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; padding: 6px 12px; text-transform: uppercase;
}
.latest-info h3 { font-family: var(--font-display); font-size: 48px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.latest-info .date { font-family: var(--font-mono); font-size: 12px; color: var(--gray-4); letter-spacing: 1px; margin-bottom: 24px; }
.latest-info .desc { color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; font-size: 15px; }
.latest-links { display: flex; gap: 12px; flex-wrap: wrap; }
.spotify-embed {
  width: 100%; margin-top: 24px; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s;
}
.carousel-dots button:hover { background: rgba(255,255,255,0.4); }
.carousel-dots button.active {
  background: var(--accent);
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .latest-carousel { padding: 0 44px; }
  .carousel-arrow { width: 40px; height: 40px; }
  .carousel-prev { left: -4px; }
  .carousel-next { right: -4px; }
  .latest-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ══════════════════════════════════════
   SNIPPET PLAYER
   ══════════════════════════════════════ */
#snippets { background: var(--black); }
.snippets-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.snippet-card {
  background: var(--gray-2); border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; transition: all 0.3s; position: relative; cursor: pointer;
}
.snippet-card:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.snippet-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.snippet-card.active { border-color: var(--accent); box-shadow: 0 0 20px var(--accent-dim); }
.snippet-art-wrap { position: relative; width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--gray-3); }
.snippet-art { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, filter 0.5s; }
.snippet-card:hover .snippet-art { transform: scale(1.05); filter: brightness(0.7); }
.snippet-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gray-2), var(--gray-3));
  font-family: var(--font-display); font-size: 48px; color: rgba(255,255,255,0.1); text-transform: uppercase;
}
.snippet-play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; background: rgba(0,0,0,0.3);
}
.snippet-card:hover .snippet-play-overlay { opacity: 1; }
.snippet-card.active .snippet-play-overlay { opacity: 1; }
.play-btn-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.play-btn-circle:hover { transform: scale(1.1); box-shadow: 0 0 30px var(--accent-glow); }
.play-btn-circle svg { fill: var(--black); margin-left: 3px; }
.unreleased-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(0,0,0,0.8); border: 1px solid rgba(0,191,255,0.3);
  color: var(--accent); font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 2px; padding: 4px 10px; text-transform: uppercase;
}
.snippet-info { padding: 16px; }
.snippet-info h4 { font-family: var(--font-display); font-size: 18px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.snippet-info .meta { font-family: var(--font-mono); font-size: 10px; color: var(--gray-4); letter-spacing: 1px; }

/* Player bar that appears under active card */
.snippet-player-bar {
  padding: 0 16px 16px; display: none;
}
.snippet-card.active .snippet-player-bar { display: block; }
.progress-wrap {
  width: 100%; height: 4px; background: rgba(255,255,255,0.1); cursor: pointer;
  position: relative; margin-bottom: 8px; border-radius: 2px;
}
.progress-fill { height: 100%; background: var(--accent); border-radius: 2px; width: 0%; transition: width 0.1s linear; }
.progress-thumb {
  position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%);
  width: 12px; height: 12px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow); opacity: 0; transition: opacity 0.2s;
}
.progress-wrap:hover .progress-thumb { opacity: 1; }
.player-controls { display: flex; justify-content: space-between; align-items: center; }
.player-time { font-family: var(--font-mono); font-size: 10px; color: var(--gray-4); }
.loop-btn {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gray-4); padding: 4px 10px; border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s; display: flex; align-items: center; gap: 4px;
}
.loop-btn.active { color: var(--accent); border-color: var(--accent); background: var(--accent-dim); }
.loop-btn:hover { border-color: var(--accent); color: var(--accent); }
.volume-control {
  display: flex; align-items: center; gap: 6px;
}
.volume-btn {
  color: var(--gray-4); transition: color 0.2s; display: flex; align-items: center;
  padding: 2px;
}
.volume-btn:hover { color: var(--accent); }
.volume-btn svg { width: 14px; height: 14px; fill: currentColor; }
.volume-slider {
  -webkit-appearance: none; appearance: none;
  width: 60px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.1); outline: none; cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); cursor: pointer;
  box-shadow: 0 0 6px var(--accent-glow);
}
.volume-slider::-moz-range-thumb {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: var(--accent); cursor: pointer;
  box-shadow: 0 0 6px var(--accent-glow);
}
.volume-slider::-moz-range-track {
  height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.1);
}
.spotify-link-btn {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px;
  color: var(--accent); text-transform: uppercase; display: flex; align-items: center; gap: 4px;
  transition: opacity 0.2s;
}
.spotify-link-btn:hover { opacity: 0.7; }
.snippet-fallback {
  padding: 16px; text-align: center; color: rgba(255,255,255,0.4);
  font-size: 13px; display: none;
}

/* ══════════════════════════════════════
   LIVE STATS
   ══════════════════════════════════════ */
#stats {
  background: var(--gray-1);
  border-top: 1px solid rgba(0,191,255,0.1);
  border-bottom: 1px solid rgba(0,191,255,0.1);
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-item { }
.stat-number {
  font-family: var(--font-display); font-size: clamp(40px, 8vw, 72px);
  color: var(--accent); line-height: 1;
  text-shadow: 0 0 40px rgba(0,191,255,0.2);
}
.stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-4); margin-top: 8px; }
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ══════════════════════════════════════
   MUSIC LINKS
   ══════════════════════════════════════ */
#music { background: var(--black); }
.music-links-stack { max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.music-link {
  display: flex; align-items: center; gap: 16px; padding: 16px 24px;
  border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
}
.music-link:hover { border-color: var(--accent); transform: translateX(4px); }
.music-link.spotify { background: var(--accent); color: var(--black); border-color: var(--accent); font-weight: 700; }
.music-link.spotify:hover { box-shadow: 0 0 30px var(--accent-glow); transform: translateX(4px); }
.music-link svg { width: 24px; height: 24px; flex-shrink: 0; }
.music-link .arrow { margin-left: auto; opacity: 0.5; }

/* ══════════════════════════════════════
   SOCIAL LINKS
   ══════════════════════════════════════ */
#social { background: var(--gray-1); }
.social-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.social-icon {
  width: 60px; height: 60px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-icon:hover { border-color: var(--accent); background: var(--accent-dim); transform: scale(1.1); box-shadow: 0 0 20px var(--accent-dim); }
.social-icon svg { width: 24px; height: 24px; fill: var(--white); transition: fill 0.3s; }
.social-icon:hover svg { fill: var(--accent); }

/* ══════════════════════════════════════
   EMAIL SIGNUP
   ══════════════════════════════════════ */
#signup {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.signup-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.signup-form { display: flex; gap: 0; margin-top: 32px; }
.signup-form input {
  flex: 1; padding: 14px 20px; background: var(--gray-2);
  border: 1px solid rgba(255,255,255,0.1); border-right: none;
  color: var(--white); font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color 0.3s;
}
.signup-form input:focus { border-color: var(--accent); }
.signup-form input::placeholder { color: var(--gray-4); }
.signup-form button {
  padding: 14px 28px; background: var(--accent); color: var(--black);
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s;
  border: 1px solid var(--accent); white-space: nowrap;
}
.signup-form button:hover { background: var(--white); }
.signup-note { font-size: 12px; color: var(--gray-4); margin-top: 12px; }
@media (max-width: 500px) {
  .signup-form { flex-direction: column; }
  .signup-form input { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: none; }
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
#contact { background: var(--gray-1); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 16px; background: var(--gray-2);
  border: 1px solid rgba(255,255,255,0.08); color: var(--white);
  font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color 0.3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent); }
.form-field label {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gray-4); margin-bottom: 8px;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field select { cursor: pointer; }
.form-field select option { background: var(--gray-2); }
.contact-info { display: flex; flex-direction: column; justify-content: center; gap: 32px; }
.contact-info-item .label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-4); margin-bottom: 4px; }
.contact-info-item .value { font-size: 15px; color: rgba(255,255,255,0.8); }
.contact-info-item .value a { color: var(--accent); transition: opacity 0.2s; }
.contact-info-item .value a:hover { opacity: 0.7; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
  padding: 60px 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--black);
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--font-display); font-size: 20px; letter-spacing: 2px; }
.footer-copy { font-family: var(--font-mono); font-size: 10px; color: var(--gray-4); letter-spacing: 1px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-family: var(--font-mono); font-size: 10px; color: var(--gray-4); letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   TOAST
   ══════════════════════════════════════ */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 10000;
  background: var(--accent); color: var(--black); padding: 12px 24px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* Screen reader only - visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
