/* ============================================================
   HEY HONEY — NOIR · чёрное золото · моушн-эдиториал
   ============================================================ */

:root {
  --bg: #0a0903;
  --bg-2: #0f0d05;
  --gold: #f0a411;
  --gold-2: #ffd662;
  --gold-deep: #c67a00;
  --ink: #f4ecd8;
  --dim: #9a8d6c;
  --hair: rgba(255, 184, 0, 0.14);
  --fd: 'Unbounded', system-ui, sans-serif;
  --fb: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #0a0903; }

.container { width: min(1240px, 92%); margin: 0 auto; }
b { font-weight: 700; }

.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.gold { color: var(--gold); }

/* контурный текст */
.stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244, 236, 216, 0.75);
}

/* ---------- атмосфера ---------- */
#noir-canvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; }

.glow {
  position: fixed;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.14), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.4s;
}

.scrollbar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.7);
  z-index: 90;
}

/* ============================================================
   Шапка
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(10, 9, 3, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--hair);
}

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fd); font-weight: 300; font-size: 13px; letter-spacing: 0.22em;
  color: var(--ink); text-decoration: none;
}
.logo b { font-weight: 700; color: var(--gold); }

.logo__hex {
  width: 14px; height: 16px;
  background: linear-gradient(160deg, var(--gold-2), var(--gold-deep));
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  animation: hex-spin 6s linear infinite;
}
@keyframes hex-spin { to { transform: rotateY(360deg); } }

.nav { display: flex; gap: 30px; }
.nav a {
  color: var(--dim); text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.25s;
}
.nav a:hover { color: var(--gold); }

/* ============================================================
   Кнопки
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 38px; border-radius: 99px;
  font-family: var(--fd); font-weight: 500; font-size: 13px; letter-spacing: 0.06em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-3px); }
.btn .icon { width: 16px; height: 16px; }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold) 55%, #d99500 130%);
  color: #241800;
  box-shadow: 0 10px 34px rgba(255, 184, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.6);
}
.btn--gold:hover { box-shadow: 0 16px 46px rgba(255, 184, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.6); }

.btn--line { border: 1px solid rgba(244, 236, 216, 0.3); color: var(--ink); }
.btn--line:hover { border-color: var(--gold); color: var(--gold); }

.btn--sm { padding: 11px 24px; font-size: 11px; }
.btn--xl { padding: 22px 56px; font-size: 15px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: clamp(210px, 27vw, 420px) 0 100px;
  overflow: hidden;
}

.hero__hex {
  position: absolute; inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 0 56 16v32L28 64 0 48V16L28 0Zm0 64 28 16v17H0V80l28-16Z' fill='none' stroke='%23ffb800' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 97px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 25%, transparent 70%);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 4; width: 100%; }

/* фото-потёки: компактная кромка по верху, не фон */
.hero__drips {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: clamp(240px, 42vh, 440px);
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: screen;
  opacity: 0.95;
  pointer-events: none;
  z-index: 3;
  -webkit-mask-image: linear-gradient(180deg, #000 58%, transparent 97%);
  mask-image: linear-gradient(180deg, #000 58%, transparent 97%);
}

/* живая статистика */
.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6ee787;
  box-shadow: 0 0 8px rgba(110, 231, 135, 0.9);
  margin-right: 8px;
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse { 50% { opacity: 0.35; } }

.hero__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 34px;
}

/* потёки с верхней кромки: капли занимают верхнюю половину картинки,
   нижняя половина — чистый чёрный, растворяется сама */
.hero__drips {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 3;
}

/* --- гигантская типографика --- */
.hero__type {
  font-family: var(--fd);
  line-height: 0.98;
  margin-bottom: 44px;
}

.hero__line { display: block; }

.hero__line--ghost {
  font-weight: 200;
  font-size: clamp(58px, 10.5vw, 150px);
  letter-spacing: 0.14em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244, 236, 216, 0.55);
}

