:root {
  --ink: #f2f8f2;
  --muted: #9fb2ab;
  --paper: #050706;
  --surface: #0f1513;
  --surface-2: #101b17;
  --line: #23332e;
  --forest: #78f0a7;
  --leaf: #43c97d;
  --mint: #12281f;
  --gold: #f4b944;
  --clay: #d47b54;
  --night: #030504;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(120, 240, 167, 0.13), transparent 27%),
    radial-gradient(circle at 86% 22%, rgba(244, 185, 68, 0.1), transparent 26%),
    radial-gradient(circle at bottom right, rgba(67, 201, 125, 0.11), transparent 34%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

a {
  color: var(--forest);
}

.one-page {
  min-height: 100vh;
  padding: clamp(10px, 2vw, 20px);
}

.mini-site {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.mini-header,
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(223, 215, 197, 0.78);
  border-radius: 14px;
  border-color: rgba(120, 240, 167, 0.16);
  background: rgba(15, 21, 19, 0.82);
  backdrop-filter: blur(12px);
}

.site-header {
  margin: 0;
  border-radius: 0;
  border-width: 0 0 1px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #07110d;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 0 24px rgba(120, 240, 167, 0.28), inset 0 -10px 24px rgba(0, 0, 0, 0.15);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap;
}

.nav .discord-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  color: #06100b;
  border: 1px solid rgba(120, 240, 167, 0.7);
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  box-shadow: 0 0 24px rgba(120, 240, 167, 0.16);
  font-weight: 900;
}

.nav a:hover {
  background: rgba(120, 240, 167, 0.12);
}

.nav .discord-button:hover {
  background: linear-gradient(135deg, #9cffbf, var(--leaf));
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(270px, 0.85fr);
  gap: 12px;
  align-items: stretch;
}

.hero-copy-block,
.hero-art-card,
.panel,
.pricing-ribbon,
.footer-strip {
  border: 1px solid rgba(223, 215, 197, 0.82);
  border-radius: 16px;
  border-color: rgba(120, 240, 167, 0.16);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-copy-block {
  min-height: 280px;
  padding: clamp(24px, 3.2vw, 36px);
  color: #fff8e8;
  background:
    radial-gradient(circle at 12% 12%, rgba(120, 240, 167, 0.2), transparent 26%),
    radial-gradient(circle at 86% 82%, rgba(244, 185, 68, 0.12), transparent 28%),
    linear-gradient(135deg, #08100d, #0f221b 62%, #133a2a);
}

.hero-art-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--night);
}

.hero-art-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3, 5, 4, 0.32), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(120, 240, 167, 0.13), transparent 34%);
  pointer-events: none;
}

.hero-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 7px;
  font-size: clamp(21px, 2.5vw, 28px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 16px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 580px;
  color: #bed0c8;
  font-size: 15px;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  background: var(--surface);
}

.button.primary {
  color: #06100b;
  border-color: rgba(244, 185, 68, 0.9);
  background: linear-gradient(135deg, #ffd46e, var(--gold));
  box-shadow: 0 0 22px rgba(244, 185, 68, 0.18);
}

.button.secondary {
  color: var(--forest);
  border-color: rgba(120, 240, 167, 0.32);
  background: rgba(120, 240, 167, 0.08);
}

.discord-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.discord-cta .discord-icon {
  width: 17px;
  height: 17px;
}

.policy-page .button.secondary,
.download-page-hero .button.secondary {
  color: var(--forest);
  border-color: var(--line);
  background: var(--surface);
}

.pricing-ribbon {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
  padding: 10px;
  background: rgba(255, 250, 240, 0.88);
  background:
    linear-gradient(135deg, rgba(15, 21, 19, 0.92), rgba(10, 17, 14, 0.94));
}

.pricing-ribbon div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(120, 240, 167, 0.12);
  border: 1px solid rgba(120, 240, 167, 0.16);
}

.pricing-ribbon span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.pricing-ribbon strong {
  font-size: 22px;
  line-height: 1;
}

.pricing-ribbon p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.pricing-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(244, 185, 68, 0.42);
  border-radius: 999px;
  color: #fff4c5;
  background: rgba(244, 185, 68, 0.1);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.pricing-link:hover {
  border-color: rgba(244, 185, 68, 0.78);
  background: rgba(244, 185, 68, 0.16);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 12px;
}

.panel {
  padding: 16px;
  background: rgba(15, 21, 19, 0.9);
}

.panel-accent {
  background:
    radial-gradient(circle at top right, rgba(120, 240, 167, 0.12), transparent 34%),
    rgba(12, 20, 17, 0.94);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.section-title .eyebrow {
  margin-bottom: 5px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mini-tile,
.activity-list article {
  padding: 12px;
  border: 1px solid rgba(223, 215, 197, 0.86);
  border-radius: 12px;
  border-color: rgba(120, 240, 167, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.mini-tile p,
.activity-list p,
.soon-note,
.footer-strip span,
.policy-content p,
.policy-hero p,
.site-footer p,
.support-card p {
  color: var(--muted);
}

.mini-tile p,
.activity-list p {
  margin-bottom: 0;
  font-size: 13px;
}

.activity-list {
  display: grid;
  gap: 10px;
}

.soon-note {
  margin: 10px 0 0;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(244, 185, 68, 0.09);
  border: 1px solid rgba(244, 185, 68, 0.14);
  font-size: 13px;
  font-weight: 800;
}

.footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(255, 250, 240, 0.88);
  background: rgba(15, 21, 19, 0.9);
}

.footer-strip div,
.footer-strip nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-strip nav a {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.section {
  padding: clamp(48px, 6vw, 82px) clamp(20px, 5vw, 72px);
}

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

.support-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.policy-links {
  background: var(--paper);
}

.compact-head {
  max-width: 680px;
  margin-bottom: 24px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.link-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--forest);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: var(--surface);
}

.policy-page {
  background: var(--surface);
}

.policy-hero {
  padding: clamp(58px, 8vw, 94px) clamp(20px, 5vw, 72px) 44px;
  background:
    linear-gradient(135deg, rgba(231, 235, 229, 0.92), rgba(255, 255, 255, 0.94)),
    var(--surface);
}

.policy-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.policy-content {
  max-width: 860px;
  padding: 48px clamp(20px, 5vw, 72px) 82px;
}

.policy-content h2 {
  margin-top: 32px;
  font-size: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 36px clamp(20px, 5vw, 72px);
  color: #f5f7f6;
  background: #111817;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: #f5f7f6;
}

.site-footer p {
  color: #bcc8c4;
}

.site-footer .legal {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
}

.site-footer.compact {
  display: block;
}

.center-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.not-found {
  width: min(420px, calc(100% - 40px));
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background: var(--surface);
}

.not-found .brand-mark {
  margin: 0 auto 22px;
}

@media (max-width: 640px) {
  .hero-card,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-block,
  .hero-art-card {
    min-height: auto;
  }

  .hero-art-card {
    height: 230px;
  }
}

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

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .support-section,
  .link-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .one-page {
    padding: 10px;
  }

  .mini-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-ribbon,
  .tile-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .download-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-art-card {
    height: 220px;
  }
}
