*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #060a10;
  --bg2:       #0a1018;
  --bg3:       #0f1825;
  --bg4:       #141f30;
  --border:    rgba(79,195,247,0.12);
  --border2:   rgba(79,195,247,0.06);
  --accent:    #4fc3f7;
  --accent2:   #81d4fa;
  --accent3:   #b3e5fc;
  --glow:      rgba(79,195,247,0.15);
  --glow2:     rgba(79,195,247,0.06);
  --red:       #ef5350;
  --orange:    #ff7043;
  --gold:      #ffd54f;
  --purple:    #ab47bc;
  --green:     #4caf82;
  --text:      #cfe4f5;
  --muted:     #5c8099;
  --white:     #eaf4ff;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 15px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); letter-spacing: 0.03em; }
a { text-decoration: none; color: inherit; }
code {
  font-size: 0.85em;
  background: rgba(79,195,247,0.1);
  color: var(--accent);
  padding: 0.1em 0.45em;
  border-radius: 3px;
  border: 1px solid var(--border);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
nav.scrolled {
  background: rgba(6,10,16,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.18em;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #060a10;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent2); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
  border-radius: 1px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border2);
  font-size: 0.95rem;
  color: var(--text);
}
.nav-mobile a:last-child { border-bottom: none; }
.mobile-cta {
  margin-top: 0.5rem;
  color: var(--accent) !important;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #060a10;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.07em;
  padding: 0.7rem 1.8rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(79,195,247,0.3);
}
.btn-primary.large { font-size: 1.1rem; padding: 0.85rem 2.2rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.07em;
  padding: 0.7rem 1.8rem;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 2rem 4rem;
}
.hero-scan-line {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scan 8s linear infinite;
  opacity: 0.4;
}
@keyframes scan {
  0% { top: -5%; }
  100% { top: 105%; }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border2) 1px, transparent 1px),
    linear-gradient(90deg, var(--border2) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.hero-content { flex: 1; min-width: 0; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 60%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 2.4rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.05em; margin-top: 2px; }
.stat-div { width: 1px; height: 32px; background: var(--border); }

/* Hero visual */
.hero-visual {
  position: relative;
  flex-shrink: 0;
  width: 360px;
  height: 420px;
}
.hud-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: rotate linear infinite;
}
.hud-ring-1 { width: 340px; height: 340px; top: 40px; left: 10px; animation-duration: 30s; }
.hud-ring-2 { width: 260px; height: 260px; top: 80px; left: 50px; animation-duration: 20s; animation-direction: reverse; border-color: rgba(79,195,247,0.08); }
.hud-ring-3 { width: 180px; height: 180px; top: 120px; left: 90px; animation-duration: 15s; border-color: rgba(79,195,247,0.05); }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.kill-card {
  position: absolute;
  top: 20px;
  left: 0;
  width: 280px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 2;
}
.kc-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.kc-dot { width: 8px; height: 8px; border-radius: 50%; }
.kc-dot.red { background: var(--red); }
.kc-label { font-family: var(--font-head); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; color: var(--muted); flex: 1; }
.kc-live { display: flex; align-items: center; gap: 0.35rem; font-size: 0.65rem; font-family: var(--font-head); font-weight: 700; letter-spacing: 0.1em; color: var(--green); }
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); animation: pulse 1.5s ease-in-out infinite; }
.kc-author { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; }
.kc-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #1a3a6a, var(--accent)); flex-shrink: 0; }
.kc-pilot { font-size: 0.82rem; color: var(--white); font-weight: 500; }
.kc-corp { font-size: 0.7rem; color: var(--muted); }
.kc-ship { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); display: flex; justify-content: space-between; margin-bottom: 0.7rem; }
.kc-isk { color: var(--red); font-size: 0.85rem; }
.kc-fields { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.4rem; margin-bottom: 0.7rem; }
.kc-field {}
.kf-l { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 1px; }
.kf-v { font-size: 0.78rem; color: var(--text); }
.kc-finalblow { font-size: 0.75rem; color: var(--muted); border-top: 1px solid var(--border2); padding-top: 0.6rem; margin-bottom: 0.6rem; }
.kc-finalblow strong { color: var(--text); }
.kc-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.kc-tags span { font-size: 0.62rem; font-family: var(--font-head); font-weight: 600; letter-spacing: 0.06em; background: rgba(239,83,80,0.1); color: var(--red); border: 1px solid rgba(239,83,80,0.2); padding: 0.15rem 0.5rem; border-radius: 2px; }
.whois-card {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 240px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 6px;
  padding: 0.9rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 2;
}
.wc-header { margin-bottom: 0.6rem; }
.wc-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); }
.wc-affil { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.8rem; }
.wc-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.3rem; text-align: center; }
.wc-n { display: block; font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--accent); }
.wc-l { display: block; font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  z-index: 1;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.trust-div { color: var(--border); font-size: 1.2rem; }

/* ── SECTIONS ── */
.section {}
.dark-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.section-inner.narrow { max-width: 720px; }
.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

/* ── VALUE PROP ── */
.value-section { border-bottom: 1px solid var(--border); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 720px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 8px;
  padding: 1.8rem;
  transition: border-color 0.2s, transform 0.2s;
}
.value-card:hover { transform: translateY(-2px); border-color: var(--accent); border-top-color: var(--accent2); }
.value-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.value-card h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.value-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ── LIVE FEATURES ── */
.live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 900px) { .live-grid { grid-template-columns: 1fr; } }
.live-card-full {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.live-card-full .lf-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.live-card-full h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.live-card-full p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.2rem; flex: 1; }
.preset-grid-sm { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.preset-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.28rem 0.7rem;
  color: var(--text);
}
.dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot.green  { background: var(--green); box-shadow: 0 0 5px var(--green); }
.dot.orange { background: var(--orange); box-shadow: 0 0 5px var(--orange); }
.dot.red    { background: var(--red); box-shadow: 0 0 5px var(--red); }
.dot.purple { background: var(--purple); box-shadow: 0 0 5px var(--purple); }
.dot.blue   { background: var(--accent); box-shadow: 0 0 5px var(--accent); }
.dot.grey   { background: var(--muted); }
.dot.gold   { background: var(--gold); box-shadow: 0 0 5px var(--gold); }
/* Intel stat grid inside character intel card */
.intel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: auto;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem;
}
.intel-stat { text-align: center; }
.is-n { display: block; font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.is-l { display: block; font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
/* SSO steps */
.sso-steps { display: flex; flex-direction: column; gap: 0.7rem; margin-top: auto; }
.sso-step {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--text);
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── ROADMAP ── */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 900px) { .roadmap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .roadmap-grid { grid-template-columns: 1fr; } }
.rm-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 1.6rem;
  transition: border-color 0.2s, transform 0.2s;
}
.rm-card:hover { border-color: var(--border); transform: translateY(-2px); }
.rm-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 0.6rem;
}
.rm-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.rm-card p { color: var(--muted); font-size: 0.86rem; line-height: 1.65; margin-bottom: 1rem; }
.rm-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.rm-tags span {
  font-size: 0.68rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(79,195,247,0.08);
  border: 1px solid var(--border);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
}

