/* ==============================
   WASTELAND INTERACTIVE - BASE
============================== */

:root {
  --bg-main: #0a0f14;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text-main: #cfd8dc;
  --text-muted: #8899a6;
  --accent-cyan: #6be3ff;
  --accent-purple: #9b7bff;
  --accent-orange: #ffb86b;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #121822, #070b10);
  color: var(--text-main);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(107, 227, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(155, 123, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 184, 107, 0.02) 0%, transparent 50%);
  animation: backgroundPulse 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes backgroundPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Ensure content is above background */
.site-header,
main,
footer {
  position: relative;
  z-index: 1;
}

/* Default link styling */
a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-purple);
}

/* ==============================
   HEADER
============================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 15, 20, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 15, 20, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  z-index: 1001;
}

.nav-logo img {
  height: 85px;
  filter: drop-shadow(0 2px 8px rgba(107, 227, 255, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(107, 227, 255, 0.5));
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-main ul {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-main a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.nav-main a::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.nav-main a:hover {
  color: var(--accent-cyan);
  background: rgba(107, 227, 255, 0.08);
}

.nav-main a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-main a.active {
  color: var(--accent-cyan);
  background: rgba(107, 227, 255, 0.12);
}

.nav-main .cta {
  padding: 10px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(107, 227, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.nav-main .cta::before {
  display: none;
}

.nav-main .cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.nav-main .cta:hover::after {
  width: 300px;
  height: 300px;
}

.nav-main .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 227, 255, 0.5);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
}

.nav-main .nav-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(107, 227, 255, 0.4);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-main {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(10, 15, 20, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 32px 32px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .nav-main.active {
    right: 0;
  }

  .nav-main ul {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .nav-main a {
    padding: 16px 20px;
    font-size: 16px;
    border-left: 3px solid transparent;
    border-radius: 8px;
  }

  .nav-main a:hover,
  .nav-main a.active {
    border-left-color: var(--accent-cyan);
    background: rgba(107, 227, 255, 0.1);
  }

  .nav-main a::before {
    display: none;
  }

  .nav-main .cta {
    margin-top: 16px;
    text-align: center;
  }

  .nav-main .nav-meta {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 16px 20px;
  }

  .nav-logo img {
    height: 60px;
  }

  .nav-main {
    width: 100%;
  }
}

/* ==============================
   LAYOUT
============================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
}

section {
  margin-bottom: 48px;
}

.section.alt {
  background: linear-gradient(180deg, rgba(107, 227, 255, 0.02), rgba(155, 123, 255, 0.02));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section.alt .container {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* Strategic Onyx Section - High-End Tier */
.section-onyx {
  background: linear-gradient(180deg, #050709, #0a0f14);
  border-top: 1px solid rgba(255, 77, 77, 0.4);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}

.section-onyx::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 77, 0.6), transparent);
}

.section-onyx .container {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* ============================= */
/* TECH GRID - Technology Stack */
/* ============================= */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.tech-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tech-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 227, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.tech-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.tech-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-bright);
}

