/* Verberate — base stylesheet. Dark, moody, festival-meets-confession aesthetic. */

:root {
  --bg: #0a0a0d;
  --bg-alt: #131318;
  --bg-card: #1a1a20;
  --text: #f2f0ee;
  --text-muted: #a8a5ad;
  --accent: #ee171f;
  --accent-soft: #ee171f24;
  --accent-2: #ff5a60;
  --border: #26262e;
  --radius: 10px;
  --max-width: 1100px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 200;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10, 10, 13, 0.9);
  backdrop-filter: blur(8px);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}
.brand-mark {
  border-radius: 6px;
}

.nav {
  display: flex;
  gap: 1.75rem;
}
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

.nav-toggle-checkbox {
  display: none;
}
.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle-label span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}

@media (max-width: 720px) {
  .nav-toggle-label {
    display: flex;
  }
  .nav {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
  }
  .nav a {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
  }
  .nav-toggle-checkbox:checked ~ .nav {
    display: flex;
  }
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  background: radial-gradient(ellipse at top, var(--accent-soft), transparent 60%);
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}
.hero p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #ff252d;
}
.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent);
}

.link-button {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  text-decoration: underline;
}

/* Sections */
.section {
  padding: 4rem 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-heading h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.section-heading p {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto;
}

/* Track cards */
.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.track-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.track-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
}
.track-mood {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.track-mood.euphoric {
  color: var(--accent-2);
}
.track-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.track-links a {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}
.track-links a:hover {
  color: var(--text);
  border-color: var(--accent);
}

.catalog-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2.5rem;
  text-align: center;
}

/* Forms */
.form-field {
  margin-bottom: 1.25rem;
}
.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.captcha-placeholder {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.captcha-placeholder p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0;
}

.newsletter-teaser {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  margin-top: 3rem;
}
.newsletter-teaser h2 {
  margin-top: 0;
  font-size: 1.3rem;
}
.newsletter-teaser p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Legal pages */
.legal-content h1 {
  font-size: 2rem;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
}
.legal-content p,
.legal-content li {
  color: var(--text-muted);
}
.legal-content address {
  font-style: normal;
  color: var(--text);
}

/* Result page (PHP) */
.result-page {
  display: flex;
  min-height: 100vh;
  align-items: center;
}
.result-container {
  width: 100%;
}
.result-card {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
}
.result-error h1 {
  color: #ff5a60;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  margin-top: 3rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-nav a,
.footer-nav button {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-copy {
  width: 100%;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  z-index: 300;
}
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 40rem;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
}

/* Home — Verberate 2026 */
.home {
  --accent: #ee171f;
  --accent-deep: #a3080e;
  --bg: #050505;
  --bg-alt: #0b0b0b;
  --bg-card: #111;
  --border: #292929;
  --text: #f5f3ef;
  --text-muted: #aaa7a2;
  overflow-x: hidden;
}

.home .container {
  max-width: 1280px;
}

.home-header {
  position: absolute;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  border: 0;
  backdrop-filter: none;
}

.home-header .header-inner {
  min-height: 92px;
}

.brand-sigil {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  transform: rotate(45deg);
}

.brand-sigil {
  line-height: 1;
  text-indent: 0.05em;
}

.home .brand-name {
  font-size: 0.94rem;
  letter-spacing: 0.22em;
}

.home .nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home .nav a:hover,
.home .nav a[aria-current="page"] {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 7px auto;
  background: #fff;
  transition: transform 0.2s ease;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.hero-media,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: url("/assets/img/verberate/hero-rooftop.jpg") center 27% / cover no-repeat;
  transform: scale(1.015);
}

.hero-vignette {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.07) 68%),
    linear-gradient(0deg, #050505 0%, transparent 32%),
    radial-gradient(circle at 77% 58%, transparent 0%, rgba(0, 0, 0, 0.2) 70%);
}

.hero-content {
  width: 100%;
  padding-bottom: clamp(5rem, 10vh, 8rem);
}

.eyebrow,
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 12px 4px 0;
  background: var(--accent);
}

