/* TremLifeRP — purple / black / white */
:root {
  --bg: #07060c;
  --bg-elevated: #0e0c16;
  --bg-soft: #14121f;
  --surface: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(167, 139, 250, 0.35);
  --text: #f5f3ff;
  --text-muted: #a39bb8;
  --purple: #8b5cf6;
  --purple-bright: #a78bfa;
  --purple-deep: #5b21b6;
  --purple-soft: rgba(139, 92, 246, 0.14);
  --white: #ffffff;
  --danger: #f87171;
  --success: #4ade80;
  --radius: 14px;
  --nav-h: 72px;
  --container: 1120px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 40% at 100% 20%, rgba(91, 33, 182, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 30% at 0% 80%, rgba(139, 92, 246, 0.08), transparent 45%),
    var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--text-muted);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 6, 12, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  z-index: 2;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--purple-bright), var(--purple-deep));
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 28px rgba(139, 92, 246, 0.35);
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.logo span {
  background: linear-gradient(90deg, var(--white), var(--purple-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  position: relative;
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-bright);
  transform: translateX(-50%);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 40px rgba(139, 92, 246, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--border-strong);
  background: var(--purple-soft);
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 6, 12, 0.55) 0%, rgba(7, 6, 12, 0.72) 45%, var(--bg) 100%),
    linear-gradient(90deg, rgba(7, 6, 12, 0.85) 0%, rgba(7, 6, 12, 0.35) 50%, rgba(7, 6, 12, 0.8) 100%),
    url("../assets/hero.svg") center / cover no-repeat;
}

.hero-watermark {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 22vw, 16rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(167, 139, 250, 0.12);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
  margin-inline: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple-bright);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.6);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(3.2rem, 9vw, 5.8rem);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s 0.08s var(--ease) both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--white) 30%, var(--purple-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.08rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  animation: fadeUp 0.8s 0.16s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  animation: fadeUp 0.8s 0.24s var(--ease) both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  max-width: 560px;
  margin-inline: auto;
  animation: fadeUp 0.8s 0.32s var(--ease) both;
}

.hero-stat {
  padding: 1rem 0.5rem;
  border-top: 1px solid var(--border);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--white);
}

.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sections */
section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 620px;
  margin-bottom: 2.75rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  color: var(--purple-bright);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.85rem;
}

.section-head p {
  font-size: 1.02rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s;
}

.feature:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.1), transparent);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: var(--purple-soft);
  color: var(--purple-bright);
  border: 1px solid var(--border-strong);
}

.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.94rem;
}

/* About split */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about-panel {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(139, 92, 246, 0.25), transparent 55%),
    linear-gradient(180deg, #1a1528, #0b0a12);
  box-shadow: var(--shadow);
}

.about-panel::after {
  content: "TL";
  position: absolute;
  right: -0.2rem;
  bottom: -1.5rem;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 800;
  color: rgba(167, 139, 250, 0.08);
  line-height: 1;
}

.about-panel-inner {
  position: relative;
  z-index: 1;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
}

.about-panel-inner strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.checklist {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    linear-gradient(var(--purple), var(--purple-deep)) padding-box,
    linear-gradient(135deg, var(--purple-bright), var(--purple-deep)) border-box;
  border: 1px solid transparent;
  box-shadow: inset 0 0 0 4px var(--bg-elevated);
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.25rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, transparent 20%, rgba(7, 6, 12, 0.92)),
    linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(15, 12, 24, 0.9));
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.news-card.featured {
  min-height: 100%;
  grid-row: span 2;
}

.news-meta {
  font-size: 0.78rem;
  color: var(--purple-bright);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.news-card p {
  font-size: 0.92rem;
}

.news-side {
  display: grid;
  gap: 1.25rem;
}

/* Server status */
.status-bar {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.status-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.status-name {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.status-name strong {
  font-family: var(--font-display);
}

.status-name span,
.status-name a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.status-name a:hover {
  color: var(--purple-bright);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(74, 222, 128, 0.12);
  color: var(--success);
}

.status-pill.offline {
  background: rgba(248, 113, 113, 0.12);
  color: var(--danger);
}

.status-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.metric {
  padding: 1.2rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.08), transparent);
  text-align: center;
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.metric span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at 50% 0%, rgba(167, 139, 250, 0.28), transparent 55%),
    linear-gradient(180deg, #151222, #0a0910);
}

.cta-band h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(139, 92, 246, 0.18), transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 560px;
  font-size: 1.05rem;
}

/* Content blocks */
.content-block {
  padding: 4rem 0;
}

.rules-list,
.steps,
.team-grid,
.store-grid,
.wiki-grid,
.legal-content {
  display: grid;
  gap: 1rem;
}

.rule-item,
.step-item,
.wiki-item,
.store-item,
.team-card,
.legal-content article {
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.rule-item h3,
.step-item h3,
.wiki-item h3,
.store-item h3,
.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.rule-item p,
.step-item p,
.wiki-item p,
.store-item p,
.team-card p {
  font-size: 0.94rem;
}

.rule-num,
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.55rem;
  margin-bottom: 0.85rem;
  border-radius: 8px;
  background: var(--purple-soft);
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid var(--border-strong);
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.form-card {
  max-width: 640px;
  margin-inline: auto;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-elevated);
}

.form-group {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  margin-top: 1rem;
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
}

.team-card {
  text-align: center;
}

.avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-bright), var(--purple-deep));
}

.role {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: var(--purple-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-grid {
  grid-template-columns: repeat(3, 1fr);
}

.store-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
}

.store-item .btn {
  margin-top: auto;
}

.wiki-grid {
  grid-template-columns: repeat(2, 1fr);
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 1.5rem 0 0.6rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}

.legal-content ul {
  padding-left: 1.2rem;
  list-style: disc;
  margin-bottom: 1rem;
}

/* Rules */
.rules-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.rules-nav {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.rules-nav button {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.rules-nav button:hover,
.rules-nav button.active {
  color: var(--white);
  background: var(--purple-soft);
  border-color: var(--border-strong);
}

.rules-panel h2 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.rules-panel > p {
  margin-bottom: 1.25rem;
}

.rules-block {
  margin-bottom: 1.1rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.rules-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.rules-block ul {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.rules-block li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.rules-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-bright);
}

.rules-callout {
  padding: 1rem 1.2rem;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(139, 92, 246, 0.1);
  color: var(--text-muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .rules-layout {
    grid-template-columns: 1fr;
  }

  .rules-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: #05040a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  margin-top: 0.85rem;
  max-width: 280px;
  font-size: 0.92rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-bright);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(167, 139, 250, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(167, 139, 250, 0);
  }
}

/* Responsive */
@media (max-width: 960px) {
  .features-grid,
  .team-grid,
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .news-grid,
  .status-bar,
  .footer-grid,
  .steps,
  .wiki-grid {
    grid-template-columns: 1fr;
  }

  .news-card.featured {
    grid-row: auto;
    min-height: 280px;
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links,
  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: rgba(7, 6, 12, 0.96);
    backdrop-filter: blur(12px);
  }

  .nav-links.open a {
    font-size: 1.35rem;
    padding: 0.85rem 1.2rem;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  body.nav-open .nav-actions .btn-primary {
    display: inline-flex;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 101;
  }
}

@media (max-width: 640px) {
  .features-grid,
  .team-grid,
  .store-grid,
  .status-metrics,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-band {
    padding: 2.5rem 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
