/* ============================================================
   DOLZHENKO.BEST — Personal Brand Mobile Experience
   Mobile-first luxury system: ivory · black · gold
   ============================================================ */

:root {
  --black:        #0a0a0a;
  --black-2:      #111111;
  --black-3:      #1a1a1a;
  --ivory:        #f4efe6;
  --ivory-2:      #e8e0d1;
  --gold:         #C9A14A;
  --gold-soft:    #E6C36A;
  --gold-deep:    #8C6A1F;
  --gold-glow:    rgba(201,161,74,0.35);
  --line:         rgba(201,161,74,0.5);
  --line-faint:   rgba(201,161,74,0.18);
  --text-on-dark: #ECE6D8;
  --muted:        #9b958a;

  --serif:  'Cormorant Garamond', 'Playfair Display', 'Times New Roman', serif;
  --sans:   'Inter', 'Helvetica Neue', system-ui, sans-serif;

  --max-w: 480px;     /* mobile-first stage width */
  --vh: 100svh;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--black); color: var(--text-on-dark); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--black); }

/* Page stage: mobile-first centered on desktop */
.stage {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  background: var(--black);
  overflow: hidden;
}
@media (min-width: 900px) {
  body { background: #050505; }
  .stage {
    box-shadow:
      0 0 0 1px rgba(201,161,74,0.10),
      0 40px 120px -20px rgba(0,0,0,0.8),
      0 0 80px rgba(201,161,74,0.06);
  }
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
.serif       { font-family: var(--serif); font-weight: 500; }
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 11vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--ivory);
  font-weight: 500;
}
.h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ivory);
  font-weight: 500;
}
.h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  color: var(--ivory);
  font-weight: 500;
}
.lead {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-on-dark);
  opacity: 0.86;
}
.small { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }
.gold  { color: var(--gold); }
.italic { font-style: italic; }

/* ============================================================
   GOLD ELEMENTS / DIVIDERS
============================================================ */
.line-gold {
  display: block;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px 0;
}
.divider {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 28px 0;
}
.divider .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}
.divider .seg {
  height: 1px; width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(201,161,74,0.06), rgba(201,161,74,0));
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 120%, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.btn:hover, .btn:active, .btn:focus-visible {
  color: var(--black);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  box-shadow: 0 8px 24px -10px var(--gold-glow), inset 0 0 0 1px var(--gold-soft);
}
.btn.solid {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--black);
}
.btn.solid:hover { background: linear-gradient(180deg, var(--gold), var(--gold-deep)); color: var(--ivory); }
.btn.ghost { border-color: var(--line-faint); color: var(--ivory); }
.btn.block { width: 100%; }
.btn .arrow { width: 14px; height: 1px; background: currentColor; position: relative; }
.btn .arrow::after {
  content:''; position: absolute; right:-1px; top:-3px; width:7px; height:7px;
  border-right: 1px solid currentColor; border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ============================================================
   PRELOADER
============================================================ */
.preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 1000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader .pl-logo {
  width: 84px; height: 84px;
  animation: pl-rise 1.2s var(--ease) both;
}
.preloader .pl-bar {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: pl-bar 1.6s var(--ease) .2s forwards;
}
.preloader .pl-text {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--gold);
  opacity: 0;
  animation: pl-fade 1s var(--ease) .8s forwards;
}
.preloader .pl-domain {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--ivory);
  opacity: 0;
  animation: pl-fade 1s var(--ease) 1.1s forwards;
}
@keyframes pl-bar { from {width:0;} to {width: 220px;} }
@keyframes pl-fade { to { opacity: 1; } }
@keyframes pl-rise {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   STICKY MOBILE NAV
============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(10,10,10,0.92), rgba(10,10,10,0.0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.topbar .ad {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
}
.topbar .ad img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 10px var(--gold-glow)); }
.topbar .menu-btn, .topbar .code-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line-faint);
  border-radius: 999px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory);
  transition: all .3s var(--ease);
}
.topbar .menu-btn:hover, .topbar .code-btn:hover {
  border-color: var(--gold); color: var(--gold); box-shadow: 0 0 16px -4px var(--gold-glow);
}
.topbar-right { display: inline-flex; align-items: center; gap: 8px; }
.sound-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-faint);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ivory);
  transition: all .3s var(--ease);
  position: relative;
}
.sound-btn:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 14px -4px var(--gold-glow); }
.ic-sound {
  display: inline-flex; align-items: flex-end; gap: 2px;
  height: 14px;
}
.ic-sound .wave {
  width: 2px;
  background: currentColor;
  border-radius: 1px;
  transform-origin: bottom;
  animation: snd 1.4s var(--ease) infinite;
}
.ic-sound .w1 { height: 5px;  animation-delay: 0s; }
.ic-sound .w2 { height: 10px; animation-delay: .18s; }
.ic-sound .w3 { height: 7px;  animation-delay: .36s; }
@keyframes snd {
  0%,100% { transform: scaleY(.5); opacity: .7; }
  50%     { transform: scaleY(1);  opacity: 1; }
}
html[data-muted="1"] .ic-sound .wave { animation: none; transform: scaleY(.4); opacity: .35; }
html[data-muted="1"] .sound-btn::after {
  content: '';
  position: absolute; left: 6px; right: 6px; top: 50%;
  height: 1.5px; background: currentColor;
  transform: translateY(-50%) rotate(-32deg);
  border-radius: 1px;
}
.menu-bars { display: inline-flex; flex-direction: column; gap: 3px; }
.menu-bars span { width: 14px; height: 1px; background: currentColor; }

