@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --panel: rgba(255, 0, 0, 0.05);
  --line: rgba(255, 0, 0, 0.2);
  --line-strong: rgba(255, 0, 0, 0.42);
  --text: #ffffff;
  --muted: #b0b0b0;
  --danger: #ff0000;
  --danger-soft: #ff3333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rajdhani", sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 0, 0, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.28;
}

.app-shell {
  width: min(1440px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
  display: grid;
  gap: 18px;
}

.hidden {
  display: none !important;
}

.eyebrow {
  margin: 0;
  color: var(--danger-soft);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

/* Theme hero-section extraction */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
  overflow: hidden;
  padding: 80px 0 120px;
  border-radius: 18px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 0, 0, 0.03) 2px,
    rgba(255, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  animation: scanlines 8s linear infinite;
}

.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 0, 0, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  opacity: 0.3;
}

.glow-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: float 8s ease-in-out infinite;
}

.glow-orb-1 {
  background: radial-gradient(circle, #ff0000, transparent);
  top: -10%;
  right: -10%;
  animation-delay: 0s;
}

.glow-orb-2 {
  background: radial-gradient(circle, #cc0000, transparent);
  bottom: -10%;
  left: -10%;
  animation-delay: 4s;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.badge-cyber {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.5);
  border-radius: 30px;
  color: #ff3333;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.hero-headline {
  font-family: "Orbitron", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #ff0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: -2px;
  animation: glitchText 5s infinite;
}

.hero-subheadline {
  font-size: 1.4rem;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
}

.highlight-red {
  color: #ff3333;
  font-weight: 600;
}

.cta-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-cyber {
  position: relative;
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  font-family: "Rajdhani", sans-serif;
  border-radius: 10px;
}

.btn-cyber-primary {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.btn-cyber-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-cyber-primary:hover::before {
  left: 100%;
}

.btn-cyber-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(255, 0, 0, 0.6);
}

.btn-cyber-secondary {
  background: transparent;
  color: #ff3333;
  border: 2px solid #ff3333;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.btn-cyber-secondary:hover {
  background: rgba(255, 0, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.4);
}

.stats-container {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  background: rgba(255, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  animation: borderMove 3s linear infinite;
}

.stat-card:hover {
  background: rgba(255, 0, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.stat-number {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ff3333;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.stat-label {
  font-size: 1rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.warning-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: repeating-linear-gradient(45deg, #ff0000, #ff0000 20px, #000 20px, #000 40px);
  height: 8px;
  opacity: 0.3;
}

.security-badge {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 150px;
  height: 150px;
  border: 3px solid rgba(255, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 20s linear infinite;
  opacity: 0.2;
}

.security-badge::before {
  content: "SECURED";
  position: absolute;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: #ff0000;
  font-weight: 700;
}

.login-card-auth {
  margin-top: 26px;
  background: rgba(255, 0, 0, 0.06);
  border: 1px solid rgba(255, 0, 0, 0.28);
  border-radius: 12px;
  padding: 22px;
  max-width: 560px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 32px));
  z-index: 1200;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 35px rgba(255, 0, 0, 0.18);
}

.login-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.login-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 98, 98, 0.35) !important;
  background: rgba(255, 45, 45, 0.12) !important;
  color: #ffb5b5 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.login-close-btn i {
  line-height: 1;
  pointer-events: none;
}

.login-close-btn:hover {
  transform: scale(1.04);
  filter: brightness(1.2);
}

/* Shared controls */
.access-form,
.form-grid {
  display: grid;
  gap: 14px;
}

.tag-fieldset {
  border: 1px solid rgba(255, 92, 92, 0.2);
  border-radius: 14px;
  padding: 12px;
  background: rgba(7, 8, 10, 0.52);
}

.tag-fieldset legend {
  margin: 0;
  padding: 0 6px;
  font-size: 0.84rem;
  color: #ffc2c2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag-check-grid {
  display: grid;
  gap: 8px;
}

.tag-check-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffd9d9;
  font-size: 0.92rem;
}

.tag-check-option input {
  width: auto;
  accent-color: #ff4444;
}

.tag-check-option span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

input {
  width: 100%;
  border: 1px solid rgba(255, 92, 92, 0.22);
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(5, 7, 8, 0.85);
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus {
  outline: none;
  border-color: rgba(255, 120, 120, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 92, 92, 0.12);
}

.app-shell button {
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: linear-gradient(135deg, #ff3333, #8f0505);
  transition: transform 180ms ease, filter 180ms ease;
}

.app-shell button:hover {
  transform: translateY(-1px);
  filter: brightness(1.07);
}

.message {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
}

.message.error {
  color: #ff8b8b;
}

.message.ok {
  color: #aaffb0;
}

/* Dashboard styles aligned with hero aesthetic */
.panel-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(13, 14, 16, 0.92), rgba(26, 10, 10, 0.78));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.panel-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 0%, rgba(255, 75, 75, 0.08) 40%, transparent 68%);
  pointer-events: none;
}

.dashboard-grid {
  display: grid;
  gap: 18px;
}

.topbar,
.sidebar,
.dashboard-column {
  padding: 22px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.topbar__actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.status-pip {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 68, 68, 0.08);
  border: 1px solid rgba(255, 98, 98, 0.16);
  color: #ffb6b6;
  font-size: 0.82rem;
}

.ghost-button {
  background: rgba(255, 75, 75, 0.08) !important;
  border: 1px solid rgba(255, 100, 100, 0.18) !important;
}

.workspace-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 18px;
}

.sidebar__block {
  display: grid;
  gap: 10px;
}

.sidebar__label {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.tab-button {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 72, 72, 0.08) !important;
  border: 1px solid rgba(255, 100, 100, 0.12) !important;
}

.tab-button.active {
  background: linear-gradient(135deg, rgba(255, 58, 58, 0.96), rgba(123, 0, 0, 0.96)) !important;
  border-color: rgba(255, 116, 116, 0.5) !important;
}

.tab-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 104, 104, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #ffd0d0;
  flex: none;
}

