/* HuntKit marketing — Syne / DM Sans theme (Velarium) */

:root {
  --bg-deep: #06070b;
  --bg-card: #0e1018;
  --bg-surface: #131622;
  --bg-raised: #1a1e2e;
  --text-primary: #e4e7f1;
  --text-muted: #7c829e;
  --text-hint: #515672;
  --accent-violet: #7c5cfc;
  --accent-violet-soft: #a78bfa;
  --accent-violet-dim: #3d2f8a;
  --accent-blue: #3b8bdd;
  --accent-blue-soft: #6ab0f5;
  --accent-blue-dim: #1a3d66;
  --accent-green: #34d399;
  --accent-green-soft: #6ee7b7;
  --accent-green-dim: #0f3d2a;
  --accent-pink: #f472b6;
  --accent-pink-soft: #f9a8d4;
  --accent-pink-dim: #5b1d3e;
  --success: #34d399;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body.huntkit-public {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hk-main {
  flex: 1;
  width: 100%;
}

.hk-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

/* NAV */
.hk-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 7, 11, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.hk-nav .nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hk-nav .nav-logo .logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent-violet);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.hk-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.hk-nav .nav-links li { list-style: none; }

.hk-nav .nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.hk-nav .nav-links a:hover { color: var(--text-primary); }

.hk-nav .nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-hover);
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-raised);
}

.btn-primary {
  background: var(--accent-violet);
  border-color: var(--accent-violet);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-violet-soft);
  border-color: var(--accent-violet-soft);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent-violet);
  color: var(--accent-violet-soft);
}

.btn-outline:hover { background: var(--accent-violet-dim); }

.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 15px;
  border-radius: var(--radius-md);
}

section { padding: 5rem 2rem; max-width: 1120px; margin: 0 auto; }
.section-full { max-width: 100%; padding: 5rem 0; }
.section-full .inner { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-violet-soft);
  margin-bottom: 1rem;
  display: block;
}

body.huntkit-public h1,
body.huntkit-public h2,
body.huntkit-public h3,
body.huntkit-public h4 {
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

body.huntkit-public h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; line-height: 1.1; }
body.huntkit-public h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.2; }
body.huntkit-public h3 { font-size: 1.2rem; font-weight: 600; }

body.huntkit-public p { color: var(--text-muted); line-height: 1.75; }

/* HERO */
#hero {
  padding: 7rem 2rem 5rem;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 64px);
}

.hero-text { max-width: 540px; }

.hero-text h1 { margin-bottom: 1.5rem; color: var(--text-primary); }

.hero-text h1 span {
  background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-violet-soft) 60%, var(--accent-blue-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p { font-size: 17px; margin-bottom: 2rem; line-height: 1.8; }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 92, 252, 0.12);
  border: 1px solid rgba(124, 92, 252, 0.25);
  color: var(--accent-violet-soft);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent-violet);
  border-radius: 50%;
  animation: hk-pulse 2s ease-in-out infinite;
}

@keyframes hk-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-visual { position: relative; }

.hud-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hud-mockup::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hud-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.hud-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hud-timer {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-blue-soft);
  letter-spacing: 2px;
}

.hud-progress-bar {
  height: 4px;
  background: var(--bg-raised);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.hud-progress-fill {
  height: 100%;
  width: 58%;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-violet-soft));
  border-radius: 2px;
  animation: hk-progress 3s ease-in-out infinite alternate;
}

@keyframes hk-progress { from { width: 45%; } to { width: 72%; } }

.hud-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 1.25rem;
}

.hud-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  transition: all 0.3s;
}

.hud-item.found {
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.3);
}

.hud-item.found::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
}

.hud-item.active {
  background: rgba(124, 92, 252, 0.1);
  border-color: rgba(124, 92, 252, 0.4);
  animation: hk-glow 2s ease-in-out infinite;
}

@keyframes hk-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 92, 252, 0); }
  50% { box-shadow: 0 0 0 4px rgba(124, 92, 252, 0.15); }
}

.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.score-label {
  font-size: 12px;
  color: var(--text-hint);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.score-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-violet-soft);
}