/* ── COMMANDS ── */
.cmd-table { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.cmd-row {
  display: grid;
  grid-template-columns: 2fr 100px 3fr;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  border-bottom: 1px solid var(--border2);
  align-items: center;
}
.cmd-row:last-child { border-bottom: none; }
.header-row {
  background: var(--bg2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cmd-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.cmd-name .slash { color: var(--accent); }
.cmd-name em { color: var(--muted); font-style: normal; font-weight: 400; font-size: 0.85rem; }
.cmd-who {
  font-size: 0.72rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.cmd-who.admin { color: var(--accent); }
.cmd-desc { font-size: 0.88rem; color: var(--muted); }
@media (max-width: 640px) {
  .cmd-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .header-row { display: none; }
}

/* ── INVITE CTA ── */
.invite-cta {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.invite-hex-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(79,195,247,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.invite-inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}
.invite-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.invite-content p { color: var(--muted); margin-bottom: 2rem; font-size: 1rem; }
.invite-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.invite-perms { font-size: 0.75rem; color: var(--muted); opacity: 0.7; }

/* ── CONTACT TILES ── */
.center-text { text-align: center; }
.center-sub { margin-left: auto; margin-right: auto; }
.contact-options {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.contact-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 3rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  min-width: 200px;
}
.contact-tile:hover { border-color: var(--accent); transform: translateY(-2px); }
.ct-icon { font-size: 1.8rem; }
.ct-label { font-family: var(--font-head); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }
.ct-value { font-size: 0.95rem; color: var(--accent); font-weight: 500; }

/* ── CONTACT FORM (contact page) ── */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-group select option { background: var(--bg2); }
.form-status { font-size: 0.88rem; margin-top: 0.2rem; }
.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
}
.footer-top {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-tagline { color: var(--muted); font-size: 0.88rem; margin-top: 0.8rem; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; min-width: 100px; }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.footer-col a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border2);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.disclaimer { font-size: 0.75rem; color: var(--muted); opacity: 0.7; line-height: 1.6; }
.copyright { font-size: 0.75rem; color: var(--muted); opacity: 0.5; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero-inner { flex-direction: column; }
  .hero-visual { width: 100%; height: 300px; }
  .hud-ring { display: none; }
  .kill-card { width: 260px; top: 0; left: 0; }
  .whois-card { width: 220px; bottom: 0; right: 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .trust-div { display: none; }
  .trust-inner { justify-content: flex-start; }
  .footer-top { flex-direction: column; gap: 2rem; }
}
