:root {
  --bg-dark: #030408;
  --bg-card: rgba(10, 12, 18, 0.35);
  --border-card: rgba(255, 255, 255, 0.04);
  --border-card-hover: rgba(255, 255, 255, 0.12);
  --border-inset: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --text-primary: #f0f0f4;
  --text-secondary: #88909b;
  --text-muted: #5e6470;
  --accent-guard: #00d4ff;
  --accent-blue: #0088ff;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --risk-critical: #ff2a5f;
  --risk-high: #ff7300;
  --risk-medium: #ffc400;
  --risk-low: #00d473;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --glass-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.8);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  will-change: transform;
  animation: orbDrift 20s infinite ease-in-out alternate;
}
.orb-1 {
  width: min(600px, 80vw); height: min(600px, 80vw);
  background: radial-gradient(circle, rgba(0,136,255,0.35) 0%, transparent 70%);
  top: -10%; left: -10%;
  animation-delay: -5s;
}
.orb-2 {
  width: min(500px, 70vw); height: min(500px, 70vw);
  background: radial-gradient(circle, rgba(0,212,255,0.25) 0%, transparent 70%);
  bottom: 0; right: -5%;
  animation-duration: 25s;
}
.orb-3 {
  width: min(400px, 60vw); height: min(400px, 60vw);
  background: radial-gradient(circle, rgba(255,42,95,0.12) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation-duration: 30s;
  animation-delay: -10s;
}
@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 30px) scale(1.05); }
  100% { transform: translate(-30px, 60px) scale(0.95); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-weight: 700; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
a { color: var(--accent-guard); text-decoration: none; transition: color 0.2s ease; }
a:hover { text-shadow: 0 0 10px var(--accent-glow); }

/* ===== GLASS PANEL ===== */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--border-inset), var(--glass-shadow);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.glass-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}
.glass-panel > * { position: relative; z-index: 1; }

/* Desktop-only hover lift — disabled on touch */
@media (hover: hover) {
  .glass-panel:hover {
    border-color: var(--border-card-hover);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 24px 50px -12px rgba(0,0,0,0.9);
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
  text-align: center;
  white-space: nowrap;
}
.btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-guard));
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(0,212,255,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(0,212,255,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
  background: linear-gradient(135deg, #0099ff, #00e8ff);
}
.btn-rounded { border-radius: 100px; }

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(3,4,8,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 140px;
}
.logo a { color: inherit; display: flex; align-items: center; gap: 10px; }
.logo a:hover { text-shadow: none; }
.logo span.guard {
  background: linear-gradient(to right, var(--accent-guard), var(--accent-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text-primary); text-shadow: none; }
.nav-links a::after {
  content: '';
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-guard);
  bottom: -8px; left: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 0.2s ease;
  box-shadow: 0 0 8px var(--accent-guard);
}
.nav-links a:hover::after { transform: translateX(-50%) scale(1); }
.nav-author { font-size: 0.8rem; color: var(--text-muted); flex-shrink: 0; white-space: nowrap; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5% 60px;
  max-width: 1500px;
  margin: 0 auto;
  gap: 40px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent-guard);
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.2);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(0,212,255,0.08);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff 20%, #88909b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 0.8s cubic-bezier(0.16,1,0.3,1);
}
.hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero-accent {
  -webkit-text-fill-color: var(--accent-guard);
  filter: drop-shadow(0 0 15px rgba(0,212,255,0.2));
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  width: 100%;
  height: 420px;
  animation: fadeInUp 1s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
.visual-card {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.vc-main {
  width: min(340px, 80%);
  background: rgba(10,15,25,0.85);
  z-index: 2;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
.vc-float-1 {
  width: min(240px, 55%);
  top: 10%;
  right: 5%;
  background: rgba(255,42,95,0.08);
  border-color: rgba(255,42,95,0.25);
  z-index: 3;
  animation: softFloat 6s ease-in-out infinite alternate;
}
.vc-float-2 {
  width: min(200px, 50%);
  bottom: 10%;
  left: 5%;
  background: rgba(0,212,255,0.05);
  border-color: rgba(0,212,255,0.2);
  z-index: 1;
  animation: softFloat 7s ease-in-out infinite alternate-reverse;
}
@keyframes softFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* ===== PULSE DOT ===== */
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--risk-critical);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--risk-critical);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,42,95,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255,42,95,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,42,95,0); }
}