.home-hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(3.8rem, 9.5vw, 9rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.home-hero h1 span {
  display: block;
}

.red-text {
  color: var(--accent);
}

.hero-intro {
  max-width: 35rem;
  margin: 2rem 0 2.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.home .btn {
  border-radius: 0;
  padding: 0.95rem 1.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home .btn-primary {
  background: var(--accent);
}

.home .btn-primary:hover {
  background: #ff252d;
}

.home .hero-actions {
  justify-content: flex-start;
  align-items: center;
  gap: 1.75rem;
}

.text-link {
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--accent);
  margin-left: 0.4rem;
}

.hero-index {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.section-dark {
  background: #050505;
}

.manifesto {
  padding: clamp(6rem, 12vw, 11rem) 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.35fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.section-label {
  align-self: start;
  color: #777;
}

.section-label span {
  color: var(--accent);
  margin-right: 0.75rem;
}

.display-copy {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.body-large {
  max-width: 42rem;
  margin: 2.2rem 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.portrait-frame {
  margin: 0;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.08);
}

.portrait-frame figcaption {
  margin-top: 0.8rem;
  color: #696969;
  font-size: 0.62rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.dualities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
}

.duality-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.duality-image,
.duality-overlay {
  position: absolute;
  inset: 0;
}

.duality-image {
  z-index: -2;
  background-position: center;
  background-size: cover;
  transition: transform 0.7s ease;
}

.duality-card:hover .duality-image {
  transform: scale(1.025);
}

.vulnerable .duality-image {
  background-image: url("/assets/img/verberate/studio.jpg");
}

.euphoric .duality-image {
  background-image: url("/assets/img/verberate/festival-stage.jpg");
}

.duality-overlay {
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.05) 70%);
}

.vulnerable .duality-overlay {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.08) 75%),
    rgba(12, 27, 45, 0.1);
}

.duality-content {
  max-width: 36rem;
  padding: clamp(2rem, 5vw, 5rem);
}

.duality-content h2 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.euphoric .duality-content h2 {
  color: var(--accent);
}

.duality-content > p:not(.eyebrow):not(.track-list) {
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.74);
}

