/* ═══════════════════════════════════════════════════════
   CoreFox — site.css  v3  (full rewrite)
   Palette: green #00ff88  ·  purple #a855f7
   ═══════════════════════════════════════════════════════ */

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #050508;
  color: #ddeedd;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── variables ── */
:root {
  --bg:       #050508;
  --surface:  #090b11;
  --surface2: #0e1018;
  --border:   rgba(0,255,136,.10);
  --border-h: rgba(0,255,136,.30);
  --accent:   #00ff88;
  --purple:   #a855f7;
  --ink:      #ddeedd;
  --muted:    #6a8870;
  --glow-sm:  0 0  8px rgba(0,255,136,.40);
  --glow-md:  0 0 18px rgba(0,255,136,.50);
  --glow-lg:  0 0 34px rgba(0,255,136,.60);
  --r: 8px;
}

/* ── typography ── */
h1 {
  font-size: clamp(72px, 13vw, 150px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.02em;
}
h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
}
h3 { font-size: 18px; font-weight: 700; }

.eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: var(--glow-sm);
}

/* ── keyframes ── */
@keyframes neon-pulse {
  0%,100% { text-shadow: 0 0 20px rgba(0,255,136,.25), 0 0 60px rgba(0,255,136,.08); }
  50%      { text-shadow: 0 0 50px rgba(0,255,136,.55), 0 0 120px rgba(0,255,136,.18); }
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .25; }
}
@keyframes mining-fill {
  0%   { width: 4%; }
  80%  { width: 100%; }
  100% { width: 100%; }
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scanline-move {
  from { transform: translateY(-100%); }
  to   { transform: translateY(100vh); }
}
@keyframes float-up {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ════════════════════════════════════════
   NAV
   ════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 60px;
  padding: 0 32px;
  background: rgba(5,5,8,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .05em;
}

/* brand mark shared */
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--r);
  border: 1px solid var(--border-h);
  background: rgba(0,255,136,.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--glow-sm);
}
.brand-mark.has-logo { border: none; background: none; box-shadow: none; }
.brand-mark img { width: 100%; height: 100%; border-radius: 6px; object-fit: cover; }

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
}
.site-nav nav a {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 5px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.site-nav nav a:hover { color: var(--ink); background: rgba(255,255,255,.05); }

.lang-btn {
  padding: 5px 13px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: rgba(0,255,136,.06);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  transition: background .2s;
}
.lang-btn:hover { background: rgba(0,255,136,.14); }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 32px 72px;
}

/* background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .1;
  filter: saturate(.5) hue-rotate(100deg);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(0,255,136,.05) 0%, transparent 65%),
    linear-gradient(180deg, rgba(5,5,8,.25) 0%, rgba(5,5,8,.65) 55%, #050508 100%);
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,255,136,.012) 3px,
    rgba(0,255,136,.012) 4px
  );
}
.hero-scanlines::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(0,255,136,.035), transparent);
  animation: scanline-move 7s linear infinite;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 10%, transparent 75%);
}

/* inner content */
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: min(1400px, 100%);
  margin: auto;
  padding-top: clamp(64px, 13vh, 130px);
}

/* hero text block */
.hero-text {
  display: grid;
  gap: 22px;
  max-width: 780px;
}
.hero-text h1 { animation: neon-pulse 3.5s ease-in-out infinite; }
.h1-accent { color: var(--accent); }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 6px 16px;
  border: 1px solid rgba(0,255,136,.22);
  border-radius: 100px;
  background: rgba(0,255,136,.05);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: blink 1.4s ease-in-out infinite;
}

.hero-tagline {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.hero-copy {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  line-height: 1.7;
}

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

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
}
.meta-sep { color: rgba(0,255,136,.25); }
.meta-secure { color: var(--accent); }

/* ── buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: var(--r);
  background: var(--accent);
  color: #030d06;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--glow-md);
  transition: filter .2s, box-shadow .2s;
}
.btn:hover { filter: brightness(1.08); box-shadow: var(--glow-lg); }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(0,255,136,.32);
  color: var(--accent);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(0,255,136,.07); box-shadow: var(--glow-sm); }

/* ── hero cards ── */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  max-width: 1020px;
  margin-inline: auto;
  width: 100%;
}

.hcard {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  min-height: 270px;
  transition: border-color .3s, box-shadow .3s;
}
.hcard:hover {
  border-color: var(--border-h);
  box-shadow: 0 0 24px rgba(0,255,136,.07);
}

/* corner brackets */
.hcard::before,
.hcard::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: rgba(0,255,136,.35);
  border-style: solid;
  z-index: 3;
}
.hcard::before { top: 7px; left: 7px; border-width: 1px 0 0 1px; }
.hcard::after  { bottom: 7px; right: 7px; border-width: 0 1px 1px 0; }

/* identity */
.hcard-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 16px;
}
.hcard-logo {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  font-size: 26px;
  animation: float-up 3.2s ease-in-out infinite;
}

.hcard-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(0,255,136,.04);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  transition: border-color .2s;
}
.hcard-pill:hover { border-color: var(--border-h); }
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--glow-sm);
}

