:root {
  --bg: #060609;
  --panel: #0d0d17;
  --line: rgba(77, 243, 255, 0.22);
  --cyan: #4df3ff;
  --pink: #ff4fd8;
  --yellow: #ffd54d;
  --red: #ff3b3b;
  --text: #dcdce8;
  --dim: #8b8ba0;
  --font-display: 'VT323', 'Courier New', monospace;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection {
  background: var(--pink);
  color: #000;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a12;
}

::-webkit-scrollbar-thumb {
  background: var(--pink);
  border: 2px solid #0a0a12;
}

.smpte {
  height: 12px;
  background: linear-gradient(90deg,
    #c0c0c0 0 14.28%,
    #c0c000 14.28% 28.57%,
    #00c0c0 28.57% 42.85%,
    #00c000 42.85% 57.14%,
    #c000c0 57.14% 71.42%,
    #c00000 71.42% 85.71%,
    #0000c0 85.71% 100%);
}

.noise {
  position: fixed;
  inset: -80px;
  z-index: 990;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.flicker {
  position: fixed;
  inset: 0;
  z-index: 991;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
  animation: flicker 5s infinite;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 992;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 2px,
    rgba(0, 0, 0, 0.28) 2px 3px,
    transparent 3px 4px
  );
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 993;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.75; }
  94% { opacity: 1; }
  97% { opacity: 0.85; }
  98% { opacity: 1; }
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  background: rgba(6, 6, 9, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 3px;
  text-decoration: none;
  color: var(--text);
}

.nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dim);
  transition: color 0.15s;
}

.nav a:hover {
  color: var(--cyan);
}

.rec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--red);
}

.rec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: blink 1.2s steps(2, start) infinite;
}

@keyframes blink {
  50% { opacity: 0.2; }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 110px;
}

.tracking-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(180deg,
    transparent,
    rgba(77, 243, 255, 0.07) 40%,
    rgba(255, 255, 255, 0.09) 55%,
    transparent);
  animation: tracking 6.5s linear infinite;
}

@keyframes tracking {
  from { top: -20%; }
  to { top: 110%; }
}

.hero-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--dim);
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.hero-play {
  color: var(--yellow);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 11rem);
  line-height: 1;
  letter-spacing: 6px;
  text-shadow: 3px 0 rgba(77, 243, 255, 0.5), -3px 0 rgba(255, 79, 216, 0.5);
}

.hero-ru {
  margin-top: 18px;
  font-size: 0.8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero-sub {
  margin-top: 20px;
  color: var(--dim);
}

.hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding: 0.55rem 1.6rem;
  border: 2px solid var(--pink);
  background: transparent;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.btn:hover {
  background: var(--pink);
  color: #000;
  box-shadow: 0 0 24px rgba(255, 79, 216, 0.6);
}

.btn--cyan {
  border-color: var(--cyan);
}

.btn--cyan:hover {
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(77, 243, 255, 0.6);
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0a13;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
  padding: 10px 0;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 90px 24px;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 20px;
}

.section-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--pink);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
}

.section-note {
  color: var(--dim);
  font-size: 0.92rem;
  max-width: 640px;
  margin-bottom: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(77, 243, 255, 0.06), transparent 30%);
  pointer-events: none;
}

.card-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--yellow);
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.card p {
  color: var(--dim);
  font-size: 0.92rem;
}

.pf-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--panel);
  border: 1px dashed rgba(77, 243, 255, 0.35);
  overflow: hidden;
  transition: border-color 0.2s;
}

.pf-slot:hover {
  border-color: var(--cyan);
}

.pf-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.pf-slot:hover .pf-img {
  transform: scale(1.03);
}

.pf-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(transparent 25%, rgba(6, 6, 9, 0.9));
}

.pf-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-top: 6px;
}

.pf-desc {
  font-size: 0.8rem;
  color: var(--dim);
  margin-top: 4px;
}

.pf-anchor {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.footer-admin {
  color: var(--dim);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.15s;
}

.footer-admin:hover {
  color: var(--cyan);
}

.pf-static {
  position: absolute;
  inset: -40px;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: static-jitter 0.35s steps(3) infinite;
}

@keyframes static-jitter {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-4px, 2px); }
  50% { transform: translate(3px, -3px); }
  75% { transform: translate(-2px, 4px); }
  100% { transform: translate(0, 0); }
}

.pf-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 3px,
    rgba(0, 0, 0, 0.4) 3px 4px
  );
  pointer-events: none;
}

.pf-channel {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--cyan);
}

.pf-info {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}

.pf-pause {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--pink);
}

.pf-state {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--dim);
}

.price-list {
  max-width: 760px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 4px;
  border-bottom: 1px dashed var(--line);
}

.price-name {
  letter-spacing: 2px;
  white-space: nowrap;
}

.price-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(220, 220, 232, 0.25);
  transform: translateY(-4px);
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--yellow);
  white-space: nowrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin-bottom: 40px;
}

.contact-card {
  display: block;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(77, 243, 255, 0.25);
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--dim);
  margin-bottom: 8px;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--cyan);
}

footer {
  padding-top: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 30px 28px 40px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--dim);
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0.75;
  pointer-events: none;
}

.glitch::before {
  color: var(--cyan);
  transform: translate(-3px, 0);
}

.glitch::after {
  color: var(--pink);
  transform: translate(3px, 0);
}

body.glitching .glitch {
  animation: glitch-jerk 0.18s steps(2, jump-none) 2;
}

body.glitching .glitch::before {
  animation: glitch-slide-a 0.18s steps(2, jump-none) 2;
}

body.glitching .glitch::after {
  animation: glitch-slide-b 0.18s steps(2, jump-none) 2;
}

@keyframes glitch-jerk {
  0% { transform: translate(0); }
  33% { transform: translate(-3px, 2px) skewX(-2deg); }
  66% { transform: translate(3px, -1px); }
  100% { transform: translate(0); }
}

@keyframes glitch-slide-a {
  0% { clip-path: inset(0 0 80% 0); transform: translate(-8px, -3px); }
  50% { clip-path: inset(40% 0 40% 0); transform: translate(6px, 2px); }
  100% { clip-path: inset(10% 0 70% 0); transform: translate(-4px, 1px); }
}

@keyframes glitch-slide-b {
  0% { clip-path: inset(60% 0 20% 0); transform: translate(8px, 2px); }
  50% { clip-path: inset(20% 0 60% 0); transform: translate(-6px, -2px); }
  100% { clip-path: inset(75% 0 5% 0); transform: translate(5px, -1px); }
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

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

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

  .header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    letter-spacing: 3px;
  }

  .price-name {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