/* Sticky bottom dock (floating) */
.dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 49;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(10,10,10,0.78);
  border: 1px solid var(--line-faint);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.7), 0 0 24px -8px var(--gold-glow);
}
.dock a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 10px; letter-spacing: 0.2em; color: var(--ivory);
  transition: all .3s var(--ease);
}
.dock a.center {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  padding: 6px;
}
.dock a.center img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 8px var(--gold-glow)); }
.dock a:hover { color: var(--gold); }

/* Full-screen mobile menu */
.fullmenu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--black);
  display: flex; flex-direction: column;
  padding: 24px 28px 40px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  overflow-y: auto;
}
.fullmenu.open { transform: translateY(0); }
.fullmenu header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px;
}
.fullmenu .close {
  width: 38px; height: 38px;
  border: 1px solid var(--line-faint); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ivory);
  font-size: 18px;
}
.fullmenu nav {
  display: flex; flex-direction: column;
  margin-top: 24px;
}
.fullmenu nav a {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.4;
  color: var(--ivory);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-faint);
  display: flex; justify-content: space-between; align-items: baseline;
  transition: color .3s var(--ease), padding .3s var(--ease);
}
.fullmenu nav a:hover { color: var(--gold); padding-left: 6px; }
.fullmenu nav a .num {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.3em; color: var(--gold);
}
.fullmenu footer {
  margin-top: auto;
  font-size: 11px; letter-spacing: 0.2em; color: var(--muted);
  text-align: center;
  padding-top: 30px;
}

/* ============================================================
   SECTIONS — common
============================================================ */
section {
  position: relative;
  padding: 80px 22px;
  overflow: hidden;
}
section.tight { padding: 56px 22px; }
section .eyebrow { display: inline-block; margin-bottom: 14px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .30s; }
.reveal.d4 { transition-delay: .42s; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 22px 32px;
  position: relative;
  isolation: isolate;
}
.hero .bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(201,161,74,0.12), transparent 60%),
    linear-gradient(180deg, #0c0b09 0%, #050505 100%);
}
.hero .bg-img {
  position: absolute; inset: 0; z-index: -1;
  background-image: url('../assets/images/hero/hero-business-card.png');
  background-size: cover;
  background-position: center 25%;
  opacity: 0.55;
  filter: contrast(1.02) saturate(0.9);
  mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 95%);
  transform: scale(1.05);
  animation: heroZoom 14s var(--ease) both;
}
@keyframes heroZoom {
  from { transform: scale(1.18); }
  to   { transform: scale(1.02); }
}
.hero .ad-mono {
  width: 96px; margin: 70px auto 0;
  filter: drop-shadow(0 0 24px rgba(201,161,74,0.18));
}
.hero .hero-text { margin-top: auto; }
.hero h1 { margin-top: 24px; }
.hero .role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 16px;
}
.hero .tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-2);
  font-size: 18px;
  margin-top: 14px;
  opacity: 0.9;
}
.hero .lead { margin-top: 18px; }
.hero .cta { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }

/* ============================================================
   "WHY" SECTION
============================================================ */
.why {
  background: linear-gradient(180deg, #050505, #0a0a0a);
}
.why .grid { display: grid; gap: 22px; margin-top: 30px; }
.card {
  border: 1px solid var(--line-faint);
  border-radius: 18px;
  padding: 22px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(201,161,74,0.06), transparent 60%),
    linear-gradient(180deg, #0e0e0e, #080808);
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.card:hover { border-color: var(--gold); transform: translateY(-2px); }
.card .num {
  font-family: var(--serif); font-size: 14px; color: var(--gold);
  letter-spacing: 0.18em;
}

/* ============================================================
   SIGNATURE
============================================================ */
.signature { text-align: center; }
.signature .mark {
  width: 180px; margin: 30px auto 18px;
  filter: drop-shadow(0 0 30px var(--gold-glow));
}
.signature .meta {
  display: flex; justify-content: center; gap: 22px; margin-top: 22px;
  flex-wrap: wrap;
}
.signature .meta span {
  font-size: 10px; letter-spacing: 0.28em; color: var(--muted); text-transform: uppercase;
}

/* ============================================================
   WORLDS SLIDER
============================================================ */
.worlds { padding-bottom: 40px; }
.worlds .header { margin-bottom: 20px; }
.slider {
  margin: 0 -22px;
  padding: 8px 22px 28px;
  display: flex; gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slider::-webkit-scrollbar { display: none; }
.slide {
  flex: 0 0 78%;
  scroll-snap-align: center;
  aspect-ratio: 9 / 16;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(201,161,74,0.18);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.slide::after {
  content:'';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.92) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 25%);
}
.slide .content {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  color: var(--ivory);
  z-index: 2;
}
.slide .num {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.32em; color: var(--gold);
}
.slide .title {
  font-family: var(--serif);
  font-size: 28px; line-height: 1.05;
  margin-top: 8px;
  font-weight: 500;
}
.slide .sub {
  font-size: 12.5px; color: var(--ivory-2); opacity: 0.9;
  margin-top: 8px;
}
.slide:hover img { transform: scale(1.06); }

.slider-progress {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 4px;
}
.slider-progress span {
  width: 16px; height: 2px; background: var(--line-faint); border-radius: 2px;
  transition: background .4s var(--ease), width .4s var(--ease);
}
.slider-progress span.active { background: var(--gold); width: 28px; }

/* ============================================================
   BRAND APPLICATIONS
============================================================ */
.apps .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.tile {
  border: 1px solid var(--line-faint);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  background: linear-gradient(180deg, #0e0e0e, #080808);
  transition: all .35s var(--ease);
}
.tile:hover { border-color: var(--gold); box-shadow: 0 0 18px -4px var(--gold-glow); transform: translateY(-2px); }
.tile .ic {
  width: 28px; height: 28px;
  margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--serif); font-size: 18px;
}
.tile .lbl { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory); }

/* ============================================================
   FULL-WIDTH STORY SECTIONS (poster style)
============================================================ */
.poster {
  position: relative;
  padding: 0;
  min-height: 80svh;
  display: flex; align-items: flex-end;
}
.poster .bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
}
.poster .bg::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 30%, rgba(0,0,0,0.85) 90%);
}
.poster .content {
  position: relative; z-index: 1;
  padding: 30px 22px 56px;
  width: 100%;
}