.hero__line--gold {
  position: relative;
  display: inline-block;
  font-weight: 800;
  font-size: clamp(64px, 12.5vw, 178px);
  letter-spacing: -0.01em;
  /* палитра подогнана под фото-потёки: тёмный янтарь → мёд → стеклянный блик */
  background: linear-gradient(100deg, #9c6200 0%, #e8981a 22%, #ffe3a1 40%, #f0a411 58%, #b26f00 85%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: liquid 7s linear infinite;
  filter: drop-shadow(0 12px 34px rgba(232, 152, 26, 0.3));
}

@keyframes liquid { to { background-position: 220% center; } }

/* капли под буквами */
.tdrip {
  position: absolute;
  top: 92%;
  width: 10px;
  background: linear-gradient(180deg, #c98a00, var(--gold));
  border-radius: 5px 5px 9px 9px;
  transform-origin: top center;
  animation: tdrip 4.6s ease-in-out infinite;
}
.tdrip::after {
  content: '';
  position: absolute; bottom: -7px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-2), var(--gold) 60%, #c98a00);
}
.tdrip--1 { left: 16%; height: 52px; }
.tdrip--2 { left: 52%; height: 84px; animation-delay: 1.4s; }
.tdrip--3 { left: 81%; height: 38px; animation-delay: 2.6s; }
@keyframes tdrip { 0%, 100% { transform: scaleY(0.66); } 50% { transform: scaleY(1.05); } }

.hero__sub {
  display: flex;
  gap: clamp(28px, 5vw, 80px);
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__lede { max-width: 520px; color: var(--dim); font-size: 16px; }
.hero__lede b { color: var(--ink); }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__stats {
  display: flex;
  border-top: 1px solid var(--hair);
  padding-top: 30px;
  gap: clamp(28px, 6vw, 90px);
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__n { font-family: var(--fd); font-weight: 600; font-size: clamp(20px, 2.2vw, 32px); color: var(--gold); }
.stat__l { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); }

.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 64px;
  background: rgba(244, 236, 216, 0.15);
  overflow: hidden;
  z-index: 4;
}
.hero__scroll span {
  position: absolute; top: -40%;
  width: 100%; height: 40%;
  background: var(--gold);
  animation: scroll-hint 1.8s ease-in-out infinite;
}
@keyframes scroll-hint { to { top: 110%; } }

/* ============================================================
   Двойная лента
   ============================================================ */
.band { position: relative; z-index: 5; transform: rotate(-1.2deg) scale(1.02); }

.band__row { overflow: hidden; }

.band__row--solid {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border-block: 1px solid #1a1403;
}
.band__row--solid span { color: #241800; }

.band__row--ghost { background: var(--bg); border-bottom: 1px solid var(--hair); }
.band__row--ghost span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 184, 0, 0.5);
}

.band__track { display: flex; white-space: nowrap; padding: 13px 0; animation: band 26s linear infinite; }
.band__track--rev { animation: band 32s linear infinite reverse; }

.band__track span {
  font-family: var(--fd);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.24em;
  padding-right: 16px;
}

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

/* ============================================================
   Секции
   ============================================================ */
.sec { position: relative; padding: clamp(100px, 12vw, 170px) 0; z-index: 4; }
.sec--line { border-top: 1px solid var(--hair); background: var(--bg-2); }

.sec__head { margin-bottom: clamp(50px, 6vw, 80px); }

.sec__tag {
  display: inline-block;
  font-family: var(--fd);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--hair);
  border-radius: 99px;
  padding: 9px 20px;
  margin-bottom: 26px;
}

