/* ─── Reset & Base ───────────────────────────────────── */
:root {
  --black:    #000000;
  --bg:       #080808;
  --surface:  #111111;
  --surface2: #1a1a1a;
  --surface3: #222222;
  --border:   #2a2a2a;
  --border2:  #333333;
  --white:    #ffffff;
  --off-white:#e8e8e8;
  --muted:    #888888;
  --muted2:   #555555;
  --accent:   #ffffff;
  --gold:     #c9a84c;
  --gold-soft:rgba(201,168,76,0.12);
  --red:      #e53e3e;
  --green:    #38a169;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Assistant', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 20px 60px rgba(0,0,0,0.8);
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 999px; }

/* ─── Container ──────────────────────────────────────── */
.container {
  width: min(1200px, 100% - 40px);
  margin: 0 auto;
}

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav.scrolled {
  background: rgba(0,0,0,0.98);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.nav-links a {
  color: var(--muted);
  transition: color var(--transition);
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-account {
  padding: 7px 16px;
  border: 1px solid var(--border2);
  border-radius: 999px;
  color: var(--white) !important;
  transition: border-color var(--transition), background var(--transition) !important;
}

.nav-account:hover {
  border-color: var(--white) !important;
  background: rgba(255,255,255,0.05) !important;
}

.lang-toggle {
  background: none;
  border: 1px solid var(--border2);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-toggle:hover {
  border-color: var(--white);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: all 0.25s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    font-size: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(255,255,255,0.03) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255,255,255,0.02) 0%, transparent 60%);
}

.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(160px, 25vw, 340px);
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.05em;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}

.hero-badge {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--border2);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(54px, 10vw, 110px);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-title-accent {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.5);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted2);
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-primary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border2);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-lg {
  padding: 14px 34px;
  font-size: 15px;
}

.btn-dark {
  background: var(--surface2);
  color: var(--white);
  border-color: var(--border);
}

.btn-dark:hover {
  background: var(--surface3);
  border-color: var(--border2);
}

/* ─── SECTIONS ───────────────────────────────────────── */
.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border2);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── PROGRAMMERS GRID ───────────────────────────────── */
.programmers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px;
}

.programmer-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface2);
}

.programmer-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(100%);
}

.programmer-card:hover .programmer-card-img {
  transform: scale(1.06);
  filter: grayscale(60%);
}

.programmer-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 18px;
  transition: background var(--transition);
}

.programmer-card:hover .programmer-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.programmer-card-rank {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: rgba(0,0,0,0.6);
  padding: 3px 8px;
  border-radius: 4px;
}

.programmer-card-rank.rank-1 { color: var(--gold); }

.programmer-card-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 6px;
}

.programmer-card-style {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.programmer-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gold);
}

.programmer-card-cta {
  position: absolute;
  bottom: 22px;
  left: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding-bottom: 2px;
}

.programmer-card:hover .programmer-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ─── STYLES GRID ────────────────────────────────────── */
.styles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.style-chip {
  padding: 12px 24px;
  border: 1px solid var(--border2);
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}

.style-chip:hover,
.style-chip.active {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.style-chip .style-count {
  font-size: 11px;
  color: var(--muted2);
  margin-right: 6px;
}

/* ─── STEPS ──────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.step-card {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}

.step-card:hover {
  background: var(--surface2);
}

.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-link {
  font-size: 13px;
  color: var(--white);
  border-bottom: 1px solid var(--border2);
  padding-bottom: 2px;
  transition: border-color var(--transition);
  display: inline-block;
}

.step-link:hover {
  border-color: var(--white);
}

/* ─── CTA SECTION ────────────────────────────────────── */
.section-cta {
  padding: 80px 0;
  background: var(--surface);
}

.cta-card {
  border: 1px solid var(--border2);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, transparent 70%);
}

.cta-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  margin-bottom: 20px;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  position: relative;
}

.cta-card p {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.cta-note {
  font-size: 13px;
  color: var(--muted);
}

/* ─── TOP RATED GRID ─────────────────────────────────── */
.top-rated-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.rated-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}

.rated-card:hover {
  border-color: var(--border2);
  background: var(--surface2);
}

.rated-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface3);
  filter: grayscale(100%);
}

.rated-card-info { flex: 1; }

.rated-card-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.rated-card-style {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.rated-card-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
}

.rated-card-reviews {
  font-size: 11px;
  color: var(--muted2);
  margin-right: 6px;
}