/* ============================================================
   PRIVATE CODE
============================================================ */
.code-list { display: grid; gap: 16px; margin-top: 24px; }
.code-item {
  display: flex; gap: 16px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(201,161,74,0.04), rgba(201,161,74,0));
  border: 1px solid var(--line-faint);
}
.code-item .word {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  min-width: 80px;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.code-item .def { font-size: 13.5px; color: var(--ivory-2); line-height: 1.6; }

.code-item--accent {
  border-color: var(--gold);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(201,161,74,0.16), transparent 60%),
    linear-gradient(180deg, #100e08, #080705);
  box-shadow: 0 0 28px -10px var(--gold-glow);
  position: relative;
}
.code-item--accent::before {
  content: '';
  position: absolute; left: 0; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
}
.code-item--accent .word {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-style: italic;
}
.code-item--accent .def { color: var(--ivory); }

/* ============================================================
   IMBA MODE
============================================================ */
.imba {
  text-align: center;
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(201,161,74,0.12), transparent 70%),
    linear-gradient(180deg, #0a0a0a, #050505);
}
.imba-btn {
  margin: 30px auto 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: radial-gradient(circle at 50% 40%, rgba(201,161,74,0.22), rgba(10,10,10,1) 70%);
  color: var(--ivory);
  font-family: var(--serif); font-size: 22px; letter-spacing: 0.08em;
  position: relative;
  transition: all .5s var(--ease);
  box-shadow:
    0 0 0 1px rgba(201,161,74,0.15),
    inset 0 0 30px rgba(201,161,74,0.1),
    0 0 60px -10px var(--gold-glow);
}
.imba-btn::before, .imba-btn::after {
  content: ''; position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1px solid var(--line-faint);
  pointer-events: none;
  animation: pulse 3s var(--ease) infinite;
}
.imba-btn::after { animation-delay: 1.5s; }
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.25); opacity: 0; }
}
.imba-btn.on {
  background: radial-gradient(circle at 50% 40%, var(--gold-soft), var(--gold-deep));
  color: var(--black);
}
.imba-status {
  margin-top: 18px;
  font-size: 12px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase;
}

/* ============================================================
   CONTACT FILTER
============================================================ */
.contact-filter .tabs {
  display: flex; gap: 8px; margin-top: 26px;
  background: var(--black-2);
  border: 1px solid var(--line-faint);
  border-radius: 999px;
  padding: 6px;
}
.contact-filter .tab {
  flex: 1;
  padding: 12px 8px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  border-radius: 999px;
  transition: all .35s var(--ease);
}
.contact-filter .tab.active {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--black);
  box-shadow: 0 6px 16px -6px var(--gold-glow);
}
.cf-panel {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line-faint);
  border-radius: 16px;
  background: linear-gradient(180deg, #0e0e0e, #080808);
  min-height: 180px;
  display: none;
}
.cf-panel.show { display: block; animation: fadeIn .5s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cf-panel h3 { color: var(--gold); margin-bottom: 6px; }
.cf-panel ul { margin-top: 14px; padding-left: 0; list-style: none; }
.cf-panel li {
  padding: 10px 0;
  border-top: 1px solid var(--line-faint);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.cf-panel li:first-child { border-top: 0; }
.cf-panel li .tag { font-size: 10px; letter-spacing: 0.22em; color: var(--gold); }

/* ============================================================
   VIDEO ARCHIVE
============================================================ */
.archive .v-list {
  display: flex; flex-direction: column;
  margin-top: 28px;
  border-top: 1px solid var(--line-faint);
}
.v-row {
  display: grid;
  grid-template-columns: 44px 1fr 36px;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 22px 6px;
  border-bottom: 1px solid var(--line-faint);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: padding .35s var(--ease), background .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.v-row::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .45s var(--ease);
}
.v-row:hover { padding-left: 16px; background: linear-gradient(90deg, rgba(201,161,74,0.05), transparent 60%); }
.v-row:hover::before { transform: scaleY(1); }
.v-row .v-num {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.v-row .v-body { display: flex; flex-direction: column; gap: 4px; }
.v-row .v-type {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
}
.v-row .v-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ivory);
  line-height: 1.2;
  transition: color .35s var(--ease);
}
.v-row:hover .v-title { color: var(--gold-soft); }
.v-row .v-play {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-faint);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  justify-self: end;
  transition: all .35s var(--ease);
}
.v-row .v-play::after {
  content: '';
  width: 0; height: 0;
  border-left: 7px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 3px;
}
.v-row:hover .v-play {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: var(--black);
  box-shadow: 0 0 16px -4px var(--gold-glow);
}

