:root {
  --bg: #0b0d12;
  --bg-2: #131720;
  --panel: rgba(15, 19, 27, 0.88);
  --panel-2: rgba(22, 28, 39, 0.9);
  --line: rgba(255, 255, 255, 0.08);
  --gold: #d96152;
  --gold-2: #f08b73;
  --violet: #8a93a5;
  --violet-2: #c7d0dd;
  --red: #c94d43;
  --green: #5ea56d;
  --text: #eef2f7;
  --muted: #a7b1c0;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(201, 77, 67, 0.16) 0%, rgba(201, 77, 67, 0.06) 18%, transparent 40%),
    linear-gradient(180deg, #0f131b 0%, #0b0d12 56%, #090b10 100%);
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 77, 67, 0.12), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(240, 139, 115, 0.08), transparent 22%),
    radial-gradient(circle at 50% 88%, rgba(94, 165, 109, 0.06), transparent 20%);
}

.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.topbar,
.hero-grid,
.section,
.footer {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(180deg, #202735, #131923);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--gold-2);
  box-shadow: var(--shadow);
}

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

.link-btn,
.cta {
  text-decoration: none;
  transition: 180ms ease;
}

.link-btn {
  color: var(--muted);
  font-weight: 700;
  padding: 10px 12px;
}

.link-btn:hover { color: white; }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff7f4;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 30px rgba(201, 77, 67, 0.24);
}

.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.cta-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

.cta-large { padding: 14px 22px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: center;
  padding: 56px 0 72px;
}

.eyebrow,
.section-kicker,
.tag,
.raid-label,
.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
}

.eyebrow,
.section-kicker { color: var(--gold-2); }

h1, h2, h3 {
  font-family: Inter, system-ui, sans-serif;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 14px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 11ch;
}

.lead {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.7;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-points li::before {
  content: "✦";
  color: var(--gold);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  min-height: 580px;
}

.hero-stack {
  display: grid;
  gap: 16px;
}

.hero-card,
.feature-card,
.raid-card,
.coming-soon-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.hero-card img,
.raid-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main { min-height: 580px; }
.compact { min-height: 282px; }

.hero-card::after,
.raid-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,10,15,0.02), rgba(7,10,15,0.72));
}

.hero-card-overlay,
.raid-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 22px;
}

.hero-card-overlay h2 { font-size: 2rem; margin-top: 10px; }
.hero-card-overlay h3 { font-size: 1.3rem; margin-top: 10px; }
.hero-card-overlay p,
.raid-copy p,
.feature-card p,
.addon-copy p,
.coming-soon-panel p,
.section-title-wrap p { color: var(--muted); line-height: 1.65; }

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff6f3;
  background: linear-gradient(180deg, #e37a62, #c94d43);
}
.tag.amber { background: linear-gradient(180deg, #d36e59, #b8483e); }
.tag.green { background: linear-gradient(180deg, #7ab487, #4f8660); }

.section {
  padding: 78px 0;
}

.section-alt {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
}

.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

.section-title-wrap h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-top: 10px; }
.section-title-wrap.narrow { max-width: 680px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(23, 28, 38, 0.96), rgba(13, 17, 24, 0.98));
}

.feature-card .icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

.feature-card h3 { font-size: 1.4rem; margin-bottom: 10px; }

.raid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.raid-card {
  min-height: 360px;
}

.raid-card.wide {
  min-height: 420px;
}

.raid-label {
  color: var(--gold-2);
  margin-bottom: 10px;
}

.raid-copy h3 { font-size: 2rem; max-width: 14ch; }

.addon-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.addon-copy {
  padding-right: 24px;
}

.addon-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin: 12px 0 16px;
  max-width: 12ch;
}

.addon-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.addon-point {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(21, 26, 35, 0.92), rgba(13, 17, 24, 0.96));
}

.addon-point strong {
  display: block;
  color: white;
  margin-bottom: 6px;
}

.coming-soon-panel {
  padding: 28px;
  background: linear-gradient(180deg, rgba(23, 28, 38, 0.96), rgba(12, 16, 22, 0.98));
}

.coming-badge {
  color: #fff6f3;
  background: linear-gradient(180deg, #e37a62, #c94d43);
  padding: 7px 10px;
  border-radius: 999px;
}

.coming-soon-panel h3 {
  font-size: 2rem;
  margin-top: 16px;
}

.mock-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
}

.dot.tank { background: #4ba4ff; }
.dot.heal { background: #5ad96d; }
.dot.dps { background: #ff5e5e; }
.dot.note { background: #f0c168; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 26px 0 50px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.creator strong,
.footer strong { color: white; }

@media (max-width: 1100px) {
  .hero-grid,
  .addon-section,
  .feature-grid,
  .raid-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-card-main { min-height: 420px; }
  .compact { min-height: 240px; }
  .addon-copy { padding-right: 0; }
}

@media (max-width: 760px) {
  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions { width: 100%; }
  .nav-actions .cta,
  .nav-actions .link-btn { width: 100%; justify-content: center; }
  h1 { max-width: 100%; }
}
