:root {
  --paper: #ffffff;
  --paper-strong: #ffffff;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --line: rgba(73, 52, 34, 0.12);
  --line-strong: rgba(73, 52, 34, 0.18);
  --ink: #281d15;
  --ink-soft: #695a4b;
  --ink-faint: #8d7c6a;
  --green: #10a760;
  --green-deep: #0f7e4a;
  --green-soft: rgba(16, 167, 96, 0.12);
  --gold: #98271d;
  --shadow: 0 28px 60px rgba(92, 64, 39, 0.12);
  --shadow-soft: 0 18px 34px rgba(92, 64, 39, 0.08);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --pill: 999px;
  --transition: 180ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: 'Public Sans', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a[href],
button:not(:disabled) { cursor: pointer; }

.landing-aura {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.landing-aura-left {
  top: -14rem;
  left: -10rem;
  background: rgba(15, 167, 96, 0.06);
}

.landing-aura-right {
  top: 6rem;
  right: -8rem;
  background: rgba(152, 39, 29, 0.05);
}

.landing-nav,
.landing-main,
.landing-footer {
  position: relative;
  z-index: 1;
}

.landing-nav {
  width: min(1240px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  cursor: pointer !important;
  user-select: none;
  -webkit-user-select: none;
}

.nav-brand * {
  cursor: inherit !important;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #17120e;
}

.brand-copy small {
  color: var(--ink-faint);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ng-flag {
  display: inline-flex;
  height: 18px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.ng-flag span:nth-child(1),
.ng-flag span:nth-child(3) {
  width: 12px;
  background: var(--green);
}

.ng-flag span:nth-child(2) {
  width: 9px;
  background: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  -webkit-user-select: none;
}

.nav-link.section-link {
  padding: 10px 16px;
  border-radius: var(--pill);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer !important;
  user-select: none;
  -webkit-user-select: none;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.nav-link.section-link * {
  cursor: inherit !important;
}

.nav-link.section-link:hover {
  color: #17120e;
  background: rgba(152, 39, 29, 0.05);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
  padding: 6px;
  cursor: pointer !important;
  user-select: none;
  -webkit-user-select: none;
}

.nav-toggle * {
  cursor: inherit !important;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #17120e;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.landing-main {
  width: min(1240px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-bottom: 68px;
}

.landing-main-compact {
  margin-top: 28px;
  padding-bottom: 44px;
}

.home-card-grid {
  padding-top: 6px;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-panel-card,
.overview-item,
.section-card,
.coverage-band,
.coverage-item {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  border-radius: 38px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: '';
  position: absolute;
  inset: auto -3rem -3rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(152, 39, 29, 0.05);
}

.flag-deco {
  display: inline-flex;
  height: 12px;
  gap: 3px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
}

.fd-g { width: 34px; background: var(--green); }
.fd-w { width: 22px; background: #fff; }

.hero-kicker,
.showcase-kicker,
.panel-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-copy h1,
.showcase-heading h2,
.coverage-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 1.02;
  margin-top: 8px;
  max-width: 11ch;
}

.landing-sub {
  margin-top: 18px;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--pill);
  font-weight: 700;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

.hero-btn:hover { transform: translateY(-1px); }

.hero-btn-primary {
  background: rgba(152, 39, 29, 0.08);
  color: #98271d;
  border: 1px solid rgba(152, 39, 29, 0.16);
}

.hero-btn-primary:hover { background: rgba(152, 39, 29, 0.14); }

.hero-btn-secondary {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.hero-btn-secondary:hover {
  background: rgba(152, 39, 29, 0.04);
  border-color: rgba(152, 39, 29, 0.14);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.hero-panel-card {
  padding: 24px;
  border-radius: 24px;
}

.hero-panel-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.18rem;
  font-weight: 800;
}

.hero-panel-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero-panel-card.spotlight {
  background: rgba(152, 39, 29, 0.04);
  color: var(--ink);
  border-color: rgba(152, 39, 29, 0.12);
}

.hero-panel-card.spotlight .panel-label,
.hero-panel-card.spotlight p { color: var(--ink-soft); }

.overview-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.overview-item {
  padding: 24px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.overview-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(152, 39, 29, 0.08);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.92rem;
}

.overview-item h2 {
  font-size: 1.02rem;
  font-weight: 800;
}

.overview-item p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.showcase-section {
  margin-top: 46px;
}

.showcase-heading h2,
.coverage-copy h2 {
  margin-top: 8px;
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.sections-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.home-card-grid .sections-grid {
  margin-top: 0;
}

.section-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  padding: 28px;
  border-radius: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.card-kicker {
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

.section-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.34rem;
  line-height: 1.15;
}

.section-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.card-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--gold);
}

.card-certified { background: var(--panel-strong); }
.card-turntable { background: var(--panel-strong); }
.card-spotify { background: var(--panel-strong); }
.card-live { background: var(--panel-strong); }

.coverage-band {
  margin-top: 48px;
  padding: 32px;
  border-radius: 34px;
}

.coverage-copy p:last-child {
  margin-top: 14px;
  color: var(--ink-soft);
  max-width: 68ch;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.coverage-item {
  padding: 22px;
  border-radius: 22px;
}

.coverage-item h3 {
  font-size: 1rem;
  font-weight: 800;
}

.coverage-item p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.landing-footer {
  border-top: 1px solid rgba(73, 52, 34, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.landing-footer-grid {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 24px;
}

.footer-kicker {
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
}

.footer-copy {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-links a {
  color: var(--ink);
  font-weight: 600;
}

.footer-links a:hover { color: var(--green); }

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .landing-hero,
  .overview-strip,
  .sections-grid,
  .coverage-grid,
  .landing-footer-grid {
    grid-template-columns: 1fr;
  }

  .landing-nav {
    border-radius: 24px;
    align-items: flex-start;
  }

  .nav-toggle { display: flex; margin-left: auto; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    z-index: 300;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(73, 52, 34, 0.12);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow-soft);
  }

  .nav-link.section-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    touch-action: manipulation;
  }

  .nav-toggle[aria-expanded="false"] + .nav-links { display: none !important; }
  .nav-toggle[aria-expanded="true"] + .nav-links { display: flex !important; }
  .nav-links.open { display: flex; }
}

@media (max-width: 720px) {
  .landing-nav,
  .landing-main,
  .landing-footer-grid { width: calc(100% - 24px); }

  .nav-links { top: 64px; left: 0; right: 0; }

  .landing-nav { margin-top: 12px; padding: 14px; }
  .hero-copy,
  .coverage-band,
  .section-card,
  .hero-panel-card,
  .overview-item { padding: 22px; }
  .hero-copy h1 { font-size: 2.4rem; }
  .landing-footer-grid { padding-left: 0; padding-right: 0; }
}

@media (max-width: 560px) {
  .landing-nav,
  .landing-main,
  .landing-footer-grid {
    width: calc(100% - 16px);
  }

  .landing-nav {
    margin-top: 8px;
    padding: 10px 12px;
    gap: 10px;
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .landing-main {
    margin-top: 18px;
    padding-bottom: 28px;
  }

  .hero-copy,
  .coverage-band,
  .section-card,
  .hero-panel-card,
  .overview-item {
    padding: 16px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-actions {
    margin-top: 18px;
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
  }
}

/* Flat black refresh */
:root {
  --paper: #050505;
  --paper-strong: #0b0b0b;
  --panel: #0e0e0e;
  --panel-strong: #111111;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #f3f3f3;
  --ink-soft: #b3b3b3;
  --ink-faint: #8f8f8f;
  --gold: #ffffff;
  --shadow: none;
  --shadow-soft: none;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-body: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-heading: 'Sora', 'Segoe UI', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
}

.landing-aura {
  display: none;
}

.landing-nav {
  margin: 0 auto;
  padding: 16px 0;
  background: rgba(5, 5, 5, 0.98);
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  backdrop-filter: none;
  top: 0;
}

.brand-copy strong {
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
}

.nav-link.section-link {
  padding: 10px 14px;
  border-radius: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.nav-toggle span {
  background: #ffffff;
}

.hero-copy,
.hero-panel-card,
.overview-item,
.section-card,
.coverage-band,
.coverage-item,
.landing-footer {
  background: var(--panel-strong);
  box-shadow: none;
}

.hero-copy,
.hero-panel-card,
.overview-item,
.section-card,
.coverage-band,
.coverage-item {
  border-radius: var(--radius-lg);
}

.hero-copy::after {
  display: none;
}

.hero-copy h1,
.showcase-heading h2,
.coverage-copy h2,
.section-card h3 {
  font-family: var(--font-heading);
}

.hero-btn-primary {
  background: #141414;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-panel-card.spotlight,
.overview-index {
  background: #151515;
}

.section-card:hover {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.18);
}

.landing-footer {
  border-top-color: var(--line);
  backdrop-filter: none;
}

@media (max-width: 980px) {
  .nav-links {
    background: var(--panel-strong);
    border-color: var(--line);
    border-radius: 0;
    box-shadow: none;
  }
}
