:root {
  --text: #fff6ef;
  --muted: rgba(255, 241, 233, 0.74);
  --soft: rgba(255, 255, 255, 0.9);
  --accent: #ff2418;
  --accent-soft: rgba(255, 54, 30, 0.2);
  --shadow: rgba(0, 0, 0, 0.65);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Onest", sans-serif;
  color: var(--text);
  background: #09010f;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  background:
    radial-gradient(circle at center, rgba(18, 6, 24, 0.04), rgba(6, 1, 10, 0.62)),
    url("assets/background.png") center center / cover no-repeat;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 1, 10, 0.48) 0%, rgba(6, 1, 10, 0.12) 36%, rgba(6, 1, 10, 0.12) 64%, rgba(6, 1, 10, 0.48) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 84%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  text-align: center;
  padding: 28px 28px 34px;
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(100%, 520px);
  height: 100%;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(18, 8, 24, 0.24), rgba(10, 3, 14, 0.38)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.04), transparent 46%);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
  z-index: -1;
}

.hero__content::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  z-index: -2;
  pointer-events: none;
}

.hero__logo {
  display: block;
  width: fit-content;
  margin: 0 auto 36px;
  font-family: "Lobster", cursive;
  font-size: clamp(3.2rem, 8vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #fffdfa;
  text-shadow:
    0 10px 24px rgba(0, 0, 0, 0.4),
    0 0 18px rgba(255, 255, 255, 0.08);
}

.hero__eyebrow {
  position: relative;
  margin: 20px auto 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: var(--muted);
}

.hero__eyebrow::before {
  content: "";
  width: 76px;
  height: 1px;
  margin-bottom: 2px;
  background: linear-gradient(90deg, rgba(255, 129, 88, 0), rgba(255, 129, 88, 0.9), rgba(255, 129, 88, 0));
}

.hero__eyebrow-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 184, 163, 0.92);
}

.hero__eyebrow-copy {
  font-size: clamp(0.82rem, 1.05vw, 0.96rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__eyebrow-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 124, 84, 0.26);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(53, 12, 18, 0.52), rgba(26, 7, 10, 0.3)),
    radial-gradient(circle at center, rgba(255, 110, 72, 0.12), transparent 74%);
  color: #fff1e8;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-shadow: 0 0 16px rgba(255, 86, 51, 0.18);
}

.hero__title {
  margin: 0 auto;
  max-width: 23ch;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.9rem, 3.25vw, 3.3rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--soft);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  min-width: 164px;
  min-height: 46px;
  padding: 12px 30px;
  border-radius: 6px;
  color: #fffdf8;
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  background: var(--accent);
  box-shadow:
    0 10px 24px rgba(255, 36, 24, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.hero__button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(255, 36, 24, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  filter: brightness(1.04);
}

.hero__button:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .hero {
    padding: 18px 14px;
    background-position: 28% center;
  }

  .hero__backdrop {
    background:
      linear-gradient(180deg, rgba(8, 1, 13, 0.48) 0%, rgba(8, 1, 13, 0.2) 35%, rgba(8, 1, 13, 0.56) 100%),
      radial-gradient(circle at center, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.4) 82%);
  }

  .hero__content {
    width: min(100%, 560px);
    padding: 18px 14px 26px;
  }

  .hero__content::before {
    width: 100%;
    border-radius: 22px;
  }

  .hero__eyebrow {
    margin-top: 14px;
    gap: 7px;
  }

  .hero__eyebrow-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero__eyebrow-copy {
    font-size: 0.74rem;
  }

  .hero__eyebrow-highlight {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  .hero__title {
    max-width: 17ch;
    font-size: clamp(1.7rem, 8vw, 2.45rem);
    line-height: 1.15;
  }

  .hero__logo {
    margin-bottom: 28px;
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .hero__button {
    min-width: 132px;
  }
}
