* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #07060a;
  color: #f9fafb;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  padding-top: 64px;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

h1,
.h1 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}

h2,
.section-title,
.h2 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h3,
.h3 {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
}

.body-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #e5e7eb;
  margin: 0 0 12px;
}

.body-text.small {
  font-size: 13px;
}

.btn-primary {
  padding: 12px 28px;
  min-height: 44px;
  background: #dda656;
  color: #07060a;
  border: 1px solid #fbbf24;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  transition: all 0.2s ease, transform 0.2s ease;
  transform: translateY(0);
}

.btn-primary:hover {
  background: #e2cf36;
  border-color: #ffe58a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  transform: translateY(-2px) scale(1.02);
}

.btn-primary:active {
  background: #c48f3e;
  border-color: #dda656;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transform: translateY(0) scale(0.99);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(7, 6, 10, 0.9), 0 0 0 4px rgba(221, 166, 86, 0.9);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-secondary {
  padding: 10px 24px;
  min-height: 40px;
  background: transparent;
  color: #f9fafb;
  border: 1px solid #545e70;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  transition: all 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(49, 59, 111, 0.3);
  border-color: #dda656;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

.btn-secondary:active {
  background: rgba(25, 27, 40, 0.9);
  border-color: #88664c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  transform: translateY(0);
}

.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px rgba(7, 6, 10, 1), 0 0 0 3px rgba(49, 59, 111, 0.9);
}

.btn-secondary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-xs {
  padding: 6px 14px;
  min-height: 32px;
  font-size: 11px;
}

a {
  color: #e2cf36;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

a:hover {
  color: #ffffff;
  border-color: rgba(226, 207, 54, 0.8);
  transform: translateY(-1px);
}

a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(7, 6, 10, 1), 0 0 0 4px rgba(226, 207, 54, 0.9);
  border-color: transparent;
}

a:active {
  transform: translateY(0);
  color: #dda656;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(7, 6, 10, 0.96), rgba(7, 6, 10, 0.9), rgba(7, 6, 10, 0));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(31, 41, 55, 0.7);
}

.nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #f9fafb;
  border-bottom: none;
}

.nav-logo:hover {
  transform: none;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: conic-gradient(from 220deg, #dda656, #313b6f, #e2cf36, #dda656);
  box-shadow: 0 0 0 2px rgba(7, 6, 10, 1), 0 0 20px rgba(221, 166, 86, 0.7);
}

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

.nav-link {
  position: relative;
  color: #e5e7eb;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.2s ease;
  border-bottom: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #dda656, #e2cf36);
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 16px;
}

.nav-mobile-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(84, 94, 112, 0.8);
  background: rgba(7, 6, 10, 0.9);
  cursor: pointer;
}

.nav-mobile-bar {
  width: 16px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  display: block;
}

.nav-mobile-bar + .nav-mobile-bar {
  margin-top: 4px;
}

.nav-links-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 8px 16px 12px;
  background: rgba(7, 6, 10, 0.98);
  border-bottom: 1px solid rgba(31, 41, 55, 0.7);
}

.nav-links-mobile.active {
  display: flex;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 16px 64px;
  color: #f9fafb;
  background: radial-gradient(circle at top, rgba(221, 166, 86, 0.22), transparent 55%),
    linear-gradient(135deg, #07060a 0%, #170b09 40%, #191b28 100%);
  overflow: hidden;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('studio_console_3.jpg') center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
  z-index: -3;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(221, 166, 86, 0.25), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(49, 59, 111, 0.4), transparent 55%);
  mix-blend-mode: soft-light;
  opacity: 0.9;
  z-index: -2;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e5e7eb;
  opacity: 0.85;
  margin: 0;
}

.hero-subheadline {
  font-size: 16px;
  line-height: 1.6;
  color: #e5e7eb;
  max-width: 540px;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  font-size: 13px;
  color: #d1d5db;
}

