/* ─── KancilCode design system ────────────────────────────────────────
   Palette inspired by Indonesian kancil — warm wood, sunset orange,
   subtle gold. Targeted to feel elegant + premium without screaming. */
:root {
  --bg: #1a120a;
  --bg-alt: #221608;
  --panel: #2a1d10;
  --border: rgba(255,180,90,0.12);
  --text: #f5ecd9;
  --muted: #9a8067;
  --accent: #ff7a18;
  --accent-2: #d75a00;
  --accent-soft: rgba(255,122,24,0.12);
  --gold: #ffb060;
  --danger: #e74c3c;
  --ok: #3acc6a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text);
  font: 14.5px/1.65 'Inter','Segoe UI',system-ui,sans-serif;
  min-height: 100vh; }
a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold); }
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
p { color: var(--text); }
.muted { color: var(--muted); }
.center { text-align: center; }
.grad {
  background: linear-gradient(135deg, var(--gold), var(--accent) 50%, var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
code { font: 12px/1.4 'JetBrains Mono','Consolas',monospace;
  background: rgba(0,0,0,0.35); padding: 1px 6px; border-radius: 4px;
  color: var(--gold); }

/* ── Header ────────────────────────────────────────────────────────── */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; background: rgba(15,8,2,0.6);
  border-bottom: 1px solid var(--border); backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 100;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { border-radius: 6px; }
.brand-name { font-size: 18px; font-weight: 700; letter-spacing: 0.5px; }
.brand-name .accent { color: var(--accent); }
nav { display: flex; align-items: center; gap: 18px; }
nav a { color: var(--text); font-size: 13px; font-weight: 500; }
.btn-cta {
  display: inline-block; padding: 8px 18px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff !important; font-weight: 600; border: 0; cursor: pointer;
  font-size: 13px; box-shadow: 0 4px 12px rgba(255,122,24,0.25);
  transition: transform .15s, box-shadow .15s;
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255,122,24,0.4);
  color: #fff !important; }
.btn-cta.lg { padding: 12px 28px; font-size: 14px; }
.btn-ghost {
  display: inline-block; padding: 7px 16px; border-radius: 8px;
  background: transparent; color: var(--text); border: 1px solid var(--border);
  font-weight: 500; cursor: pointer; font-size: 13px;
}
.btn-ghost.lg { padding: 11px 24px; font-size: 14px; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-danger {
  background: rgba(231,76,60,0.15); color: var(--danger);
  border: 1px solid rgba(231,76,60,0.4); padding: 5px 10px;
  border-radius: 6px; font-size: 11px; cursor: pointer;
}
.btn-danger:hover { background: var(--danger); color: #fff; }
.small { font-size: 11px; padding: 4px 10px; }

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative; padding: 80px 32px 100px; overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255,122,24,0.18), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255,160,60,0.12), transparent 50%);
}
.hero-content { position: relative; max-width: 1100px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: 72px; line-height: 1; margin-bottom: 8px; }
.hero h1 small { font-size: 28px; font-weight: 400; color: var(--text); letter-spacing: -0.01em; }
.lead { font-size: 17px; color: var(--muted); margin: 22px auto 36px; max-width: 700px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-video {
  margin-top: 60px; max-width: 900px; margin-left: auto; margin-right: auto;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border),
              0 0 60px rgba(255,122,24,0.15);
  aspect-ratio: 16/9; background: #000;
}
.hero-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Features grid ─────────────────────────────────────────────────── */
.feature-grid { padding: 80px 32px; max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 36px; text-align: center; margin-bottom: 48px; }
.section-title .accent { color: var(--accent); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px; transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); border-color: rgba(255,122,24,0.35); }
.card-icon { font-size: 32px; margin-bottom: 12px; }
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ── Download ──────────────────────────────────────────────────────── */
.download { padding: 60px 32px 100px; max-width: 1000px; margin: 0 auto; }
.dl-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px; margin-top: 28px; }
.dl {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 22px; border-radius: 12px; background: var(--panel);
  border: 1px solid var(--border); color: var(--text) !important;
  text-align: center; transition: border-color .2s, transform .2s;
}
.dl:hover { border-color: var(--accent); transform: translateY(-2px); }
.dl span { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.dl small { color: var(--muted); font-size: 11px; }
.dl.available {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--panel), var(--accent-soft, rgba(255,122,24,0.08)));
  position: relative;
}
.dl.available::before {
  content: "✓ READY";
  position: absolute; top: 8px; right: 10px;
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  color: var(--accent);
  background: rgba(255,122,24,0.18);
  padding: 2px 7px; border-radius: 10px;
}
.dl.available:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,122,24,0.25); }
.dl.coming-soon { opacity: 0.55; cursor: default; }
.dl.coming-soon:hover { transform: none; border-color: var(--border); }

