/* ============================================
   121212 Territories — Own Your Territory
   ============================================ */

:root {
  --bg:         #080f09;
  --bg-mid:     #0d1a0f;
  --bg-card:    #111f13;
  --bg-card2:   #162119;
  --forest:     #1a3d20;
  --gold:       #D4AF37;
  --gold-light: #f0d060;
  --gold-dim:   rgba(212,175,55,0.15);
  --red:        #c41e3a;
  --green:      #2d5f3f;
  --cream:      #f4e4c1;
  --white:      #ffffff;
  --text-dim:   rgba(255,255,255,0.6);
  --text-muted: rgba(255,255,255,0.35);
  --border:     rgba(212,175,55,0.18);
  --radius:     14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  width: 0%; z-index: 9999; transition: width 0.1s linear;
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,15,9,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  height: 64px;
}
nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(8,15,9,0.98);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  text-decoration: none; display: flex; align-items: baseline; gap: 2px;
  font-weight: 900; font-size: 1.2rem; letter-spacing: -0.02em;
}
.nav-logo .logo-num { color: var(--gold); }
.nav-logo .logo-world { color: var(--white); font-size: 1rem; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--gold); color: var(--bg) !important;
  padding: 0.45rem 1.1rem; border-radius: 50px;
  font-weight: 700; font-size: 0.82rem;
  transition: background 0.2s !important;
}
.nav-links .nav-cta:hover { background: var(--gold-light) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg-mid);
    flex-direction: column; align-items: flex-start;
    padding: 1.5rem 2rem; gap: 1.2rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  padding: 130px 2rem 80px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(45,95,63,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(194,30,58,0.06) 0%, transparent 50%);
}
/* Subtle grid pattern */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.35rem 1rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim); max-width: 580px;
  margin: 0 auto 2.5rem; line-height: 1.75;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.btn-gold {
  background: var(--gold); color: var(--bg);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 800; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s;
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--white); }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.75rem; color: var(--text-muted);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Live Auctions Strip ── */
.live-strip {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.live-strip-inner { max-width: 1200px; margin: 0 auto; }
.strip-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.strip-header h2 {
  font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; gap: 0.6rem;
}
.live-badge {
  background: var(--red); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 50px;
  animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.view-all-link {
  color: var(--gold); text-decoration: none; font-size: 0.85rem; font-weight: 600;
}
.view-all-link:hover { color: var(--gold-light); }
.auctions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.auction-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color 0.25s, transform 0.25s;
}
.auction-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.auction-tier {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 50px;
  margin-bottom: 0.8rem;
}
.tier-block { background: rgba(45,95,63,0.3); color: #6fcf8a; }
.tier-district { background: rgba(212,175,55,0.2); color: var(--gold); }
.tier-state { background: rgba(194,30,58,0.25); color: #f08090; }
.auction-territory { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.3rem; }
.auction-domains {
  font-size: 0.75rem; color: var(--text-muted);
  margin-bottom: 1rem; line-height: 1.6;
  font-family: 'Courier New', monospace;
}
.auction-domains span { color: var(--gold); opacity: 0.7; }
.auction-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.9rem;
}
.auction-bid-label { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 2px; }
.auction-bid { font-size: 1.2rem; font-weight: 900; color: var(--gold); }
.auction-timer {
  text-align: right;
}
.timer-label { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 2px; }
.timer-value {
  font-size: 0.88rem; font-weight: 700; color: var(--red);
  font-family: 'Courier New', monospace; letter-spacing: 0.05em;
}
.auction-actions { margin-top: 1rem; display: flex; gap: 0.5rem; }
.btn-bid {
  flex: 1; background: var(--gold); color: var(--bg);
  border: none; padding: 0.6rem; border-radius: 8px;
  font-weight: 800; font-size: 0.85rem; cursor: pointer;
  text-decoration: none; text-align: center;
  transition: background 0.2s; display: block;
}
.btn-bid:hover { background: var(--gold-light); }
.btn-watch {
  background: transparent; color: var(--text-dim);
  border: 1px solid var(--border); padding: 0.6rem 0.8rem;
  border-radius: 8px; font-size: 0.85rem; cursor: pointer;
  transition: all 0.2s;
}
.btn-watch:hover { border-color: var(--gold); color: var(--gold); }

/* ── How It Works ── */
.how-section {
  padding: 6rem 2rem;
  max-width: 1100px; margin: 0 auto;
}
.section-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900; margin-bottom: 3.5rem; line-height: 1.2;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.step-card {
  position: relative;
}
.step-card::after {
  content: '→';
  position: absolute; top: 28px; right: -18px;
  color: var(--border); font-size: 1.2rem;
  display: none;
}
.step-card:not(:last-child)::after { display: block; }
.step-num {
  width: 52px; height: 52px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: var(--gold);
  margin-bottom: 1.2rem;
}
.step-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }

/* ── Territory Tiers ── */
.tiers-section {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.tiers-inner { max-width: 1100px; margin: 0 auto; }
.tiers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 1rem;
}
.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.tier-card:hover { transform: translateY(-4px); }
.tier-card.featured {
  border-color: var(--gold);
  background: var(--bg-card2);
}
.tier-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--gold); color: var(--bg);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 50px;
}
.tier-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.tier-name { font-size: 1.4rem; font-weight: 900; margin-bottom: 0.3rem; }
.tier-scope { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 1.2rem; }
.tier-starting {
  margin-bottom: 1.5rem;
}
.tier-starting-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.tier-starting-price { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.tier-starting-note { font-size: 0.75rem; color: var(--text-muted); }
.tier-divider { border: none; border-top: 1px solid var(--border); margin: 1.2rem 0; }
.tier-includes { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.tier-list { list-style: none; }
.tier-list li {
  font-size: 0.88rem; color: var(--text-dim);
  padding: 0.4rem 0; display: flex; gap: 0.6rem; align-items: flex-start;
}
.tier-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.tier-cta {
  display: block; text-align: center;
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold); padding: 0.75rem;
  border-radius: 10px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; margin-top: 1.5rem;
  transition: all 0.2s;
}
.tier-cta:hover { background: var(--gold); color: var(--bg); }
.tier-card.featured .tier-cta {
  background: var(--gold); color: var(--bg);
}
.tier-card.featured .tier-cta:hover { background: var(--gold-light); }

/* ── Available Territories ── */
.territories-section {
  padding: 6rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.territories-filter-bar {
  display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.t-pill {
  padding: 0.4rem 1rem; border-radius: 50px;
  border: 1.5px solid var(--border); background: transparent;
  font-size: 0.82rem; font-family: inherit; cursor: pointer;
  color: var(--text-dim); transition: all 0.2s;
}
.t-pill:hover { border-color: var(--gold); color: var(--gold); }
.t-pill.active { background: var(--gold); border-color: var(--gold); color: var(--bg); font-weight: 700; }
.territories-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem;
}
.territory-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
}
.territory-card:hover {
  border-color: var(--gold); transform: translateY(-3px);
}
.territory-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 0.8rem;
}
.territory-flag { font-size: 1.8rem; }
.territory-status {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 50px;
}
.status-available { background: rgba(45,95,63,0.3); color: #6fcf8a; }
.status-auction { background: rgba(194,30,58,0.25); color: #f08090; }
.status-claimed { background: rgba(255,255,255,0.08); color: var(--text-muted); }
.territory-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.2rem; }
.territory-region { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.territory-domains {
  background: var(--bg); border-radius: 8px; padding: 0.7rem 0.9rem;
  margin-bottom: 1rem;
}
.territory-domain {
  font-family: 'Courier New', monospace;
  font-size: 0.73rem; color: var(--text-dim);
  padding: 2px 0; line-height: 1.5;
}
.territory-domain .domain-city { color: var(--gold); }
.territory-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.territory-bid-info {}
.territory-bid-label { font-size: 0.68rem; color: var(--text-muted); }
.territory-bid-amount { font-size: 1rem; font-weight: 800; color: var(--gold); }
.btn-territory {
  background: var(--gold); color: var(--bg);
  border: none; padding: 0.5rem 1.1rem; border-radius: 8px;
  font-weight: 800; font-size: 0.8rem; cursor: pointer;
  text-decoration: none; transition: background 0.2s;
  display: inline-block;
}
.btn-territory:hover { background: var(--gold-light); }
.btn-territory.claimed {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border); cursor: default;
}

/* ── What You Get ── */
.wyg-section {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.wyg-inner { max-width: 1100px; margin: 0 auto; }
.wyg-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin-top: 1rem;
}
.wyg-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; margin-bottom: 1rem; line-height: 1.2; }
.wyg-content h2 .gold { color: var(--gold); }
.wyg-content p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 1.5rem; }
.wyg-perks { list-style: none; }
.wyg-perk {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.wyg-perk:last-child { border-bottom: none; }
.wyg-perk-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: var(--gold-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.wyg-perk-text h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.wyg-perk-text p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.55; margin: 0; }
.wyg-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
}
.wyg-visual-title {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.domain-preview {
  background: var(--bg); border-radius: 12px; padding: 1.2rem;
  margin-bottom: 1rem;
}
.domain-preview-city {
  font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.domain-preview-url {
  font-family: 'Courier New', monospace;
  font-size: 1rem; font-weight: 700;
  color: var(--white);
}
.domain-preview-url .city-part { color: var(--gold); }
.domain-preview-url .domain-part { color: var(--text-dim); }
.domain-preview-status {
  display: inline-block; margin-top: 0.5rem;
  font-size: 0.68rem; background: rgba(45,95,63,0.3);
  color: #6fcf8a; padding: 2px 8px; border-radius: 50px; font-weight: 700;
}
.wyg-visual-note {
  font-size: 0.78rem; color: var(--text-muted);
  line-height: 1.6; text-align: center;
  border-top: 1px solid var(--border); padding-top: 1rem;
}

/* ── Territory Holders ── */
.holders-section {
  padding: 6rem 2rem;
  max-width: 1100px; margin: 0 auto;
}
.holders-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem;
  margin-top: 1rem;
}
.holder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  text-align: center;
  transition: border-color 0.25s;
}
.holder-card:hover { border-color: var(--gold); }
.holder-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  margin: 0 auto 0.8rem;
  object-fit: cover; border: 2px solid var(--gold);
  display: block;
}
.holder-name { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.2rem; }
.holder-territory { font-size: 0.78rem; color: var(--gold); margin-bottom: 0.2rem; }
.holder-since { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.holder-domains {
  font-family: 'Courier New', monospace;
  font-size: 0.68rem; color: var(--text-muted); line-height: 1.7;
}
.holder-domains .gold { color: var(--gold); opacity: 0.7; }

/* ── Responsibilities ── */
.responsibilities-section {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.responsibilities-inner { max-width: 1100px; margin: 0 auto; }
.resp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 1rem;
}
.resp-card {
  background: var(--bg-card);
  border: 1px solid var(--border); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem;
}
.resp-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.resp-card h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.5rem; }
.resp-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.65; }