.hero-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-panel {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: linear-gradient(145deg, rgba(7, 6, 10, 0.95), rgba(25, 27, 40, 0.98));
  border: 1px solid rgba(148, 156, 162, 0.6);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #d1d5db;
}

.hero-visual-meters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.meter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meter-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

.meter-bar {
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(to top, #27201e, #dda656);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.meter-bar::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(39, 32, 30, 0.8), rgba(226, 207, 54, 0.9));
  opacity: 0.9;
}

.meter-bar-hot::after {
  background: linear-gradient(to top, rgba(39, 32, 30, 0.8), rgba(226, 87, 54, 0.9));
}

.meter-bar-mid::after {
  background: linear-gradient(to top, rgba(39, 32, 30, 0.8), rgba(221, 166, 86, 0.9));
}

.meter-bar-vocals::after {
  background: linear-gradient(to top, rgba(39, 32, 30, 0.8), rgba(226, 207, 54, 0.9));
}

.hero-visual-waveform {
  height: 72px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(49, 59, 111, 0.7), rgba(221, 166, 86, 0.9));
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.hero-visual-waveform-bars {
  position: absolute;
  inset: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-visual-waveform-bars::before,
.hero-visual-waveform-bars::after {
  content: '';
}

.hero-visual-waveform-bars::before {
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    to right,
    rgba(7, 6, 10, 0.3) 0,
    rgba(7, 6, 10, 0.3) 1px,
    transparent 1px,
    transparent 4px
  );
}

.hero-visual-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #9ca3af;
}

.floating-vinyl {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
  cursor: pointer;
  background: #07060a;
  border: none;
  padding: 0;
}

.floating-vinyl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-vinyl-1 {
  top: 16%;
  right: 6%;
  width: 140px;
  height: 140px;
  z-index: 200;
}

.floating-vinyl-1:hover {
  transform: translate3d(0, -8px, 0) rotate(-6deg) scale(1.03);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.95);
}

.floating-vinyl-1:active {
  transform: translate3d(0, -2px, 0) rotate(-2deg) scale(1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.9);
}

.floating-vinyl-2 {
  bottom: -40px;
  left: 8%;
  width: 220px;
  height: 220px;
  z-index: 150;
}

.floating-vinyl-2:hover {
  transform: translate3d(0, -10px, 0) rotate(5deg) scale(1.04);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.98);
}

.floating-vinyl-2:active {
  transform: translate3d(0, -4px, 0) rotate(2deg) scale(1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.92);
}

.section {
  padding: 80px 16px;
  background: transparent;
  color: #f9fafb;
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0;
}

.section-description {
  font-size: 14px;
  color: #d1d5db;
  max-width: 560px;
  margin: 0;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 20px 20px;
  background: linear-gradient(145deg, rgba(23, 11, 9, 0.96), rgba(25, 27, 40, 0.98));
  color: #f9fafb;
  border-radius: 14px;
  border: 1px solid rgba(84, 94, 112, 0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(221, 166, 86, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  border-color: rgba(221, 166, 86, 0.9);
  background: linear-gradient(145deg, rgba(23, 11, 9, 0.98), rgba(25, 27, 40, 1));
}

.card:hover::before {
  opacity: 1;
}

.card:active {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.8);
}

.card-body {
  flex: 1 1 auto;
}

.card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(84, 94, 112, 0.6);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 24px;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 24px;
}

.about-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-highlight-chip {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(15, 16, 24, 0.95);
  border: 1px solid rgba(47, 53, 73, 0.9);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
  font-size: 13px;
  color: #e5e7eb;
}

.section-discography {
  position: relative;
}

.section-discography::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('studio_console_1.jpg') center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  z-index: -1;
}

.tracks-grid {
  position: relative;
  z-index: 1;
}

.track-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 18px 18px;
  background: linear-gradient(135deg, rgba(23, 11, 9, 0.98), rgba(39, 32, 30, 0.98));
  color: #f9fafb;
  border-radius: 14px;
  border: 1px solid rgba(136, 102, 76, 0.9);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.75);
  position: relative;
  overflow: hidden;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.track-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(221, 166, 86, 0.25), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.track-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.9);
  border-color: rgba(221, 166, 86, 0.95);
}

