:root {
  --bg: #0b0c0d;
  --surface: #111315;
  --panel: #15181b;
  --panel-2: #1b1f23;
  --text: #f4f1ea;
  --muted: #a6a19a;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #c7a15a;
  --accent-2: #d6d0c6;
  --gold: #d8b86c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 40px 40px;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
  animation: pageIn 520ms ease both;
}

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

a,
button,
select,
input,
.price-card,
.rank-card,
.review-card,
.booster-card,
.steps article,
.rank-terminal {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(11, 12, 13, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.hero-stats,
.terminal-top {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: #ebe5da;
  border-radius: 6px;
  color: #101113;
  font-family: Rajdhani, sans-serif;
  font-size: 21px;
}

nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  position: relative;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.primary-btn,
.secondary-btn,
.package-card a,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-cta,
.primary-btn,
.package-card a,
.quote-form button {
  background: #efe7d8;
  color: #111315;
}

.secondary-btn {
  border: 1px solid rgba(239, 231, 216, 0.22);
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 67px);
  padding: clamp(72px, 9vw, 128px) clamp(18px, 4vw, 56px) 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 12, 13, 0.97), rgba(11, 12, 13, 0.76) 58%, rgba(11, 12, 13, 0.94)),
    linear-gradient(135deg, transparent 0 54%, rgba(199, 161, 90, 0.12) 54% 55%, transparent 55%),
    url("assets/ranks/top-250.png") right 8% center / min(30vw, 380px) no-repeat;
  opacity: 1;
}

.hero-content,
.rank-terminal {
  position: relative;
  z-index: 1;
}

.hero-content,
.rank-terminal,
.page-hero,
.section-heading,
.quote-form {
  animation: riseIn 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: Rajdhani, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Rajdhani, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(64px, 10vw, 148px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 72px);
}

h3 {
  margin-bottom: 8px;
  font-size: 27px;
}

.hero-copy {
  max-width: 640px;
  color: #c9c2b7;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 26px;
}

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

.hero-stats span {
  padding: 10px 14px;
  background: rgba(239, 231, 216, 0.055);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
}

.hero-stats strong {
  color: var(--text);
}

.rank-terminal {
  align-self: center;
  padding: 22px;
  background: rgba(17, 19, 21, 0.9);
  border: 1px solid rgba(239, 231, 216, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

.terminal-top {
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.board-summary {
  display: grid;
  gap: 2px;
  padding: 22px 0 6px;
}

.board-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.board-summary strong {
  font-family: Rajdhani, sans-serif;
  font-size: 58px;
  line-height: 0.95;
  text-transform: uppercase;
}

.rank-terminal ol {
  display: grid;
  gap: 14px;
  padding: 14px 0 0;
  margin: 0;
  list-style: none;
}

.rank-terminal li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 12px;
  color: #e7e0d6;
  font-weight: 800;
}

.rank-terminal li,
.rank-card,
.price-card,
.steps article,
.review-card,
.booster-card {
  animation: riseIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.rank-terminal li:nth-child(2),
.rank-card:nth-child(2),
.price-card:nth-child(2),
.steps article:nth-child(2),
.review-card:nth-child(2),
.booster-card:nth-child(2) {
  animation-delay: 70ms;
}

.rank-terminal li:nth-child(3),
.rank-card:nth-child(3),
.price-card:nth-child(3),
.steps article:nth-child(3),
.review-card:nth-child(3) {
  animation-delay: 120ms;
}

.rank-terminal li:nth-child(4),
.rank-card:nth-child(4),
.price-card:nth-child(4),
.review-card:nth-child(4) {
  animation-delay: 170ms;
}

.rank-strip,
.packages,
.process,
.order {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 4vw, 56px);
}

.page-hero {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 4vw, 56px) clamp(36px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(11, 12, 13, 0.96), rgba(11, 12, 13, 0.74)),
    linear-gradient(135deg, transparent 0 58%, rgba(199, 161, 90, 0.12) 58% 59%, transparent 59%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 20px;
  font-size: clamp(54px, 8vw, 118px);
}

.standalone-order {
  min-height: calc(100vh - 165px);
  align-items: center;
}

.section-heading {
  display: grid;
  max-width: 900px;
  margin-bottom: 34px;
}

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

.rank-card,
.package-card,
.steps article,
.quote-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.rank-card {
  min-height: 220px;
  padding: 22px;
}

.rank-card img {
  width: 96px;
  height: 104px;
  margin-bottom: 22px;
  object-fit: contain;
}

.rank-card p,
.package-card p,
.review-card p,
.booster-card p,
.steps p,
footer p,
.order > div p {
  color: var(--muted);
}

.featured-rank {
  border-color: rgba(216, 184, 108, 0.45);
  background: linear-gradient(145deg, rgba(216, 184, 108, 0.12), rgba(21, 24, 27, 0.95));
}

.packages,
.order {
  background: rgba(17, 19, 21, 0.72);
}

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

.package-card {
  display: grid;
  align-content: start;
  min-height: 320px;
  padding: 26px;
}

.package-card.hot {
  border-color: rgba(216, 184, 108, 0.58);
  box-shadow: inset 0 0 0 1px rgba(216, 184, 108, 0.18);
}

.tag {
  width: fit-content;
  margin-bottom: 32px;
  padding: 7px 10px;
  background: rgba(239, 231, 216, 0.07);
  border: 1px solid rgba(239, 231, 216, 0.16);
  border-radius: 999px;
  color: #d8d0c3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card strong {
  margin: 12px 0 20px;
  color: var(--gold);
  font-size: 24px;
}

.package-card a {
  width: fit-content;
}

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

.price-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 360px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(239, 231, 216, 0.045), rgba(21, 24, 27, 0.98));
  border: 1px solid rgba(239, 231, 216, 0.12);
  border-radius: 8px;
}

