@font-face {
  font-family: 'Gros Ventre';
  src: url('fonts/Gros Ventre Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gros Ventre';
  src: url('fonts/Gros Ventre Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gros Ventre';
  src: url('fonts/Gros Ventre Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gros Ventre';
  src: url('fonts/Gros Ventre Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gros Ventre';
  src: url('fonts/Gros Ventre Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --vh-fix: 100vh;
  --yellow: #FFE600;
  --dark: #0A0A0A;
  --black: #000000;
  --white: #F5F5F0;
  --pure-white: #FFFFFF;
  --gray: #555555;
  --light-gray: #999999;
  --mid-gray: #AAAAAA;
  --card-bg: #151515;
  --border: #222222;
  --green: #00AE00;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Golos Text', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, label {
  font-family: 'Gros Ventre', sans-serif;
  text-transform: uppercase;
}

/* ─── MARQUEE ─── */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}
.marquee--top {
  background: var(--yellow);
  border-bottom: 1px solid var(--black);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  mix-blend-mode: difference;
  transition: opacity 0.4s ease;
}
.marquee--top.stuck {
  position: absolute;
  top: auto;
  bottom: 0;
}
.marquee__track {
  display: inline-flex;
  animation: marquee-scroll 35s linear infinite;
  will-change: transform;
}
.marquee__text {
  white-space: nowrap;
  padding: 0 20px;
}
.marquee--top .marquee__text {
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--dark);
  text-transform: uppercase;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: var(--vh-fix);
  min-height: 600px;
  overflow: visible;
}
.hero__image {
  position: absolute;
  top: 45%;
  right: 50%;
  height: 90%;
  width: auto;
  transform: translateY(-50%);
  object-fit: contain;
  z-index: 1;
}
.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.hero__title {
  line-height: 1;
}
.hero__title-line {
  display: block;
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 8vw, 116px);
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}
.hero__title-line--dim { color: var(--white); }
.hero__title-line--bright { color: var(--pure-white); }
.desc-text {
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--mid-gray);
}
.hero__body {
  max-width: 473px;
  margin-top: 40px;
}
.hero__cta {
  display: inline-block;
  margin-top: 32px;
  padding: 22px 56px 20px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.hero__cta:hover {
  background: var(--pure-white);
}

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.3s, color 0.3s;
  text-decoration: none;
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 22px 56px 20px;
  font-size: 18px;
}
.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta.inverted {
  background: var(--black);
  color: var(--yellow);
}
.sticky-cta--desktop {
  bottom: 32px;
  right: 32px;
}
.sticky-cta--mobile {
  display: none;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: center;
  padding: 22px 20px 20px;
}

/* ─── DIVIDER ─── */
.divider {
  display: flex;
  justify-content: center;
}
.divider__line {
  width: 60px;
  height: 2px;
  background: var(--border);
}

/* ─── Ё EYES ─── */
.yo-letter {
  position: relative;
  display: inline-block;
}
.yo-eye {
  position: absolute;
  width: 0.22em;
  height: 0.22em;
  background: var(--pure-white);
  border-radius: 50%;
  top: -0.19em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.yo-eye--left {
  left: 0.1em;
}
.yo-eye--right {
  right: 0.1em;
}
.yo-pupil {
  width: 0.12em;
  height: 0.12em;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  transition: transform 0.08s ease-out;
}

/* ─── HOOKS ─── */
.hooks {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0 0;
}
.hook {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.hook__title {
  text-align: center;
}
.hook__line1 {
  display: block;
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 3vw, 26px);
  letter-spacing: -0.5px;
  line-height: 1.3;
  color: var(--white);
  text-transform: uppercase;
}
.hook__line2 {
  display: block;
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 26px);
  letter-spacing: -0.5px;
  line-height: 1.3;
  color: var(--pure-white);
  text-transform: uppercase;
}
.hook__sub {
  text-align: center;
}

/* ─── BENEFITS ─── */
.benefits {
  max-width: 900px;
  margin: 0 auto;
  padding: 200px 0 0;
  text-align: center;
}
.benefits__title {
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--yellow);
}
.benefits__grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 40px;
}
.benefits__row {
  display: flex;
  gap: 3px;
}
.benefits__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 28px 24px;
  background: var(--card-bg);
}
.benefits__card--accent {
  background: var(--green);
  align-items: center;
}
.benefits__card-title {
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 34px);
  color: var(--pure-white);
  text-align: left;
}
.benefits__card--accent .benefits__card-title {
  font-size: clamp(26px, 4.5vw, 39px);
  text-align: left;
}
.benefits__card-desc {
  text-align: left;
}