.tech-card p {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Badge Variants */
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-production {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: white;
}

.badge-unique {
  background: linear-gradient(135deg, #6be3ff, #9b7bff);
  color: white;
}

.badge-enterprise {
  background: linear-gradient(135deg, #FFB74D, #FFA726);
  color: white;
}

.badge-ai {
  background: linear-gradient(135deg, #9C27B0, #BA68C8);
  color: white;
}

/* Compliance Badges */
.compliance-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.compliance-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.trust-badges {
  margin: 24px 0;
}

@media (max-width: 768px) {
  .trust-badges {
    flex-direction: column;
    align-items: stretch !important;
  }

  .compliance-badge {
    text-align: center;
  }

  .trustpilot-widget {
    max-width: 100% !important;
  }
}

/* ============================= */
/* STATS GRID - Metrics */
/* ============================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.stat-detail {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================= */
/* DEFQON LEVELS */
/* ============================= */
.defqon-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.defqon-level {
  padding: 20px 16px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.defqon-level:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.level-0 {
  border-color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
}

.level-1 {
  border-color: #8BC34A;
  background: rgba(139, 195, 74, 0.1);
}

.level-2 {
  border-color: #FFC107;
  background: rgba(255, 193, 7, 0.1);
}

.level-3 {
  border-color: #FF9800;
  background: rgba(255, 152, 0, 0.1);
}

.level-4 {
  border-color: #FF5722;
  background: rgba(255, 87, 34, 0.1);
}

.level-5 {
  border-color: #F44336;
  background: rgba(244, 67, 54, 0.1);
}

.level-badge {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-bright);
}

.level-name {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-bright);
}

.level-desc {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .tech-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .defqon-levels {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 36px;
  }

  .level-badge {
    font-size: 28px;
  }
}


h1,
h2,
h3 {
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: clamp(20px, 3vw, 28px);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.lead {
  font-size: 18px;
  color: var(--text-main);
}

.muted {
  color: var(--text-muted);
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==============================
   HERO SECTION
============================== */

.hero {
  text-align: center;
  padding: 40px 0;
  position: relative;
}

.hero h1 {
  background: linear-gradient(135deg, #fff, var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.hero .subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-main);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.action-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero.secondary {
  background: linear-gradient(135deg, rgba(107, 227, 255, 0.05), rgba(155, 123, 255, 0.05));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 60px 40px;
  margin-top: 40px;
}

/* ==============================
   BUTTONS
============================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: #000;
  box-shadow: 0 4px 20px rgba(107, 227, 255, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(107, 227, 255, 0.5);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--border-soft);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn.small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==============================
   GRID SYSTEM
============================== */

.grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
  .grid {
    gap: 20px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   CARDS
============================== */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(107, 227, 255, 0.3);
  box-shadow: 0 12px 40px rgba(107, 227, 255, 0.15);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h2,
.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
}

.card p {
  margin-bottom: 16px;
  font-size: 15px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.card ul li {
  padding: 8px 0;
  color: var(--text-main);
  font-size: 14px;
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-cyan);
  margin: 20px 0;
}

/* Project Logo in Cards */
.card-logo {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.project-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(107, 227, 255, 0.2));
  transition: all 0.3s ease;
}

.card:hover .project-logo {
  filter: drop-shadow(0 6px 20px rgba(107, 227, 255, 0.4));
  transform: scale(1.05);
}

/* Logo Placeholder for missing logos */
.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  animation: float 3s ease-in-out infinite;
}

.logo-placeholder svg {
  filter: drop-shadow(0 4px 12px rgba(107, 227, 255, 0.2));
  transition: all 0.3s ease;
}

.card:hover .logo-placeholder svg {
  filter: drop-shadow(0 6px 20px rgba(107, 227, 255, 0.4));
  transform: scale(1.05);
}

.content-box {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 40px;
}

.content-box.center {
  text-align: center;
}

.info-box {
  background: rgba(255, 184, 107, 0.05);
  border: 1px solid rgba(255, 184, 107, 0.2);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
}

.info-box h3 {
  color: var(--accent-orange);
  margin-top: 0;
}

.info-box ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-box a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-box a:hover {
  color: var(--accent-purple);
  text-decoration: underline;
}

/* Responsive cards */
@media (max-width: 768px) {
  .card {
    padding: 20px;
  }

  .content-box {
    padding: 24px;
  }

  .info-box {
    padding: 20px;
  }

  .info-box ul {
    flex-direction: column;
    gap: 12px;
  }
}

/* ==============================
   STATUS LABELS
============================== */

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-top: 12px;
}

.status.dev {
  color: var(--accent-orange);
  border: 1px solid rgba(255, 184, 107, 0.4);
}

.status.beta {
  color: var(--accent-cyan);
  border: 1px solid rgba(107, 227, 255, 0.4);
}

.status.live {
  color: #7CFF9B;
  border: 1px solid rgba(124, 255, 155, 0.4);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.badge-internal {
  color: var(--accent-cyan);
  border-color: rgba(107, 227, 255, 0.35);
}

.badge-active {
  color: #7CFF9B;
  border-color: rgba(124, 255, 155, 0.35);
}

.badge-dev {
  color: var(--accent-orange);
  border-color: rgba(255, 184, 107, 0.35);
}

/* Responsive mobile adjustments */
@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
  }

  section {
    margin-bottom: 60px;
  }

  .hero {
    padding: 40px 0;
  }

  .action-buttons {
    flex-direction: column;
    width: 100%;
  }

  .action-buttons .btn {
    width: 100%;
  }
}

/* ==============================
   FOOTER - Ultra Modern Compact Design
============================== */

.site-footer {
  background: linear-gradient(180deg, #070b10 0%, #050709 100%);
  border-top: 1px solid rgba(107, 227, 255, 0.08);
  padding: 32px 24px 16px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  align-items: start;
}

.footer-block h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--accent-cyan);
  margin: 0 0 12px 0;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block li {
  margin: 0 0 6px 0;
  font-size: 13px;
  line-height: 1.5;
}

.footer-block li:last-child {
  margin-bottom: 0;
}

.footer-block a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-block a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3px;
}

/* Social Icons - Ultra Compact */
.social-icons {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons a:hover {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-color: transparent;
  color: #000;
  transform: translateY(-2px);
}

.social-icons svg {
  width: 15px;
  height: 15px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .site-footer {
    padding: 24px 16px 12px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==============================
   COOKIE BANNER
============================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 15, 20, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-text h3 {
  font-size: 18px;
  margin: 0 0 8px 0;
  color: var(--accent-cyan);
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-actions .btn.primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: #000;
}

.cookie-actions .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 227, 255, 0.4);
}

.cookie-actions .btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--border-soft);
}

