/* ============================================================
   AD Honores — ad-honores-premium.css
   Full cinematic dark fantasy design
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800;900&family=Rajdhani:wght@500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:   #c9a84c;
  --gold2:  #e8c97a;
  --gold3:  #f5e0a0;
  --glow:   rgba(201,168,76,.35);
  --glow2:  rgba(201,168,76,.12);
  --dark:   #04080f;
  --dark2:  #070c17;
  --dark3:  #0c1322;
  --card:   #0d1628;
  --card2:  #111e32;
  --bd:     rgba(201,168,76,.13);
  --bd2:    rgba(201,168,76,.30);
  --bd3:    rgba(201,168,76,.55);
  --text:   #d0dae8;
  --text2:  #7a90aa;
  --text3:  #4a5f72;
  --ft:     'Cinzel', serif;
  --fb:     'Rajdhani', 'Segoe UI', sans-serif;
  --r:      14px;
  --tr:     .28s cubic-bezier(.4,0,.2,1);
  --sh:     0 24px 80px rgba(0,0,0,.55);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Canvas particles ──────────────────────────────────────── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: min(1260px, calc(100% - 44px));
  margin-inline: auto;
}

/* ── NAVBAR ────────────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  transition: background var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.topbar.is-scrolled {
  background: rgba(4,8,15,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  box-shadow: 0 4px 40px rgba(0,0,0,.5);
}

.nav-inner {
  width: min(1260px, calc(100% - 44px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-name {
  font-family: var(--ft);
  font-size: 17px;
  font-weight: 800;
  color: var(--gold2);
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 0 20px var(--glow);
}
.brand-name em { font-style: normal; color: var(--gold3); }

/* Nav links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  padding: 10px 13px;
  color: var(--text2);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: color var(--tr), background var(--tr);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold2);
  background: rgba(201,168,76,.08);
}
.nav-cta {
  margin-left: 8px !important;
  padding: 10px 18px !important;
  color: #160f02 !important;
  background: linear-gradient(160deg, #ffe48c, #d49a33) !important;
  border-radius: 10px !important;
  font-family: var(--ft) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: .1em !important;
  box-shadow: 0 6px 22px rgba(201,168,76,.22) !important;
  transition: transform var(--tr), box-shadow var(--tr) !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 34px rgba(201,168,76,.38) !important;
  color: #160f02 !important;
  background: linear-gradient(160deg, #ffe48c, #d49a33) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--bd);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  padding: 10px;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold2);
  border-radius: 2px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: var(--r);
  font-family: var(--ft);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform var(--tr), filter var(--tr), box-shadow var(--tr);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); }

.btn-primary {
  color: #160f02;
  background: linear-gradient(160deg, #ffe48c 0%, #d49a33 55%, #9f6a18 100%);
  box-shadow: 0 10px 32px rgba(201,168,76,.22);
}
.btn-primary:hover { box-shadow: 0 18px 46px rgba(201,168,76,.38); color: #160f02; }

.btn-ghost {
  color: var(--gold2);
  border: 1px solid var(--bd2);
  background: rgba(4,8,15,.55);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--bd3); background: rgba(201,168,76,.06); color: var(--gold2); }

.btn-outline {
  color: var(--gold2);
  border: 1px solid var(--bd2);
  background: transparent;
}
.btn-outline:hover { border-color: var(--bd3); background: rgba(201,168,76,.06); color: var(--gold2); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 100px 0 80px;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url('assets/img/hero-castle.png');
  background-size: cover;
  background-position: center 20%;
  animation: heroZoom 24s ease-in-out infinite alternate;
  filter: saturate(.7) brightness(.55);
}
@keyframes heroZoom {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(201,168,76,.14) 0%, transparent 34rem),
    linear-gradient(180deg, rgba(4,8,15,.52) 0%, rgba(4,8,15,.18) 36%, rgba(4,8,15,.88) 80%, rgba(4,8,15,1) 100%);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,8,15,.68) 0%, transparent 30%, transparent 70%, rgba(4,8,15,.68) 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  pointer-events: none;
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .025;
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 2px,
    rgba(201,168,76,.5) 2px,
    rgba(201,168,76,.5) 3px
  );
  pointer-events: none;
}

/* Hero two-column grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
}

/* Status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--bd2);
  border-radius: 999px;
  background: rgba(4,8,15,.72);
  backdrop-filter: blur(10px);
  color: var(--gold2);
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34,197,94,.9);
  flex-shrink: 0;
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 14px rgba(34,197,94,.9); }
  50%      { box-shadow: 0 0 24px rgba(34,197,94,.5); }
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
}

/* Hero title */
.hero-title { margin: 0; line-height: .9; }
.hero-title-line {
  display: block;
  font-family: var(--ft);
  font-weight: 900;
  font-size: clamp(64px, 9.5vw, 130px);
  letter-spacing: .08em;
  color: rgba(208,218,232,.9);
  text-shadow: 0 3px 0 rgba(0,0,0,.28);
}
.hero-title-accent {
  color: var(--gold2);
  text-shadow:
    0 0 50px rgba(201,168,76,.45),
    0 0 100px rgba(201,168,76,.18),
    0 4px 0 rgba(0,0,0,.28);
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(208,218,232,.82);
  font-family: var(--fb);
  font-size: 17px;
  line-height: 1.8;
}
.hero-text strong { color: var(--gold2); font-weight: 700; }

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-badges span {
  padding: 8px 14px;
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 8px;
  background: rgba(4,8,15,.55);
  backdrop-filter: blur(6px);
  color: var(--gold2);
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

/* Hero side panel */
.hero-panel {
  position: relative;
  padding: 32px;
  border: 1px solid var(--bd2);
  border-radius: 26px;
  background:
    linear-gradient(170deg, rgba(11,22,40,.82), rgba(6,10,20,.92)),
    radial-gradient(circle at 50% -6%, rgba(201,168,76,.16) 0%, transparent 20rem);
  box-shadow: var(--sh), inset 0 1px 0 rgba(201,168,76,.1);
  backdrop-filter: blur(16px);
}
.hero-panel::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 20px;
  pointer-events: none;
}
.panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.panel-icon {
  width: 58px; height: 58px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--bd2);
  background: linear-gradient(145deg, rgba(201,168,76,.22), rgba(201,168,76,.04));
  box-shadow: 0 0 28px rgba(201,168,76,.22);
  font-size: 26px;
  color: var(--gold2);
}
.hero-panel h2 {
  font-family: var(--ft);
  font-size: 19px;
  font-weight: 700;
  color: var(--gold3);
  line-height: 1.3;
}
.panel-list { list-style: none; }
.panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(201,168,76,.1);
}
.panel-bullet {
  color: var(--gold);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}
