/* roblox-exploits.com — dashboard/status-board design system
   Distinct from sibling Madium-network sites: no marketing feature-cards,
   instead every executor renders as a live-status console card. */

:root {
  /* palette sampled directly from /assets/images/Roblox-Exploits.png */
  --bg: #0a0c14;
  --bg-elev: #10131f;
  --panel: #141826;
  --panel-2: #191e2f;
  --border: #232a42;
  --border-bright: #2f3958;
  --accent: #5cff2e;
  --accent-dim: #2f9c14;
  --accent-glow: rgba(92, 255, 46, 0.18);
  --brand-red: #e42a22;
  --brand-red-bright: #ff453d;
  --text: #eef1f8;
  --text-dim: #9aa3ba;
  --text-faint: #656e88;
  --red: #ff453d;
  --yellow: #ffcc4d;
  --radius: 10px;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  background-image:
    radial-gradient(circle at 15% 0%, rgba(92,255,46,0.07), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(228,42,34,0.05), transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(92,255,46,0.04), transparent 40%);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.hex-bg {
  background-image: url("/assets/images/hex-pattern.png");
  background-repeat: repeat;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--sans); font-weight: 700; line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; color: var(--text-dim); }
.mono { font-family: var(--mono); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 64px 0; }
.section-tight { padding: 40px 0; }

/* ---------- Top status bar ---------- */
.statusbar {
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-faint);
  padding: 6px 0;
}
.statusbar .wrap { display: flex; justify-content: space-between; align-items: center; }
.statusbar .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-right: 6px; box-shadow: 0 0 6px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ---------- Nav ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,12,20,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
nav.navbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-weight: 700; font-size: 18px; color: var(--text); }
.logo .bracket { color: var(--accent); }
.logo-img { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; flex-shrink: 0; box-shadow: 0 0 10px rgba(92,255,46,0.35), 0 0 18px rgba(228,42,34,0.15); }
.footer-col .logo-img { width: 30px; height: 30px; }
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 500; }
.nav-links a { color: var(--text-dim); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #06120a; padding: 9px 18px; border-radius: 6px;
  font-weight: 700; font-size: 13px; font-family: var(--mono);
}
.nav-cta:hover { background: #8dff52; color: #06120a; }
.nav-toggle {
  display: none; background: var(--panel); border: 1px solid var(--border-bright);
  color: var(--text); width: 38px; height: 38px; border-radius: 6px; font-size: 16px; cursor: pointer;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-family: var(--mono); font-size: 12px; color: var(--text-faint); padding: 18px 0 0; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 6px; color: var(--border-bright); }

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 40px;
  background-image: url("/assets/images/hex-pattern.png");
  background-repeat: repeat;
  background-position: top center;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
}
.hero-eyebrow {
  font-family: var(--mono); font-size: 12px; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; display: block;
}
.hero h1 { font-size: 44px; letter-spacing: -0.02em; }
.hero .lede { font-size: 18px; max-width: 680px; color: var(--text-dim); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }
.badge {
  font-family: var(--mono); font-size: 12px; padding: 5px 10px; border-radius: 999px;
  border: 1px solid var(--border-bright); color: var(--text-dim); background: var(--panel);
}
.badge.on { color: var(--accent); border-color: var(--accent-dim); background: var(--accent-glow); }
.badge.warn { color: var(--yellow); border-color: #6b5a1f; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 8px; font-weight: 700; font-size: 14px;
  font-family: var(--sans); border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #06120a; }
.btn-primary:hover { background: #8dff52; }
.btn-outline { background: transparent; border-color: var(--border-bright); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; justify-content: center; }
.btn small { font-weight: 500; opacity: .75; font-family: var(--mono); font-size: 11px; }

/* ---------- Console/status card (executor grid on homepage) ---------- */
.console-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.console-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-dim);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .15s, transform .15s;
}
.console-card:hover { border-color: var(--border-bright); border-left-color: var(--accent); transform: translateY(-2px); }
.console-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.console-card-name { font-size: 18px; font-weight: 700; }
.console-card-ver { font-family: var(--mono); font-size: 11px; color: var(--text-faint); }
.status-pill {
  font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .05em;
  color: var(--accent); display: flex; align-items: center; gap: 5px;
}
.status-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 5px var(--accent); }
.console-card-pitch { font-size: 13px; color: var(--text-dim); margin: 0; min-height: 40px; }
.meter-row { display: flex; flex-direction: column; gap: 6px; font-family: var(--mono); font-size: 11px; }
.meter-label { display: flex; justify-content: space-between; color: var(--text-faint); }
.meter-track { height: 5px; background: var(--panel-2); border-radius: 3px; overflow: hidden; }
.meter-fill { height: 100%; background: linear-gradient(90deg, var(--accent-dim), var(--accent)); }
.console-card-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.console-card-badges .badge { font-size: 10px; padding: 3px 8px; }
.console-card-cta { margin-top: auto; display: flex; gap: 8px; }
.console-card-cta .btn { flex: 1; padding: 10px 14px; font-size: 13px; }

