/* ═══════════════════════════════════════════
   YOUR-PLAYLIST.ru — Modern Neon Dark Design
   Based on gptunnel.ru/no_sleep aesthetic
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {
  --bg-dark: #050508;
  --bg-card: rgba(10, 8, 16, 0.95);
  --bg-glass: rgba(255, 253, 249, 0.04);
  --neon-pink: #ff2d7b;
  --neon-cyan: #00f0ff;
  --neon-violet: #b44dff;
  --neon-gold: #ffe600;
  --neon-green: #39ff14;
  --accent: #ff2d7b;
  --accent-soft: #ff5a9e;
  --ink: #f0f0f5;
  --muted: #0bbaca;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-neon: 0 0 30px rgba(255, 45, 123, 0.3);
  --topbar-h: 3.25rem;
  --font-display: 'Dela Gothic One', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --glass-blur: blur(16px);
}

*, *::before, *::after { box-sizing: border-box; }

img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

table { max-width: 100%; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-pink) var(--bg-dark);
}
html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--bg-dark); }
html::-webkit-scrollbar-thumb { background: var(--neon-pink); border-radius: 3px; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══ Particle Canvas & Noise ═══ */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

/* Ensure page scrolls properly */
.page, main, .authors-page, .songs-page {
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════
   TOPBAR — Glassmorphic Fixed Nav
   ═══════════════════════════════════════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 8, 0.95);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--neon-pink);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.topbar__brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255, 45, 123, 0.4));
}

.topbar__brand-text {
  line-height: 1.1;
  color: var(--neon-pink);
}

.topbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.topbar__burger span {
  display: block;
  height: 2px;
  margin: 0 auto;
  width: 1.1rem;
  background: var(--ink);
  border-radius: 1px;
}

.topbar__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.topbar__nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s, opacity 0.3s;
}
.topbar__nav a:hover { color: var(--ink); opacity: 0.8; }

.topbar__nav-cta {
  padding: 0.4rem 0.85rem !important;
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 100px;
  box-shadow: 0 0 20px rgba(255, 45, 123, 0.3);
  transition: all 0.3s !important;
}
.topbar__nav-cta:hover {
  box-shadow: 0 0 40px rgba(255, 45, 123, 0.5) !important;
  transform: translateY(-1px);
  filter: brightness(1.1);
  color: #fff !important;
}
.topbar__nav-cta.topbar__nav--current {
  color: #fff !important;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 45, 123, 0.3);
  cursor: default;
}

.topbar__nav-cta--light {
  background: transparent !important;
  color: var(--neon-cyan) !important;
  border: 2px solid var(--neon-cyan);
  font-weight: 700;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}
.topbar__nav-cta--light:hover {
  background: rgba(0, 240, 255, 0.1) !important;
  color: var(--neon-cyan) !important;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3) !important;
  filter: none;
}
.topbar__nav-cta--light.topbar__nav--current {
  background: rgba(0, 240, 255, 0.15) !important;
  color: var(--neon-cyan) !important;
  box-shadow: inset 0 0 0 1px var(--neon-cyan), 0 0 15px rgba(0, 240, 255, 0.2);
}

/* ═══════════════════════════════════════════
   PAGE / SECTIONS
   ═══════════════════════════════════════════ */
.page {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem 2rem;
}

.hero {
  margin-bottom: 1rem;
  padding: 1rem 0 0.5rem;
  scroll-margin-top: calc(var(--topbar-h) + 0.75rem);
}

.hero--full .hero__copy--full {
  width: 100%;
  max-width: none;
}
.hero--full .hero__lead {
  max-width: none;
  width: 100%;
}