.cookie-actions .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-cyan);
}

.cookie-actions .btn.tertiary {
  background: transparent;
  color: var(--accent-cyan);
  text-decoration: underline;
  padding: 10px 16px;
}

.cookie-actions .btn.tertiary:hover {
  color: var(--accent-purple);
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  display: flex;
  opacity: 1;
}

.cookie-modal-content {
  background: var(--bg-main);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border-soft);
}

.cookie-modal-header h3 {
  margin: 0;
  color: #fff;
}

.cookie-close {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.cookie-close:hover {
  color: var(--accent-cyan);
}

.cookie-modal-body {
  padding: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.cookie-category-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cookie-category h4 {
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 16px;
}

.cookie-category p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Toggle Switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
  border-radius: 28px;
  border: 1px solid var(--border-soft);
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: var(--text-muted);
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-switch input:checked+.cookie-slider {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-color: transparent;
}

.cookie-switch input:checked+.cookie-slider:before {
  transform: translateX(24px);
  background-color: #000;
}

.cookie-switch input:disabled+.cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-modal-footer .btn {
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
    min-width: 120px;
  }

  .cookie-modal-content {
    margin: 0;
    max-height: 100vh;
    border-radius: 0;
  }
}

/* ==============================
   ACCESSIBILITY
============================== */

/* Skip to main content */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-cyan);
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 8px 0;
  z-index: 10001;
  transition: top 0.3s ease;
}

.skip-to-main:focus {
  top: 0;
}

/* Focus visible improvements for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 3px solid var(--accent-cyan);
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(107, 227, 255, 0.2);
}

.card:focus-visible,
.nav-main a:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
  background: rgba(107, 227, 255, 0.05);
}

/* Remove default focus for mouse users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible) {
  outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-main: #ffffff;
    --border-soft: rgba(255, 255, 255, 0.3);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==============================
   ANIMATIONS & EFFECTS
============================== */

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Floating Animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Pulse Animation */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Glow Animation */
@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(107, 227, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(107, 227, 255, 0.6);
  }
}

/* Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animation delays */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* Apply animations to elements */
.hero {
  animation: fadeIn 0.8s ease-out;
}

.hero h1 {
  animation: fadeIn 1s ease-out 0.2s backwards;
}

.hero .subtitle {
  animation: fadeIn 1s ease-out 0.4s backwards;
}

.hero .action-buttons {
  animation: fadeIn 1s ease-out 0.6s backwards;
}

.card {
  animation: scaleIn 0.5s ease-out backwards;
}

.card:nth-child(1) {
  animation-delay: 0.1s;
}

.card:nth-child(2) {
  animation-delay: 0.2s;
}

.card:nth-child(3) {
  animation-delay: 0.3s;
}

.card:nth-child(4) {
  animation-delay: 0.4s;
}

.card:nth-child(5) {
  animation-delay: 0.5s;
}

.card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Status badge pulse */
.status::before {
  animation: pulse 2s ease-in-out infinite;
}

