:root {
  --bg: #07080c;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --stroke: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --grad: linear-gradient(90deg, #b6fffb 0%, #b3b3ff 30%, #ffb3d9 70%, #fff1b3 100%);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 12% 20%, rgba(182, 255, 251, 0.14), transparent 60%),
    radial-gradient(900px 600px at 78% 10%, rgba(179, 179, 255, 0.16), transparent 55%),
    radial-gradient(1200px 700px at 60% 80%, rgba(255, 179, 217, 0.10), transparent 55%),
    radial-gradient(900px 650px at 30% 85%, rgba(255, 241, 179, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 50%);
  filter: saturate(1.2);
  pointer-events: none;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(7, 8, 12, 0.6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}

/* Pulsating subwoofer logo */
.brand__sub {
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.brand__subwoofer {
  display: block;
  overflow: visible;
  transform-origin: 32px 36px;
  animation: subwooferCab 0.58s ease-in-out infinite;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.55));
}
.brand__sub-cone {
  transform-origin: 32px 34px;
  animation: subwooferCone 0.58s ease-in-out infinite;
}
@keyframes subwooferCab {
  0%, 100% {
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.55));
  }
  50% {
    transform: scale(1.06) translateY(1px);
    filter: drop-shadow(0 6px 22px rgba(255, 45, 45, 0.28)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.12));
  }
}
@keyframes subwooferCone {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.14); }
  40% { transform: scale(0.92); }
  58% { transform: scale(1.1); }
  78% { transform: scale(0.98); }
}

.brand__wordmark {
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.05;
  white-space: nowrap;
}
.brand__wordmark--nav {
  font-size: clamp(0.82rem, 2.4vw, 1.2rem);
}
/* Blue — white — red (LET — IT — ECHO) */
.brand__let {
  color: #3d8cff;
  text-shadow: 0 0 26px rgba(61, 140, 255, 0.5);
}
.brand__it {
  color: #ffffff;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.35);
}
.brand__echo {
  color: #ff2a2a;
  text-shadow: 0 0 26px rgba(255, 42, 42, 0.5);
}
.brand__tld {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 780;
  letter-spacing: 0.04em;
}

.brand__suffix {
  margin-left: 6px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero: big LETITECHO.com + larger woofer */
.hero__brandlockup {
  display: flex;
  align-items: center;
  gap: clamp(10px, 3vw, 24px);
  margin: 0 0 16px;
  flex-wrap: wrap;
}
.brand__sub--hero .brand__subwoofer {
  width: clamp(56px, 14vw, 72px);
  height: clamp(56px, 14vw, 72px);
}
.hero__wordmark {
  margin: 0;
  font-size: clamp(2.1rem, 10vw, 4.75rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
}
.hero__wordmark .brand__let {
  text-shadow: 0 0 42px rgba(61, 140, 255, 0.55);
}
.hero__wordmark .brand__echo {
  text-shadow: 0 0 42px rgba(255, 45, 45, 0.55);
}
.hero__wordmark .brand__it {
  text-shadow: 0 0 36px rgba(255, 255, 255, 0.45);
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 560;
}
.nav a:hover { color: var(--text); }

.hero {
  padding: 74px 0 40px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.kicker {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  margin: 0 0 10px;
}

h1 {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1.03;
  letter-spacing: -0.02em;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.1);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 650;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.btn:hover { background: rgba(255,255,255,0.14); }
.btn--ghost {
  background: rgba(255,255,255,0.04);
  box-shadow: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.stat {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 12px;
}
.stat__num {
  font-weight: 800;
  font-size: 18px;
}
.stat__label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.card {
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.pill {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
  font-size: 12px;
}
.card__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.card__sub {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 650;
}
.card__desc {
  margin-top: 12px;
  color: rgba(255,255,255,0.74);
  line-height: 1.55;
  font-size: 14px;
}

.outlets {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.outlet {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 650;
  font-size: 13px;
}
.outlet:hover { background: rgba(255,255,255,0.08); }

.section { padding: 34px 0; }
.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
h2 { margin: 0; letter-spacing: -0.01em; }
h3 { margin: 0; letter-spacing: -0.01em; }
.muted { color: var(--muted); }

.panel {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
input[type="email"], input[type="text"], input[type="date"], textarea {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  min-width: 260px;
  outline: none;
}
textarea { min-width: 320px; min-height: 90px; resize: vertical; }
.form__msg { width: 100%; font-size: 12px; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.release {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 14px;
}
.release__meta { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.release__date { color: var(--muted); font-weight: 650; font-size: 12px; }
.release__cat { color: rgba(255,255,255,0.78); font-weight: 800; font-size: 12px; }
.release__title { margin-top: 10px; font-weight: 800; }
.release__artist { margin-top: 6px; color: var(--muted); font-weight: 650; }
.release__outlets { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.release__outlets a { font-size: 12px; padding: 7px 9px; border-radius: 999px; }

.tableWrap {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  overflow: auto;
}
.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 840px;
}
.table th, .table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}
.table th { color: rgba(255,255,255,0.85); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; }
.table td { color: rgba(255,255,255,0.86); }
.table a { color: var(--text); }

.footer {
  padding: 30px 0 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 20px;
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.footer__links a { text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  .brand__subwoofer,
  .brand__sub-cone {
    animation: none !important;
  }
}

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  h1 { font-size: 40px; }
  .grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}
