:root {
  --bg: #0a0a10; --bg2: #12121a; --bg3: #1a1a26;
  --border: #2a2a3a; --text: #ececec; --muted: #8888aa;
  --accent: #6c63ff; --accent2: #8b83ff;
  --ok: #6ddc8b; --warn: #f0c040; --err: #dc6d6d;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

/* ---- Public site ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.site-header { background: var(--bg2); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.site-header .container { display: flex; align-items: center; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.logo { font-size: 20px; font-weight: 700; }
nav { display: flex; gap: 20px; margin-left: auto; }
nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
nav a:hover { color: var(--text); }

.hero { background: linear-gradient(135deg, #12121a 0%, #1a1030 100%);
        padding: 100px 0 80px; text-align: center; }
.hero h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 800; margin-bottom: 16px; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto 32px; }

.features { padding: 80px 0; background: var(--bg2); }
.features h2 { text-align: center; font-size: 32px; margin-bottom: 48px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14px; }

.pricing { padding: 80px 0; }
.pricing h2 { text-align: center; font-size: 32px; margin-bottom: 8px; }
.pricing-sub { text-align: center; color: var(--muted); margin-bottom: 48px; }
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.tier-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 32px; position: relative; display: flex; flex-direction: column; }
.tier-featured { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.tier-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
              background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
              padding: 3px 12px; border-radius: 99px; white-space: nowrap; }
.tier-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.tier-listeners { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.tier-price { font-size: 42px; font-weight: 800; margin-bottom: 24px; }
.tier-price span { font-size: 16px; color: var(--muted); font-weight: 400; }
.tier-features { list-style: none; margin-bottom: 32px; flex: 1; }
.tier-features li { padding: 6px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.tier-features li:last-child { border: none; }
.buy-btn { width: 100%; margin-top: auto; }

.site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 24px 0; text-align: center; color: var(--muted); font-size: 13px; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--text); }

/* ---- Admin ---- */
.admin-nav { background: var(--bg2); border-bottom: 1px solid var(--border);
             display: flex; align-items: center; gap: 4px; padding: 0 24px; height: 52px; }
.nav-logo { font-weight: 700; font-size: 16px; margin-right: 16px; }
.admin-nav a { color: var(--muted); text-decoration: none; font-size: 14px; padding: 6px 12px;
               border-radius: 6px; transition: background .15s; }
.admin-nav a:hover, .admin-nav a.active { background: var(--bg3); color: var(--text); }
.nav-logout { margin-left: auto; }
.admin-main { max-width: 1200px; margin: 0 auto; padding: 32px 24px; }
.admin-main h1 { font-size: 26px; font-weight: 700; margin-bottom: 24px; }
.admin-login-wrap { max-width: 360px; margin: 120px auto 0; padding: 32px; background: var(--bg2);
                    border: 1px solid var(--border); border-radius: 16px; }
.admin-login-wrap h1 { font-size: 22px; margin-bottom: 24px; }
.login-form { display: flex; flex-direction: column; gap: 16px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.stat-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
             padding: 24px; text-align: center; }
.stat-value { font-size: 42px; font-weight: 800; }
.stat-label { color: var(--muted); font-size: 13px; margin-top: 4px; }
.stat-ok { border-color: #1a5c2a; }
.stat-ok .stat-value { color: var(--ok); }
.stat-warn { border-color: #3a2e00; }
.stat-warn .stat-value { color: var(--warn); }

.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th { text-align: left; padding: 10px 12px; color: var(--muted);
                 border-bottom: 1px solid var(--border); white-space: nowrap; }
.data-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.data-table tr:hover td { background: var(--bg2); }
.row-revoked td { opacity: .5; }
.row-expired td { color: var(--err); }

.form-stack { display: flex; flex-direction: column; gap: 16px; }

/* ---- Shared ---- */
label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 500; }
input, textarea, select {
  background: var(--bg3); border: 1px solid var(--border); color: var(--text);
  border-radius: 8px; padding: 10px 12px; font-size: 14px; font-family: inherit;
  width: 100%; outline: none; transition: border-color .15s;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }

.btn { display: inline-block; padding: 10px 20px; border-radius: 8px; font-size: 14px;
       font-weight: 600; border: 1px solid var(--border); background: var(--bg3);
       color: var(--text); cursor: pointer; text-decoration: none; transition: background .15s; }
.btn:hover { background: var(--bg2); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent2); border-color: var(--accent2); }
.btn-ghost { background: transparent; border-color: transparent; }
.btn-ghost:hover { background: var(--bg2); }
.btn-danger { border-color: var(--err); color: var(--err); }
.btn-danger:hover { background: rgba(220,109,109,.15); }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 5px 10px; font-size: 12px; }
.btn-stripe { background: #635bff; border-color: #635bff; color: #fff; width: 100%; }
.btn-stripe:hover { background: #7a73ff; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.pill { display: inline-block; padding: 2px 10px; border-radius: 99px; font-size: 11px; font-weight: 700; }
.pill-active { background: #1a5c2a; color: var(--ok); }
.pill-revoked { background: #5c1a1a; color: var(--err); }
.pill-expired { background: #3a2e00; color: var(--warn); }
.pill-starter  { background: #1a2a5c; color: #8bb0ff; }
.pill-standard { background: #2a1a5c; color: #b08bff; }
.pill-pro      { background: #1a4c3a; color: #6dc8a0; }

.flash { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }
.flash-ok { background: #1a3a22; color: var(--ok); border: 1px solid #1a5c2a; }
.flash-error { background: #3a1a1a; color: var(--err); border: 1px solid #5c1a1a; }
.msg { font-size: 13px; margin-top: 6px; min-height: 20px; }
.msg.ok { color: var(--ok); }
.msg.err { color: var(--err); }

/* Payment modal */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.75); }
.modal-body { position: relative; background: var(--bg2); border: 1px solid var(--border);
              border-radius: 16px; padding: 32px; width: 100%; max-width: 440px; margin: 16px; }
.modal-body h2 { margin-bottom: 4px; }
.payment-methods { display: flex; flex-direction: column; gap: 0; }

@media (max-width: 600px) {
  .admin-nav { gap: 0; padding: 0 12px; }
  .admin-nav a { padding: 6px 8px; font-size: 12px; }
  .nav-logo { display: none; }
  .admin-main { padding: 16px 12px; }
}

/* ──────────────────────────────────────────
   HOW TO JOIN section
──────────────────────────────────────────── */
.how-to-section {
  background: #050508;
  padding: 60px 0;
  border-top: 2px solid #1a1a2e;
  border-bottom: 2px solid #1a1a2e;
}

/* Header */
.how-to-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px; align-items: start;
  margin-bottom: 36px;
  padding: 28px 32px;
  background: #0a0a12;
  border: 1px solid #1a1a30;
  border-radius: 16px;
  flex-wrap: wrap;
}
@media (max-width: 800px) { .how-to-header { grid-template-columns: 1fr; } }

.how-to-header-left {
  display: flex; align-items: center; gap: 14px;
}
.how-to-brand {
  font-size: 26px; font-weight: 900;
  letter-spacing: .08em; color: #fff;
  line-height: 1;
}
.how-to-brand-sub {
  font-size: 14px; font-weight: 700;
  letter-spacing: .3em; color: #ff2d78;
  border-top: 2px solid #ff2d78;
  border-bottom: 2px solid #ff2d78;
  padding: 1px 0; margin-top: 4px;
}
.how-to-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin: 0 0 10px;
  text-transform: uppercase;
}
.how-to-title-accent { color: #ff2d78; }
.how-to-tagline {
  font-size: 16px; color: rgba(255,255,255,.75);
  margin: 0 0 14px;
}
.how-to-bullets {
  list-style: none; font-size: 13px;
  color: rgba(255,255,255,.7); line-height: 1.8;
}
.quick-easy-box {
  border: 2px solid #ff2d78;
  border-radius: 12px; padding: 18px 20px;
  max-width: 220px; text-align: center;
  color: rgba(255,255,255,.85);
}
.quick-easy-title {
  font-size: 13px; font-weight: 700;
  color: #ff2d78; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: .06em;
}

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
@media (max-width: 1000px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: #0e0e1a;
  border: 1px solid #1e1e36;
  border-radius: 12px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.step-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, #ff2d78, #6c63ff);
  color: #fff; font-size: 16px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-title {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em;
  color: #fff; margin: 0; line-height: 1.3;
}
.step-content p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.55; margin: 0; }
.step-tip {
  font-size: 12px; color: #39ff14;
  margin-top: 6px; font-weight: 500;
}
.step-icons {
  font-size: 32px; text-align: center;
  margin: 6px 0;
}
.step-phone-mock {
  background: #05050d;
  border: 1.5px solid #2a2a50;
  border-radius: 8px;
  padding: 10px; text-align: center;
  font-size: 12px; color: rgba(255,255,255,.7);
  margin: 4px 0;
}
.phone-label {
  font-weight: 700; font-size: 11px;
  color: #fff; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .04em;
}
.phone-wifi-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 4px 6px;
  background: #10102a; border-radius: 6px;
}
.step-join-btn {
  background: linear-gradient(90deg, #ff2d78, #d4006d);
  color: #fff; font-size: 22px; font-weight: 900;
  text-align: center; border-radius: 8px;
  padding: 10px; margin: 6px 0;
  letter-spacing: .06em;
}
.channel-list { display: flex; flex-direction: column; gap: 5px; margin: 6px 0; }
.channel-row {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 500;
}
.channel-row span { margin-left: auto; opacity: .7; font-size: 11px; }
.ch-blue  { background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.3); }
.ch-red   { background: rgba(239,68,68,.15);  border: 1px solid rgba(239,68,68,.3); }
.ch-green { background: rgba(34,197,94,.15);  border: 1px solid rgba(34,197,94,.3); }
.reconnect-demo {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin: 8px 0;
}
.reconnect-lost {
  background: #1a0a0a; border: 1.5px solid #7f1d1d;
  color: #fca5a5; font-size: 11px; font-weight: 700;
  padding: 8px 10px; border-radius: 6px; text-align: center;
}
.reconnect-back {
  background: #0a1a0a; border: 1.5px solid #14532d;
  color: #39ff14; font-size: 11px; font-weight: 700;
  padding: 8px 10px; border-radius: 6px; text-align: center;
}
.beta-notice {
  background: #0e0e20; border: 1px solid #2a2a50;
  border-radius: 8px; padding: 10px; margin-top: 10px;
}
.beta-title {
  font-size: 11px; font-weight: 700;
  color: #00e5ff; text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 6px;
}

/* Color accents */
.accent-pink  { color: #ff2d78; }
.accent-cyan  { color: #00e5ff; }
.accent-green { color: #39ff14; }
.link-cyan    { color: #00e5ff; }

/* Footer bar */
.how-to-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 18px 28px;
  background: #0a0a14;
  border: 1px solid #1a1a30;
  border-radius: 12px; flex-wrap: wrap;
}
.how-to-footer-left,
.how-to-footer-right { display: flex; align-items: center; gap: 12px; }
.how-to-footer-center {
  display: flex; align-items: center; gap: 10px;
  flex: 1; justify-content: center; flex-wrap: wrap;
}
.footer-step {
  font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  color: #fff;
}
.footer-sep { color: #ff2d78; font-size: 18px; font-weight: 700; }

/* modal hidden fix — prevents display:flex overriding the hidden attribute */
.modal[hidden] { display: none !important; }

/* Logo image */
.site-logo-img { height: 48px; width: auto; display: block; }
.site-header .container { padding-top: 8px; padding-bottom: 8px; }
.hero-logo { text-align: center; margin-bottom: 24px; }
.hero-logo-img { height: 180px; width: auto; margin: 0 auto; filter: drop-shadow(0 0 24px rgba(255,45,120,0.4)); }

/* ══════════════════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════════════════ */
.section-banner {
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 36px;
}
.section-banner-icon {
  font-size: 40px; flex-shrink: 0; line-height: 1;
}
.section-banner-title {
  font-size: clamp(22px, 4vw, 32px); font-weight: 900;
  text-transform: uppercase; letter-spacing: .06em;
  margin: 0 0 6px; color: #fff;
}
.section-banner-sub {
  font-size: 15px; opacity: .75; margin: 0;
}

/* ══════════════════════════════════════════════════
   OPERATOR SETUP GUIDE
══════════════════════════════════════════════════ */
.op-section {
  padding: 72px 0; background: #06080f;
  border-top: 1px solid #1a1a30;
}
.op-step-card {
  display: flex; gap: 24px; align-items: flex-start;
  background: #0e111a; border: 1px solid #1a2035;
  border-radius: 14px; padding: 24px 28px;
  margin-bottom: 18px;
}
.op-step-card-full { display: block; }
.op-step-num-wrap { flex-shrink: 0; }
.op-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg,#ff2d78,#8b1cf1);
  color: #fff; font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.op-step-title {
  font-size: 18px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .05em; margin: 0 0 8px; color: #fff;
}
.op-step-desc { font-size: 14px; opacity: .8; margin: 0 0 12px; line-height: 1.6; }
.op-check { list-style: none; padding: 0; margin: 0; }
.op-check li {
  font-size: 13px; padding: 4px 0 4px 20px; position: relative; opacity: .85;
}
.op-check li::before { content: "✓"; position: absolute; left: 0; color: #39ff14; font-weight: 700; }

.op-step-golive { border-color: rgba(57,255,20,.3); background: rgba(57,255,20,.04); }

/* Source grid */
.source-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 16px;
}
@media (max-width: 800px) { .source-grid { grid-template-columns: 1fr; } }
.source-tile {
  background: #0a0d16; border: 1px solid #1e2a40;
  border-radius: 10px; padding: 18px; position: relative;
}
.source-tile-featured { border-color: rgba(255,45,120,.4); background: rgba(255,45,120,.04); }
.source-tile-badge {
  position: absolute; top: -10px; right: 14px;
  background: #ff2d78; color: #fff; font-size: 10px; font-weight: 700;
  padding: 2px 10px; border-radius: 99px; text-transform: uppercase; letter-spacing: .07em;
}
.source-tile-icon { font-size: 28px; margin-bottom: 8px; }
.source-tile h4 { margin: 0 0 6px; font-size: 14px; font-weight: 700; }
.source-tile p { font-size: 13px; opacity: .75; margin: 0 0 10px; line-height: 1.5; }
.source-steps-ol { padding-left: 18px; margin: 0; font-size: 12px; opacity: .8; line-height: 1.7; }

/* Channel assign row */
.chan-assign-row {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px;
}
.chan-pill {
  padding: 6px 14px; border-radius: 99px; font-size: 13px; font-weight: 600;
  border: 1px solid;
}

/* ══════════════════════════════════════════════════
   WiFi GUIDE
══════════════════════════════════════════════════ */
.wifi-section {
  padding: 72px 0; background: #070810;
  border-top: 1px solid #1a1a30;
}
.wifi-compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-bottom: 36px;
}
@media (max-width: 700px) { .wifi-compare-grid { grid-template-columns: 1fr; } }
.wifi-card {
  background: #0e111a; border: 1px solid #1a2035;
  border-radius: 14px; padding: 24px;
}
.wifi-card-24 { border-color: rgba(255,45,120,.3); }
.wifi-card-5  { border-color: rgba(0,229,255,.3); }
.wifi-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.wifi-card-header h3 { margin: 0; font-size: 16px; font-weight: 700; }
.wifi-freq-badge {
  padding: 3px 10px; border-radius: 6px;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.wifi-list { list-style: none; padding: 0; margin: 0 0 14px; }
.wifi-list li { font-size: 13px; padding: 4px 0; opacity: .85; }
.wifi-rec {
  font-size: 12px; background: rgba(255,255,255,.04);
  border-radius: 6px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.06);
}

.wifi-block-title {
  font-size: 17px; font-weight: 700; margin: 0 0 18px; color: #fff;
}
.wifi-ap-block { margin-bottom: 36px; }
.wifi-ap-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
@media (max-width: 800px) { .wifi-ap-grid { grid-template-columns: 1fr; } }
.wifi-ap-card {
  background: #0e111a; border: 1px solid #1a2035;
  border-radius: 12px; padding: 20px; text-align: center;
}
.wifi-ap-card-mid { border-color: rgba(0,229,255,.3); }
.wifi-ap-icon { font-size: 32px; margin-bottom: 10px; }
.wifi-ap-card h4 { margin: 0 0 6px; font-size: 14px; font-weight: 700; }
.wifi-ap-desc { font-size: 12px; opacity: .65; margin: 0 0 10px; }
.wifi-ap-num {
  font-size: 22px; font-weight: 900; color: #00e5ff; margin: 8px 0;
}
.wifi-ap-note { font-size: 12px; opacity: .7; line-height: 1.5; margin: 0; }

.wifi-tips-block { }
.wifi-tips-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 700px) { .wifi-tips-grid { grid-template-columns: 1fr; } }
.wifi-tip {
  display: flex; gap: 14px; align-items: flex-start;
  background: #0e111a; border: 1px solid #1a2035;
  border-radius: 10px; padding: 16px;
}
.wifi-tip-icon { font-size: 22px; flex-shrink: 0; }
.wifi-tip strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.wifi-tip p { font-size: 12px; opacity: .75; margin: 0; line-height: 1.5; }

/* ══════════════════════════════════════════════════
   DJ SUPPORT
══════════════════════════════════════════════════ */
.dj-section {
  padding: 72px 0; background: #06080f;
  border-top: 1px solid #1a1a30;
}
.dj-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 800px) { .dj-grid { grid-template-columns: 1fr; } }
.dj-card {
  background: #0e111a; border: 1px solid #1a2035;
  border-radius: 12px; padding: 22px;
}
.dj-card-title {
  font-size: 15px; font-weight: 700; margin: 0 0 10px; color: #fff;
}
.dj-card p { font-size: 13px; opacity: .8; margin: 0 0 10px; line-height: 1.6; }
.dj-steps {
  padding-left: 20px; margin: 0 0 12px; font-size: 13px; line-height: 1.8; opacity: .85;
}
.dj-list {
  list-style: none; padding: 0; margin: 0 0 12px;
}
.dj-list li {
  font-size: 13px; padding: 4px 0; opacity: .85; border-bottom: 1px solid #141a28;
  line-height: 1.5;
}
.dj-list li:last-child { border-bottom: none; }
.dj-tip {
  background: rgba(0,229,255,.06); border: 1px solid rgba(0,229,255,.15);
  border-radius: 8px; padding: 10px 12px; font-size: 12px; opacity: .9;
  line-height: 1.5;
}
.dj-contact {
  display: flex; gap: 12px; flex-wrap: wrap; margin: 10px 0;
}
.dj-contact-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 8px;
  background: #111827; border: 1px solid #1f2937;
  color: #60a5fa; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background .12s;
}
.dj-contact-link:hover { background: #1e293b; text-decoration: none; }

/* App mockup feature card */
.feature-card-mockup {
  grid-column: span 1;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 0; overflow: hidden;
}
.feature-mockup-img {
  width: 100%; max-width: 220px;
  height: auto; display: block;
  margin: -8px auto 14px;
  border-radius: 22px;
  box-shadow: 0 0 40px rgba(255,45,120,0.35), 0 0 80px rgba(0,229,255,0.15);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
}

/* Admin dashboard full-width feature card */
.feature-card-dashboard {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 28px 28px 0;
}
.feature-card-dashboard h3 { font-size: 20px; margin-bottom: 6px; }
.feature-card-dashboard p  { font-size: 15px; margin-bottom: 20px; max-width: 600px; }
.feature-dashboard-img {
  width: 100%; height: auto; display: block;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -4px 40px rgba(0,229,255,0.15), 0 0 0 1px rgba(255,255,255,0.06);
}