.hero-card {
  position: relative;
  margin-top: 0.75rem;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(255, 45, 123, 0.25);
  border-radius: 20px;
  background: rgba(10, 8, 16, 0.95);
  box-shadow:
    0 0 60px rgba(255, 45, 123, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(255, 45, 123, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(180, 77, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-card .hero__lead { position: relative; z-index: 1; }
.hero-card .hero__lead:last-child { margin-bottom: 0; }
.hero-card .share-preview-hint { position: relative; z-index: 1; }

/* ═══ Section — Video Tour ═══ */
.section--video-tour {
  scroll-margin-top: calc(var(--topbar-h) + 0.75rem);
}

.section--video-tour .video-tour-card {
  position: relative;
  margin-bottom: 0;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 20px;
  background: rgba(10, 8, 16, 0.95);
  box-shadow: 0 0 60px rgba(0, 240, 255, 0.06);
  overflow: hidden;
}

.section--video-tour .video-tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0, 240, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(57, 255, 20, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.section--video-tour .section__title {
  position: relative;
  z-index: 1;
  margin-bottom: 0.65rem;
  text-align: center;
}

.section--video-tour .section__lead--wide {
  position: relative;
  z-index: 1;
  margin-bottom: 1.1rem;
}

/* ═══ Section — 1BIG+ ═══ */
.section--bigplus {
  scroll-margin-top: calc(var(--topbar-h) + 0.75rem);
}

.section--bigplus .hero-card {
  margin-top: 0;
  border-color: rgba(180, 77, 255, 0.25);
}

.section--bigplus .hero-card::before {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(180, 77, 255, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(255, 45, 123, 0.06) 0%, transparent 60%);
}

.section--bigplus .section__title--bigplus {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-violet), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section--bigplus .hero__lead {
  max-width: none;
  width: 100%;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hypens: auto;
}
.section--bigplus .hero__lead:last-child { margin-bottom: 0; }

/* ═══ Hero Headings ═══ */
.hero__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-cyan);
}

.hero__headings {
  margin: 0 0 1rem;
  max-width: none;
  font: inherit;
}

.hero__heading-line {
  display: block;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: anywhere;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw + 0.8rem, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 960px) {
  .hero__heading-line {
    white-space: nowrap;
    text-wrap: nowrap;
    line-height: 1.25;
  }
}

.hero__heading-line + .hero__heading-line { margin-top: 0.35rem; }

.hero__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  line-height: 1.2;
  color: var(--neon-pink);
}

.hero__tagline {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.6vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 22em;
}

.hero__title-line { display: block; }

.hero__lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52em;
  line-height: 1.6;
}

.hero__lead--2 { margin-bottom: 0.75rem; }

.hero-card .hero__lead--intro {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.hero-card .hero__lead--heading {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.2rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
  line-height: 1.55;
}

.hero__lead--heading + .hero__lead { margin-top: 0; }
.hero__lead--3, .hero__lead--4, .hero__lead--5, .hero__lead--6, .hero__lead--7 { margin-bottom: 0.75rem; }
.hero__lead--8 { margin-bottom: 1.25rem; }

.hero--full .hero__headings { text-align: center; }
.hero--full .hero__heading-line { font-size: clamp(1.2rem, 3vw + 0.8rem, 2rem); }
.hero--full .hero__title {
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  max-width: 20em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.hero__meta { margin: 0; font-size: 0.85rem; color: var(--muted); }

/* ═══ Sections ═══ */
.section { margin-bottom: 1rem; }

.section--how-offer, .section--offer, #order, #order-form {
  scroll-margin-top: calc(var(--topbar-h) + 0.75rem);
}

.section--order-form { margin-bottom: 1.5rem; }

.section__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__title--catalog { margin-top: 0.25rem; }

.section__lead {
  margin: 0 0 1.1rem;
  color: var(--muted);
  max-width: 42em;
}

.section__lead--wide {
  max-width: none;
  width: 100%;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ═══ Share Preview Hint ═══ */
.share-preview-hint {
  position: relative;
  margin-left: 0.3em;
  white-space: nowrap;
}

.share-preview-hint__link {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: var(--neon-cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}
.share-preview-hint__link:hover { color: var(--neon-pink); }

.share-preview-hint__flyout {
  position: fixed;
  z-index: 10000;
  margin: 0;
  padding: 0.35rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  line-height: 0;
  pointer-events: none;
}

.share-preview-hint__flyout img {
  display: block;
  max-width: min(380px, 92vw);
  width: auto;
  height: auto;
  border-radius: 8px;
}

.share-preview-hint--open .share-preview-hint__flyout { display: block; }

/* ═══ Feature Grid ═══ */
.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(255, 45, 123, 0.15);
  border-color: rgba(255, 45, 123, 0.3);
}

.feature-card p .share-preview-hint { display: inline-block; margin-top: 0.4em; }
.feature-card__ico { display: block; font-size: 1.35rem; margin-bottom: 0.35rem; }
.feature-card__ico--img { height: 40px; margin-bottom: 0.35rem; }
.feature-card__ico--img img { display: block; width: auto; height: 40px; max-width: none; object-fit: contain; }
.feature-card h3 { margin: 0 0 0.35rem; font-size: 0.98rem; color: var(--ink); }
.feature-card p { margin: 0; font-size: 0.88rem; color: var(--muted); }

/* ═══ Benefit List ═══ */
.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.benefit-list li {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ═══ Steps ═══ */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.how-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 7px;
  padding: 7px;
  align-items: stretch;
}

.section--how-offer .section__title {
  margin-bottom: 7px;
  padding: 0 7px;
  text-align: center;
}

.steps--stack {
  grid-template-columns: 1fr;
  gap: 7px;
  height: 100%;
  min-width: 0;
}

.steps--stack .step {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 7px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.steps--stack .step__num { margin: 0.1rem 0 0; flex-shrink: 0; }
.steps--stack .step__body { flex: 1; min-width: 0; }

.steps--stack .step__title {
  margin: 0;
  white-space: normal;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps--stack .step__text {
  margin: 0.28rem 0 0;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
}
.steps--stack .step__text:first-of-type { margin-top: 0.35rem; }

.how-offer-grid .offer-box {
  height: 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 7px;
}

.section--how-offer .offer-box__main { width: 100%; box-sizing: border-box; }

.section--how-offer .offer-box__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  line-height: 1.25;
  text-align: center;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section--how-offer .offer-box__price-wrap {
  position: relative;
  margin: 0 0 16px;
  text-align: center;
  line-height: 1.1;
}

.section--how-offer .offer-box__price-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, 15rem);
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255, 45, 123, 0.2) 0%, transparent 68%);
  animation: offer-price-glow 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.section--how-offer .offer-box__price {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  background: linear-gradient(
    105deg,
    var(--neon-pink) 0%,
    var(--neon-violet) 38%,
    var(--neon-cyan) 50%,
    var(--neon-violet) 62%,
    var(--neon-pink) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: offer-price-shimmer 4.5s ease-in-out infinite;
  filter: drop-shadow(0 2px 14px rgba(255, 45, 123, 0.3));
}

@keyframes offer-price-shimmer {
  0%, 100% { background-position: 0% 50%; transform: scale(1); }
  50% { background-position: 100% 50%; transform: scale(1.04); }
}

@keyframes offer-price-glow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.92); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .section--how-offer .offer-box__price {
    animation: none;
    transform: none;
    color: var(--ink);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    filter: none;
  }
  .section--how-offer .offer-box__price-wrap::after { animation: none; opacity: 0.35; }
}

.section--how-offer .offer-box__text { margin: 0 0 0.4rem; font-size: 0.86rem; }

.section--how-offer .offer-box__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 0.75rem;
  padding-left: 1.05rem;
  font-size: 0.84rem;
}
.section--how-offer .offer-box__bullets li { margin: 0; break-inside: avoid; }