.track-card:hover::before {
  opacity: 1;
}

.track-card:active {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.85);
}

.track-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.track-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
}

.track-meta {
  font-size: 11px;
  color: #d1d5db;
  margin: 0;
}

.track-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(221, 166, 86, 0.9);
  background: rgba(7, 6, 10, 0.9);
}

.track-waveform {
  height: 52px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(49, 59, 111, 0.8), rgba(221, 166, 86, 0.9));
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7);
  margin: 6px 0;
  position: relative;
  overflow: hidden;
}

.track-waveform-bars {
  position: absolute;
  inset: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.track-waveform-bars::before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    to right,
    rgba(7, 6, 10, 0.35) 0,
    rgba(7, 6, 10, 0.35) 1px,
    transparent 1px,
    transparent 5px
  );
}

.track-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #9ca3af;
}

.section-credits {
  position: relative;
}

.section-credits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('studio_console_2.jpg') center/cover no-repeat;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  z-index: -1;
}

.credits-table-wrapper {
  border-radius: 12px;
  overflow: hidden;
}

.credits-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  color: #e5e7eb;
  min-width: 100%;
  background: rgba(7, 6, 10, 0.96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.9);
}

.credits-table thead {
  background: rgba(15, 16, 24, 0.98);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.credits-table th {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.credits-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.7);
}

.credits-table tbody tr {
  transition: background 0.15s ease, transform 0.15s ease;
  cursor: pointer;
}

.credits-table tbody tr:hover {
  background: rgba(25, 27, 40, 0.98);
  transform: translateY(-1px);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 20px 20px;
  background: linear-gradient(145deg, rgba(23, 11, 9, 0.96), rgba(31, 41, 55, 0.98));
  color: #f9fafb;
  border-radius: 14px;
  border: 1px solid rgba(148, 156, 162, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 80px;
  color: rgba(148, 156, 162, 0.18);
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  border-color: rgba(221, 166, 86, 0.9);
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.7;
  color: #e5e7eb;
  margin: 0 0 12px;
}

.testimonial-author {
  margin-top: auto;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.testimonial-meta {
  font-size: 12px;
  color: #d1d5db;
  margin: 0;
}

.contact-layout {
  max-width: 840px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  padding: 24px 24px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(7, 6, 10, 0.96), rgba(25, 27, 40, 0.98));
  border: 1px solid rgba(84, 94, 112, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
  align-items: flex-start;
}

.form-field {
  display: flex;
  flex-direction: column;
}

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

.contact-form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d1d5db;
  margin-bottom: 4px;
  display: block;
}

.helper-text {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 4px;
  margin-bottom: 0;
}

input[type='text'],
input[type='email'],
input[type='url'] {
  padding: 10px 14px;
  min-height: 40px;
  width: 100%;
  background: rgba(15, 16, 24, 0.95);
  color: #f9fafb;
  border: 1px solid #2f3549;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.15s ease;
  outline: none;
}

input[type='text']::placeholder,
input[type='email']::placeholder,
input[type='url']::placeholder {
  color: #9ca3af;
}

input[type='text']:hover,
input[type='email']:hover,
input[type='url']:hover {
  border-color: #545e70;
  background: rgba(15, 16, 24, 0.98);
}

input[type='text']:focus,
input[type='email']:focus,
input[type='url']:focus {
  border-color: #dda656;
  box-shadow: 0 0 0 1px #dda656, 0 0 0 4px rgba(221, 166, 86, 0.25);
  background: rgba(7, 6, 10, 1);
  transform: translateY(-1px);
}

textarea {
  padding: 12px 14px;
  min-height: 120px;
  width: 100%;
  resize: vertical;
  background: rgba(15, 16, 24, 0.95);
  color: #f9fafb;
  border: 1px solid #2f3549;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.15s ease;
  outline: none;
}

textarea::placeholder {
  color: #9ca3af;
}

textarea:hover {
  border-color: #545e70;
  background: rgba(15, 16, 24, 0.98);
}

textarea:focus {
  border-color: #dda656;
  box-shadow: 0 0 0 1px #dda656, 0 0 0 4px rgba(221, 166, 86, 0.25);
  background: rgba(7, 6, 10, 1);
  transform: translateY(-1px);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

input.error,
textarea.error {
  border-color: #f97373;
  box-shadow: 0 0 0 1px #f97373, 0 0 0 4px rgba(249, 115, 115, 0.25);
}

.floating-visualizer {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(226, 207, 54, 0.5), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(49, 59, 111, 0.7), transparent 55%), #07060a;
  border: 1px solid rgba(148, 156, 162, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 850;
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.25s ease, border-color 0.2s ease;
  transform: translate3d(0, 0, 0);
  border: none;
}

.floating-visualizer:hover {
  transform: translate3d(0, -4px, 0) scale(1.03);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.95);
  border-color: rgba(221, 166, 86, 0.95);
}

.floating-visualizer:active {
  transform: translate3d(0, 0, 0) scale(0.98);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.9);
}