.panel-list strong {
  display: block;
  color: var(--text);
  font-family: var(--ft);
  font-size: 13px;
  margin-bottom: 3px;
}
.panel-list span { color: var(--text2); font-size: 13px; line-height: 1.5; }
.panel-cta {
  display: block;
  margin-top: 20px;
  padding: 13px 18px;
  text-align: center;
  border: 1px solid var(--bd2);
  border-radius: var(--r);
  color: var(--gold2);
  font-family: var(--ft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  transition: var(--tr);
}
.panel-cta:hover { background: rgba(201,168,76,.08); border-color: var(--bd3); }

/* Wave divider */
.hero-divider {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 1;
  line-height: 0;
}
.hero-divider svg { width: 100%; height: 56px; }

/* ── STATS BAR ─────────────────────────────────────────────── */
.stats-band {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--bd);
  background: rgba(7,12,23,.96);
  backdrop-filter: blur(12px);
}
.stats-grid {
  display: flex;
  align-items: center;
}
.stats-grid article {
  flex: 1;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 22px 16px;
}
.stats-sep {
  width: 1px; height: 55px;
  flex-shrink: 0;
  background: linear-gradient(180deg, transparent, var(--bd2), transparent);
}
.stat-number {
  font-family: var(--ft);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--gold2);
  text-shadow: 0 0 24px rgba(201,168,76,.3);
}
.stat-label {
  color: var(--text2);
  font-family: var(--fb);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ── Section defaults ──────────────────────────────────────── */
.section { position: relative; z-index: 1; padding: 96px 0; }

.section-head {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--ft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .36em;
  text-transform: uppercase;
}
.section-head h2 {
  margin: 0 0 16px;
  font-family: var(--ft);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: .06em;
}
.section-head h2 em { font-style: normal; color: var(--gold2); }
.section-head h2::after {
  content: '';
  display: block;
  width: 64px; height: 2px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-head p {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.72;
}

/* ── FEATURES ──────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  border: 1px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 8px 32px rgba(0,0,0,.38);
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
  cursor: default;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--bd2);
  box-shadow: 0 28px 70px rgba(0,0,0,.46);
}
.feature-img-wrap {
  position: relative;
  aspect-ratio: 1.1;
  overflow: hidden;
  background: #06101e;
}
.feature-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}
.feature-card:hover .feature-img-wrap img {
  transform: scale(1.07);
  filter: brightness(1.1) saturate(1.1);
}
.feature-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,18,32,.92));
  pointer-events: none;
}
.feature-body { padding: 20px 20px 24px; }
.feature-body h3 {
  margin: 0 0 9px;
  font-family: var(--ft);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold2);
  letter-spacing: .04em;
}
.feature-body p {
  margin: 0 0 13px;
  color: var(--text2);
  font-size: 13px;
  line-height: 1.62;
}
.feature-tag {
  display: inline-block;
  padding: 3px 9px;
  border: 1px solid var(--bd2);
  border-radius: 6px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── PROGRESSION ───────────────────────────────────────────── */
.progression-section {
  padding-top: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,168,76,.07) 0%, transparent 40rem),
    linear-gradient(180deg, rgba(255,255,255,.012) 0%, transparent 100%);
}
.progress-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 6px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #8b6427 rgba(255,255,255,.06);
}
.progress-track::-webkit-scrollbar { height: 7px; }
.progress-track::-webkit-scrollbar-track { background: rgba(255,255,255,.06); border-radius: 999px; }
.progress-track::-webkit-scrollbar-thumb { background: linear-gradient(90deg, #6e4e1c, #c9a84c); border-radius: 999px; }

.progress-card {
  scroll-snap-align: start;
  border: 1px solid var(--bd);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card2);
  box-shadow: 0 8px 28px rgba(0,0,0,.32);
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
  cursor: default;
}
.progress-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--bd2);
  box-shadow: 0 26px 60px rgba(0,0,0,.46);
}
.progress-card-end {
  border-color: var(--bd2);
  box-shadow: 0 0 30px rgba(201,168,76,.1);
}

