:root {
  --black: #030303;
  --white: #f4f1e8;
  --muted: rgba(244, 241, 232, .58);
  --soft: rgba(244, 241, 232, .34);
  --line: rgba(244, 241, 232, .13);
  --line-strong: rgba(244, 241, 232, .22);
  --max: 620px;
  
  --ai-cyan: #ff1b14;
  --ai-purple: #6a00ff;
  --ai-pink: #ff0066;
  --ai-orange: #ff6a00;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* ФИКС ДВОЙНОЙ ПОЛОСЫ ПРОКРУТКИ */
html {
  background: var(--black);
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -12%, rgba(244,241,232,.13), transparent 34%),
    radial-gradient(circle at 50% 46%, rgba(244,241,232,.055), transparent 33%),
    linear-gradient(180deg, #060606 0%, #000 48%, #060606 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(244, 241, 232, .022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244, 241, 232, .018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 42%, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 42%, black 0%, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.76) 78%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.48) 100%);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; padding: 0; cursor: pointer; color: inherit; }

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .04;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");
}

.page {
  width: 100%;
  max-width: var(--max);
  min-height: 100svh;
  margin: 0 auto;
  padding: 40px 18px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

h1 {
  margin: 0 auto 16px;
  font-size: clamp(56px, 14vw, 96px);
  line-height: .88;
  font-weight: 600;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.minimal-top-player {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto 36px;
  padding: 6px 14px 6px 8px;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 10px 30px rgba(0,0,0,.2);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
}
.minimal-top-player.fade-out { opacity: 0; }
.minimal-top-player:hover { border-color: rgba(244, 241, 232, 0.3); }

.minimal-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--black);
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.minimal-play-btn:active { transform: scale(0.9); }
.minimal-play-btn svg { width: 12px; height: 12px; fill: currentColor; }

.ticker-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
}

.ticker-container::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0; width: 20px;
  background: linear-gradient(to left, rgba(15,15,15,0.4), transparent);
  z-index: 2;
}

.ticker-wrap {
  display: inline-block;
  animation: tickerLoop 14s linear infinite;
}

.ticker-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
}

@keyframes tickerLoop {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.audio-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
  width: 24px;
  padding-right: 4px;
}

.audio-wave span {
  display: block;
  width: 2px;
  height: 100%;
  background: var(--white);
  border-radius: 1px;
  transform: scaleY(0.2);
  transform-origin: bottom;
}

.minimal-top-player.playing .audio-wave span {
  animation: bounce 0.5s ease infinite alternate;
}
.minimal-top-player.playing .audio-wave span:nth-child(1) { animation-duration: 0.4s;  animation-delay: -0.15s; }
.minimal-top-player.playing .audio-wave span:nth-child(2) { animation-duration: 0.55s; animation-delay: -0.3s; }
.minimal-top-player.playing .audio-wave span:nth-child(3) { animation-duration: 0.35s; animation-delay: -0.05s; }
.minimal-top-player.playing .audio-wave span:nth-child(4) { animation-duration: 0.48s; animation-delay: -0.2s; }

@keyframes bounce {
  0% { transform: scaleY(0.2); }
  100% { transform: scaleY(1); }
}

.content-fade-zone {
  opacity: 1;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-fade-zone.fade-out { opacity: 0; }

.kicker {
  margin: 0 0 14px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.sub {
  max-width: 360px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: -.01em;
  font-weight: 400;
}

.slider-context {
  width: 100%;
  position: relative;
  perspective: 1200px;
  touch-action: pan-y; 
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(3, 3, 3, 0.3);
  color: var(--white);
  display: grid;
  place-items: center;
  z-index: 10;
  transition: background 0.25s, border-color 0.25s, opacity 0.35s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-arrow:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--white); }
.nav-arrow svg { width: 18px; height: 18px; }
.nav-arrow.prev { left: -14px; }
.nav-arrow.next { right: -14px; }

.system {
  position: relative;
  width: min(94vw, 520px);
  height: min(94vw, 520px);
  margin: 20px auto 16px;
  display: grid;
  place-items: center;
  isolation: isolate;
  transform-style: preserve-3d;
}

.carousel-track { position: absolute; inset: 0; transform-style: preserve-3d; }

.carousel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, visibility 0.6s;
  will-change: transform, opacity;
  transform-style: preserve-3d;
}