.price-card.top-route {
  border-color: rgba(216, 184, 108, 0.55);
  background: linear-gradient(145deg, rgba(216, 184, 108, 0.13), rgba(21, 24, 27, 0.96));
}

.price-card.starter-route {
  border-color: rgba(214, 208, 198, 0.18);
}

.price-card h3 {
  min-height: 54px;
  margin-bottom: 0;
}

.price-card strong {
  color: var(--gold);
  font-family: Rajdhani, sans-serif;
  font-size: 52px;
  line-height: 0.9;
}

.price-card p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.addons {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.addons span {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.addons small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0 18px;
  background: #efe7d8;
  border-radius: 6px;
  color: #111315;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-btn:hover,
.secondary-btn:hover,
.header-cta:hover,
.price-card a:hover,
.quote-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.rank-card:hover,
.price-card:hover,
.steps article:hover,
.review-card:hover,
.booster-card:hover,
.rank-terminal:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 184, 108, 0.38);
}

.review-grid,
.booster-grid,
.home-boosting-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card,
.booster-card,
.home-boosting-preview article {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.home-boosting-preview h3 {
  margin-bottom: 0;
}

.home-boosting-preview p {
  color: var(--muted);
}

.review-card strong,
.booster-card strong {
  color: var(--gold);
  font-family: Rajdhani, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}

.discord-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 14px;
  background: rgba(239, 231, 216, 0.07);
  border: 1px solid rgba(239, 231, 216, 0.16);
  border-radius: 999px;
  color: var(--text);
  font-weight: 900;
}

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

.steps article {
  padding: 24px;
}

.steps span {
  color: var(--accent);
  font-family: Rajdhani, sans-serif;
  font-size: 32px;
  font-weight: 800;
}

.order {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: #cdd7e4;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.full-field {
  grid-column: 1 / -1;
}

.checkbox-group {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: rgba(239, 231, 216, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  text-transform: none;
}

.checkbox-group input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--gold);
}

select,
input {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  background: #0d0f11;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font: inherit;
}

.estimate {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.estimate span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.estimate strong {
  color: var(--gold);
  font-size: 32px;
}

.quote-form button {
  border: 0;
  cursor: pointer;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

footer p {
  max-width: 760px;
  margin-bottom: 0;
}

footer a {
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
  }

  .hero,
  .order {
    grid-template-columns: 1fr;
  }

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

  .package-grid,
  .pricing-grid,
  .review-grid,
  .booster-grid,
  .home-boosting-preview,
  .steps {
    grid-template-columns: 1fr;
  }
}

@keyframes pageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

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

  nav {
    gap: 14px;
    overflow-x: auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .rank-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .rank-card {
    min-height: 170px;
  }

  .rank-card img {
    width: 78px;
    height: 86px;
  }

  footer {
    display: grid;
  }
}