.section--how-offer .offer-box__cta { margin: 13px 0 0; }
.section--how-offer .offer-box__cta .btn { max-width: none; width: 100%; }

/* ═══ CTA Button — Neon Glow ═══ */
.btn--offer-cta {
  position: relative;
  overflow: hidden;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 0 30px rgba(255, 45, 123, 0.4);
  animation: offer-cta-pulse 2.8s ease-in-out infinite;
  border-radius: 100px !important;
}

.btn--offer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 28%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 72%
  );
  background-size: 220% 100%;
  animation: offer-cta-shine 3.2s ease-in-out infinite;
  pointer-events: none;
}

.btn--offer-cta:hover {
  box-shadow: 0 0 60px rgba(255, 45, 123, 0.6) !important;
  transform: translateY(-2px);
}

@keyframes offer-cta-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 45, 123, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 0 50px rgba(255, 45, 123, 0.6); }
}

@keyframes offer-cta-shine {
  0%, 100% { background-position: 120% 0; }
  50% { background-position: -120% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .btn--offer-cta { animation: none; }
  .btn--offer-cta::after { animation: none; opacity: 0; }
}

.section--how-offer .offer-box__payment {
  margin: 16px 0 0;
  padding: 0;
  font-size: clamp(0.9rem, 0.35vw + 0.86rem, 0.98rem);
  line-height: 1.5;
  text-align: center;
  color: var(--neon-cyan);
}
.section--how-offer .offer-box__payment strong { font-weight: 700; color: var(--neon-pink); }

/* ═══ Step Cards ═══ */
.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem 0.65rem;
  position: relative;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step:hover {
  border-color: rgba(255, 45, 123, 0.3);
  box-shadow: 0 0 30px rgba(255, 45, 123, 0.1);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 15px rgba(255, 45, 123, 0.4);
}

.step p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.step__title {
  font-weight: 700;
  font-size: clamp(0.72rem, 1.05vw, 0.88rem);
  line-height: 1.3;
  white-space: nowrap;
  color: var(--accent);
}

@media (max-width: 900px) {
  .how-offer-grid { grid-template-columns: 1fr; }
  .section--how-offer .offer-box__bullets { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section--how-offer .offer-box__bullets { grid-template-columns: 1fr; }
}

/* ═══ Offer Box ═══ */
.offer-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 45, 123, 0.3);
  border-radius: 20px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 0 40px rgba(255, 45, 123, 0.08);
}