/* Floating effect for logos/icons */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Animated gradient backgrounds */
.gradient-animate {
  background: linear-gradient(270deg, var(--accent-cyan), var(--accent-purple), var(--accent-orange));
  background-size: 600% 600%;
  animation: gradientShift 8s ease infinite;
}

/* Hover glow effect */
.glow-on-hover {
  transition: all 0.3s ease;
}

.glow-on-hover:hover {
  animation: glow 2s ease-in-out infinite;
}

/* Parallax effect */
.parallax {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Text shimmer effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.text-shimmer {
  background: linear-gradient(90deg, var(--text-main) 0%, var(--accent-cyan) 50%, var(--text-main) 100%);
  background-size: 1000px 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Loading spinner */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(107, 227, 255, 0.1);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Ripple effect */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

.btn {
  position: relative;
  overflow: hidden;
}

/* Particles effect for buttons */
.btn.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 ease;
}

.btn.primary:hover::before {
  left: 100%;
}

/* Loading state */
.btn.loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.btn.loading::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* ==============================
   TIMELINE / ROADMAP
============================== */

.timeline {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 3px;
}

.timeline li {
  position: relative;
  padding: 20px 20px 20px 60px;
  margin-bottom: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 28px;
  width: 16px;
  height: 16px;
  background: var(--accent-cyan);
  border: 3px solid var(--bg-main);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(107, 227, 255, 0.5);
  z-index: 2;
}

.timeline li:nth-child(even)::before {
  background: var(--accent-purple);
  box-shadow: 0 0 20px rgba(155, 123, 255, 0.5);
}

.timeline li:hover {
  transform: translateX(10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 30px rgba(107, 227, 255, 0.15);
}

.timeline li strong {
  color: var(--accent-cyan);
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

.timeline li:nth-child(even) strong {
  color: var(--accent-purple);
}

/* Completed items */
.timeline li:has(strong:contains("DONE")) {
  opacity: 0.7;
  border-color: rgba(124, 255, 155, 0.3);
}

.timeline li:has(strong:contains("DONE"))::before {
  background: #7CFF9B;
  box-shadow: 0 0 20px rgba(124, 255, 155, 0.5);
}

/* Feature Lists */
ul:not(.timeline) {
  list-style: none;
  padding: 0;
}

ul:not(.timeline) li {
  padding: 12px 0;
  position: relative;
  transition: all 0.2s ease;
  color: var(--text-main);
}

ul:not(.timeline) li:hover {
  color: var(--accent-cyan);
  transform: translateX(4px);
}

/* ==============================
   PARTICLES BACKGROUND
============================== */

.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--accent-cyan);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100px) translateX(100px) scale(1);
    opacity: 0;
  }
}

