:root {
  --bg: #070605;
  --bg-2: #100e0c;
  --ink: #f7f2eb;
  --muted: #9e958a;
  --line: rgba(247, 242, 235, 0.1);
  --fire: #ff5a1f;
  --fire-2: #ff8a3d;
  --gold: #e8c39e;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", system-ui, sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 85% -10%, rgba(255, 90, 31, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 60%, rgba(232, 195, 158, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 30% at 50% 100%, rgba(255, 138, 61, 0.1), transparent 45%),
    linear-gradient(180deg, #070605, #0d0b09 40%, #070605);
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.narrow { width: min(100% - 40px, 700px); }

a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 800; }

/* HEADER */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 6, 5, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 6, 5, 0.82);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
}
.brand span {
  margin-left: 0.35em;
  color: var(--fire);
  font-weight: 500;
  font-size: 0.75em;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s;
}
.btn--sm { min-height: 40px; padding: 0 18px; font-size: 0.9rem; }
.btn--fire {
  color: #1a0c05;
  background: linear-gradient(135deg, var(--fire), var(--fire-2));
  box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.4);
  animation: pulse 2.8s ease-in-out infinite;
}
.btn--fire:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 12px 40px rgba(255, 90, 31, 0.35);
  animation: none;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--full { width: 100%; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(255, 90, 31, 0); }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: 120px 0 72px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 22%;
  transform: scale(1.05);
  animation: ken 18s ease-in-out infinite alternate;
}
@keyframes ken {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.12) translate(-2%, 1%); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7,6,5,0.96) 0%, rgba(7,6,5,0.78) 40%, rgba(7,6,5,0.25) 100%),
    linear-gradient(180deg, rgba(7,6,5,0.15) 0%, rgba(7,6,5,0.9) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  animation: rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

.pill {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 138, 61, 0.45);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fire-2);
  background: rgba(255, 90, 31, 0.08);
}

.hero__title {
  margin: 0 0 22px;
  font-family: var(--display);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hero__title-soft {
  display: block;
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.hero__title-hard {
  display: block;
  font-size: clamp(3.2rem, 11vw, 6rem);
  font-weight: 700;
  background: linear-gradient(180deg, #fff 20%, #ffc9a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 0 32px;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: #ebe3d8;
  max-width: 28em;
}
.hero__cta { display: grid; gap: 12px; justify-items: start; }
.hero__micro {
  font-size: 0.88rem;
  color: var(--muted);
}

/* MARQUEE */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(16, 14, 12, 0.9);
  padding: 18px 0;
}
.marquee--pain {
  background: rgba(12, 10, 8, 0.95);
}
.marquee--fire {
  background: linear-gradient(90deg, rgba(255, 90, 31, 0.18), rgba(255, 138, 61, 0.08));
  border-color: rgba(255, 90, 31, 0.25);
}
.marquee__track {
  display: flex;
  gap: 28px;
  width: max-content;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  animation: scroll 32s linear infinite;
  color: #ebe3d8;
}
.marquee--fire .marquee__track { color: #fff; }
.marquee__track--rev { animation-direction: reverse; animation-duration: 38s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.section--tight { padding: 72px 0 40px; }
.section--offer { padding-top: 80px; }
.section--axis {
  background: rgba(16, 14, 12, 0.65);
  border-block: 1px solid var(--line);
}
.section--apply {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 90, 31, 0.14), transparent 60%),
    rgba(12, 10, 8, 0.9);
  border-top: 1px solid var(--line);
}

.kicker {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fire-2);
}

.display {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.display--sm { font-size: clamp(1.5rem, 4vw, 2.2rem); }
.display em {
  font-style: normal;
  color: var(--fire-2);
}

.body-lg {
  margin: 0;
  font-size: 1.15rem;
  color: #e5ddd2;
  max-width: 36em;
}

/* PAIN */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.pain-item {
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  transition: border-color 0.3s, transform 0.3s;
}
.pain-item:hover {
  border-color: rgba(255, 90, 31, 0.45);
  transform: translateY(-3px);
}
.pain-item__n {
  display: block;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--fire);
}
.pain-item h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.pain-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* OFFER */
.offer-head { max-width: 720px; margin-bottom: 40px; }
.offer-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.offer-card {
  padding: 32px 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(7, 6, 5, 0.55);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--fire), transparent);
}
.offer-card__label {
  display: block;
  margin-bottom: 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fire-2);
}
.offer-card h3 { margin: 0 0 12px; font-size: 1.35rem; }
.offer-card p { margin: 0; color: var(--muted); }