.offer-box__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-box__price {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.offer-box__text { margin: 0 0 0.75rem; font-size: 0.92rem; color: var(--muted); }

.offer-box__bullets { margin: 0; padding-left: 1.15rem; font-size: 0.9rem; }
.offer-box__bullets li { margin: 0.25rem 0; }
.offer-box__bullets a {
  color: var(--neon-cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.offer-box__bullets a:hover { color: var(--neon-pink); }

.offer-box__cta { margin: 1.1rem 0 0; padding: 0; }
.offer-box__cta .btn { max-width: 22rem; }
.offer-box__note { margin: 0; font-size: 0.82rem; color: var(--muted); }

.site-header__meta { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* ═══ Mobile Topbar ═══ */
@media (max-width: 768px) {
  .topbar__inner {
    flex-wrap: wrap;
    align-content: flex-start;
  }
  .topbar__burger { display: flex; }
  .topbar__nav {
    display: none;
    flex: 1 0 100%;
    width: 100%;
    order: 10;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: stretch;
    margin: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(5, 5, 8, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  .topbar__nav--open { display: grid; }

  .topbar__nav a {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 0.55rem 0.45rem !important;
    border-radius: 8px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.25;
  }
  .topbar__nav a:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    width: min(100%, 15rem);
    background: var(--bg-glass) !important;
    color: var(--neon-pink) !important;
    border: 2px solid var(--neon-pink);
  }
  .topbar__nav a:nth-child(2),
  .topbar__nav a:nth-child(3) {
    grid-row: 2;
    background: var(--accent) !important;
    color: #fff !important;
    border: 2px solid var(--accent) !important;
    font-weight: 700;
  }
  .topbar__nav a:nth-child(2) { grid-column: 1; }
  .topbar__nav a:nth-child(3) { grid-column: 2; }
}

/* ═══════════════════════════════════════════
   AUTHOR CARDS — Glassmorphic Neon
   ═══════════════════════════════════════════ */
.authors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.authors-grid--catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
@media (max-width: 960px) { .authors-grid--catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .authors-grid--catalog { grid-template-columns: 1fr; } }

.authors-page { padding-top: 0.5rem; }
.authors-page__main { margin-bottom: 1rem; }
.section__lead--catalog { margin-bottom: 0.65rem; }

.catalog-updated {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--muted);
}
.catalog-updated__label { font-weight: 500; color: var(--muted); }
.catalog-updated__when { font-weight: 700; color: var(--neon-cyan); }

.authors-grid--catalog .author-card {
  border: 1px solid rgba(255, 45, 123, 0.25);
}

.catalog-intro {
  margin: 0 0 1.35rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 16px;
  background: var(--bg-card);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.05);
}

.catalog-intro p { margin: 0; font-size: 0.92rem; line-height: 1.6; color: var(--muted); }
.catalog-intro p.catalog-intro__lead { font-size: 1.1rem; line-height: 1.5; }
.catalog-intro p + p { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px dashed rgba(255, 45, 123, 0.2); }
.catalog-intro strong { color: var(--neon-pink); }
.catalog-intro__listeners { color: var(--muted); }
.catalog-intro__listeners strong { color: var(--neon-cyan); }
.catalog-intro--songs { margin-bottom: 1rem; }

/* ═══ Songs Page ═══ */
.songs-page .songs-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 559px) { .songs-page .songs-grid { grid-template-columns: 1fr; } }

.songs-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.songs-seo h2 { margin: 0 0 0.35rem; font-size: 1rem; font-weight: 700; }
.songs-seo p { margin: 0 0 0.75rem; font-size: 0.9rem; line-height: 1.45; color: var(--muted); }
.songs-seo__placeholder { margin: 0; font-size: 0.85rem; color: var(--muted); }

.songs-author-card {
  margin: 0;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(255, 45, 123, 0.2);
  border-radius: 16px;
  background: var(--bg-card);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}

.songs-author-card__head {
  margin: 0 0 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed rgba(255, 45, 123, 0.2);
}

.songs-author-card__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.songs-author-card__meta { margin: 0; font-size: 0.85rem; color: var(--muted); }
.songs-author-card__meta a { color: var(--neon-cyan); font-weight: 600; }

.songs-author-card__tracks { margin: 0; padding: 0; list-style: none; counter-reset: none; }
.songs-author-card__tracks li { margin: 0.35rem 0; font-size: 0.9rem; line-height: 1.45; }

.songs-author-card__num { color: var(--muted); font-variant-numeric: tabular-nums; min-width: 1.5rem; display: inline-block; }

.songs-author-card__tracks a { color: var(--ink); font-weight: 600; text-decoration: none; }
.songs-author-card__tracks a:hover { color: var(--neon-pink); text-decoration: underline; }

.songs-author-card__plays { color: var(--muted); font-size: 0.85rem; font-weight: 400; }
.songs-author-card__empty { margin: 0; font-size: 0.88rem; color: var(--muted); }

.topbar__nav a.topbar__nav--current { color: var(--accent); font-weight: 700; }

/* ═══ Pagination ═══ */
.authors-pagination { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); text-align: center; }
.authors-pagination__info { margin: 0 0 0.65rem; font-size: 0.9rem; color: var(--muted); }
.authors-pagination__links { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.4rem 0.5rem; }

.authors-pagination__btn {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--bg-glass);
  color: var(--neon-pink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s;
}
.authors-pagination__btn:hover {
  border-color: var(--neon-pink);
  background: rgba(255, 45, 123, 0.1);
  box-shadow: 0 0 15px rgba(255, 45, 123, 0.2);
}

.authors-pagination__current {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 0 15px rgba(255, 45, 123, 0.4);
}

/* ═══ Author Card ═══ */
.author-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.author-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(255, 45, 123, 0.12);
  border-color: rgba(255, 45, 123, 0.3);
}