.mini-status {
  border: 1px solid rgba(255, 88, 88, 0.16);
  background: rgba(7, 9, 11, 0.55);
  border-radius: 14px;
  padding: 12px;
}

.mini-status span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.content-stack,
.dashboard-split {
  display: grid;
  gap: 18px;
}

.dashboard-split {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.dashboard-column {
  min-height: 100%;
}

.tab-panel {
  display: none;
  animation: rise-in 260ms ease both;
}

.tab-panel.active-panel {
  display: grid;
  gap: 18px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
}

.section-head p:last-child {
  margin: 0;
  color: var(--muted);
}

.turnstile-wrap {
  min-height: 68px;
}

.wanted-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.target-card,
.bounty-row,
.skeleton-card,
.skeleton-row {
  border-radius: 16px;
  border: 1px solid rgba(255, 90, 90, 0.14);
  background: rgba(7, 8, 10, 0.6);
}

.target-card {
  padding: 14px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.target-card:hover,
.bounty-row:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.target-card.high-threat {
  box-shadow: 0 0 0 1px rgba(255, 100, 100, 0.18), 0 0 20px rgba(255, 80, 80, 0.16);
  cursor: pointer;
}

.target-card.high-threat .badge {
  animation: pulse-glow 2.3s ease-in-out infinite;
}

.target-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-head-inline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.target-top img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 80, 80, 0.2);
}

.target-meta {
  display: grid;
  gap: 2px;
}

.target-meta strong {
  font-size: 1.05rem;
}

.target-meta span,
.bounty-row .meta {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 100, 100, 0.25);
  background: rgba(255, 48, 48, 0.12);
  color: #ffc1c1;
}

.feed-list {
  display: grid;
  gap: 12px;
}

.search-shell {
  display: grid;
  gap: 10px;
  margin-bottom: 6px;
}

.search-shell > label {
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.search-results {
  display: grid;
  gap: 10px;
}

.search-hit {
  width: 100%;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 90, 90, 0.14) !important;
  background: rgba(7, 8, 10, 0.6) !important;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  padding: 12px !important;
}

.search-hit-main {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-hit-main img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(255, 88, 88, 0.22);
}

