﻿:root {
  color-scheme: dark;
  --bg: #08090d;
  --panel: #12141b;
  --panel-strong: #191c24;
  --text: #f6f7fb;
  --muted: #a8adbb;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e82135;
  --red-dark: #8f101d;
  --yellow: #ffd24a;
  --steel: #252a35;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 33, 53, 0.16), transparent 28rem),
    linear-gradient(135deg, #08090d 0%, #101118 48%, #07080c 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  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: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  z-index: -1;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(8, 9, 13, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 13, 0.92);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.g-emblem {
  width: 40px;
  height: 40px;
  color: var(--red);
  flex-shrink: 0;
}

.g-emblem text {
  font-family: Anton, Inter, sans-serif;
  font-size: 50px;
  fill: currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

button,
input {
  font: inherit;
}

.discord-btn,
.primary-action,
.secondary-action,
.plan-action,
.farm-link,
.friend-form button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.discord-btn,
.primary-action,
.plan-action,
.friend-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 14px 34px rgba(232, 33, 53, 0.28);
}

.discord-btn.compact {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.86rem;
}

.discord-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(88, 101, 242, 0.5);
  border-radius: 6px;
  background: rgba(88, 101, 242, 0.12);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.join-btn svg {
  width: 18px;
  height: 18px;
  fill: #5865f2;
  flex-shrink: 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 136px clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(1.1) contrast(1.08);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.98) 0%, rgba(8, 9, 13, 0.78) 44%, rgba(8, 9, 13, 0.34) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 34%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    110deg,
    transparent 0,
    transparent 18px,
    rgba(232, 33, 53, 0.14) 19px,
    rgba(232, 33, 53, 0.14) 21px
  );
  opacity: 0.34;
}

.hero-emblem {
  position: absolute;
  top: 50%;
  right: clamp(-80px, 4vw, 40px);
  width: clamp(320px, 38vw, 560px);
  height: clamp(320px, 38vw, 560px);
  color: var(--red);
  opacity: 0.08;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-emblem text {
  font-family: Anton, Inter, sans-serif;
  font-size: 50px;
  fill: currentColor;
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
.rank,
.price,
.badge {
  font-family: Anton, Inter, sans-serif;
  font-weight: 400;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  color: #d9dce5;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions,
.hero-stats,
.dash-top,
.dash-metrics,
.site-footer,
.friend-form div {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  padding: 0 22px;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
  flex-wrap: wrap;
  gap: 12px;
  margin: 42px 0 0;
}

.hero-stats div {
  min-width: 176px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 20, 27, 0.72);
}

.hero-stats dt {
  font-size: 1.65rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border-block: 1px solid var(--line);
  background: #0c0d12;
}

.ticker span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d9dce5;
  font-size: 0.86rem;
  font-weight: 800;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: end;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.intro > p,
.dashboard-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.plan-card,
.credit-card,
.feature-card,
.dashboard {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(25, 28, 36, 0.94), rgba(13, 15, 21, 0.98));
  box-shadow: var(--shadow);
}

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

.feature-card {
  padding: 24px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-family: Anton, Inter, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.plan-card.featured {
  border-color: rgba(232, 33, 53, 0.72);
  transform: translateY(-14px);
}

.badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 210, 74, 0.15);
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rank {
  min-height: 64px;
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.plan-card p {
  min-height: 48px;
  color: var(--muted);
  line-height: 1.5;
}

.price {
  margin: 10px 0 22px;
  font-size: 3.1rem;
  font-weight: 900;
}

.price span {
  margin-left: 6px;
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 0.92rem;
}

ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: #e7e9ef;
}

li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  background: var(--red);
  transform: rotate(45deg);
}

.plan-action {
  margin-top: auto;
  width: 100%;
}

.rank-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}

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

.credit-card {
  padding: 22px;
}

.credit-card span {
  color: var(--muted);
  font-weight: 800;
}

.credit-card strong {
  display: block;
  margin: 12px 0;
  font-size: 2.4rem;
}

.credit-card p {
  margin: 0;
  color: #d9dce5;
}

.credits-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.dashboard-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
}

.dashboard {
  padding: 22px;
}

.dash-top {
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.muted,
.dash-metrics span,
.friend-form label,
.log-row span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.dash-top strong {
  display: block;
  margin-top: 4px;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.dash-metrics div {
  padding: 16px;
  border-radius: 8px;
  background: var(--steel);
}

.dash-metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 1.45rem;
}

.friend-form {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.friend-form div {
  gap: 8px;
}

.friend-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: #090a0f;
  color: var(--text);
  outline: 0;
}

.friend-form input:focus {
  border-color: var(--red);
}

.friend-form button {
  min-width: 86px;
}

.trade-log {
  display: grid;
  gap: 8px;
}

.log-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.farm-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  background: #fff;
  color: #090a0f;
}


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