.author-card--featured {
  border-color: var(--neon-pink);
  border-width: 1px;
  box-shadow: 0 0 30px rgba(255, 45, 123, 0.15);
}

.author-card--open-slot {
  border-style: dashed;
  border-color: rgba(255, 45, 123, 0.3);
  background: linear-gradient(160deg, rgba(15, 12, 20, 0.9) 0%, rgba(20, 15, 30, 0.85) 100%);
}

.author-card__photo--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 45, 123, 0.05) 0%, rgba(180, 77, 255, 0.05) 100%);
  border: 2px dashed rgba(255, 45, 123, 0.25);
}

.author-card__photo-ico { width: 2rem; height: 2rem; color: rgba(255, 45, 123, 0.35); }

.author-card__head { display: flex; gap: 0.85rem; align-items: flex-start; }

.author-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 45, 123, 0.08);
  border: 1px solid rgba(255, 45, 123, 0.15);
}

.author-card__titles { min-width: 0; flex: 1; }

.author-card__line1 {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.2;
}

.author-card__line2 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.author-card__line3 { margin: 0; font-size: 0.78rem; color: var(--muted); line-height: 1.25; }

.author-card__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: var(--neon-pink);
  color: #fff;
  margin-left: 0.35rem;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(255, 45, 123, 0.4);
}