.progress-img-wrap {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.progress-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(.88);
  transition: transform .4s ease, filter .4s ease;
}
.progress-card:hover .progress-img-wrap img {
  transform: scale(1.09);
  filter: saturate(1.25) brightness(1.0);
}
.progress-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.6) 100%);
}
.progress-num {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 1;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.45);
  background: rgba(4,8,15,.76);
  backdrop-filter: blur(6px);
  color: var(--gold2);
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 800;
}
.progress-info {
  padding: 13px 14px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.progress-info strong {
  display: block;
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold2);
}
.progress-info span {
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text2);
  font-weight: 600;
}
.tier-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,.34);
  background: rgba(201,168,76,.1);
  color: var(--gold2);
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.tier-legend {
  border-color: rgba(201,168,76,.65);
  background: linear-gradient(135deg, rgba(201,168,76,.2), rgba(245,224,160,.06));
  box-shadow: 0 0 14px rgba(201,168,76,.16);
}

/* ── NEWS ──────────────────────────────────────────────────── */
.news-section { padding-top: 0; }
.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 18px;
}
.news-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--bd);
  border-radius: var(--r);
  background: linear-gradient(160deg, rgba(13,22,40,.96), rgba(7,12,22,.96));
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  transition: transform var(--tr), border-color var(--tr);
  color: inherit;
  text-decoration: none;
}
.news-card:hover { transform: translateY(-5px); border-color: var(--bd2); }
.news-card-featured {
  background: linear-gradient(160deg, rgba(18,30,52,.96), rgba(10,18,30,.96));
  border-color: var(--bd2);
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.news-meta time {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.news-badge {
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid rgba(201,168,76,.28);
  background: rgba(201,168,76,.1);
  color: var(--gold2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.news-card h3 {
  margin: 0 0 10px;
  font-family: var(--ft);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1.3;
  flex: 1;
}
.news-card-featured h3 { font-size: 20px; }
.news-card p {
  margin: 0 0 16px;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}
.news-read {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color var(--tr);
}
.news-card:hover .news-read { color: var(--gold3); }
.news-more { text-align: center; margin-top: 36px; }

/* ── CTA ───────────────────────────────────────────────────── */
.cta-section { padding-top: 32px; }
.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 52px 56px;
  border: 1px solid var(--bd2);
  border-radius: 26px;
  background: linear-gradient(140deg, rgba(14,24,42,.98), rgba(7,12,20,.98));
  box-shadow: var(--sh);
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -70px; left: -70px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-body .section-kicker { display: block; margin-bottom: 10px; }
.cta-body h2 {
  margin: 0;
  font-family: var(--ft);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--gold2);
  letter-spacing: .05em;
  line-height: 1.2;
}
.cta-body p {
  margin: 12px 0 20px;
  color: var(--text2);
  font-size: 15px;
  line-height: 1.65;
}
.realmlist-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 18px;
  border: 1px solid var(--bd2);
  border-radius: var(--r);
  background: rgba(4,8,15,.6);
}
.realmlist-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.realmlist-box code {
  color: var(--text);
  font-family: 'Courier New', monospace;
  font-size: 13px;
}
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border: 1px solid var(--bd);
  border-radius: 7px;
  color: var(--text2);
  font-size: 11px;
  font-weight: 600;
  transition: var(--tr);
  flex-shrink: 0;
}
.copy-btn:hover { color: var(--gold2); border-color: var(--bd2); }
.copy-btn.copied { color: #22c55e; border-color: rgba(34,197,94,.4); }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 64px 0 0;
  border-top: 1px solid var(--bd);
  background: #030508;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
}
.footer-brand strong {
  display: block;
  font-family: var(--ft);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold2);
  letter-spacing: .14em;
  margin-bottom: 12px;
  text-shadow: 0 0 20px var(--glow2);
}
.footer-brand p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-realmlist {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid var(--bd);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  color: var(--text2);
  font-family: 'Courier New', monospace;
  font-size: 12px;
}
.site-footer nav h4,
.site-footer div h4 {
  margin: 0 0 14px;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .22em;
  text-transform: uppercase;
}
.site-footer nav a {
  display: block;
  margin-bottom: 10px;
  color: var(--text2);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: color var(--tr);
}
.site-footer nav a:hover { color: var(--gold2); }
.site-footer div p {
  margin: 0 0 8px;
  color: var(--text2);
  font-size: 14px;
}
.site-footer div p strong { color: var(--text); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid var(--bd);
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(74,95,114,.7);
  font-size: 12px;
  letter-spacing: .04em;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card-featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 640px; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 78px; left: 16px; right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--bd2);
    border-radius: var(--r);
    background: rgba(4,8,15,.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--sh);
    z-index: 200;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 12px; }
  .nav-cta { margin-left: 0 !important; text-align: center !important; margin-top: 6px !important; }
}

@media (max-width: 680px) {
  .hero { padding: 80px 0 60px; min-height: auto; }
  .hero-title-line { font-size: clamp(52px, 14vw, 80px); }
  .hero-text { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .stats-grid { flex-wrap: wrap; }
  .stats-grid article { min-width: 50%; }
  .stats-sep:nth-child(4) { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-featured { grid-column: auto; }
  .cta-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .progress-track { grid-auto-columns: minmax(155px, 65vw); }
}

/* Green online dot */
.stat-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34,197,94,.9);
  margin-right: 7px;
  vertical-align: middle;
  animation: statDotPulse 2s ease-in-out infinite;
}
@keyframes statDotPulse {
  0%,100% { box-shadow: 0 0 10px rgba(34,197,94,.9); }
  50%      { box-shadow: 0 0 20px rgba(34,197,94,.5); }
}
