:root {
  color-scheme: dark;
  --bg: #0b1110;
  --panel: #121b18;
  --panel-2: #17231f;
  --text: #f4f1e8;
  --muted: #b6b7a8;
  --line: rgba(244, 241, 232, 0.14);
  --gold: #f0b84b;
  --green: #63c178;
  --red: #e06b5f;
  --cyan: #73c7d3;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(11, 17, 16, 0.68);
  border-bottom: 1px solid rgba(244, 241, 232, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(240, 184, 75, 0.5);
  background: rgba(240, 184, 75, 0.16);
  color: var(--gold);
  font-size: 13px;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(244, 241, 232, 0.82);
  font-size: 14px;
}

.nav a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 5vw, 72px) 88px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 10, 0.88) 0%, rgba(8, 12, 10, 0.67) 43%, rgba(8, 12, 10, 0.24) 100%),
    linear-gradient(0deg, #0b1110 0%, rgba(11, 17, 16, 0) 34%),
    rgba(0, 0, 0, 0.12);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 9vw, 124px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.15;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(244, 241, 232, 0.9);
  font-size: clamp(18px, 2vw, 24px);
}

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

.copy-ip,
.button {
  min-height: 58px;
  border: 1px solid rgba(240, 184, 75, 0.38);
  border-radius: 8px;
  background: var(--gold);
  color: #17120a;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.copy-ip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: min(100%, 270px);
  padding: 10px 18px;
  text-align: left;
}

.copy-label {
  color: rgba(23, 18, 10, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.copy-ip strong {
  font-size: 20px;
  line-height: 1.2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-weight: 800;
}

.secondary {
  background: rgba(244, 241, 232, 0.1);
  color: var(--text);
  border-color: rgba(244, 241, 232, 0.2);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: -1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-strip div {
  padding: 22px clamp(18px, 5vw, 72px);
  background: #0f1714;
}

.status-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.status-strip strong {
  display: block;
  margin-top: 3px;
  font-size: 22px;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.section-title {
  max-width: 760px;
}

.section-title p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
}

.intro-grid,
.rules-grid,
.plans {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

article,
.price-board {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border-radius: 8px;
}

article {
  padding: 24px;
}

article p,
li {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: #101815;
}

.price-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.price-board div {
  min-height: 92px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-board span {
  display: block;
  color: var(--muted);
}

.price-board strong {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 24px;
}

.rules-grid,
.plans {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rules ul {
  margin: 0;
  padding-left: 20px;
}

.allow {
  border-color: rgba(99, 193, 120, 0.3);
}

.deny {
  border-color: rgba(224, 107, 95, 0.32);
}

.donate {
  background: #0f1614;
}

.plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured {
  border-color: rgba(240, 184, 75, 0.52);
  box-shadow: 0 0 0 1px rgba(240, 184, 75, 0.12);
}

.price {
  margin: 6px 0 8px;
  color: var(--gold);
  font-size: 34px;
  font-weight: 900;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 72px);
  background: linear-gradient(90deg, #18251f, #101815);
  border-top: 1px solid var(--line);
}

.cta h2 {
  max-width: 820px;
}

.compact {
  flex: 0 0 auto;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 30;
  transform: translate(-50%, 18px);
  padding: 12px 16px;
  border: 1px solid rgba(99, 193, 120, 0.35);
  border-radius: 8px;
  background: rgba(18, 27, 24, 0.94);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding-top: 110px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 12, 10, 0.88), rgba(8, 12, 10, 0.58)),
      linear-gradient(0deg, #0b1110 0%, rgba(11, 17, 16, 0) 34%);
  }

  .status-strip,
  .intro-grid,
  .split,
  .rules-grid,
  .plans {
    grid-template-columns: 1fr;
  }

  .status-strip div {
    padding: 18px;
  }

  .cta,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: 82svh;
    padding: 94px 16px 62px;
  }

  .hero-bg {
    background-position: 63% center;
  }

  .hero-actions,
  .copy-ip,
  .button {
    width: 100%;
  }

  .button {
    min-height: 54px;
  }

  .section {
    padding: 58px 16px;
  }

  article {
    padding: 20px;
  }

  .price-board {
    grid-template-columns: 1fr;
  }

  .price-board div {
    min-height: 78px;
  }

  .copy-ip strong {
    font-size: 18px;
  }
}
