/* Defense Briefing Page */
.briefing-hero {
  background: linear-gradient(180deg, #0a0f1a 0%, #111827 100%);
  padding: 120px 24px 60px;
  text-align: center;
}

.briefing-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.briefing-label {
  color: #106af3;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.briefing-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.briefing-description {
  font-size: 18px;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.briefing-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.briefing-section {
  margin-bottom: 4rem;
}

.briefing-section h2 {
  margin-bottom: 1.5rem;
}

/* Loading / Shimmer */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spin {
  animation: spin 1.2s linear infinite;
}

.shimmer-line {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
  min-height: 1.5em;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ========================================
   BADGES (shared across hero + featured)
   ======================================== */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-outcome {
  background: #1f2937;
  color: #9ca3af;
}

.badge-successful_fraud {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.badge-prevented {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.badge-ongoing {
  background: rgba(234, 179, 8, 0.15);
  color: #facc15;
}

.badge-resolved {
  background: rgba(16, 106, 243, 0.15);
  color: #4a96f7;
}

.badge-victim {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
}

.badge-attack {
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 4px 10px;
  background: #1f2937;
  border-radius: 4px;
  font-size: 12px;
  color: #9ca3af;
}

/* ========================================
   HERO CASE STUDY SECTION
   ======================================== */
.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.hero-carousel-frame {
  position: relative;
}

.hero-next-btn {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1f2937;
  border: 1px solid #374151;
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 5;
  padding: 0;
}

.hero-next-btn svg {
  width: 20px;
  height: 20px;
}

.hero-next-btn:hover {
  background: #374151;
  border-color: #106af3;
  color: #ffffff;
}

.hero-next-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-case-study {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: none;
  flex-direction: column;
}

.hero-case-study.active {
  display: flex;
}

.hero-loading {
  display: flex;
  padding: 2.5rem;
}

.hero-case-study:hover {
  border-color: #106af3;
  transform: translateY(-2px);
}

/* Header */
.hero-card-header {
  padding: 24px 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Body */
.hero-card-body {
  padding: 20px 24px;
  flex: 1;
}

.hero-card-title {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.hero-card-summary {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta row */
.hero-card-meta {
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: #6b7280;
}

.hero-card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-icon {
  width: 14px;
  height: 14px;
}

/* Tags */
.hero-card-tags {
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Footer */
.hero-card-footer {
  padding: 16px 24px;
  border-top: 1px solid #1f2937;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-card-date {
  font-size: 13px;
  color: #6b7280;
}

.hero-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #106af3;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 12px 8px;
  min-height: 44px;
}

.hero-card-link:hover {
  color: #4a96f7;
}

.link-icon {
  width: 16px;
  height: 16px;
}

/* Rotation dots */
.rotation-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.rotation-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.rotation-dot.active {
  background: #106af3;
}

.rotation-dot:hover {
  background: rgba(16, 106, 243, 0.5);
}

/* Hero responsive */
@media (max-width: 768px) {
  .briefing-hero {
    padding: 100px 16px 40px;
  }

  .briefing-page {
    padding: 1.5rem 1rem;
  }

  .briefing-section {
    margin-bottom: 2rem;
  }

  .hero-next-btn {
    right: -8px;
    width: 40px;
    height: 40px;
  }

  .hero-next-btn svg {
    width: 18px;
    height: 18px;
  }

  .hero-card-header,
  .hero-card-body,
  .hero-card-meta,
  .hero-card-tags,
  .hero-card-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-card-meta {
    gap: 12px;
  }

  .hero-card-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .hero-card-link {
    align-self: flex-end;
  }
}

/* ========================================
   FEATURED ARTICLES SECTION (full-width band)
   ======================================== */
.featured-band {
  background: linear-gradient(180deg, #0a0f1a 0%, #111827 100%);
  padding: 4rem 1.5rem;
}

.featured-band-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-band h2,
.briefing-section.article-content h2 {
  text-align: center;
  margin-top: 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.featured-card {
  background: #000000;
  border: 1px solid #1f2937;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.featured-card:hover {
  border-color: #106af3;
  transform: translateY(-4px);
}

.featured-card .icon-container {
  margin-bottom: 0.75rem;
}

.featured-card .featured-icon {
  width: 24px;
  height: 24px;
  color: #106af3;
}

.featured-card .attack-type {
  font-size: 11px;
  font-weight: 600;
  color: #f472b6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.featured-card .divider {
  height: 1px;
  background: #1f2937;
  margin-bottom: 16px;
}

.featured-card .headline {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 16px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.featured-card .summary {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.featured-card .meta {
  font-size: 12px;
  color: #6b7280;
  margin-top: auto;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.featured-card .meta .separator {
  margin: 0 0.375rem;
}

.featured-loading {
  pointer-events: none;
}

.section-cta {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
}

.cta-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: #106af3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.cta-link:hover {
  color: #4a96f7;
}

.cta-link .arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.cta-link:hover .arrow {
  transform: translateX(3px);
}

.no-content {
  grid-column: 1 / -1;
  padding: 3rem;
  background: #111827;
  border: 1px dashed #1f2937;
  border-radius: 12px;
  text-align: center;
  color: #6b7280;
}

@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    padding: 1.25rem;
  }
}

/* ========================================
   SOLUTIONS SECTION
   ======================================== */
.solutions-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.solution-card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.solution-card:hover {
  border-color: #106af3;
}

.solution-card .icon-container {
  margin-bottom: 0.75rem;
}

.solution-card .solution-icon {
  width: 28px;
  height: 28px;
  color: #106af3;
}

.solution-card .label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

/* ========================================
   EXPLORE MORE - BENTO GRID
   ======================================== */
.explore-section {
  margin-top: 5rem;
  margin-bottom: 3rem;
}

.explore-section h2 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.bento-card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-2px);
}

.bento-border-purple {
  border-color: rgba(139, 92, 246, 0.35);
}
.bento-border-purple:hover {
  border-color: #a78bfa;
}
.bento-border-purple .bento-card-icon {
  background: rgba(139, 92, 246, 0.1);
}
.bento-border-purple .bento-card-icon svg {
  color: #a78bfa;
}

.bento-border-red {
  border-color: rgba(239, 68, 68, 0.35);
}
.bento-border-red:hover {
  border-color: #f87171;
}
.bento-border-red .bento-card-icon {
  background: rgba(239, 68, 68, 0.1);
}
.bento-border-red .bento-card-icon svg {
  color: #f87171;
}

.bento-border-green {
  border-color: rgba(34, 197, 94, 0.35);
}
.bento-border-green:hover {
  border-color: #4ade80;
}
.bento-border-green .bento-card-icon {
  background: rgba(34, 197, 94, 0.1);
}
.bento-border-green .bento-card-icon svg {
  color: #4ade80;
}

.bento-border-yellow {
  border-color: rgba(234, 179, 8, 0.35);
}
.bento-border-yellow:hover {
  border-color: #facc15;
}
.bento-border-yellow .bento-card-icon {
  background: rgba(234, 179, 8, 0.1);
}
.bento-border-yellow .bento-card-icon svg {
  color: #facc15;
}

.bento-card-large {
  grid-row: span 2;
  padding: 32px;
  justify-content: flex-start;
}

.bento-card-large .bento-card-title {
  font-size: 1.5rem;
}

.bento-card-large .bento-card-description {
  font-size: 1rem;
  flex-grow: 1;
}

.bento-card-medium {
  padding: 24px;
}

.bento-card-banner {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 32px;
  gap: 24px;
}

.bento-banner-content {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.bento-banner-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.bento-card-banner .bento-card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.bento-card-banner .bento-card-title {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.bento-card-banner .bento-card-description {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #9ca3af;
}

.bento-card-banner .bento-card-cta {
  margin-top: 4px;
  align-self: flex-start;
  white-space: nowrap;
}

.bento-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(16, 106, 243, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bento-card-icon svg {
  width: 24px;
  height: 24px;
  color: #106af3;
}

.bento-icon-small {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}

.bento-icon-small svg {
  width: 20px;
  height: 20px;
}

.bento-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #106af3;
  margin-bottom: 8px;
}

.bento-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.bento-card-description {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.5;
  margin-bottom: 16px;
}

.bento-card-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: #106af3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.bento-card:hover .bento-card-cta {
  color: #4a96f7;
}

.bento-card-cta .arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.bento-card:hover .bento-card-cta .arrow {
  transform: translateX(3px);
}

/* ========================================
   RESPONSIVE: SOLUTIONS + BENTO
   ======================================== */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-card-large {
    grid-row: span 1;
  }

  .bento-card-banner {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .bento-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    padding: 1.25rem;
  }

  .bento-card {
    padding: 20px;
  }

  .bento-card-large {
    padding: 24px;
  }

  .bento-card-large .bento-card-title {
    font-size: 1.25rem;
  }
}