.track-list {
  margin-top: 1.75rem;
  color: #777;
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.listen-section {
  padding: clamp(6rem, 11vw, 10rem) 0;
}

.listen-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.listen-heading h2 {
  margin: 1.5rem 0 0;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.listen-heading > p {
  max-width: 19rem;
  color: var(--text-muted);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.platform-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  padding: 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.platform-grid a span:last-child {
  color: var(--accent);
}

.platform-grid a:hover {
  background: var(--accent);
  color: #fff;
}

.platform-grid a:hover span:last-child {
  color: #fff;
}

.booking-banner {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.booking-image,
.booking-overlay {
  position: absolute;
  inset: 0;
}

.booking-image {
  z-index: -2;
  background: url("/assets/img/verberate/global-vision.jpg") center 42% / cover no-repeat;
}

.booking-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.26) 70%);
}

.booking-content {
  width: 100%;
}

.booking-content h2 {
  max-width: 800px;
  margin: 0 0 2.5rem;
  font-size: clamp(4rem, 8.5vw, 8.5rem);
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.home-footer {
  margin: 0;
  padding: 0;
  background: #050505;
}

.social-row,
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.social-row {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.social-row p {
  color: #777;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.social-row nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.social-row a {
  color: var(--text);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.social-row a:hover {
  color: var(--accent);
}

.footer-main {
  padding: 4rem 0 2rem;
}

.footer-wordmark {
  margin: 0;
  font-size: clamp(3.7rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.home-footer .footer-copy {
  padding-bottom: 2rem;
}

@media (max-width: 900px) {
  .manifesto-grid {
    grid-template-columns: 1fr 1fr;
  }

  .manifesto-grid .section-label {
    grid-column: 1 / -1;
  }

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

@media (max-width: 720px) {
  .home-header .header-inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .home .nav {
    display: flex;
    visibility: hidden;
    opacity: 0;
    top: 0;
    min-height: 100vh;
    padding: 6.5rem 1.5rem 2rem;
    background: rgba(5, 5, 5, 0.98);
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .home .nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .home .nav a {
    padding: 1.2rem 0;
    border-top-color: #222;
    font-size: 1rem;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-vignette {
    background:
      linear-gradient(0deg, #050505 0%, rgba(0, 0, 0, 0.36) 62%, rgba(0, 0, 0, 0.18)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent);
  }

  .home-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.4rem);
  }

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

  .portrait-frame {
    margin-top: 2rem;
  }

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

  .duality-card {
    min-height: 610px;
  }

  .listen-heading {
    display: block;
  }

  .listen-heading > p {
    margin-top: 2rem;
  }

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

  .platform-grid a {
    min-height: 82px;
  }

  .booking-banner {
    min-height: 650px;
  }

  .booking-image {
    background-position: 53% center;
  }

  .social-row,
  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    padding-top: 3rem;
  }

  .home-footer .footer-nav {
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .duality-image,
  .home .nav,
  .nav-toggle span {
    transition: none;
  }
}

/* Interior pages — shared red-mask system */
body:not(.home) {
  background:
    radial-gradient(circle at 78% 2%, rgba(238, 23, 31, 0.08), transparent 28rem),
    #050505;
}

body:not(.home) .site-header {
  background: rgba(5, 5, 5, 0.93);
  border-bottom-color: #242424;
  backdrop-filter: blur(16px);
}

body:not(.home) .header-inner {
  min-height: 78px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

body:not(.home) .brand-name {
  font-size: 0.88rem;
  letter-spacing: 0.2em;
}

body:not(.home) .brand-mark {
  border-radius: 0;
}

body:not(.home) .nav a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body:not(.home) .nav a[aria-current="page"] {
  color: #fff;
}

body:not(.home) .nav a[aria-current="page"]::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0.3rem;
  background: var(--accent);
}

body:not(.home) .hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(5.5rem, 10vw, 8rem) 0 4rem;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.88) 48%, rgba(5, 5, 5, 0.2)),
    url("/assets/img/verberate/mask-portrait.jpg") 86% 39% / min(54vw, 650px) auto no-repeat;
  text-align: left;
}

body:not(.home) .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(1.5rem, calc((100% - 1100px) / 2 + 1.5rem));
  width: 38px;
  height: 2px;
  background: var(--accent);
}

body:not(.home) .hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

body:not(.home) .hero p {
  max-width: 35rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

body:not(.home) .section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

body:not(.home) .section-alt {
  background: #0a0a0a;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
}

body:not(.home) .section-heading {
  margin-bottom: 3.5rem;
}

body:not(.home) .section-heading h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

body:not(.home) .section-heading h2::after {
  content: ".";
  color: var(--accent);
}

body:not(.home) .track-grid {
  gap: 1px;
  background: #282828;
  border: 1px solid #282828;
}

body:not(.home) .track-card {
  position: relative;
  min-height: 190px;
  padding: 1.65rem;
  background: #0d0d0d;
  border: 0;
  border-radius: 0;
  transition: background 0.2s ease;
}

body:not(.home) .track-card::after {
  content: "V";
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  color: #242424;
  font-size: 2.5rem;
  font-weight: 900;
}

body:not(.home) .track-card:hover {
  background: #151515;
}

body:not(.home) .track-grid:empty {
  min-height: 190px;
  background:
    linear-gradient(90deg, transparent, rgba(238, 23, 31, 0.08), transparent),
    #0d0d0d;
  background-size: 200% 100%;
  animation: catalog-loading 1.4s ease-in-out infinite;
}

.catalog-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem;
  color: var(--text-muted);
}

@keyframes catalog-loading {
  to {
    background-position: -200% 0;
  }
}

body:not(.home) .track-card h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

body:not(.home) .track-mood {
  color: var(--accent);
}

body:not(.home) .track-mood.euphoric {
  color: #ff777c;
}

body:not(.home) .track-links a {
  border-color: #333;
  border-radius: 0;
  color: #d1cfca;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.home) .btn {
  border-radius: 0;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body:not(.home) .form-field input,
body:not(.home) .form-field textarea {
  padding: 0.95rem 1rem;
  background: #0d0d0d;
  border-color: #303030;
  border-radius: 0;
}

body:not(.home) .form-field label {
  color: #d8d6d1;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body:not(.home) .captcha-placeholder,
body:not(.home) .newsletter-teaser {
  background: #0d0d0d;
  border-color: #303030;
  border-radius: 0;
}

body:not(.home) .legal-content {
  position: relative;
}

body:not(.home) .legal-content > .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

body:not(.home) .legal-content h1 {
  margin: 0 0 3.5rem;
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

body:not(.home) .legal-content h1::after {
  content: ".";
  color: var(--accent);
}

body:not(.home) .legal-content h2 {
  padding-top: 1.5rem;
  border-top: 1px solid #292929;
  color: #f5f3ef;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body:not(.home) .legal-content p,
body:not(.home) .legal-content li {
  color: #aaa7a2;
}

body:not(.home) .legal-content a {
  color: #ff555b;
  text-underline-offset: 0.2em;
}

body:not(.home) .site-footer {
  margin-top: 0;
  padding: 3rem 0;
  background: #080808;
  border-top-color: #242424;
}

body:not(.home) .footer-brand {
  letter-spacing: 0.18em;
}

.footer-sigil {
  width: 22px;
  height: 22px;
  font-size: 0.58rem;
}

body:not(.home) .footer-nav a[aria-current="page"] {
  color: #fff;
}

body:not(.home) .cookie-banner {
  background: #090909;
  border-top: 1px solid #333;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.4);
}

body.result-page:not(.home) {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.45)),
    url("/assets/img/verberate/global-vision.jpg") center / cover no-repeat;
}

body:not(.home) .result-card {
  background: rgba(5, 5, 5, 0.88);
  border-color: #323232;
  border-radius: 0;
  backdrop-filter: blur(12px);
}

body:not(.home) .result-card h1 {
  margin: 0 0 1rem;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

@media (max-width: 720px) {
  body:not(.home) .nav {
    background: #080808;
  }

  body:not(.home) .nav a[aria-current="page"]::after {
    display: none;
  }

  body:not(.home) .hero {
    min-height: 380px;
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.97), rgba(5, 5, 5, 0.36)),
      url("/assets/img/verberate/mask-portrait.jpg") 78% center / cover no-repeat;
  }

  body:not(.home) .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.8rem);
  }

  body:not(.home) .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.home) .track-grid:empty {
    animation: none;
  }
}