.sec__title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(28px, 4.6vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* ============================================================
   Суть — поток
   ============================================================ */
.flow { border-top: 1px solid var(--hair); }

.flow__item {
  display: grid;
  grid-template-columns: 110px 1fr 60px;
  gap: 26px;
  align-items: center;
  padding: 38px 10px;
  border-bottom: 1px solid var(--hair);
  transition: background 0.35s, padding-left 0.35s;
}

.flow__item:hover { background: rgba(255, 184, 0, 0.04); padding-left: 26px; }

.flow__n {
  font-family: var(--fd);
  font-weight: 200;
  font-size: clamp(38px, 4.6vw, 64px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 184, 0, 0.55);
  line-height: 1;
  transition: color 0.35s;
}
.flow__item:hover .flow__n { color: var(--gold); -webkit-text-stroke-color: var(--gold); }

.flow__body h3 { font-family: var(--fd); font-weight: 600; font-size: 16px; margin-bottom: 8px; }
.flow__body p { color: var(--dim); font-size: 15px; max-width: 640px; }

.flow__ic { width: 30px; height: 30px; color: var(--gold); opacity: 0.55; justify-self: end; }
.flow__item:hover .flow__ic { opacity: 1; }

.note {
  margin-top: 40px;
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 20px;
  padding: 36px 40px 32px;
  position: relative;
  background: linear-gradient(140deg, rgba(255, 184, 0, 0.07), transparent 55%);
}
.note__tag {
  position: absolute; top: -13px; left: 30px;
  background: var(--gold);
  color: #241800;
  font-family: var(--fd); font-weight: 600; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 99px;
}
.note p { color: var(--dim); font-size: 15px; }
.note b { color: var(--ink); }

/* ============================================================
   Правила
   ============================================================ */
.rules {
  list-style: none;
  counter-reset: r;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}

.rules li {
  counter-increment: r;
  padding: 26px 28px 24px;
  border: 1px solid var(--hair);
  border-radius: 18px;
  color: rgba(244, 236, 216, 0.85);
  font-size: 14.5px;
  line-height: 1.6;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.rules li::before {
  content: '✕ ' counter(r, decimal-leading-zero);
  display: block;
  font-family: var(--fd);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 12px;
}

.rules li:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 184, 0, 0.45);
  background: rgba(255, 184, 0, 0.05);
}

/* ============================================================
   Преимущества
   ============================================================ */
.perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.perk {
  padding: 36px 30px;
  border: 1px solid var(--hair);
  border-radius: 20px;
  transition: transform 0.35s, border-color 0.35s, background 0.35s;
}

.perk:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 184, 0, 0.45);
  background: rgba(255, 184, 0, 0.04);
}

.perk .icon { width: 28px; height: 28px; color: var(--gold); margin-bottom: 20px; }