.floating-visualizer:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(7, 6, 10, 1), 0 0 0 4px rgba(221, 166, 86, 0.9);
}

.floating-visualizer-core {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: conic-gradient(from 220deg, #dda656, #313b6f, #e2cf36, #dda656);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px rgba(7, 6, 10, 0.9), 0 0 24px rgba(221, 166, 86, 0.8);
  animation: spin 14s linear infinite;
}

.floating-visualizer-bars {
  position: absolute;
  inset: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3px;
}

.floating-bar {
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(to top, #27201e, #dda656);
  transform-origin: bottom center;
  transition: transform 0.2s ease;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal[hidden] {
  display: none;
}

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

.modal-content {
  max-width: 720px;
  width: 90%;
  max-height: 80vh;
  background: linear-gradient(145deg, rgba(7, 6, 10, 0.98), rgba(25, 27, 40, 0.98));
  border-radius: 18px;
  border: 1px solid rgba(148, 156, 162, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95);
  padding: 24px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding-right: 4px;
}

.modal-footer {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.visualizer-zoom {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(226, 207, 54, 0.5), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(49, 59, 111, 0.7), transparent 55%), #07060a;
  border: 1px solid rgba(148, 156, 162, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visualizer-zoom-core {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(from 220deg, #dda656, #313b6f, #e2cf36, #dda656);
  box-shadow: 0 0 0 3px rgba(7, 6, 10, 0.9), 0 0 40px rgba(221, 166, 86, 0.9);
  animation: spin 14s linear infinite;
}

.visualizer-zoom-bars {
  position: absolute;
  inset: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.zoom-bar {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(to top, #27201e, #e2cf36);
  transform-origin: bottom center;
  transition: transform 0.2s ease;
}

.footer {
  margin-top: 80px;
  padding: 24px 16px 20px;
  background: linear-gradient(to top, #07060a 0%, #170b09 40%, transparent 100%);
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  color: #9ca3af;
  font-size: 12px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-created {
  font-weight: 500;
  color: #e5e7eb;
}

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

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  h1,
  .h1 {
    font-size: 36px;
  }

  .floating-vinyl-1,
  .floating-vinyl-2 {
    display: none;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

  .nav-cta {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 88px 16px 40px;
  }
}

@media (max-width: 640px) {
  h1,
  .h1 {
    font-size: 30px;
  }

  .hero-visual-panel {
    max-width: 100%;
  }

  .section {
    padding: 56px 16px;
  }

  .contact-form {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .floating-visualizer {
    right: 16px;
    bottom: 16px;
    width: 96px;
    height: 96px;
  }

  .visualizer-zoom {
    height: 320px;
    max-width: 320px;
  }

  .visualizer-zoom-core {
    width: 180px;
    height: 180px;
  }

  .credits-table th,
  .credits-table td {
    font-size: 12px;
  }

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