:root {
  --black: #111111;
  --charcoal: #1b1b1b;
  --yellow: #f4b400;
  --white: #f3efe7;
  --warm: #e8d8bd;
}

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

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--black);
  color: var(--white);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.55), rgba(0,0,0,.78)),
    url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=2400&q=85") center/cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(244,180,0,.18), transparent 28%),
    radial-gradient(circle at 80% 65%, rgba(244,180,0,.12), transparent 30%);
  pointer-events: none;
}

.topbar {
  position: absolute;
  top: 28px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.brand-small {
  font-family: "Anton", Impact, sans-serif;
  font-size: 42px;
  letter-spacing: 2px;
  color: var(--white);
  text-shadow: 0 0 18px rgba(244,180,0,.45);
}

.tag-small {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 800;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  text-align: center;
  padding: 64px 24px;
}

.eyebrow {
  display: inline-block;
  border: 1px solid rgba(244,180,0,.75);
  color: var(--yellow);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 22px;
  background: rgba(0,0,0,.45);
}

h1 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(88px, 15vw, 190px);
  line-height: .82;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 28px rgba(244,180,0,.38);
}

h1 span {
  display: block;
  margin-top: 18px;
  font-size: clamp(36px, 6vw, 74px);
  letter-spacing: 3px;
}

.subtitle {
  margin: 28px 0 12px;
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: clamp(15px, 2vw, 22px);
}

.coming-soon {
  margin: 26px auto;
  width: fit-content;
  padding: 16px 34px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(22px, 4vw, 40px);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(244,180,0,.35);
}

.description {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
  color: rgba(243,239,231,.92);
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 34px auto;
}

.highlights span {
  border: 1px solid rgba(243,239,231,.28);
  background: rgba(0,0,0,.45);
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn.primary { background: var(--yellow); color: var(--black); }
.btn.secondary { border: 1px solid var(--yellow); color: var(--yellow); background: rgba(0,0,0,.35); }

.concept {
  padding: 76px 28px;
  background: linear-gradient(180deg, #111, #191919);
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-title p {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
}

.section-title h2 {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cards {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(244,180,0,.25);
  padding: 28px;
  border-radius: 18px;
  min-height: 210px;
}

.card h3 {
  margin: 0 0 12px;
  color: var(--yellow);
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 1px;
  font-size: 32px;
  text-transform: uppercase;
}

.card p {
  margin: 0;
  line-height: 1.6;
  color: rgba(243,239,231,.86);
  font-size: 16px;
}

footer {
  padding: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: #080808;
  color: rgba(243,239,231,.72);
  font-size: 14px;
}

@media (max-width: 820px) {
  .topbar { align-items: flex-start; flex-direction: column; gap: 6px; }
  .hero { padding: 24px 18px; }
  .hero-content { padding-top: 110px; }
  .cards { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}