/* ── Auth ──────────────────────────────────────────────────────────── */
.auth-box {
  max-width: 420px; margin: 80px auto; padding: 36px;
  background: var(--panel); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.auth-box h1 { font-size: 26px; margin-bottom: 12px; }
.auth-box .muted { font-size: 13px; }
.form { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 12px;
  color: var(--muted); font-weight: 600; letter-spacing: 0.4px; }
.form input {
  background: rgba(0,0,0,0.35); border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 12px; color: var(--text); font: inherit; outline: none;
  transition: border-color .15s;
}
.form input:focus { border-color: var(--accent); }
.form button { margin-top: 6px; padding: 12px; }
.error {
  background: rgba(231,76,60,0.15); color: var(--danger);
  border: 1px solid rgba(231,76,60,0.4); border-radius: 8px;
  padding: 10px 14px; font-size: 13px; margin-top: 14px;
}
.info {
  background: rgba(58,204,106,0.12); color: var(--ok);
  border: 1px solid rgba(58,204,106,0.35); border-radius: 8px;
  padding: 10px 14px; font-size: 13px; margin-top: 14px;
}

/* ── Page wrapper ──────────────────────────────────────────────────── */
.page { max-width: 1100px; margin: 0 auto; padding: 60px 32px; }
.page-title { font-size: 42px; margin-bottom: 32px; color: var(--gold); }
.feature-block { padding: 22px 0; border-bottom: 1px solid var(--border); }
.feature-block h2 { font-size: 20px; margin-bottom: 10px; color: var(--accent); }
.feature-block p, .feature-block li { color: var(--muted); font-size: 14px; }
.feature-block ul { padding-left: 24px; margin-top: 8px; }
.feature-block li { margin-bottom: 4px; }

/* ── Dashboard ─────────────────────────────────────────────────────── */
.dash-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.dash-head h1 { font-size: 28px; }
.badge {
  padding: 5px 14px; border-radius: 999px; background: rgba(255,180,90,0.15);
  color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 1px;
}
.badge.admin { background: rgba(255,122,24,0.2); color: var(--accent); }
.stats .stat { text-align: center; }
.stat h2 { font-size: 36px; color: var(--accent); margin: 6px 0; }
.stat small { color: var(--muted); font-size: 11px; text-transform: uppercase;
  letter-spacing: 1px; font-weight: 600; }
.stat.warn { background: rgba(231,76,60,0.1); border-color: rgba(231,76,60,0.4); }

.users { width: 100%; border-collapse: collapse; margin-top: 14px;
  background: var(--panel); border-radius: 10px; overflow: hidden; }
.users th, .users td { padding: 10px 14px; text-align: left; font-size: 13px;
  border-bottom: 1px solid var(--border); }
.users th { background: rgba(0,0,0,0.3); color: var(--muted);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; }
.users tbody tr:hover { background: rgba(255,122,24,0.05); }
.users select { background: rgba(0,0,0,0.4); color: var(--text);
  border: 1px solid var(--border); border-radius: 5px; padding: 4px 8px; }

/* ── Footer ────────────────────────────────────────────────────────── */
.site-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 32px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted); margin-top: 60px;
}

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .site-header { padding: 14px 20px; flex-wrap: wrap; gap: 12px; }
  nav { gap: 12px; flex-wrap: wrap; }
  .hero { padding: 50px 20px 70px; }
  .hero h1 { font-size: 48px; }
  .hero h1 small { font-size: 20px; }
  .section-title { font-size: 28px; }
  .page-title { font-size: 32px; }
  .dash-head { flex-direction: column; gap: 12px; align-items: flex-start; }
  .users { font-size: 11px; }
  .users th, .users td { padding: 6px 8px; }
}