.site-footer span {
  color: var(--text);
  font-weight: 900;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1080px) {
  .plan-grid,
  .credit-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card.featured {
    transform: none;
  }
}

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

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 84px;
  }

  .intro,
  .dashboard-section {
    grid-template-columns: 1fr;
  }

  .dash-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
  }

  .brand span {
    max-width: 120px;
    line-height: 1;
  }

  .discord-btn,
  .join-btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .header-actions {
    gap: 8px;
  }

  .d-none-mobile {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.7rem);
  }

  .plan-grid,
  .credit-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    width: 100%;
  }

  .friend-form div,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .friend-form button {
    width: 100%;
  }
}

.discord-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 5, 8, 0.78);
  backdrop-filter: blur(6px);
  animation: modal-fade 160ms ease;
}

.discord-modal {
  position: relative;
  width: min(420px, 100%);
  padding: 32px 28px 28px;
  text-align: center;
  border: 1px solid rgba(232, 33, 53, 0.35);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(25, 28, 36, 0.98), rgba(10, 11, 16, 1));
  box-shadow: var(--shadow);
  animation: modal-pop 180ms ease;
}

.discord-modal svg {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  fill: #5865f2;
}

.discord-modal #discord-modal-title {
  margin-bottom: 10px;
  font-family: Anton, Inter, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.discord-modal p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.discord-modal-close {
  min-height: 44px;
  padding: 0 26px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(680px, calc(100vw - 28px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(12, 13, 18, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.primary-cookie,
.secondary-cookie {
  min-height: 42px;
  border-radius: 6px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.primary-cookie {
  border-color: transparent;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.secondary-cookie {
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 620px) {
  .cookie-banner,
  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    display: grid;
  }
}

.legal-page {
  padding: 128px clamp(18px, 5vw, 72px) 72px;
}

.legal-document {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(25, 28, 36, 0.94), rgba(13, 15, 21, 0.98));
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.legal-document h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.legal-document p {
  color: #d9dce5;
  line-height: 1.75;
}

.legal-document .updated {
  color: var(--yellow);
  font-weight: 900;
}



/* RESPONSIVE POLISH 2026 */
body {
  overflow-x: hidden;
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
}

.main-nav {
  justify-self: center;
}

.hero {
  min-height: min(920px, 92svh);
}

.hero-content {
  width: min(820px, 100%);
}

.plan-grid {
  align-items: stretch;
}

.plan-card {
  padding: clamp(18px, 2.1vw, 26px);
}

.plan-card ul {
  font-size: 0.95rem;
}

.credit-card {
  min-height: 150px;
}

.dashboard-copy {
  max-width: 620px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }

  .site-header .discord-btn {
    justify-self: end;
  }

  .hero {
    padding-top: 164px;
  }
}

@media (max-width: 980px) {
  h1 {
    max-width: 680px;
    font-size: clamp(3.1rem, 9vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2rem, 6vw, 3.4rem);
  }

  .intro {
    align-items: start;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

  .plan-card.featured {
    order: -1;
  }

  .rank,
  .plan-card p {
    min-height: 0;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    max-width: 120px;
    line-height: 1;
  }

  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .main-nav a {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
  }

  .site-header > .discord-btn {
    min-width: 0;
    padding-inline: 10px;
  }

  .site-header > .discord-btn .discord-mark {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 62px 14px 34px;
  }

  .hero-media img {
    opacity: 0.24;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(8, 9, 13, 0.96), rgba(8, 9, 13, 0.76)),
      linear-gradient(0deg, var(--bg) 0%, transparent 38%);
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
    line-height: 0.96;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .primary-action,
  .secondary-action,
  .plan-action,
  .farm-link {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-stats div {
    width: 100%;
    min-width: 0;
    padding: 14px;
  }

  .ticker {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 12px 14px;
    scrollbar-width: none;
  }

  .ticker::-webkit-scrollbar {
    display: none;
  }

  .ticker span {
    white-space: nowrap;
  }

  .section {
    padding: 54px 14px;
  }

  .intro,
  .dashboard-section {
    gap: 22px;
  }

  .plan-card,
  .dashboard,
  .credit-card {
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  }

  .price {
    font-size: 2.65rem;
  }

  .credit-grid {
    grid-template-columns: 1fr;
  }

  .dash-top {
    align-items: stretch;
    flex-direction: column;
  }

  .dash-top .discord-btn {
    width: 100%;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    grid-template-columns: 1fr;
    padding: 14px;
  }
}

@media (max-width: 420px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-header > .discord-btn {
    width: 100%;
  }

  .main-nav {
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.3rem);
  }

  h2 {
    font-size: clamp(1.75rem, 10vw, 2.45rem);
  }

  .plan-card {
    padding: 18px;
  }

  li {
    padding-left: 18px;
  }

  .friend-form div,
  .site-footer,
  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }
}