.particle:nth-child(1) {
  left: 10%;
  animation-duration: 12s;
  animation-delay: 0s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(2) {
  left: 20%;
  animation-duration: 15s;
  animation-delay: 2s;
  width: 4px;
  height: 4px;
  background: var(--accent-purple);
}

.particle:nth-child(3) {
  left: 30%;
  animation-duration: 18s;
  animation-delay: 4s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(4) {
  left: 40%;
  animation-duration: 14s;
  animation-delay: 1s;
  width: 5px;
  height: 5px;
  background: var(--accent-orange);
}

.particle:nth-child(5) {
  left: 50%;
  animation-duration: 16s;
  animation-delay: 3s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(6) {
  left: 60%;
  animation-duration: 13s;
  animation-delay: 5s;
  width: 4px;
  height: 4px;
  background: var(--accent-purple);
}

.particle:nth-child(7) {
  left: 70%;
  animation-duration: 17s;
  animation-delay: 2s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(8) {
  left: 80%;
  animation-duration: 15s;
  animation-delay: 4s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(9) {
  left: 90%;
  animation-duration: 14s;
  animation-delay: 1s;
  width: 4px;
  height: 4px;
  background: var(--accent-cyan);
}

.particle:nth-child(10) {
  left: 25%;
  animation-duration: 19s;
  animation-delay: 3s;
  width: 2px;
  height: 2px;
  background: var(--accent-orange);
}

.particle:nth-child(11) {
  left: 45%;
  animation-duration: 13s;
  animation-delay: 2s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(12) {
  left: 65%;
  animation-duration: 16s;
  animation-delay: 5s;
  width: 4px;
  height: 4px;
  background: var(--accent-purple);
}

.particle:nth-child(13) {
  left: 75%;
  animation-duration: 14s;
  animation-delay: 1s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(14) {
  left: 85%;
  animation-duration: 17s;
  animation-delay: 4s;
  width: 5px;
  height: 5px;
}

.particle:nth-child(15) {
  left: 95%;
  animation-duration: 15s;
  animation-delay: 2s;
  width: 3px;
  height: 3px;
  background: var(--accent-cyan);
}

/* Gradient Glow Effect */
@keyframes gentleGlow {

  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1.1);
  }
}

.gradient-wave {
  position: fixed;
  bottom: -100px;
  left: 50%;
  width: 120%;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(107, 227, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: gentleGlow 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.gradient-wave:nth-child(2) {
  animation-delay: -8s;
  background: radial-gradient(ellipse at center, rgba(155, 123, 255, 0.04) 0%, transparent 70%);
  height: 500px;
}

.gradient-wave:nth-child(3) {
  animation-delay: -16s;
  background: radial-gradient(ellipse at center, rgba(255, 184, 107, 0.03) 0%, transparent 70%);
  height: 450px;
}

/* Newsletter Block (HubSpot) */
.newsletter-text {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.newsletter-privacy {
  font-size: 12px;
  margin-top: 12px;
  color: var(--text-muted);
}

.newsletter-privacy a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.newsletter-privacy a:hover {
  text-decoration: underline;
}

.hubspot-newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--text-main);
  font-size: 13px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.hubspot-newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.06);
}

.hubspot-newsletter-form input[type="submit"],
.hubspot-newsletter-form .hs-button {
  width: 100%;
  padding: 10px 16px;
  background: var(--accent-cyan);
  color: #0a0f14;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.hubspot-newsletter-form input[type="submit"]:hover,
.hubspot-newsletter-form .hs-button:hover {
  background: #52d3ff;
  transform: translateY(-2px);
}

.hubspot-newsletter-form .hs-error-msgs {
  color: #ff6b6b;
  font-size: 11px;
  margin-top: 6px;
}

.hubspot-newsletter-form .submitted-message {
  color: var(--accent-cyan);
  font-size: 13px;
  padding: 12px;
  background: rgba(107, 227, 255, 0.1);
  border-radius: 6px;
  text-align: center;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-list li {
  color: var(--text-main);
  font-size: 14px;
}

.detail-list strong {
  color: #fff;
}

.stats-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 24px;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px;
}

/* ==============================
   REPORT PREVIEW (Sentinel)
============================== */

.report-preview {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0;
  margin: 24px 0;
  overflow: hidden;
}

.report-summary {
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
  user-select: none;
  transition: background 0.2s;
}

.report-summary:hover {
  background: rgba(255, 255, 255, 0.02);
}

.report-summary .toggle-icon {
  font-size: 12px;
  transition: transform 0.3s;
}

.report-preview[open] .toggle-icon {
  transform: rotate(180deg);
}

.report-content {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.report-header {
  background: rgba(107, 227, 255, 0.05);
  border-left: 3px solid var(--accent-cyan);
  padding: 16px;
  margin-bottom: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.report-logo {
  flex-shrink: 0;
}

.report-logo img {
  display: block;
  border-radius: 8px;
}

.report-header h3 {
  margin: 0 0 12px 0;
  color: var(--accent-cyan);
  font-size: 20px;
}

.report-header p {
  margin: 4px 0;
  font-size: 13px;
}

.report-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}

.report-section:last-of-type {
  border-bottom: none;
}

.report-section h4 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 12px 0;
}

.report-section h5 {
  color: var(--text-main);
  font-size: 14px;
  margin: 12px 0 8px 0;
}

.report-section code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--accent-cyan);
}

.finding {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--border-soft);
  padding: 16px;
  margin: 16px 0;
  border-radius: 4px;
}

.finding h5 {
  margin-top: 0;
  color: #fff;
}

.finding p {
  margin: 8px 0;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 13px;
}

.report-table th,
.report-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}

.report-table th {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 600;
}

.report-table tr:last-child td {
  border-bottom: none;
}

.report-footer {
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
  border-radius: 4px;
  margin-top: 20px;
  font-size: 12px;
}

.report-footer p {
  margin: 4px 0;
}