/* ─── Google OAuth login button ─────────────────────────────────────── */
.btn-google {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 18px;
  background: #fff; color: #2a1e10;
  border: 1px solid rgba(120,80,30,0.25);
  border-radius: 10px;
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow .15s, transform .15s, border-color .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.btn-google:hover {
  border-color: #d35400;
  box-shadow: 0 4px 14px rgba(211,84,0,0.18);
  transform: translateY(-1px);
}
.btn-google svg { flex-shrink: 0; }

.auth-divider {
  position: relative; text-align: center;
  margin: 24px 0 16px;
  color: var(--muted, #9a8067);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.auth-divider::before, .auth-divider::after {
  content: ""; position: absolute; top: 50%;
  height: 1px; width: calc(50% - 30px);
  background: rgba(120,80,30,0.15);
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }
.auth-divider span { background: var(--bg, #fff); padding: 0 8px; position: relative; z-index: 1; }

.center { text-align: center; }
.small  { font-size: 11px; }


/* ─── Auth box overrides (elegant Google login) ───────────────────── */
.auth-box {
  text-align: center;
}
.auth-box h1 { text-align: center; }
.auth-box > .muted { text-align: center; }

/* Google sign-in button — proper white pill with shadow */
a.btn-google,
.btn-google {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 24px;
  padding: 14px 22px;
  background: #ffffff !important;
  color: #1f1300 !important;
  border: 1px solid #d0c2a8;
  border-radius: 10px;
  font: 600 14px/1 "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, system-ui, sans-serif;
  letter-spacing: 0.2px;
  text-decoration: none !important;
  cursor: pointer;
  transition: box-shadow .15s, transform .15s, border-color .15s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.10), 0 1px 3px rgba(60,40,10,0.08);
}
a.btn-google:hover, .btn-google:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(255,122,24,0.25), 0 2px 4px rgba(0,0,0,0.10);
  transform: translateY(-1px);
  color: #1f1300 !important;
}
.btn-google svg { flex-shrink: 0; width: 20px; height: 20px; }
.btn-google span { color: inherit; }

/* ─── Header CTA "Masuk dengan Google" button ──────────────────────── */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(255,122,24,0.25);
  transition: transform .15s, box-shadow .15s;
  border: 0;
  cursor: pointer;
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,122,24,0.4);
}
.btn-cta.lg { padding: 12px 26px; font-size: 14px; }

/* ─── Features page — professional layout ─────────────────────────── */
.page-header {
  text-align: center;
  margin-bottom: 48px;
}
.page-header .page-title {
  font-size: 38px;
  margin-bottom: 8px;
  color: var(--text);
}
.page-sub {
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.feature-block {
  padding: 26px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.feature-block:hover {
  border-color: rgba(255,122,24,0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.feature-block .fb-icon {
  font-size: 28px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(255,122,24,0.25));
}
.feature-block h2 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.1px;
}
.feature-block p, .feature-block li {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}
.feature-block ul.kbd-list {
  padding-left: 0;
  list-style: none;
  margin: 6px 0;
}
.feature-block ul.kbd-list li {
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.feature-block code {
  background: rgba(255,122,24,0.10);
  color: var(--accent);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 12px;
}
kbd {
  display: inline-block;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--gold);
  font: 11px/1 "JetBrains Mono", "Consolas", monospace;
}

.cta-bottom {
  text-align: center;
  padding: 60px 20px 20px;
  border-top: 1px solid var(--border);
}
.cta-bottom h2 {
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--text);
}
.cta-bottom .muted {
  margin-bottom: 24px;
  font-size: 14px;
}

/* Drop the old feature-block bottom border (now using cards) */
.page .feature-block { border-bottom: 1px solid var(--border); }
.page .feature-list .feature-block { border-bottom: 1px solid var(--border); }


/* ─── Admin dashboard — App Control kill switches ──────────────────── */
.control-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  margin: 18px 0 28px;
}
.control-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}
.control-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.control-head h3 { font-size: 15px; color: var(--text); margin: 0; }
.control-row {
  display: flex; gap: 8px; align-items: center;
  margin-top: 16px;
}
.control-row label { font-size: 12px; color: var(--muted); }
.control-row input {
  background: rgba(0,0,0,0.35); border: 1px solid var(--border);
  border-radius: 6px; padding: 6px 10px; color: var(--text);
  font: inherit; outline: none; width: 100px;
}
.control-row input:focus { border-color: var(--accent); }

.toggle-wrap {
  position: relative; display: inline-block;
  width: 44px; height: 24px; cursor: pointer;
}
.toggle-wrap input { display: none; }
.toggle-slider {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: background .15s, border-color .15s;
}
.toggle-slider::before {
  content: ""; position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: var(--muted); border-radius: 50%;
  transition: transform .15s, background .15s;
}
.toggle-wrap input:checked + .toggle-slider {
  background: rgba(231,76,60,0.5);
  border-color: var(--danger);
}
.toggle-wrap input:checked + .toggle-slider::before {
  transform: translateX(20px);
  background: #fff;
}