/* бейджи платёжных систем */
.pay { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.pay span {
  display: flex; align-items: center; gap: 6px;
  background: rgba(244, 236, 216, 0.95);
  border-radius: 8px;
  padding: 0 10px;
  height: 30px;
}
.pay img { height: 13px; width: auto; display: block; }
.pay em { font-style: normal; font-size: 10px; font-weight: 800; color: #26a17b; letter-spacing: 0.04em; }
.perk h3 { font-family: var(--fd); font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.perk p { color: var(--dim); font-size: 14.5px; }

/* ============================================================
   Доход — 3D-наклон
   ============================================================ */
.money {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
  perspective: 1200px;
}

.money__card {
  text-align: center;
  border: 1px solid var(--hair);
  border-radius: 26px;
  padding: 62px 40px;
  background: var(--bg);
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.3s;
}

.money__card--gold {
  background: linear-gradient(165deg, var(--gold-2) 0%, var(--gold) 45%, #cc8f00 100%);
  color: #241800;
  border: none;
  box-shadow: 0 34px 90px rgba(255, 184, 0, 0.25), inset 0 2px 4px rgba(255, 255, 255, 0.55);
}

.money__tag {
  display: block;
  font-family: var(--fd); font-weight: 500; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 22px;
}

.money__val {
  display: block;
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(46px, 5.6vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.money__card:not(.money__card--gold) .money__val { color: var(--gold); }
.money__val i { font-style: normal; font-weight: 300; }

.money__per { display: block; margin-top: 16px; font-size: 14px; opacity: 0.75; }

/* ============================================================
   Отзывы
   ============================================================ */
/* --- карусель отзывов --- */
.car { position: relative; }

.car__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 22px;
  scrollbar-width: none;
}
.car__track::-webkit-scrollbar { display: none; }

.rc {
  flex: 0 0 330px;
  scroll-snap-align: start;
  border: 1px solid var(--hair);
  border-radius: 20px;
  background: rgba(255, 184, 0, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.rc:hover { border-color: rgba(255, 184, 0, 0.4); transform: translateY(-4px); }

.rc--photo img { width: 100%; height: 430px; object-fit: cover; object-position: top; display: block; }
.rc--video video { width: 100%; height: 430px; object-fit: cover; background: #000; display: block; }

.rc__cap {
  padding: 14px 20px;
  font-family: var(--fd);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--hair);
}

.rc--text, .rc--voice { padding: 28px 26px 24px; justify-content: space-between; gap: 18px; min-height: 300px; }

.rc__q { width: 26px; height: 26px; color: var(--gold); opacity: 0.7; }

.rc__text {
  color: rgba(244, 236, 216, 0.88);
  font-size: 14.5px;
  line-height: 1.65;
}

.rc--combo { justify-content: flex-start; }
.rc--combo img { width: 100%; height: 240px; object-fit: cover; object-position: top; display: block; }
.rc--combo .rc__text { padding: 20px 24px 0; }
.rc--combo .rc__meta { padding: 16px 24px 22px; }

.rc__vlabel { color: var(--dim); font-size: 13px; }

.rc audio { width: 100%; height: 40px; filter: invert(0.92) hue-rotate(180deg) saturate(0.6); }

.rc__meta { display: flex; align-items: center; gap: 12px; margin-top: auto; }

.rc__ava {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--gold-2), var(--gold-deep));
  color: #241800;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.rc__meta b { display: block; font-size: 14px; color: var(--ink); }
.rc__meta i { display: block; font-style: normal; font-size: 12px; color: var(--gold); letter-spacing: 0.04em; }

.car__nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 6px; }

.car__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 184, 0, 0.3);
  background: transparent;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.car__btn:hover { background: rgba(255, 184, 0, 0.1); transform: translateY(-2px); }
.car__btn--prev .icon { transform: rotate(180deg); }
.car__btn .icon { width: 18px; height: 18px; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  padding: clamp(120px, 15vw, 220px) 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--hair);
}

.cta__bg {
  position: absolute; inset: 0;
  background: url('../img/comb-dark.jpg') center / cover no-repeat;
  opacity: 0.5;
}
.cta__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(10, 9, 3, 0.55), var(--bg) 92%);
}

/* мёд стекает на финальный призыв */
.cta__drips {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.cta__inner { position: relative; z-index: 2; }

.cta__tag {
  font-family: var(--fd); font-weight: 300; font-size: 13px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.cta__title {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(34px, 5.6vw, 72px);
  line-height: 1.08;
  margin-bottom: 40px;
}

.cta__note { margin-top: 28px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); }

/* ============================================================
   Футер
   ============================================================ */
.footer { border-top: 1px solid var(--hair); padding: 40px 0; position: relative; z-index: 4; }

.footer__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--fd); font-weight: 300; font-size: 11px; letter-spacing: 0.2em;
  color: var(--dim);
}
.footer__inner b { color: var(--gold); font-weight: 700; }
.footer__age { color: var(--gold); }
.footer a { color: var(--dim); }
.footer a:hover { color: var(--gold); }

/* ============================================================
   Появление
   ============================================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Адаптив
   ============================================================ */
@media (max-width: 900px) {
  .nav { display: none; }
  .flow__item { grid-template-columns: 64px 1fr; }
  .flow__ic { display: none; }
  .glow { display: none; }
}

@media (max-width: 640px) {
  .hero__cta .btn { width: 100%; }
  .band { transform: none; }
  .note { padding: 32px 22px 26px; }
}

/* анимации работают всегда — это промо-лендинг, движение обязательно */