/* ===== REPORT LAYOUT ===== */
.report-container {
  max-width: 1400px;
  margin: 100px auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
}

/* ===== CONTENT PAGE LAYOUT ===== */
.content-page {
  max-width: 860px;
  margin: 120px auto 60px;
  padding: 0 20px;
}
.content-page .glass-panel { padding: 40px; }
.content-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  background: linear-gradient(180deg, #fff 20%, #88909b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content-page .lead {
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.8;
  margin-bottom: 36px;
}
.content-page .section-title {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.content-page .section-title i { color: var(--accent-guard); font-size: 1.2rem; }
.content-page .body-text {
  color: var(--text-secondary);
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.7;
  margin-bottom: 28px;
}
.code-block {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 24px;
}
.code-block .endpoint {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-guard);
  margin-bottom: 8px;
}
.code-block .auth-line {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.code-block p {
  font-size: 0.88rem;
  color: var(--text-primary);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
  line-height: 1.6;
}
.classified-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  flex-direction: column;
  gap: 12px;
}
.classified-box i { font-size: 2rem; color: var(--text-muted); }
.classified-box span { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); }
.footer-note { margin-top: 40px; text-align: center; color: var(--text-muted); font-style: italic; font-size: 0.85rem; }

/* Integration Cards */
.integration-card {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 28px;
}
.integration-card .platform-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.integration-card h3 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.integration-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }
.btn-disabled { opacity: 0.4; pointer-events: none; }

/* ===== USER PROFILE SIDEBAR ===== */
.user-profile {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.avatar {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bg-dark);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 3px solid var(--border-card);
  box-shadow: inset 0 4px 10px rgba(0,0,0,0.5), 0 8px 16px rgba(0,0,0,0.5);
  overflow: visible; /* Changed from hidden so the pseudo-element ring can show outside */
}
.avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}
.username {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 0%, #88909b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.userid { color: var(--text-muted); font-family: var(--font-mono); font-size: 0.78rem; margin-top: 4px; }
.meta-stats { display: flex; flex-direction: column; gap: 12px; }
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.02);
}
.stat-label { color: var(--text-secondary); font-size: 0.82rem; font-weight: 500; }
.stat-value { font-weight: 700; font-family: var(--font-mono); font-size: 0.9rem; }