/* image cards */
.hcard-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.45) brightness(.5) hue-rotate(120deg);
}
.hcard-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,8,.05) 0%, rgba(5,5,8,.82) 100%);
}
.hcard-label {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  z-index: 1;
}
.hcard-label h2 { font-size: 22px; }
.hcard-label > span {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  padding: 4px 10px;
  border: 1px solid rgba(0,255,136,.28);
  border-radius: 4px;
  background: rgba(0,255,136,.06);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}
.hcard-pills { display: flex; flex-wrap: wrap; gap: 4px; }
.hcard-pills span {
  padding: 3px 8px;
  border: 1px solid rgba(0,255,136,.22);
  border-radius: 3px;
  background: rgba(0,255,136,.05);
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

/* mining card */
.hcard-mining {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  background: linear-gradient(145deg, var(--surface), rgba(0,255,136,.03));
}
.mining-icon { font-size: 30px; }
.mining-rate {
  font-size: 34px;
  font-weight: 900;
  color: var(--accent);
  text-shadow: var(--glow-md);
}
.mining-rate span { font-size: 16px; font-weight: 600; color: var(--muted); }
.mining-cycle {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .07em;
}
.mining-bar {
  width: 78%;
  height: 4px;
  border-radius: 2px;
  background: rgba(0,255,136,.1);
  overflow: hidden;
  margin-top: 6px;
}
.mining-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(0,255,136,.45));
  box-shadow: 0 0 8px var(--accent);
  animation: mining-fill 5s ease-in-out infinite;
}

/* economy live card */
.hcard-economy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}
.eco-head {
  display: flex;
  align-items: center;
  gap: 7px;
}
.eco-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: blink 1.4s ease-in-out infinite;
}
.eco-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}
.eco-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.eco-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 9px;
  border: 1px solid rgba(0,255,136,.09);
  border-radius: 4px;
  background: rgba(0,255,136,.03);
}
.eco-key { font-size: 11px; color: var(--muted); }
.eco-val {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.eco-val--alert { color: var(--purple) !important; }

/* servers live card */
.hcard-servers {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 16px;
  background: linear-gradient(145deg, var(--surface), rgba(0,255,136,.03));
}
.srv-icon { font-size: 28px; }
.srv-count {
  font-size: 38px;
  font-weight: 900;
  color: var(--accent);
  text-shadow: var(--glow-md);
  letter-spacing: -.02em;
}
.srv-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.srv-bar {
  width: 72%;
  height: 3px;
  border-radius: 2px;
  background: rgba(0,255,136,.1);
  overflow: hidden;
  margin-top: 8px;
}
.srv-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(0,255,136,.45));
  box-shadow: 0 0 8px var(--accent);
  animation: mining-fill 4s ease-in-out infinite;
}

/* ════════════════════════════════════════
   TICKER
   ════════════════════════════════════════ */
.ticker {
  display: flex;
  align-items: center;
  height: 44px;
  background: rgba(0,255,136,.04);
  border-top: 1px solid rgba(0,255,136,.07);
  border-bottom: 1px solid rgba(0,255,136,.07);
  overflow: hidden;
}
.ticker-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  background: var(--accent);
  color: #030d06;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
}
.ticker-wrap { overflow: hidden; flex: 1; }
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  animation: ticker-scroll 32s linear infinite;
}
.t-sep { color: rgba(0,255,136,.28); }

/* ════════════════════════════════════════
   STATS BAND
   ════════════════════════════════════════ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  border-bottom: 1px solid var(--border);
}
.stats-band > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 30px 16px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stats-band > div:last-child { border-right: none; }
.stats-band strong {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  text-shadow: var(--glow-sm);
}
.stats-band span { font-size: 11px; color: var(--muted); letter-spacing: .07em; }

/* ════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════ */
.section {
  padding: 96px 32px;
  width: min(1400px, 100%);
  margin: auto;
}
.section-dark {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin-bottom: 56px;
}
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.7; }

/* ════════════════════════════════════════
   FEATURE GRID
   ════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.feature-item {
  display: grid;
  gap: 14px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  transition: border-color .3s, box-shadow .3s;
}
.feature-item:hover {
  border-color: var(--border-h);
  box-shadow: 0 0 20px rgba(0,255,136,.05);
}
.feature-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r);
  border: 1px solid rgba(0,255,136,.28);
  background: rgba(0,255,136,.07);
  font-size: 22px;
}
.feature-item h3 { font-size: 17px; color: var(--ink); }
.feature-item p  { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ════════════════════════════════════════
   MEDIA GRID (miners)
   ════════════════════════════════════════ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.media-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface2);
  transition: border-color .3s;
}
.media-item:hover { border-color: var(--border-h); }
.media-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: saturate(.6) hue-rotate(100deg) brightness(.75);
}
.media-item > div {
  padding: 20px;
  display: grid;
  gap: 6px;
}
.media-item span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple);
}
.media-item h3 { color: var(--ink); font-size: 18px; }
.media-item p  { color: var(--muted); font-size: 13px; font-family: "Courier New", Courier, monospace; }

/* ════════════════════════════════════════
   PRICING GRID
   ════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  max-width: 820px;
}
.price-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
}
.price-item.highlighted {
  border-color: rgba(168,85,247,.38);
  background: rgba(168,85,247,.04);
}
.price-item > div { display: grid; gap: 10px; }

.plan-name {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-item h3 {
  font-size: 38px;
  font-weight: 900;
  color: var(--accent);
}
.price-item.highlighted h3 { color: var(--purple); }
.price-item > div > p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.price-item ul { display: grid; gap: 10px; }
.price-item li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink);
}
.price-item li::before {
  content: '›';
  position: absolute;
  left: 0;
  font-weight: 900;
  color: var(--accent);
}
.price-item.highlighted li::before { color: var(--purple); }

/* ════════════════════════════════════════
   EXAMPLE GRID (guilds)
   ════════════════════════════════════════ */