/* ─── PROGRAMMER PAGE ────────────────────────────────── */
.prog-hero {
  padding-top: 100px;
  padding-bottom: 0;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.prog-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(100%) brightness(0.35);
}

.prog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%);
}

.prog-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 56px 0;
}

.prog-hero-content .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.prog-info {}

.prog-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.prog-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.prog-quote {
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.prog-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.prog-meta-item {
  font-size: 13px;
  color: var(--muted);
}

.prog-meta-item strong {
  color: var(--white);
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.prog-purchase-box {
  background: var(--surface);
  border: 1px solid var(--border2);
  padding: 28px;
  min-width: 280px;
  flex-shrink: 0;
  border-radius: var(--radius);
}

.prog-price-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.prog-price {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.prog-price-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}

.prog-buy-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.prog-buy-tagline {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ─── AUDIO PLAYER ───────────────────────────────────── */
.audio-section {
  padding: 64px 0;
  background: var(--surface);
}

.audio-section h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}

.audio-tracks {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.audio-track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  border-radius: var(--radius);
}

.audio-track:hover,
.audio-track.playing {
  background: var(--surface2);
  border-color: var(--border2);
}

.audio-track.playing .track-play-btn {
  color: var(--white);
}

.track-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--muted);
}

.audio-track:hover .track-play-btn {
  border-color: var(--white);
  color: var(--white);
}

.track-num {
  font-size: 12px;
  color: var(--muted2);
  width: 24px;
  flex-shrink: 0;
  text-align: center;
}

.track-name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
}

.track-genre {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.track-duration {
  font-size: 12px;
  color: var(--muted2);
  font-family: monospace;
}

.track-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 80px;
}

.track-waveform span {
  display: block;
  width: 3px;
  background: var(--border2);
  border-radius: 999px;
  transition: height var(--transition), background var(--transition);
}

.audio-track.playing .track-waveform span {
  background: var(--white);
  animation: wave 1s ease-in-out infinite;
}

.audio-track.playing .track-waveform span:nth-child(2) { animation-delay: 0.1s; }
.audio-track.playing .track-waveform span:nth-child(3) { animation-delay: 0.2s; }
.audio-track.playing .track-waveform span:nth-child(4) { animation-delay: 0.15s; }
.audio-track.playing .track-waveform span:nth-child(5) { animation-delay: 0.05s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.4); }
  50%       { transform: scaleY(1); }
}

/* ─── REVIEWS ────────────────────────────────────────── */
.reviews-section {
  padding: 64px 0;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.reviews-header h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
}

.reviews-avg {
  text-align: center;
}

.reviews-avg-num {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.reviews-avg-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.reviews-avg-count {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: var(--radius);
}

.review-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  color: var(--off-white);
  line-height: 1.65;
  margin-bottom: 14px;
}

.review-author {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface3);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: var(--radius);
}

.review-form h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.star-selector {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  cursor: pointer;
}

.star-selector span {
  font-size: 22px;
  color: var(--border2);
  transition: color var(--transition);
  cursor: pointer;
}

.star-selector span.active,
.star-selector span:hover {
  color: var(--gold);
}

/* ─── STORE ──────────────────────────────────────────── */
.store-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.store-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.store-hero p {
  font-size: 15px;
  color: var(--muted);
}

.store-section {
  padding: 64px 0;
}

.sound-pack-card {
  border: 1px solid var(--border2);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}

.sound-pack-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255,255,255,0.04) 0%, transparent 60%);
}

.sound-pack-badge {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.sound-pack-card h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  position: relative;
}

.sound-pack-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
}

.sound-pack-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.sound-pack-features li {
  font-size: 13px;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sound-pack-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.sound-pack-price-box {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: var(--radius);
  position: relative;
}

.sp-price-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.sp-price {
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1;
}

.sp-price-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
}

.sp-btn {
  width: 100%;
  justify-content: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
}

.product-card-img {
  aspect-ratio: 16/9;
  background: var(--surface2);
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.product-card:hover .product-card-img img {
  filter: grayscale(60%);
}

.product-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--border2);
  letter-spacing: 0.1em;
}

.product-card-body {
  padding: 18px 20px;
}

.product-card-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.product-card-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
}

.product-card-buy {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border2);
  padding-bottom: 2px;
  transition: all var(--transition);
}

.product-card:hover .product-card-buy {
  color: var(--white);
  border-color: var(--white);
}