/* AXIS */
.axis-list { display: grid; gap: 18px; margin-top: 28px; }
.axis-list li {
  padding: 18px 0 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.15rem;
  color: #ebe3d8;
}
.axis-list strong { color: #fff; }

/* RESULT */
.result-panel {
  padding: clamp(36px, 6vw, 64px);
  border-radius: 28px;
  border: 1px solid rgba(255, 90, 31, 0.35);
  background:
    linear-gradient(145deg, rgba(255, 90, 31, 0.16), rgba(255, 138, 61, 0.04));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.result-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 36px;
}
.result-list li {
  position: relative;
  padding-left: 1.6em;
  font-size: 1.08rem;
}
.result-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--fire-2);
  font-weight: 800;
}

/* SPLIT / WHO */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.check-list { display: grid; gap: 14px; margin-top: 24px; }
.check-list li {
  position: relative;
  padding-left: 1.5em;
  color: #ebe3d8;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--fire-2);
  font-weight: 800;
}
.check-list--mute li { color: var(--muted); }
.check-list--mute li::before {
  content: "✕";
  color: #8a6a5a;
}
.no-box {
  padding: 28px;
  border-radius: 22px;
  border: 1px dashed var(--line);
  background: rgba(255,255,255,0.02);
}

/* REVIEWS */
.section--reviews { padding-bottom: 64px; }
.inline-link {
  color: var(--fire-2);
  border-bottom: 1px solid rgba(255, 138, 61, 0.4);
}
.inline-link:hover { border-color: var(--fire-2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.review {
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 90, 31, 0.08), rgba(255,255,255,0.02));
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}
.review:hover {
  border-color: rgba(255, 90, 31, 0.45);
  transform: translateY(-3px);
}
.review__quote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
  color: #f0e8de;
}
.review__meta {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews-cta { margin-top: 32px; }

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.about__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.about__visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 12%;
}
.about__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 6, 5, 0.75);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid var(--line);
  color: var(--ink);
}
.about__badge:hover { border-color: rgba(255, 90, 31, 0.55); color: var(--fire-2); }
.muted { color: var(--muted); margin: 16px 0 0; }

/* FORM */
.apply-head { margin-bottom: 32px; }
.form { display: grid; gap: 16px; }
.form label { display: grid; gap: 8px; }
.form span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form input,
.form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form input:focus,
.form textarea:focus {
  border-color: rgba(255, 90, 31, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12);
}
.form input.is-error,
.form textarea.is-error { border-color: #d94848; }
.form__hint, .form__ok {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}
.form__ok { color: var(--fire-2); }

/* FOOTER + FLOAT */
.footer {
  position: relative;
  z-index: 1;
  padding: 28px 0 100px;
  border-top: 1px solid var(--line);
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer a:hover { color: var(--fire-2); }

.float-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  align-items: center;
  font-weight: 800;
  color: #1a0c05;
  background: linear-gradient(135deg, var(--fire), var(--fire-2));
  box-shadow: 0 10px 30px rgba(255, 90, 31, 0.4);
}
.float-cta.is-on { display: inline-flex; }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .pain-grid,
  .offer-strip,
  .split,
  .about,
  .reviews-grid { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; }
  .hero__bg img { object-position: 50% 18%; }
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(7,6,5,0.4) 0%, rgba(7,6,5,0.92) 55%, #070605 100%),
      linear-gradient(90deg, rgba(7,6,5,0.6), transparent 70%);
  }
  .about__visual img { max-height: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg img,
  .marquee__track,
  .btn--fire,
  .hero__inner { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