.author-card__stats { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0.45rem; }

.author-card__stat {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 0.28rem;
  row-gap: 0.1rem;
  width: max-content;
  max-width: 100%;
  padding: 0.4rem 0.5rem 0.45rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.author-card__stat--tracks { background: rgba(0, 240, 255, 0.05); border-color: rgba(0, 240, 255, 0.15); }

.author-card__stat--reviews {
  background: rgba(255, 230, 0, 0.05);
  border-color: rgba(255, 230, 0, 0.15);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.author-card__stat--reviews:hover {
  border-color: rgba(255, 230, 0, 0.35);
  box-shadow: 0 2px 10px rgba(255, 230, 0, 0.12);
}

.author-card__stat-ico { grid-column: 1; grid-row: 1; font-size: 1rem; line-height: 1.15; opacity: 0.85; align-self: center; }

.author-card__stat-num {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  align-self: center;
}

.author-card__stat-caption { grid-column: 1 / -1; grid-row: 2; font-size: 0.72rem; color: var(--muted); line-height: 1.15; white-space: nowrap; text-align: left; }

.author-card__top { margin: 0; padding: 0; list-style: none; font-size: 0.88rem; }
.author-card__top li { margin: 0.25rem 0; }
.author-card__top a { color: var(--neon-cyan); }

.author-card__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.45rem;
  margin-top: auto;
  width: 100%;
}
.author-card__actions .btn {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 0.45rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1.25;
}
.author-card__actions--single .btn { flex: 1 1 100%; font-size: 0.85rem; }

/* ═══ Buttons ═══ */
.btn {
  display: inline-block;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  line-height: 1.3;
  transition: all 0.3s;
}

.btn--primary {
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(255, 45, 123, 0.3);
}
.btn--primary:hover {
  box-shadow: 0 0 40px rgba(255, 45, 123, 0.5);
  transform: translateY(-1px);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 45, 123, 0.3);
}

.author-card__actions .btn--secondary,
.author-note-modal__actions .btn--secondary {
  border: 1px solid rgba(255, 45, 123, 0.25);
}

.btn--outline {
  background: transparent !important;
  color: var(--neon-cyan) !important;
  border: 2px solid var(--neon-cyan);
}
.btn--outline:hover {
  background: rgba(0, 240, 255, 0.1) !important;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.btn--lg { padding: 0.6rem 1.15rem; font-size: 0.95rem; }
.btn--block { display: block; width: 100%; text-align: center; }

/* ═══ Footer ═══ */
.site-footer { margin-top: 1rem; text-align: center; font-size: 0.85rem; color: var(--muted); }
.site-footer a { color: var(--neon-pink); }
.site-footer__cta { margin-top: 1rem; }
.site-footer__video { margin: 1rem auto 0; max-width: 22rem; }

.btn--cta {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(255, 45, 123, 0.35);
  transition: all 0.3s;
}
.btn--cta:hover { box-shadow: 0 0 50px rgba(255, 45, 123, 0.5); transform: translateY(-2px); }
.btn--cta span { color: inherit; }

.list-error { color: #ff5a5a; padding: 1rem; background: rgba(255, 50, 50, 0.08); border: 1px solid rgba(255, 50, 50, 0.2); border-radius: 12px; }

/* ═══════════════════════════════════════════
   ORDER FORM
   ═══════════════════════════════════════════ */
body[data-page="order"] { min-height: 100vh; }

.topbar--order { position: sticky; top: 0; z-index: 50; }
.topbar__inner--order { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.order-page-back {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--neon-cyan);
  text-decoration: none;
  white-space: nowrap;
}
.order-page-back:hover { color: var(--neon-pink); }

.page--order { max-width: 760px; margin: 0 auto; padding: 1.25rem 1rem 2.5rem; }
.section--order-form-only { margin-bottom: 0; }

.order-form-shell {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.75rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 45, 123, 0.25);
  background: var(--bg-card);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.order-form-shell__glow {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 45, 123, 0.12) 0%, transparent 68%);
  pointer-events: none;
  animation: order-form-glow 9s ease-in-out infinite alternate;
}
@keyframes order-form-glow {
  from { transform: translate(0, 0) scale(1); opacity: 0.7; }
  to { transform: translate(-6%, 4%) scale(1.08); opacity: 1; }
}

