:root {
  --midnight: #101018;
  --midnight-2: #17131d;
  --cream: #f8efe0;
  --ivory: #fff8ec;
  --muted: #b9aa97;
  --text: #fff7ea;
  --gold: #d8aa55;
  --gold-2: #f0cf87;
  --copper: #b66b46;
  --ruby: #4a1725;
  --line: rgba(240, 207, 135, 0.22);
  --glass: rgba(255, 248, 236, 0.08);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(216, 170, 85, 0.2), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(182, 107, 70, 0.18), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(74, 23, 37, 0.34), transparent 42%),
    linear-gradient(145deg, var(--midnight), var(--midnight-2));
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at top, black, transparent 76%);
}

a {
  color: var(--gold-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  padding: 38px 0 26px;
  text-align: center;
}

.logo-mark {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--gold-2), var(--gold), var(--copper));
  color: var(--midnight);
  font-weight: 950;
  font-size: 27px;
  box-shadow: 0 18px 40px rgba(216, 170, 85, 0.22);
  transform: rotate(45deg);
}

.logo-mark span {
  transform: rotate(-45deg);
}

.logo {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0.6px;
  font-weight: 900;
  background: linear-gradient(135deg, #fff3d6, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
}

.tagline {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.nav a {
  color: var(--cream);
  font-weight: 700;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  opacity: 0.88;
}

.nav a:hover {
  background: rgba(255, 248, 236, 0.08);
  border-color: var(--line);
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 44px auto 34px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.11), rgba(255, 248, 236, 0.035)),
    radial-gradient(circle at 86% 18%, rgba(216, 170, 85, 0.22), transparent 32%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(240, 207, 135, 0.16);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(216, 170, 85, 0.18), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(310px, 0.96fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 7px 14px;
  border: 1px solid rgba(240, 207, 135, 0.26);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(255, 248, 236, 0.06);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h2 {
  margin: 0 0 22px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.8px;
}

.hero p {
  max-width: 760px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-block;
  background: linear-gradient(135deg, #fff0bd, var(--gold-2), var(--gold), var(--copper));
  color: #171018;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(216, 170, 85, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 24px 52px rgba(216, 170, 85, 0.28);
}

.secondary-link {
  color: var(--cream);
  font-weight: 800;
  opacity: 0.86;
}

.wheel-stage {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.wheel-stage::before {
  content: "";
  position: absolute;
  width: 96%;
  height: 96%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 170, 85, 0.28), transparent 62%);
  filter: blur(14px);
}

.wheel-rim {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(240, 207, 135, 0.22);
  box-shadow: inset 0 0 40px rgba(216, 170, 85, 0.06);
}

.wheel {
  position: relative;
  width: 84%;
  height: 84%;
  border-radius: 50%;
  border: 13px solid rgba(255, 248, 236, 0.92);
  background:
    conic-gradient(
      from -15deg,
      #4a1725 0 40deg,
      #d8aa55 40deg 80deg,
      #1d1722 80deg 120deg,
      #f0cf87 120deg 160deg,
      #b66b46 160deg 200deg,
      #4a1725 200deg 240deg,
      #d8aa55 240deg 280deg,
      #1d1722 280deg 320deg,
      #f0cf87 320deg 360deg
    );
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.3),
    inset 0 0 0 2px rgba(216, 170, 85, 0.55);
  animation: premiumSpin 22s linear infinite;
}

.wheel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 248, 236, 0.55);
}

.wheel span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 0 0 4px rgba(216, 170, 85, 0.28), 0 0 18px rgba(255, 248, 236, 0.4);
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
}

.wheel span:nth-child(1) { transform: rotate(0deg) translate(0, -136px); }
.wheel span:nth-child(2) { transform: rotate(45deg) translate(0, -136px); }
.wheel span:nth-child(3) { transform: rotate(90deg) translate(0, -136px); }
.wheel span:nth-child(4) { transform: rotate(135deg) translate(0, -136px); }
.wheel span:nth-child(5) { transform: rotate(180deg) translate(0, -136px); }
.wheel span:nth-child(6) { transform: rotate(225deg) translate(0, -136px); }
.wheel span:nth-child(7) { transform: rotate(270deg) translate(0, -136px); }
.wheel span:nth-child(8) { transform: rotate(315deg) translate(0, -136px); }

.wheel-center {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff7dc, var(--gold-2));
  border: 7px solid rgba(74, 23, 37, 0.92);
  display: grid;
  place-items: center;
  color: var(--ruby);
  font-size: 44px;
  font-weight: 950;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

.wheel-pointer {
  position: absolute;
  top: 3%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 38px solid var(--gold-2);
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.28));
  z-index: 4;
}

@keyframes premiumSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 34px 0 72px;
}

.card {
  min-height: 205px;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 236, 0.075);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(216, 170, 85, 0.14);
  color: var(--gold-2);
  border: 1px solid var(--line);
  font-weight: 900;
}

.card h3 {
  margin: 0 0 14px;
  color: var(--cream);
  font-size: 23px;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.content {
  margin: 46px auto 72px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 236, 0.075);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.content h2 {
  margin-top: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
}

.content h3 {
  margin-top: 34px;
  color: var(--gold-2);
}

.content p,
.content li {
  color: var(--muted);
  font-size: 17px;
}

.content ul {
  padding-left: 22px;
}

.contact-box {
  background: rgba(255, 248, 236, 0.07);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  margin-top: 24px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 42px;
  text-align: center;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-links a {
  font-weight: 800;
}

@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .actions {
    justify-content: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .wheel-stage {
    width: min(330px, 88vw);
  }
}

@media (max-width: 800px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }
}