.mini-leaderboard {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 6px 10px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.lb-rank {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  width: 18px;
  color: var(--text-hint);
}

.lb-rank.gold { color: #f5c842; }
.lb-rank.silver { color: #a0aec0; }
.lb-rank.bronze { color: #c47c3a; }

.lb-name { flex: 1; color: var(--text-primary); }
.lb-score { font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--text-muted); }

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.game-card:hover { transform: translateY(-4px); }

.game-card.blue:hover { border-color: var(--accent-blue); }
.game-card.green:hover { border-color: var(--accent-green); }
.game-card.pink:hover { border-color: var(--accent-pink); }

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.game-card.blue::before { background: var(--accent-blue); }
.game-card.green::before { background: var(--accent-green); }
.game-card.pink::before { background: var(--accent-pink); }

.game-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 1rem;
}

.game-card.blue .game-icon { background: rgba(59, 139, 221, 0.12); }
.game-card.green .game-icon { background: rgba(52, 211, 153, 0.1); }
.game-card.pink .game-icon { background: rgba(244, 114, 182, 0.1); }

.game-card h3 { margin-bottom: 0.5rem; color: var(--text-primary); }

.game-card .game-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.game-card.blue .game-sub { color: var(--accent-blue-soft); }
.game-card.green .game-sub { color: var(--accent-green-soft); }
.game-card.pink .game-sub { color: var(--accent-pink-soft); }

.game-card p { font-size: 14px; line-height: 1.65; }

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1.25rem;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.tier-card.featured {
  border-color: var(--accent-violet-dim);
  background: rgba(124, 92, 252, 0.04);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-violet);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.tier-tagline { font-size: 14px; color: var(--text-muted); margin-bottom: 1.75rem; }

.tier-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 2rem; }

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.tier-features li .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-top: 2px;
}

.tier-features li .check.yes { background: rgba(52, 211, 153, 0.12); color: var(--success); }
.tier-features li .check.no { background: var(--bg-raised); color: var(--text-hint); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-violet-dim), var(--accent-violet-dim));
  z-index: 0;
}

.step-item { text-align: center; position: relative; z-index: 1; }

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--accent-violet-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--accent-violet-soft);
  margin: 0 auto 1rem;
}

.step-item h4 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem; }
.step-item p { font-size: 13px; line-height: 1.5; }

.pro-flow {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.flow-steps { display: flex; flex-direction: column; gap: 1.5rem; }

.flow-step { display: flex; gap: 1rem; align-items: flex-start; }

.flow-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-violet-dim);
  border: 1.5px solid var(--accent-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--accent-violet-soft);
  flex-shrink: 0;
  margin-top: 2px;
}

.flow-step h4 { font-size: 15px; color: var(--text-primary); margin-bottom: 0.25rem; }
.flow-step p { font-size: 13px; line-height: 1.6; }

.flow-step a { color: var(--accent-violet-soft); }

.console-preview {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.console-bar {
  background: var(--bg-raised);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.console-dot { width: 10px; height: 10px; border-radius: 50%; }

.console-body { padding: 1.25rem; font-size: 13px; }

.console-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border: 1px solid var(--border);
}

.console-label { color: var(--text-muted); font-size: 12px; }
.console-val { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--text-primary); }

.badge-active {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--success);
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-q {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.faq-q .arrow { color: var(--text-hint); font-size: 18px; flex-shrink: 0; }
.faq-a { font-size: 14px; line-height: 1.7; }

footer.hk-site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 0.75rem; }
.footer-brand p { font-size: 13px; max-width: 260px; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-hint);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 12px;
  color: var(--text-hint);
}

.section-divider {
  max-width: 1120px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--border);
}

.section-header { text-align: center; margin-bottom: 1rem; }
.section-header h2 { color: var(--text-primary); }
.section-header p { max-width: 560px; margin: 1rem auto 0; font-size: 17px; }