/* Report header */
.report-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-card);
  flex-wrap: wrap;
  gap: 16px;
}
.report-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}
.risk-badge {
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.risk-CRITICAL {
  background: rgba(255,42,95,0.15);
  color: var(--risk-critical);
  border: 1px solid rgba(255,42,95,0.4);
  box-shadow: 0 0 25px rgba(255,42,95,0.25), inset 0 0 15px rgba(255,42,95,0.08);
  animation: bgPulse 3s infinite;
}
@keyframes bgPulse {
  0%,100% { box-shadow: 0 0 25px rgba(255,42,95,0.25), inset 0 0 15px rgba(255,42,95,0.08); }
  50% { box-shadow: 0 0 40px rgba(255,42,95,0.4), inset 0 0 20px rgba(255,42,95,0.15); }
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}
.card-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-title i { color: var(--accent-guard); font-size: 1.1rem; }

/* Evidence Table */
.evidence-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.evidence-table th,
.evidence-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.evidence-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
  background: rgba(10,12,18,0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
}
.evidence-table tr { transition: background 0.15s ease; }
.evidence-table tr:hover td { background: rgba(255,255,255,0.02); }
.evidence-table .time {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.tag {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-block;
  white-space: nowrap;
}
.tag-racist { background: rgba(255,42,95,0.15); color: #ff6088; border: 1px solid rgba(255,42,95,0.3); }
.tag-harassment { background: rgba(255,115,0,0.15); color: #ffb473; border: 1px solid rgba(255,115,0,0.3); }
.tag-toxic { background: rgba(157,0,255,0.15); color: #c466ff; border: 1px solid rgba(157,0,255,0.3); }
.tag-spam { background: rgba(255, 196, 0, 0.15); color: #ffdb66; border: 1px solid rgba(255, 196, 0, 0.3); }
.tag-suspicious { background: rgba(0, 212, 255, 0.15); color: #66e8ff; border: 1px solid rgba(0, 212, 255, 0.3); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== UTILITIES ===== */
.text-white { color: #fff; }
.text-white-sm { color: #fff; font-size: 0.85rem; line-height: 1.5; }
.fw-bold { font-weight: 700; }
.text-muted-sm { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-secondary); }
.text-critical-sm { font-size: 0.78rem; font-weight: 800; color: var(--risk-critical); text-transform: uppercase; letter-spacing: 0.05em; }
.text-accent-sm { font-size: 0.78rem; font-weight: 700; color: var(--accent-guard); text-transform: uppercase; letter-spacing: 0.04em; }
.flex-center-gap { display: flex; align-items: center; gap: 10px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.p-4 { padding: 24px; }
.logo-icon { color: var(--accent-guard); filter: drop-shadow(0 0 8px rgba(0,212,255,0.35)); }

/* Visual card sub-components */
.vc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 14px; }
.vc-avatar { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.1); background-size: cover; background-position: center; flex-shrink: 0; }
.skeleton-bar { height: 10px; background: rgba(255,255,255,0.05); border-radius: 6px; margin-bottom: 10px; }
.skeleton-bar.w-60 { width: 60%; }
.skeleton-bar.w-80 { width: 80%; }
.skeleton-bar.w-90 { width: 90%; }

/* Report recommendation & admin */
.rec-panel { background: rgba(255,42,95,0.08); border-color: rgba(255,42,95,0.2); padding: 16px; text-align: center; }
.rec-title { font-weight: 800; font-size: 1.4rem; color: var(--risk-critical); margin-bottom: 6px; }
.req-by-container { display: none; margin-top: 28px; border-top: 1px dashed rgba(255,255,255,0.06); padding-top: 20px; text-align: center; }
.req-by-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.req-by-avatar { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border-card); display: none; object-fit: cover; }
.req-by-name { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.avatar-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    gap: 20px;
  }
  .hero-content { align-items: center; }
  .hero-visual { height: 340px; margin: 0 auto; max-width: 500px; }
  .vc-main { left: 5%; width: 65%; }
  .vc-float-1 { right: 0; width: 48%; }
  .vc-float-2 { left: 0; width: 42%; }
  .report-container { grid-template-columns: 1fr; }
  .navbar { padding: 14px 20px; gap: 16px; }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 768px) {
  .navbar { flex-wrap: wrap; justify-content: center; padding: 16px; gap: 16px; }
  .logo { margin: 0 auto; text-align: center; justify-content: center; width: 100%; }
  .logo a { justify-content: center; }
  .nav-links {
    position: static;
    transform: none;
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav-links a { font-size: 0.8rem; }
  .nav-author { display: none; }

  .hero { padding: 140px 20px 40px; min-height: auto; }
  .hero p { max-width: 100%; font-size: 1.05rem; }
  .hero-actions { width: 100%; }
  .btn { width: 100%; }
  
  /* BENTO BOX LAYOUT FOR MOBILE */
  .hero-visual { 
    height: auto; 
    max-width: 100%; 
    display: grid; 
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
    animation: none;
  }
  .visual-card {
    position: relative !important;
    width: 100% !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    transform: none !important;
    animation: none !important;
    margin: 0 !important;
  }
  .vc-main { grid-column: 1 / -1; }
  .badge-v2 { font-size: 0.72rem; padding: 5px 12px; }

  .report-container { padding: 0 16px; margin-top: 140px; gap: 20px; }
  .avatar { width: 80px; height: 80px; font-size: 1.8rem; }
  .username { font-size: 1.3rem; }
  .report-header { flex-direction: column; align-items: stretch; }
  .risk-badge { width: 100%; justify-content: center; }

  .evidence-table { font-size: 0.82rem; }
  .evidence-table th, .evidence-table td { padding: 10px 14px; }
  .cards-grid { grid-template-columns: 1fr; }

  .content-page { margin-top: 140px; }
  .content-page .glass-panel { padding: 24px; }
  .content-page h1 { font-size: 1.6rem; }
  .cards-grid[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* ===== RESPONSIVE: SMALL PHONE ===== */
@media (max-width: 420px) {
  .vc-float-1, .vc-float-2 { padding: 16px !important; }
  .glass-panel { padding: 18px; border-radius: 16px; }
  .btn { padding: 12px 20px; font-size: 0.88rem; }
  .stat-row { padding: 8px 10px; }
  .stat-label { font-size: 0.78rem; }
  .stat-value { font-size: 0.82rem; }
}