/* ─── SCENE ─── */
.scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 220px 24px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ember {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0;
  pointer-events: none;
  animation: ember-rise linear infinite;
}
.ember:nth-child(2) { width: 3px; height: 3px; background: #FF6600; left: 12%; animation-duration: 4.5s; animation-delay: 0.3s; }
.ember:nth-child(3) { width: 5px; height: 5px; background: #FF3300; left: 25%; animation-duration: 5.2s; animation-delay: 1.1s; }
.ember:nth-child(4) { width: 3px; height: 3px; background: #FFAA00; left: 38%; animation-duration: 4s; animation-delay: 0.7s; }
.ember:nth-child(5) { width: 4px; height: 4px; background: var(--yellow); left: 50%; animation-duration: 5.5s; animation-delay: 2s; }
.ember:nth-child(6) { width: 3px; height: 3px; background: #FF6600; left: 62%; animation-duration: 4.8s; animation-delay: 0.5s; }
.ember:nth-child(7) { width: 5px; height: 5px; background: #FF3300; left: 75%; animation-duration: 5s; animation-delay: 1.5s; }
.ember:nth-child(8) { width: 2px; height: 2px; background: #FFAA00; left: 85%; animation-duration: 4.3s; animation-delay: 0.9s; }
.ember:nth-child(9) { width: 4px; height: 4px; background: var(--yellow); left: 18%; animation-duration: 5.8s; animation-delay: 2.3s; }
.ember:nth-child(10) { width: 3px; height: 3px; background: #FF6600; left: 70%; animation-duration: 4.6s; animation-delay: 1.8s; }
.ember:nth-child(11) { width: 2px; height: 2px; background: #FF3300; left: 45%; animation-duration: 5.3s; animation-delay: 0.2s; }
.ember:nth-child(12) { width: 4px; height: 4px; background: #FFAA00; left: 30%; animation-duration: 4.9s; animation-delay: 1.3s; }
@keyframes ember-rise {
  0% { bottom: -10px; opacity: 0; transform: translateX(0); }
  10% { opacity: 0.8; }
  50% { opacity: 0.6; transform: translateX(20px); }
  80% { opacity: 0.3; transform: translateX(-15px); }
  100% { bottom: 100%; opacity: 0; transform: translateX(10px); }
}
.scene__title {
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--yellow);
}

/* ─── BURNING (тостер) ─── */
.burning {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: visible;
}
.burning__visuals {
  display: flex;
  justify-content: center;
  padding: 0 24px;
}
.burning__pan {
  width: 100%;
  max-width: 1215px;
  height: auto;
  object-fit: contain;
}
.burning__text {
  text-align: center;
  padding: 60px 0 0;
  z-index: 3;
  position: relative;
}
.burning__line1 {
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 10vw, 123px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--pure-white);
  text-transform: uppercase;
}
.burning__line2 {
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 10vw, 123px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--yellow);
  text-transform: uppercase;
}
.burning__after {
  text-align: center;
  padding: 20px 0 120px;
  position: relative;
  z-index: 3;
}

/* ─── RESPONSE ─── */
.response {
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 160px 24px 80px;
}
.response__text {
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 10vw, 138px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--black);
  text-align: center;
  max-width: 1364px;
}

/* ─── CTA ─── */
.cta {
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  margin-top: -1px;
}
.cta__images {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cta__box {
  width: clamp(200px, 30vw, 424px);
  height: auto;
  object-fit: contain;
}
.cta__match {
  width: clamp(170px, 26vw, 370px);
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.cta__match:hover {
  transform: rotate(-90deg) translateY(40px);
}

/* ─── FORM ─── */
.form-section {
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: var(--vh-fix);
  padding: 0 24px;
  cursor: url('img/match-cursor.png') 4 28, auto;
}
.form-inner {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 56px 0;
}
.form-inner__title {
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--pure-white);
  text-align: center;
}
.form-inner__sub {
  text-align: center;
  padding: 8px 0 40px;
}
.form-group {
  width: 100%;
  max-width: 100%;
  padding-bottom: 28px;
}
.form-group__label {
  display: block;
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--pure-white);
  margin-bottom: 13px;
  text-transform: none;
}
.form-group__input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid transparent;
  border-radius: 0;
  color: var(--pure-white);
  font-family: 'Golos Text', sans-serif;
  font-weight: 600;
  font-size: 17px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group__input::placeholder {
  font-family: 'Golos Text', sans-serif;
  font-weight: 500;
  color: var(--pure-white);
  opacity: 0.5;
}
.form-group__input:-webkit-autofill,
.form-group__input:-webkit-autofill:hover,
.form-group__input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(30, 30, 30, 1) inset;
  -webkit-text-fill-color: var(--pure-white);
  transition: background-color 5000s ease-in-out 0s;
}
.form-group__input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.15);
}
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 22px 56px 20px;
  background: var(--pure-white);
  color: var(--black);
  font-family: 'Gros Ventre', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.submit-btn:hover {
  background: var(--yellow);
}

/* ─── REVEAL ANIMATION ─── */
.reveal-line {
  overflow: visible;
  clip-path: polygon(-5% -30%, 105% -30%, 105% 100%, -5% 100%);
  display: block;
  padding: 0;
}
.reveal-line > * {
  display: block;
  transform: translateY(110%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: inherit;
}
.reveal-line.revealed > * {
  transform: translateY(0);
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px;
  }
  .hero__image {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero__content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    text-align: center;
    margin-top: 24px;
  }
  .hero__body {
    max-width: 100%;
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
  }

  .hooks {
    padding: 60px 20px 60px;
  }
  .hook {
    padding: 20px 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .benefits {
    padding: 60px 20px 60px;
  }
  .benefits__row {
    flex-direction: column;
  }

  .scene {
    min-height: 250px;
    padding: 60px 20px;
  }

  .burning__visuals {
    padding: 0 20px;
  }
  .burning__pan {
    max-width: 100%;
  }
  .burning__text {
    padding: 60px 20px 0;
  }
  .burning__after {
    padding: 20px 20px 60px;
  }

  .response {
    min-height: 300px;
    padding: 60px 20px;
  }

  .cta {
    padding: 20px 20px;
  }
  .cta__images {
    gap: 0;
    flex-wrap: nowrap;
    overflow: visible;
  }

  .form-section {
    padding: 60px 20px;
    min-height: var(--vh-fix);
  }
  .form-inner {
    padding: 0;
    max-width: 100%;
  }
  .form-group {
    max-width: 100%;
  }
  .yo-eye { display: none; }
  .hero__cta {
    display: block;
    text-align: center;
  }
  .sticky-cta--desktop { display: none; }
  .sticky-cta--mobile { display: block; }
}
