/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-base:        #0A0A0F;
  --bg-surface:     #111118;
  --bg-card:        #16161F;
  --bg-card-hover:  #1C1C28;
  --bg-input:       #1A1A26;
  --border:         rgba(255,255,255,0.07);
  --border-focus:   rgba(108,99,255,0.6);

  --primary:        #6C63FF;
  --primary-dark:   #5550E8;
  --primary-light:  #8A83FF;
  --accent:         #3ECFCF;
  --accent-dark:    #2AACAC;

  --text-primary:   #F0F0F8;
  --text-secondary: #9090B0;
  --text-muted:     #5A5A7A;

  --error:          #FF5C5C;
  --success:        #06D6A0;
  --warning:        #FFD166;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.6);

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img, svg { display: block; }

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.06); }
.btn:active::after { background: rgba(255,255,255,0.12); }

.btn-sm  { padding: 8px 18px;  font-size: 13px; }
.btn-md  { padding: 12px 24px; font-size: 14px; }
.btn-lg  { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,99,255,0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(108,99,255,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.15); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  padding: 160px 0 120px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.orb-2 {
  width: 400px; height: 400px;
  background: var(--accent);
  bottom: -100px; right: -100px;
  opacity: 0.15;
}
.orb-3 {
  width: 300px; height: 300px;
  background: #FF6B6B;
  bottom: -50px; left: -80px;
  opacity: 0.12;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.3);
  color: var(--primary-light);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  display: inline-flex;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===========================
   FEATURES
   =========================== */
.features {
  padding: 100px 0;
  background: var(--bg-surface);
}

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

.section-tag {
  display: inline-block;
  background: rgba(108,99,255,0.12);
  color: var(--primary-light);
  border: 1px solid rgba(108,99,255,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(108,99,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color, var(--primary));
  margin-bottom: 20px;
  background: color-mix(in srgb, var(--icon-color, var(--primary)) 12%, transparent);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===========================
   GENERATOR
   =========================== */
.generator-section {
  padding: 100px 0;
  background: var(--bg-base);
}

.generator-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.generator-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

/* Fields */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.field-group:last-child { margin-bottom: 0; }
.field-group.half { flex: 1; margin-bottom: 0; }

.field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.char-counter {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 12px;
}

.text-area {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  padding: 16px;
  resize: vertical;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  min-height: 180px;
}

.text-area::placeholder { color: var(--text-muted); }

.text-area:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.12);
}

.select-field {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 14px;
  padding: 11px 14px;
  width: 100%;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239090B0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.select-field:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.12);
}

.settings-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

/* Range */
.range-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.range-label {
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.speed-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
}

.range-input {
  flex: 1;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--bg-input);
  border-radius: 100px;
  outline: none;
  cursor: pointer;
  border: 1px solid var(--border);
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(108,99,255,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}

.range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(108,99,255,0.7);
}

.range-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
}

/* Generate Button */
.btn-generate {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  border-radius: var(--radius-md);
  position: relative;
}

.btn-generate:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-icon, .btn-text { display: flex; align-items: center; gap: 8px; }

.btn-loader {
  display: none;
  align-items: center;
  gap: 10px;
}

.btn-loader.active {
  display: flex;
}

.btn-generate.loading .btn-icon,
.btn-generate.loading .btn-text { display: none; }

.btn-generate.loading .btn-loader { display: flex; }

.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Error */
.error-box {
  margin-top: 16px;
  background: rgba(255,92,92,0.1);
  border: 1px solid rgba(255,92,92,0.25);
  color: #FF8585;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
}

/* ===========================
   PLAYER PANEL
   =========================== */
.player-panel {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-idle {
  text-align: center;
}

.player-idle-icon {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.player-idle-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.player-idle-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.player-active {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Waveform */
.waveform-container {
  width: 100%;
  height: 80px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.waveform-canvas {
  width: 100%;
  height: 100%;
}

/* Controls */
.player-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.control-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(108,99,255,0.4);
}
.control-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(108,99,255,0.6);
}
.control-btn:active { transform: scale(0.96); }

.control-btn-sm {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.control-btn-sm:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }

.progress-area {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 36px;
}

.progress-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 100px;
  width: 0%;
  transition: width 0.1s linear;
}

.progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: var(--primary-light);
  border-radius: 50%;
  left: 0%;
  transition: left 0.1s linear;
  box-shadow: 0 2px 6px rgba(108,99,255,0.5);
}

.volume-area {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.volume-slider {
  width: 72px;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  outline: none;
  cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--text-secondary);
  cursor: pointer;
}
.volume-slider::-moz-range-thumb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--text-secondary);
  border: none;
}

/* Meta pills */
.player-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-pill {
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.2);
  color: var(--primary-light);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

/* Download */
.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: rgba(62,207,207,0.1);
  border: 1px solid rgba(62,207,207,0.25);
  color: var(--accent);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-download:hover {
  background: rgba(62,207,207,0.18);
  border-color: rgba(62,207,207,0.4);
  transform: translateY(-1px);
}

/* ===========================
   PRICING
   =========================== */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pricing-card-featured {
  background: linear-gradient(160deg, rgba(108,99,255,0.15) 0%, var(--bg-card) 60%);
  border-color: rgba(108,99,255,0.35);
  box-shadow: 0 0 40px rgba(108,99,255,0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 28px;
}

.pricing-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.pricing-card-featured .price-amount {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.cross {
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ===========================
   CTA
   =========================== */
.cta-section {
  padding: 80px 0;
  background: var(--bg-base);
}

.cta-card {
  background: linear-gradient(135deg, rgba(108,99,255,0.15), rgba(62,207,207,0.08));
  border: 1px solid rgba(108,99,255,0.25);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: var(--primary);
  top: -150px; right: -80px;
  opacity: 0.15;
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: var(--accent);
  bottom: -100px; left: -60px;
  opacity: 0.12;
}

.cta-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  position: relative;
}

.cta-card p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  position: relative;
}

.cta-card .btn { position: relative; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-bottom a {
  color: var(--primary-light);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--accent); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .generator-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

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

  .hero { padding: 120px 0 80px; }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  .stat-divider { width: 80px; height: 1px; }

  .features-grid { grid-template-columns: 1fr; }

  .generator-card { padding: 24px 20px; }

  .settings-row { flex-direction: column; }

  .player-panel { min-height: 240px; }

  .cta-card { padding: 48px 24px; }

  .footer-top { flex-direction: column; align-items: flex-start; }

  .footer-bottom { flex-direction: column; gap: 8px; }

  .hero-actions { flex-direction: column; align-items: stretch; }

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

@media (max-width: 480px) {
  .generator-card { padding: 20px 16px; }
  .stat { padding: 0 20px; }
}