.order-form-head { position: relative; z-index: 1; margin-bottom: 1.15rem; max-width: 52em; }

.order-form-head__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon-cyan);
}

.order-form-head__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.order-form-head__lead {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--muted);
}
.order-form-head__lead a { color: var(--neon-cyan); font-weight: 600; }

.order-form-status {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.92rem;
}
.order-form-status--ok { background: rgba(57, 255, 20, 0.08); color: var(--neon-green); border: 1px solid rgba(57, 255, 20, 0.2); }
.order-form-status--err { background: rgba(255, 50, 50, 0.08); color: #ff5a5a; border: 1px solid rgba(255, 50, 50, 0.2); }

.order-form { position: relative; z-index: 1; }

.order-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.order-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  margin-bottom: 0.85rem;
}

.order-form__field { display: flex; flex-direction: column; gap: 0.3rem; }
.order-form__field--full { grid-column: 1 / -1; }

.order-form__label { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.order-form__req { color: var(--neon-pink); }
.order-form__hint { font-size: 0.78rem; color: var(--muted); line-height: 1.35; }

.order-form__input,
.order-form__textarea {
  width: 100%;
  font: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.order-form__textarea { resize: vertical; min-height: 4.5rem; line-height: 1.5; }
.order-form__textarea--tall { min-height: 9rem; }

.order-form__input:hover,
.order-form__textarea:hover { border-color: rgba(255, 45, 123, 0.3); }

.order-form__input:focus,
.order-form__textarea:focus {
  outline: none;
  border-color: var(--neon-pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 123, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.order-form__input:invalid:not(:placeholder-shown),
.order-form__textarea:invalid:not(:placeholder-shown) { border-color: #ff5a5a; }

.order-form__agree {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  cursor: pointer;
}
.order-form__agree input { margin-top: 0.2rem; accent-color: var(--accent); flex-shrink: 0; }

.order-form__submit { width: 100%; max-width: 22rem; }

.order-form-reminders {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 45, 123, 0.25);
}

.order-form-reminders__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neon-pink);
}

.order-form-reminders__list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}
.order-form-reminders__list li { margin: 0.2rem 0; }
.order-form-reminders__payment { font-size: clamp(0.9rem, 0.35vw + 0.86rem, 0.98rem); line-height: 1.5; }

@media (max-width: 720px) {
  .order-form__grid { grid-template-columns: 1fr; }
  .order-form-shell { padding: 1.25rem 1rem; }
  .order-form__submit { max-width: none; }
}

/* ═══ Mobile Adaptation ═══ */
html {
  overflow-x: hidden;
  height: auto;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
}
body {
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

#hero, #about, #how, #order, #authors-main, #songs-main, #order-form {
  scroll-margin-top: calc(var(--topbar-h) + 0.65rem);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.85rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.site-footer__nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--neon-pink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-footer__nav a:hover { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 768px) {
  .page {
    padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
    padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
  }
  .topbar__inner {
    padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
  }
  .hero__heading-line { font-size: clamp(1rem, 4.8vw, 1.35rem); line-height: 1.32; }
  .hero__lead { font-size: 1rem; }
  .hero-card .hero__lead--intro, .hero-card .hero__lead--heading { font-size: 1.15rem; }
  .hero-card { padding: 1.25rem 1rem 1.3rem; }
  .hero-card::before { inset: 5px; border-radius: 16px; }
  .how-offer-grid { padding: 0; gap: 0.85rem; }
  .steps--stack .step { padding: 0.65rem; }
  .steps--stack .step__text { font-size: 0.9rem; }
  .section--how-offer .offer-box__bullets { font-size: 0.88rem; }
  .btn--offer-cta { animation: none; transform: none; }
  .btn--offer-cta::after { animation: none; opacity: 0; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; min-height: 2.75rem; text-align: center; justify-content: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .section__lead--wide { font-size: 1rem; }
  .share-preview-hint { display: block; margin: 0.45rem 0 0; white-space: normal; }
  .offer-box { padding: 1.1rem 1rem; }
  .offer-box__price { font-size: 1.75rem; }
  .author-card { padding: 1.15rem 1rem; gap: 0.75rem; }
  .author-card__line1, .author-card__line3 { font-size: 0.85rem; }
  .author-card__line2 { font-size: 1.15rem; line-height: 1.28; }
  .author-card__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.4rem; }
  .author-card__stat { width: 100%; max-width: none; justify-content: center; justify-items: center; text-align: center; padding: 0.45rem 0.35rem 0.5rem; }
  .author-card__stat-caption { text-align: center; white-space: normal; font-size: 0.68rem; line-height: 1.2; }
  .author-card__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .author-card__actions .btn {
    display: inline-flex; align-items: center; justify-content: center;
    flex: none; width: 100%; min-height: 2.75rem; font-size: 0.9rem;
    padding: 0.55rem 0.75rem; box-sizing: border-box; text-align: center;
  }
  .section__title, .section__title--catalog { font-size: 1.3rem; line-height: 1.28; text-align: center; }
  .catalog-intro p.catalog-intro__lead { font-size: 1.05rem; line-height: 1.5; }
  .authors-pagination__btn, .authors-pagination__current { min-height: 2.65rem; padding: 0.5rem 0.85rem; }
  .catalog-intro { padding: 0.9rem 0.95rem; }
  .catalog-updated { font-size: 0.95rem; text-align: center; }
  .author-card__top { font-size: 0.92rem; }
  .author-card__top li { margin: 0.35rem 0; }
  .site-footer__cta .btn { width: 100%; max-width: 22rem; min-height: 2.75rem; }
  .order-page-back { font-size: 0.88rem; padding: 0.35rem 0.5rem; }
  .topbar__inner--order { flex-wrap: wrap; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .topbar__brand-text { font-size: 0.9rem; }
  .topbar__brand-logo { width: 32px; height: 32px; }
  .hero--full .hero__heading-line { font-size: clamp(1rem, 4.8vw, 1.28rem); line-height: 1.32; }
  .hero--full .hero__title { font-size: 1.4rem; }
  .section__title { font-size: 1.25rem; }
  .btn--lg { padding: 0.65rem 1rem; font-size: 0.95rem; }
  .author-card__photo { width: 68px; height: 68px; }
  .author-card__line2 { font-size: 1.22rem; }
  .songs-author-card { padding: 0.9rem; }
  .order-form-head__title { font-size: 1.25rem; }
}

@media (max-width: 380px) {
  .topbar__nav a { font-size: 0.76rem; padding: 0.5rem 0.35rem !important; }
}

/* ═══ 404 Page ═══ */
.page--error { min-height: 50vh; display: flex; align-items: center; justify-content: center; }

.error-page { max-width: 32rem; margin: 0 auto; padding: 2rem 1rem 3rem; text-align: center; }

.error-page__code {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
}

.error-page__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.6rem);
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-page__lead { margin: 0 0 1.5rem; font-size: 1rem; line-height: 1.6; color: var(--muted); }

.error-page__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.error-page__nav { margin: 0; }

@media (min-width: 480px) {
  .error-page__actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .error-page__actions .btn { flex: 0 1 auto; min-width: 9rem; }
}

/* ═══ GSAP Animation Helpers ═══ */
.gsap-fade-in { opacity: 0; transform: translateY(30px); }
.gsap-fade-in-left { opacity: 0; transform: translateX(-40px); }
.gsap-fade-in-right { opacity: 0; transform: translateX(40px); }
.gsap-scale-in { opacity: 0; transform: scale(0.9); }

/* Fallback: ensure content visible if GSAP doesn't load */
.no-js .hero__heading-line,
.no-js .hero-card,
.no-js .step,
.no-js .offer-box,
.no-js .section__title--catalog,
.no-js .catalog-intro,
.no-js .author-card,
.no-js .songs-author-card,
.no-js .order-form-shell {
  opacity: 1 !important;
  transform: none !important;
}