/* ── Interest Form ── */
.interest-section {
  padding: 6rem 2rem;
  max-width: 760px; margin: 0 auto; text-align: center;
}
.interest-section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; margin-bottom: 0.8rem; }
.interest-section h2 .gold { color: var(--gold); }
.interest-section > p { color: var(--text-dim); margin-bottom: 2.5rem; font-size: 1rem; line-height: 1.7; }
.interest-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem; text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-dim); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 10px; color: var(--white);
  font-family: inherit; font-size: 0.9rem;
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; padding: 0.9rem;
  background: var(--gold); color: var(--bg);
  border: none; border-radius: 10px;
  font-weight: 800; font-size: 1rem; font-family: inherit;
  cursor: pointer; transition: background 0.2s; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold-light); }
.form-status {
  text-align: center; margin-top: 1rem; font-size: 0.9rem;
  color: var(--gold); display: none;
}

/* ── Footer ── */
footer {
  background: #040804;
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo {
  font-size: 1.3rem; font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.footer-logo .gold { color: var(--gold); }
.footer-tagline { font-size: 0.85rem; color: var(--text-dim); line-height: 1.65; max-width: 220px; }
.footer-empire {
  margin-top: 1.5rem;
}
.footer-empire-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.6rem;
}
.empire-links { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.empire-link {
  font-size: 0.72rem; color: var(--text-muted); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2px 8px; border-radius: 50px;
  transition: all 0.2s;
}
.empire-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: var(--text-dim); text-decoration: none; font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card::after { display: none; }
  .wyg-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .tiers-grid { grid-template-columns: 1fr; }
  .resp-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  .steps-grid { grid-template-columns: 1fr; }
  .auctions-grid { grid-template-columns: 1fr; }
}