/* ─── ABOUT ──────────────────────────────────────────── */
.about-hero {
  padding: 140px 0 80px;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  line-height: 1;
}

.about-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
}

.about-hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 80px 0;
}

.about-block {
  background: var(--surface);
  padding: 52px 44px;
}

.about-block-num {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}

.about-block h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.about-block p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.about-statement {
  padding: 80px 0;
  text-align: center;
}

.about-statement blockquote {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--off-white);
  max-width: 800px;
  margin: 0 auto;
}

/* ─── JOIN ───────────────────────────────────────────── */
.join-hero {
  padding: 140px 0 80px;
  text-align: center;
}

.join-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.join-hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.join-reqs {
  padding: 60px 0;
  background: var(--surface);
}

.join-reqs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.join-req-card {
  padding: 32px 28px;
  background: var(--bg);
}

.join-req-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.join-req-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.join-req-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.join-form-section {
  padding: 80px 0;
}

.join-form-section h2 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}

/* ─── FORMS ──────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-textarea,
.form-select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted2);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
}

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

.file-upload {
  border: 1px dashed var(--border2);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.file-upload:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.02);
}

.file-upload-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.file-upload p {
  font-size: 13px;
  color: var(--muted);
}

.file-upload span {
  font-size: 12px;
  color: var(--muted2);
}

.form-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
}

/* ─── ACCOUNT ────────────────────────────────────────── */
.account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  min-height: 100vh;
  padding-top: 64px;
}

.account-sidebar {
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 40px 0;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}

.account-user {
  padding: 0 24px 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.account-user-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface3);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 10px;
}

.account-user-name {
  font-weight: 700;
  font-size: 15px;
}

.account-user-email {
  font-size: 12px;
  color: var(--muted);
}

.account-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
  border-right: 2px solid transparent;
}

.account-nav-item:hover,
.account-nav-item.active {
  color: var(--white);
  background: rgba(255,255,255,0.03);
  border-right-color: var(--white);
}

.account-nav-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.account-content {
  padding: 48px 56px;
}

.account-section {
  display: none;
}

.account-section.active {
  display: block;
}

.account-section-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}

.account-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.account-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: var(--radius);
}

.account-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.account-stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.order-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.order-status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.order-status.complete { background: rgba(56,161,105,0.15); color: var(--green); }
.order-status.pending  { background: rgba(201,168,76,0.15);  color: var(--gold); }
.order-status.waiting  { background: rgba(136,136,136,0.15); color: var(--muted); }

.order-name { flex: 1; font-size: 14px; font-weight: 600; }
.order-date { font-size: 12px; color: var(--muted); }
.order-price { font-family: var(--font-display); font-size: 20px; }

.info-upload-box {
  border: 1px solid var(--border2);
  padding: 40px;
  text-align: center;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.info-upload-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-upload-box p {
  font-size: 14px;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.download-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-card-name {
  font-size: 14px;
  font-weight: 700;
}

.download-card-meta {
  font-size: 12px;
  color: var(--muted);
}

.download-card-btn {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border2);
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  font-family: var(--font-body);
  text-align: center;
}

.download-card-btn:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ─── PURCHASE MODAL ─────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(8px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border2);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  border-radius: var(--radius-lg);
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.modal p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
}

.modal-close:hover {
  color: var(--white);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted2);
}

/* ─── TOAST ──────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 300;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── UTILS ──────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.text-muted { color: var(--muted); }
.text-gold  { color: var(--gold); }
.text-green { color: var(--green); }
.text-red   { color: var(--red); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 960px) {
  .steps-grid { grid-template-columns: 1fr; gap: 2px; }
  .sound-pack-card { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; height: auto; }
  .account-content { padding: 32px 20px; }
  .prog-hero-content .container { flex-direction: column; align-items: flex-start; }
  .prog-purchase-box { width: 100%; }
  .join-reqs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .programmers-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; gap: 16px; text-align: center; }
}

/* ─── FADE ANIMATIONS ────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ACCESSIBILITY BUTTON ────────────────────────────── */
.accessibility-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--surface2);
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: all var(--transition);
}
.accessibility-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: scale(1.1);
}
.accessibility-menu {
  position: fixed;
  bottom: 84px;
  left: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  z-index: 998;
  display: none;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.accessibility-menu.open {
  display: flex;
}
.accessibility-menu button {
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.accessibility-menu button:hover {
  background: var(--white);
  color: var(--black);
}