.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.active-guild-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface2);
  transition: border-color .3s;
}
.active-guild-item:hover { border-color: var(--border-h); }

.active-guild-item.empty-guilds {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  text-align: center;
}
.active-guild-item.empty-guilds > div { display: grid; gap: 10px; max-width: 420px; }
.active-guild-item.empty-guilds span {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.active-guild-item.empty-guilds p { color: var(--muted); }

.guild-card-cover {
  position: relative;
  height: 120px;
  max-height: 120px;
  background: var(--surface);
  overflow: hidden;
  flex-shrink: 0;
}
.guild-card-cover > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .65;
  filter: saturate(.4);
}
.guild-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  background: linear-gradient(0deg, rgba(5,5,8,.85), transparent);
}
.guild-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid var(--border-h);
  background: var(--surface2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
}
.guild-card-icon img { width: 100%; height: 100%; object-fit: cover; }

.guild-card-body { padding: 16px; display: grid; gap: 5px; }
.guild-card-body > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
.guild-card-body h3 { font-size: 16px; }
.guild-card-body > p { color: var(--muted); font-size: 13px; }
.guild-card-body dl { display: flex; gap: 20px; margin-top: 6px; }
.guild-card-body dl > div { display: grid; gap: 2px; }
.guild-card-body dt { font-size: 10px; color: var(--muted); }
.guild-card-body dd { font-size: 13px; font-weight: 700; color: var(--ink); }

/* ════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════ */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 72px 32px;
  width: min(1400px, 100%);
  margin: auto;
  border-top: 1px solid var(--border);
}
.cta-text { display: grid; gap: 12px; }
.cta-text h2 { max-width: 500px; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  display: flex;
  flex-direction: row;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 32px 44px;
}

.site-footer__brand {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.site-footer__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

/* links inside column */
.site-footer__col a {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}
.site-footer__col a:hover { color: var(--ink); }

.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
}
.site-footer__bar span:last-child {
  color: rgba(106,136,112,.45);
  white-space: nowrap;
}

/* shared footer elements */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 300px;
  margin: 0;
}

.footer-gh {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: rgba(0,255,136,.04);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  transition: border-color .2s, color .2s;
}
.footer-gh:hover { border-color: var(--border-h); color: var(--ink); }

.footer-col-title {
  margin: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-sys {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.footer-sys li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.sys-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  opacity: .35;
}
.sys-dot--on {
  background: var(--accent);
  opacity: 1;
  box-shadow: 0 0 6px var(--accent);
  animation: blink 2.5s ease-in-out infinite;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1200px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-cards   { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .site-nav { padding: 0 16px; }
  .site-nav nav a { padding: 6px 8px; }

  .hero { padding: 0 16px 56px; }
  .hero-inner { gap: 44px; }

  .stats-band {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .stats-band > div:nth-child(even) { border-right: none; }
  .stats-band > div:nth-child(n+3) { border-top: 1px solid var(--border); }

  .feature-grid  { grid-template-columns: 1fr; }
  .media-grid    { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 100%; }
  .example-grid  { grid-template-columns: 1fr; }

  .hero-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hcard-identity { min-height: 180px; }

  .cta-band { flex-direction: column; align-items: flex-start; }

  .site-footer__inner { flex-wrap: wrap; gap: 32px; padding: 40px 20px 32px; }
  .site-footer__brand { flex: 1 1 100%; }
  .site-footer__col   { flex: 1 1 40%; }
  .site-footer__bar   { padding: 14px 20px; flex-direction: column; align-items: flex-start; gap: 4px; }

  .section { padding: 64px 16px; }
  .section-dark { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 600px) {
  .site-nav nav { display: none; }

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

  .stats-band { grid-template-columns: 1fr; }
  .stats-band > div { border-right: none !important; border-top: none !important; border-bottom: 1px solid var(--border); }
  .stats-band > div:last-child { border-bottom: none; }

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

  .hero-text h1 { font-size: clamp(60px, 22vw, 90px); }

  .site-footer__inner { padding: 32px 16px 24px; gap: 24px; }
  .site-footer__col   { flex: 1 1 100%; }
  .site-footer__bar   { padding: 12px 16px; }
}