/* ---------- Intro / prose sections ---------- */
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head .kicker { font-family: var(--mono); font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; }
.section-head h2 { font-size: 30px; margin-top: 8px; }
.prose { max-width: 760px; }
.prose h3 { font-size: 20px; margin-top: 28px; }

/* ---------- Feature grid (used inside executor pages) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-item {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px;
}
.feature-item h4 { font-size: 15px; margin-bottom: 6px; color: var(--accent); }
.feature-item p { font-size: 13.5px; margin: 0; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 760px; }
table.compare th, table.compare td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
table.compare th { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-faint); background: var(--bg-elev); }
table.compare td { color: var(--text-dim); }
table.compare tr:last-child td { border-bottom: none; }
table.compare td.name { color: var(--text); font-weight: 600; }
table.compare a.tlink { color: var(--accent); font-family: var(--mono); font-size: 12px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 14px; }
.step { display: flex; gap: 16px; align-items: flex-start; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.step .num {
  counter-increment: step; font-family: var(--mono); font-weight: 700; color: var(--accent);
  background: var(--accent-glow); border: 1px solid var(--accent-dim); width: 30px; height: 30px;
  border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px;
}
.step .body h4 { margin: 0 0 4px; font-size: 15px; }
.step .body p { margin: 0; font-size: 13.5px; }

/* ---------- Stat dashboard strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.stat-cell { background: var(--panel); padding: 20px; text-align: center; }
.stat-cell .num { font-family: var(--mono); font-size: 26px; font-weight: 700; color: var(--accent); }
.stat-cell .lbl { font-size: 11.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }

/* ---------- FAQ accordion ---------- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; background: var(--panel); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-family: var(--sans); font-weight: 600; font-size: 15px; padding: 16px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q::after { content: "+"; font-family: var(--mono); color: var(--accent); font-size: 18px; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 20px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 18px; }
.faq-a p { margin: 0; font-size: 14px; }

/* ---------- Download panel ---------- */
.dl-panel { background: var(--panel); border: 1px solid var(--accent-dim); border-radius: 14px; padding: 32px; position: relative; overflow: hidden; }
.dl-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top right, var(--accent-glow), transparent 60%); pointer-events: none; }
.dl-links { display: grid; gap: 12px; margin-top: 20px; }
.dl-link-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--panel-2); border: 1px solid var(--border); border-radius: 8px; padding: 14px 18px; flex-wrap: wrap; }
.dl-link-row .meta { display: flex; flex-direction: column; }
.dl-link-row .meta .lbl { font-weight: 700; font-size: 14px; }
.dl-link-row .meta .sub { font-family: var(--mono); font-size: 11.5px; color: var(--text-faint); }
.dl-disclaimer { font-size: 12px; color: var(--text-faint); margin-top: 18px; }

/* ---------- Warning/callout ---------- */
.callout { border-left: 3px solid var(--yellow); background: rgba(255,204,77,0.06); padding: 14px 18px; border-radius: 0 8px 8px 0; font-size: 13.5px; color: var(--text-dim); }
.callout.danger { border-left-color: var(--red); background: rgba(255,92,92,0.06); }
.callout strong { color: var(--text); }

/* ---------- Footer ---------- */
footer.site-footer { border-top: 1px solid var(--border); background: var(--bg-elev); padding: 48px 0 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-col h5 { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-faint); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13.5px; color: var(--text-dim); margin-bottom: 8px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--text-faint); }
.footer-legal-note { font-size: 12px; color: var(--text-faint); max-width: 800px; margin-top: 6px; }
.footer-discord {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-weight: 700; font-size: 13px; color: var(--accent); font-family: var(--mono);
}
.footer-discord:hover { color: #8dff52; }

/* ---------- Utility ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }

@media (max-width: 900px) {
  .console-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .console-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .navbar { flex-wrap: wrap; }
  .nav-toggle { display: block; order: 2; }
  .nav-cta { order: 3; }
  .nav-links {
    display: none; order: 4; width: 100%; flex-direction: column; align-items: flex-start;
    gap: 4px; padding-top: 14px; margin-top: 14px; border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
}