.search-hit-meta {
  display: grid;
  gap: 2px;
}

.search-hit-meta span {
  color: var(--muted);
  font-size: 0.88rem;
}

.search-hit-right {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.bounty-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
}

.bounty-row-right {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.bounty-row strong {
  color: var(--danger-soft);
}

.empty,
.skeleton-card,
.skeleton-row {
  position: relative;
  overflow: hidden;
}

.empty {
  padding: 18px;
  color: var(--muted);
  border: 1px dashed rgba(255, 96, 96, 0.22);
  border-radius: 16px;
  background: rgba(7, 8, 10, 0.45);
}

.skeleton-card {
  min-height: 140px;
}

.skeleton-row {
  min-height: 72px;
}

.skeleton-card::before,
.skeleton-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 113, 113, 0.12) 45%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 1.35s linear infinite;
}

.money-value {
  font-variant-numeric: tabular-nums;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: end;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 106, 106, 0.26);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(255, 62, 62, 0.09);
  color: #ffd1d1;
  font-size: 0.75rem;
  white-space: nowrap;
}

.target-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1290;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.target-modal {
  position: fixed;
  z-index: 1300;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100vw - 36px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 24px;
}

.target-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 98, 98, 0.35) !important;
  background: rgba(255, 45, 45, 0.12) !important;
  color: #ffb5b5 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.target-modal-close i {
  line-height: 1;
}

.target-modal-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.target-modal-head img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid rgba(255, 98, 98, 0.25);
  object-fit: cover;
}

.target-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.target-meta-cell {
  border: 1px solid rgba(255, 90, 90, 0.14);
  background: rgba(7, 8, 10, 0.6);
  border-radius: 12px;
  padding: 12px;
}

.target-meta-cell span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  margin-bottom: 4px;
}

.target-meta-cell strong {
  color: var(--text);
}

.target-section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.target-timeline {
  display: grid;
  gap: 8px;
}

.target-danger-zone {
  border: 1px solid rgba(255, 90, 90, 0.16);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
  background: rgba(24, 0, 0, 0.5);
}

.target-danger-zone > p {
  color: #ffd0d0;
  margin-bottom: 10px;
}

.danger-button {
  background: linear-gradient(135deg, #d71919, #8a0d0d) !important;
}

.danger-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.danger-confirm {
  margin-top: 10px;
  border: 1px solid rgba(255, 84, 84, 0.24);
  border-radius: 10px;
  padding: 10px;
  background: rgba(7, 8, 10, 0.6);
}

.danger-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.timeline-main {
  margin-bottom: 8px;
}

.timeline-item {
  border: 1px solid rgba(255, 90, 90, 0.14);
  border-radius: 12px;
  padding: 12px;
  background: rgba(7, 8, 10, 0.6);
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

@keyframes gridMove {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateY(50px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
  }
}

@keyframes glitchText {
  0%,
  90%,
  100% {
    text-shadow: none;
  }
  92% {
    text-shadow: 3px 0 #ff0000, -3px 0 #00ffff;
  }
  94% {
    text-shadow: -3px 0 #ff0000, 3px 0 #00ffff;
  }
}

@keyframes borderMove {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes rotate {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 92, 92, 0.25);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 92, 92, 0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .workspace-grid,
  .dashboard-split {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .topbar,
  .section-head,
  .bounty-row {
    display: grid;
  }

  .topbar__actions {
    justify-items: start;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-subheadline {
    font-size: 1.1rem;
  }

  .cta-container {
    flex-direction: column;
    width: 100%;
  }

  .btn-cyber {
    width: 100%;
    padding: 16px 30px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .security-badge {
    display: none;
  }
}

@media (max-width: 640px) {
  .app-shell {
    width: min(100vw - 18px, 1440px);
    padding-top: 10px;
  }

  .topbar,
  .sidebar,
  .dashboard-column {
    padding: 18px;
  }

  .hero-section {
    padding: 60px 0 80px;
    min-height: auto;
  }

  .hero-headline {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .stats-container {
    margin-top: 50px;
    gap: 20px;
  }
}