.record-image {
  position: absolute;
  width: 58%;
  height: 58%;
  object-fit: contain;
  animation: spin 20s linear infinite; 
  animation-play-state: paused;
  filter: drop-shadow(0 34px 70px rgba(0,0,0,.92)) drop-shadow(0 0 24px rgba(244,241,232,.06));
  z-index: 2;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.record-image.playing { animation-play-state: running; }
.record-image.compact { width: 66%; height: 66%; }

.siri-aura {
  position: absolute;
  inset: -40%; 
  width: 180%;
  height: 180%;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(64px);
  -webkit-filter: blur(64px);
  opacity: 0.85;
  transition: opacity 0.4s ease-in-out;
  /* НАШЕ ДОБАВЛЕНИЕ ДЛЯ ПУЛЬСАЦИИ: */
  transform: scale(var(--aura-pulse, 1));
  will-change: opacity, transform;
}

.aura-orb {
  position: absolute;
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-radius: 50%;
  mix-blend-mode: plus-lighter;
  transition: background 0.8s ease-in-out;
}
.orb-1 { background: radial-gradient(circle, var(--ai-cyan) 0%, rgba(3,3,3,0) 70%); animation: auraDrift1 14s ease-in-out infinite alternate; }
.orb-2 { background: radial-gradient(circle, var(--ai-purple) 0%, rgba(3,3,3,0) 70%); animation: auraDrift2 11s ease-in-out infinite alternate-reverse; }
.orb-3 { background: radial-gradient(circle, var(--ai-orange) 0%, rgba(3,3,3,0) 70%); animation: auraDrift3 9s ease-in-out infinite alternate; }
.orb-4 { background: radial-gradient(circle, var(--ai-pink) 0%, rgba(3,3,3,0) 70%); animation: auraDrift1 8s ease-in-out infinite alternate-reverse; }

@keyframes auraDrift1 {
  0% { transform: translate(-10%, -8%) scale(0.9) rotate(0deg); }
  50% { transform: translate(12%, 8%) scale(1.2) rotate(180deg); }
  100% { transform: translate(-5%, 12%) scale(0.95) rotate(360deg); }
}
@keyframes auraDrift2 {
  0% { transform: translate(12%, 10%) scale(1.15) rotate(0deg); }
  50% { transform: translate(-12%, -10%) scale(0.85) rotate(-180deg); }
  100% { transform: translate(6%, -12%) scale(1.05) rotate(-360deg); }
}
@keyframes auraDrift3 {
  0% { transform: translate(-8%, 8%) scale(0.95); }
  50% { transform: translate(10%, -12%) scale(1.1); }
  100% { transform: translate(-4%, 4%) scale(1.0); }
}

.halo {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,241,232,.08), transparent 64%);
  filter: blur(34px);
  opacity: .44;
  animation: breathe 6s ease-in-out infinite;
  z-index: 1;
}

.shadow {
  position: absolute;
  width: 58%;
  height: 12%;
  left: 21%;
  bottom: 8%;
  border-radius: 50%;
  background: rgba(0,0,0,.86);
  filter: blur(30px);
  z-index: 1;
}

.caption {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  margin: 4px auto 24px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.caption::before, .caption::after { content: ""; height: 1px; background: var(--line); }

.listen {
  display: grid;
  gap: 10px;
  margin-top: 2px;
  opacity: 1;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.listen.fade-out { opacity: 0; }

.link {
  min-height: 62px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 20px 60px rgba(0,0,0,.28);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.link:active { transform: scale(.986); }
.link.primary { background: var(--white); color: #050505; border-color: var(--white); }
.link-left { display: flex; align-items: center; gap: 13px; text-align: left; min-width: 0; }

.code {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(244, 241, 232,.08);
  border: 1px solid rgba(244, 241, 232,.12);
  font-size: 11px;
  font-weight: 600;
}
.primary .code { background: #050505; color: var(--white); border-color: #050505; }
.link strong { display: block; font-size: 14px; line-height: 1; font-weight: 600; letter-spacing: -.01em; }
.link small { display: block; margin-top: 5px; color: currentColor; opacity: .48; font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.arrow { font-size: 17px; font-weight: 600; flex: 0 0 auto; }

.footer { padding-top: 24px; text-align: center; color: rgba(244,241,232,.28); font-size: 10px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes breathe { 0%, 100% { opacity: .44; transform: scale(.96); } 50% { opacity: .68; transform: scale(1.03); } }

@media (min-width: 740px) {
  .page { max-width: 700px; padding-top: 60px; }
  .system { width: 560px; height: 560px; margin-top: 26px; margin-bottom: 16px; }
    .listen { grid-template-columns: repeat(3, 1fr); }
  .nav-arrow.prev { left: -50px; }
  .nav-arrow.next { right: -50px; }
}

@media (max-width: 740px) {
  .page { padding-left: 16px; padding-right: 16px; }
  .nav-arrow { width: 36px; height: 36px; background: rgba(3, 3, 3, 0.2); border-color: rgba(244, 241, 232, 0.1); opacity: 0.6; }
  .nav-arrow svg { width: 16px; height: 16px; stroke-width: 2.0; }
  .nav-arrow.prev { left: -6px; }
  .nav-arrow.next { right: -6px; }
  .system { width: min(94vw, 390px); height: min(94vw, 390px); margin-top: 20px; margin-bottom: 16px; }
  .siri-aura { inset: -50%; width: 200%; height: 200%; filter: blur(44px); -webkit-filter: blur(44px); }
}

.footer-instagram {
  width: fit-content;
  margin: 0 auto 16px;
  min-height: 38px;
  padding: 0 15px 0 13px;
  border: 1px solid rgba(244, 241, 232, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(244, 241, 232, .54);
  letter-spacing: .16em;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}

.footer-instagram svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-instagram:hover {
  color: var(--white);
  border-color: rgba(244, 241, 232, .32);
  background: rgba(255, 255, 255, .07);
}

.footer-instagram:active {
  transform: scale(.98);
}

.footer-copy {
  opacity: 1;
}
