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

:root {
  --purple: #611F69;
  --purple-dark: #4A154B;
  --purple-light: #E8DEF8;
  --purple-subtle: #F9F5FF;
  --yellow: #ECB22E;
  --green: #2EB67D;
  --blue: #36C5F0;
  --red: #E01E5A;
  --bg: #ffffff;
  --bg-warm: #FDF4F2;
  --fg: #1D1C1D;
  --muted: #616061;
  --border: #DDDDDD;
  --radius: 8px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* --- Nav --- */

nav {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--fg);
}

.logo span {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--purple); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sign-in {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
}

/* --- Buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-small {
  padding: 8px 20px;
  font-size: 13px;
}

.btn-large {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 8px;
}

.btn-purple {
  background: var(--purple);
  color: white;
}

.btn-purple:hover { background: var(--purple-dark); }

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-outline:hover { background: var(--purple-subtle); }

.btn-white {
  background: white;
  color: var(--purple);
}

.btn-white:hover { background: #f5f5f5; }

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
}

/* --- Incident Banner (homepage) --- */

.incident-banner-link {
  text-decoration: none;
  display: block;
}

.incident-banner-home {
  background: #1a1a2e;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  transition: background 0.15s;
}

.incident-banner-home:hover {
  background: #222244;
}

.incident-banner-home strong {
  color: #E01E5A;
}

.banner-arrow {
  margin-left: 6px;
  opacity: 0.6;
  transition: opacity 0.15s;
}

.incident-banner-home:hover .banner-arrow {
  opacity: 1;
}

/* --- Hero --- */

.hero {
  background: linear-gradient(165deg, var(--purple-dark) 0%, #541B54 50%, #611F69 100%);
  color: white;
  padding: 120px 32px 80px;
  text-align: center;
}

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

.hero h1 {
  font-size: 62px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 40px;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-line {
  margin-top: 64px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.logo-strip {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  opacity: 0.4;
  flex-wrap: wrap;
}

.logo-strip span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* --- Sections --- */

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.product-section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

/* --- Feature Grid --- */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: #f8f8f8;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.feature-card.card-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.card-content {
  padding: 48px;
}

.card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: #f0f0f0;
}

.mock-thread {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 360px;
}

.mock-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--fg);
  flex-shrink: 0;
}

.mock-msg strong {
  font-size: 13px;
  display: block;
  margin-bottom: 2px;
}

.mock-text {
  font-size: 13px;
  color: var(--muted);
}

/* --- CTA Section --- */

.cta-section {
  background: var(--purple-dark);
  color: white;
  padding: 100px 32px;
  text-align: center;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

/* --- Footer --- */

footer {
  padding: 64px 0 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--fg); }

/* --- Investigation Page --- */

.page-header {
  background: linear-gradient(165deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 80px 32px 60px;
  text-align: center;
}

.page-header .badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.incident-bar {
  background: #1a1a2e;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.incident-bar span {
  color: var(--red);
}

/* --- Suspect Cards --- */

.suspects-section {
  padding: 80px 0 120px;
  background: #fafafa;
}

.suspects-header {
  text-align: center;
  margin-bottom: 56px;
}

.suspects-header h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.suspects-header p {
  font-size: 15px;
  color: var(--muted);
}

.suspects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
  justify-items: center;
}

.suspects-grid .suspect-card { width: 100%; }

.suspect-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.suspect-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.suspect-photo {
  width: 100%;
  aspect-ratio: 1;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  color: #bbb;
  position: relative;
}

.suspect-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suspect-photo .placeholder-initials {
  font-size: 48px;
  font-weight: 800;
  color: #ccc;
}

.suspect-role-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.suspect-role-badge.victim {
  background: var(--red);
}

.suspect-info {
  padding: 24px;
}

.suspect-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}

.suspect-title {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.suspect-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.suspect-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: var(--purple-subtle);
  transition: background 0.15s;
}

.suspect-email:hover { background: var(--purple-light); }

/* --- Evidence Timeline --- */

.evidence-section {
  padding: 80px 0;
  background: white;
}

.evidence-section .section-inner {
  max-width: 700px;
}

.evidence-header {
  text-align: center;
  margin-bottom: 48px;
}

.evidence-header h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.evidence-header p {
  font-size: 15px;
  color: var(--muted);
}

.decree-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.decree {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.decree-number {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 8px;
}

.decree blockquote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg);
  font-style: italic;
  border-left: 3px solid var(--purple-light);
  padding-left: 16px;
}

/* --- Responsive --- */

@media (max-width: 900px) {
  .suspects-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.card-large { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 40px; }
  .page-header h1 { font-size: 32px; }
  .nav-links { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .suspects-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-links { gap: 32px; }
  .section-header h2, .cta-section h2 { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 20px 48px; }
  .hero h1 { font-size: 32px; }
  .nav-inner { padding: 12px 16px; }
  .footer-inner { flex-direction: column; gap: 40px; }
}