.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 4px;
}
.stat-mini { text-align: center; }
.stat-mini h2 {
  font-size: 28px; color: var(--accent);
  margin: 6px 0 0; font-weight: 800;
}
.stat-mini small {
  font-size: 9.5px; color: var(--muted);
  letter-spacing: 1px; text-transform: uppercase;
}

/* ─── Heartbeat table ──────────────────────────────────────────────── */
.heartbeat-table { font-size: 12.5px; }
.heartbeat-table td { vertical-align: middle; }
.heartbeat-table .role-select {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: 5px; padding: 3px 6px;
  color: var(--text); font-size: 12px;
}
.heartbeat-table tr.row-blocked {
  background: rgba(231,76,60,0.08);
}
.heartbeat-table tr.row-blocked:hover {
  background: rgba(231,76,60,0.13);
}
.hb-status {
  display: inline-block;
  font: 700 10px/1 inherit;
  letter-spacing: 1px;
  padding: 4px 9px; border-radius: 12px;
}
.hb-status.online   { background: rgba(58,204,106,0.15); color: var(--ok); }
.hb-status.recent   { background: rgba(255,176,96,0.15); color: var(--gold); }
.hb-status.offline  { background: rgba(154,128,103,0.20); color: var(--muted); }
.hb-status.never    { background: rgba(154,128,103,0.10); color: var(--muted); }

.btn-danger {
  background: var(--danger); color: #fff;
  border: 0; border-radius: 6px;
  padding: 5px 11px; font-size: 11px; font-weight: 600;
  cursor: pointer; transition: filter .15s;
}
.btn-danger:hover { filter: brightness(1.15); }
.btn-danger.small { padding: 4px 10px; font-size: 11px; }

@media (max-width: 720px) {
  .control-grid { grid-template-columns: 1fr; }
}


/* ─── Footer (elegant, professional, social) ───────────────────────── */
.site-footer {
  margin-top: 80px;
  padding: 0;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.18)),
    radial-gradient(ellipse 800px 200px at 50% 0%, rgba(255,122,24,0.08), transparent 70%);
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  display: block;     /* override the old flex layout */
  justify-content: initial;
  align-items: initial;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px 28px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
}
.footer-brand { max-width: 320px; }
.footer-logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-size: 18px; font-weight: 700; letter-spacing: 0.2px;
  margin-bottom: 12px;
}
.footer-logo img {
  border-radius: 8px;
  filter: drop-shadow(0 4px 12px rgba(255,122,24,0.25));
}
.footer-tag {
  color: var(--muted); font-size: 13px; line-height: 1.55;
  margin: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  color: var(--text);
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  padding: 5px 0;
  transition: color .12s;
}
.footer-col a:hover { color: var(--accent); }
.footer-social {
  display: inline-flex !important; align-items: center; gap: 8px;
  padding: 7px 12px !important;
  background: rgba(255,122,24,0.08);
  border: 1px solid rgba(255,122,24,0.25);
  border-radius: 999px;
  color: var(--text) !important;
  font-weight: 500;
  transition: background .15s, border-color .15s, transform .15s;
}
.footer-social:hover {
  background: rgba(255,122,24,0.18);
  border-color: var(--accent);
  color: var(--accent) !important;
  transform: translateY(-1px);
}
.footer-social svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
}
.footer-bar {
  border-top: 1px solid var(--border);
  padding: 16px 32px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  color: var(--ok);
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(58, 204, 106, 0.5);
  animation: status-pulse 2.2s infinite;
}
@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(58, 204, 106, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(58, 204, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(58, 204, 106, 0); }
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 24px 20px;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-bar {
    padding: 14px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* ─── Info banner (admin dashboard hint) ──────────────────────────── */
.info-banner {
  background: rgba(255, 122, 24, 0.08);
  border: 1px solid rgba(255, 122, 24, 0.25);
  border-left-width: 3px;
  border-radius: 8px;
  padding: 12px 18px;
  margin: 6px 0 22px;
  font-size: 12.5px;
  color: var(--text);
  line-height: 1.55;
}
.info-banner strong { color: var(--accent); margin-right: 4px; }
.muted-dim {
  color: rgba(154, 128, 103, 0.5);
  font-style: italic;
  font-size: 11px;
}