.archive .closer {
  text-align: center; margin-top: 36px;
  font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ivory-2);
}
.archive .closer-ru { font-size: 13px; color: var(--muted); margin-top: 6px; font-style: normal; }

/* ============================================================
   LEVEL 36 — finale
============================================================ */
.level36 {
  background:
    radial-gradient(70% 50% at 50% 30%, rgba(201,161,74,0.12), transparent 70%),
    linear-gradient(180deg, #0a0a0a, #000);
  text-align: center;
  padding-bottom: 120px;
}
.level36 .big {
  font-family: var(--serif);
  font-size: clamp(72px, 22vw, 130px);
  line-height: 1;
  color: transparent;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  margin: 18px 0;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.level36 .wish {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--ivory-2);
  margin: 24px auto 0; max-width: 380px;
}
.level36 .sig {
  margin-top: 36px;
  font-size: 11px; letter-spacing: 0.32em; color: var(--gold);
}

/* ============================================================
   FOOTER
============================================================ */
footer.site {
  padding: 36px 22px 90px;
  text-align: center;
  border-top: 1px solid var(--line-faint);
}
footer .small { color: var(--muted); }
footer .ad { display: block; filter: drop-shadow(0 0 14px var(--gold-glow)); }

/* ============================================================
   POPUP / MODAL
============================================================ */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.modal-bg.show { display: flex; opacity: 1; }
.modal {
  width: 100%; max-width: 420px;
  background: linear-gradient(180deg, #0c0c0c, #060606);
  border: 1px solid var(--gold);
  border-radius: 22px;
  padding: 30px 24px 26px;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8), 0 0 40px -10px var(--gold-glow);
  transform: translateY(20px) scale(.97);
  transition: transform .4s var(--ease);
}
.modal-bg.show .modal { transform: none; }
.modal .ad-corner {
  position: absolute; top: 14px; left: 18px;
  width: 28px; height: 28px;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}
.modal .close {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  border: 1px solid var(--line-faint);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ivory);
}
.modal .close:hover { border-color: var(--gold); color: var(--gold); }
.modal h3 { margin-top: 12px; }
.modal .body { margin-top: 14px; font-size: 13.5px; color: var(--ivory-2); line-height: 1.6; }
.modal .body ol { padding-left: 18px; margin-top: 8px; }
.modal .body ol li { margin: 6px 0; }
.modal .actions { margin-top: 22px; display: flex; gap: 10px; }

/* Video modal */
.video-modal .modal { max-width: 520px; padding: 18px; }
.video-modal .vholder {
  aspect-ratio: 16 / 9;
  background: #000; border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--line-faint);
}
.video-modal iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   MICRO
============================================================ */
.scrollhint {
  position: absolute; left: 50%; bottom: 14px;
  transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.3em; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scrollhint::after {
  content:''; width: 1px; height: 28px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollDown 1.8s var(--ease) infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(.2); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(.2); transform-origin: bottom; }
}

.copy-row { display: flex; align-items: center; gap: 8px; justify-content: center; }
.dot-mid { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