.note-box {
  background: rgba(167, 139, 250, 0.05);
  border: 1px solid rgba(167, 139, 250, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.note-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.note-box p { font-size: 13px; line-height: 1.6; color: var(--text-muted); margin: 0; }

.formula-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin: 1.5rem 0;
  letter-spacing: 0.5px;
}

.formula-box .eq-part { color: var(--text-muted); font-weight: 400; }
.formula-box .eq-accent { color: var(--accent-violet-soft); }
.formula-box .eq-accent2 { color: var(--accent-blue-soft); }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2rem;
  justify-content: center;
}

.feature-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
}

.feature-pill .pip { width: 6px; height: 6px; border-radius: 50%; }
.pip-violet { background: var(--accent-violet); }
.pip-blue { background: var(--accent-blue); }
.pip-green { background: var(--accent-green); }
.pip-pink { background: var(--accent-pink); }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Inner pages */
.hk-page-hero {
  padding: 3.5rem 0 2rem;
  max-width: 1120px;
  margin: 0 auto;
}

.hk-page-hero h1 { margin-bottom: 1rem; color: var(--text-primary); }
.hk-page-hero > p { font-size: 17px; max-width: 640px; margin-bottom: 1.5rem; }

.hk-prose-sk h2 {
  font-size: 1.35rem;
  margin: 2.25rem 0 0.75rem;
  color: var(--text-primary);
}

.hk-prose-sk h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--accent-violet-soft);
}

.hk-prose-sk p,
.hk-prose-sk li { color: var(--text-muted); line-height: 1.75; font-size: 15px; }

.hk-prose-sk ul { margin: 0.5rem 0 0.75rem 1.25rem; }

.hk-prose-sk code {
  font-size: 0.88em;
  background: var(--bg-surface);
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  color: var(--accent-blue-soft);
  border: 1px solid var(--border);
}

.hk-prose-sk a { color: var(--accent-violet-soft); }

.hk-breadcrumb {
  font-size: 13px;
  margin-bottom: 1rem;
}

.hk-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.hk-breadcrumb a:hover { color: var(--accent-violet-soft); }

.hk-auth-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
}

.hk-auth-card h1 {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.hk-auth-card .hk-auth-lead {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.hk-auth-card .hk-auth-lead a { color: var(--accent-violet-soft); }

.hk-form .hk-field { margin-bottom: 1.1rem; }

.hk-form label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.hk-form input[type="text"],
.hk-form input[type="email"],
.hk-form input[type="password"] {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
}

.hk-form input:focus {
  outline: none;
  border-color: var(--accent-violet);
  box-shadow: 0 0 0 3px rgba(124, 92, 252, 0.15);
}

.hk-form .hk-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.hk-form .hk-check input { margin-top: 3px; }

.hk-form button.btn-primary {
  border: none;
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

.hk-flash-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-size: 14px;
}

.hk-flash-ok {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: var(--accent-green-soft);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-size: 14px;
}

.hk-not-found { text-align: center; padding: 4rem 1.5rem; }
.hk-not-found h1 { font-size: 4rem; color: var(--accent-violet-soft); margin-bottom: 0.5rem; }
.hk-not-found p { color: var(--text-muted); }

.huntkit--time-attack .hk-page-accent { color: var(--accent-blue-soft); }
.huntkit--hunt .hk-page-accent { color: var(--accent-green-soft); }
.huntkit--compact-hud .hk-page-accent { color: var(--accent-pink-soft); }

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; gap: 3rem; min-height: auto; }
  .game-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .pro-flow { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  footer.hk-site-footer { grid-template-columns: 1fr 1fr; }

  .hk-nav {
    flex-wrap: wrap;
    height: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .hk-nav .nav-links {
    order: 4;
    width: 100%;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    gap: 1rem 1.25rem;
  }

  .hk-nav .nav-cta {
    margin-left: auto;
    order: 2;
  }
}

@media (max-width: 520px) {
  section { padding: 3.5rem 1.25rem; }
  body.huntkit-public h1 { font-size: 2.2rem; }
  .hud-items { grid-template-columns: repeat(2, 1fr); }
  footer.hk-site-footer { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hk-nav { padding-left: 1.25rem; padding-right: 1.25rem; }
}
