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

:root {
  --bg: #080808;
  --surface: #111111;
  --surface2: #181818;
  --surface3: #1f1f1f;
  --border: #222222;
  --border-light: #2a2a2a;
  --primary: #1ECFD6;
  --primary-dark: #17A8AD;
  --primary-glow: rgba(30, 207, 214, 0.12);
  --primary-border: rgba(30, 207, 214, 0.25);
  --orange: #F79320;
  --orange-dark: #D97D18;
  --orange-glow: rgba(247, 147, 32, 0.12);
  --orange-border: rgba(247, 147, 32, 0.25);
  --white: #ffffff;
  --grey: #777777;
  --grey-light: #aaaaaa;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #e63946;
  --purple: #818cf8;
  --blue: #60a5fa;
  --mono: 'Courier New', 'Consolas', 'Monaco', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(30,207,214,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(247,147,32,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 10% 60%, rgba(30,207,214,0.04) 0%, transparent 60%);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--grey); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,8,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--border);
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-text-wrap { line-height: 1; }
.logo-name {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: 17px; color: var(--white); letter-spacing: -0.5px;
}
.logo-name .logo-berry { color: var(--primary); }
.logo-sub { font-size: 10px; color: var(--grey); margin-top: 2px; font-weight: 500; letter-spacing: 0.2px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: var(--grey-light); text-decoration: none; font-size: 14.5px;
  font-weight: 500; padding: 6px 14px; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--white); background: var(--surface2); }
.nav-links a.active { color: var(--white); background: var(--surface2); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.social-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 6px; text-decoration: none;
  font-size: 13px; font-weight: 600; border: 1px solid var(--border);
  color: var(--grey-light); transition: all 0.15s;
}
.social-btn:hover { border-color: var(--primary); color: var(--white); background: var(--primary-glow); }
.social-btn svg { width: 14px; height: 14px; }
.btn-nav-cta {
  background: var(--primary); color: #080808 !important;
  border-color: var(--primary) !important; font-weight: 700;
}
.btn-nav-cta:hover { background: var(--primary-dark) !important; }
.mobile-menu-btn {
  display: none;
  background: none; border: none; color: var(--grey-light);
  cursor: pointer; padding: 6px; border-radius: 6px;
  transition: color 0.15s; flex-shrink: 0;
}
.mobile-menu-btn:hover { color: var(--white); }
.mobile-menu-btn svg { display: block; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--primary); color: #080808; text-decoration: none;
  padding: 12px 24px; border-radius: 8px; font-weight: 800;
  font-size: 15px; transition: background 0.15s, transform 0.1s;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--grey-light); text-decoration: none;
  padding: 12px 24px; border-radius: 8px; font-weight: 600;
  font-size: 15px; border: 1px solid var(--border-light);
  transition: all 0.15s; cursor: pointer; font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-secondary:hover { border-color: var(--grey); color: var(--white); transform: translateY(-1px); }
.btn-sm {
  background: var(--primary); color: #080808; border: none;
  padding: 7px 16px; border-radius: 6px; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: background 0.15s; font-family: 'Inter', sans-serif;
}
.btn-sm:hover { background: var(--primary-dark); }
.btn-large { padding: 14px 28px; font-size: 15px; }
.btn-ghost {
  background: transparent; color: var(--white); text-decoration: none;
  padding: 13px 24px; border-radius: 8px; font-weight: 600;
  font-size: 15px; border: 1px solid var(--border-light);
  transition: all 0.15s; cursor: pointer; font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost:hover { border-color: var(--white); }

/* ── HERO ── */
.hero { padding: 96px 24px 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(30,207,214,0.16) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, black 20%, transparent 100%);
}
.hero-inner { position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-glow); border: 1px solid var(--primary-border);
  color: var(--primary); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-eyebrow::before { content: '●'; font-size: 7px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: clamp(46px, 7.5vw, 88px); line-height: 0.95;
  letter-spacing: -3px; margin-bottom: 24px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.hero h1 em { color: var(--primary); font-style: normal; }
.hero h1 .orange { color: var(--orange); }
.hero-sub {
  font-size: clamp(18px, 2.4vw, 23px); color: var(--grey-light);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 0; justify-content: center;
  margin-top: 72px; flex-wrap: wrap;
  border: 1px solid var(--border); border-radius: 16px;
  max-width: 680px; margin-left: auto; margin-right: auto;
  overflow: hidden; background: var(--surface);
}
.stat { text-align: center; flex: 1; min-width: 120px; padding: 24px 20px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 32px; color: var(--white); line-height: 1; }
.stat-num span { color: var(--primary); }
.stat-label { font-size: 14px; color: var(--grey); margin-top: 6px; font-weight: 500; }

/* ── TICKER ── */
.ticker-wrap {
  display: flex; align-items: stretch;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface); overflow: hidden;
}
.ticker-label {
  background: var(--orange); color: #080808;
  font-family: var(--mono); font-weight: 900; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 16px; flex-shrink: 0;
  display: flex; align-items: center;
}
.ticker-scroll { flex: 1; overflow: hidden; padding: 10px 0; }
.ticker { display: flex; gap: 48px; animation: ticker 35s linear infinite; width: max-content; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--grey); white-space: nowrap; }
.ticker-item .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: var(--green); }
.dot-amber { background: var(--amber); }
.dot-red { background: var(--red); }
.dot-primary { background: var(--primary); }
.dot-blue { background: var(--blue); }

/* ── SECTION BASE ── */
section { padding: 80px 24px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 10px; }
.section-title { font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(28px, 4vw, 42px); letter-spacing: -1.5px; line-height: 1.05; }
.section-desc { font-size: 18px; color: var(--grey-light); line-height: 1.75; max-width: 560px; margin-top: 14px; }

/* ── PAGE HERO (for inner pages) ── */
.page-hero {
  padding: 64px 24px 56px; border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(30,207,214,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 0%, transparent 100%);
}
.page-hero-inner { max-width: 1140px; margin: 0 auto; position: relative; }
.page-hero .section-tag { margin-bottom: 12px; }
.page-hero .section-title { font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; }
.page-hero .section-desc { font-size: 19px; max-width: 600px; }

/* ── FILTERS ── */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 7px 18px; border-radius: 100px; border: 1px solid var(--border);
  background: transparent; color: var(--grey-light); font-size: 13px;
  font-weight: 600; cursor: pointer; transition: all 0.15s;
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: #080808; }

/* ── CASE CARDS ── */
.cases-grid { display: grid; gap: 16px; }
.case-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.case-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; border-radius: 3px 0 0 3px; }
.case-card[data-status="victory"]::before      { background: var(--green); }
.case-card[data-status="escalated"]::before    { background: var(--red); }
.case-card[data-status="waiting"]::before      { background: var(--purple); }
.case-card[data-status="investigating"]::before { background: var(--blue); }
.case-card:hover { border-color: var(--border-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.35); }
.case-card.hidden { display: none; }
.case-header { padding: 22px 24px 0 28px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.case-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.business-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.case-info { flex: 1; }
.business-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -0.5px; line-height: 1.2; }
.case-category { font-size: 12px; color: var(--grey); margin-top: 3px; }
.case-badges { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; flex-shrink: 0; }
.badge { padding: 4px 11px; border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-victory      { background: rgba(34,197,94,0.12);  color: var(--green);        border: 1px solid rgba(34,197,94,0.25); }
.badge-in_progress  { background: rgba(30,207,214,0.1);  color: var(--primary);      border: 1px solid rgba(30,207,214,0.25); }
.badge-investigating{ background: rgba(255,255,255,0.05);color: var(--grey-light);   border: 1px solid var(--border); }
.badge-cat          { background: var(--surface2); color: var(--grey-light); border: 1px solid var(--border); }
.case-body { padding: 16px 24px 20px 28px; }
.case-title { font-weight: 700; font-size: 20px; margin-bottom: 10px; line-height: 1.4; }
.case-desc { font-size: 16px; color: var(--grey-light); line-height: 1.8; margin-bottom: 16px; }
.case-outcome { background: var(--surface2); border: 1px solid var(--border-light); border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; }
.outcome-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--grey); margin-bottom: 6px; }
.outcome-text { font-size: 16px; font-weight: 600; color: var(--white); line-height: 1.6; }
.outcome-date  { font-size: 12px; color: var(--grey); margin-top: 4px; }
.case-videos { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.video-embed { flex-shrink: 0; width: 260px; height: 460px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); background: #000; position: relative; }
.video-embed iframe { width: 325px; height: 575px; border: none; display: block; position: absolute; top: 0; left: 0; transform: scale(0.8); transform-origin: top left; }
.video-placeholder { width: 260px; height: 460px; background: var(--surface2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: background 0.2s; }
.video-placeholder:hover { background: #222; }
.play-icon { width: 48px; height: 48px; background: var(--primary-glow); border: 1px solid var(--primary-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.play-icon svg { width: 18px; height: 18px; fill: var(--primary); margin-left: 3px; }
.video-platform { font-size: 11px; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; }
.case-media { padding: 0 28px 24px; border-top: 1px solid var(--border); margin-top: 4px; padding-top: 20px; }
.case-media-label { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.case-media-label::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.media-items { display: flex; flex-direction: column; gap: 6px; }
.media-item { display: flex; align-items: center; gap: 12px; background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; padding: 11px 14px; text-decoration: none; transition: border-color 0.2s, background 0.2s, transform 0.15s; overflow: hidden; }
.media-item:hover { border-color: var(--primary); background: var(--surface3); transform: translateX(2px); }
.media-item-icon { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; background: var(--surface3); border: 1px solid var(--border); }
.media-icon-news { background: rgba(30,207,214,0.1); }
.media-icon-youtube { background: rgba(255,0,0,0.12); }
.media-item-text { flex: 1; min-width: 0; }
.media-item-title { font-size: 13px; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.media-item-source { font-size: 11px; color: var(--grey); margin-top: 1px; }
.media-item-arrow { color: var(--grey); flex-shrink: 0; }
.case-footer { border-top: 1px solid var(--border); padding: 0 24px 0 28px; }
.case-toggle-btn { width: 100%; background: none; border: none; color: var(--grey); font-size: 13px; font-weight: 600; padding: 14px 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: color 0.2s; font-family: 'Inter', sans-serif; }
.case-toggle-btn:hover { color: var(--white); }
.case-toggle-btn .chevron { transition: transform 0.2s; }
.case-toggle-btn.open .chevron { transform: rotate(180deg); }
.comments-section { border-top: 1px solid var(--border); padding: 20px 24px 24px 28px; display: none; }
.comments-section.open { display: block; }
.comment-form { display: flex; gap: 12px; margin-bottom: 24px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: #080808; flex-shrink: 0; }
.avatar-grey { background: var(--surface3); color: var(--grey); }
.comment-input-wrap { flex: 1; }
.comment-input { width: 100%; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 14px; color: var(--white); resize: none; font-family: 'Inter', sans-serif; transition: border-color 0.2s; }
.comment-input:focus { outline: none; border-color: var(--primary); }
.comment-input::placeholder { color: var(--grey); }
.comment-submit-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; gap: 12px; }
.comment-note { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--grey); }
.comment-note svg { width: 13px; height: 13px; }
.comment-divider { border-top: 1px solid var(--border); margin: 16px 0; }
.comment { display: flex; gap: 12px; }
.comment-content { flex: 1; }
.comment-author { font-size: 13px; font-weight: 700; }
.comment-author span { color: var(--grey); font-weight: 400; }
.comment-body { font-size: 14px; color: var(--grey-light); line-height: 1.7; margin-top: 4px; }
.comment-actions { display: flex; gap: 4px; margin-top: 8px; }
.comment-action-btn { background: none; border: none; color: var(--grey); font-size: 12px; font-weight: 600; cursor: pointer; padding: 4px 8px; border-radius: 4px; transition: all 0.15s; font-family: 'Inter', sans-serif; }
.comment-action-btn:hover { background: var(--surface3); color: var(--white); }
.comment-action-btn.upvoted { color: var(--primary); }
.load-more-comments { width: 100%; background: none; border: 1px solid var(--border); color: var(--grey); font-size: 13px; font-weight: 600; cursor: pointer; padding: 10px; border-radius: 8px; margin-top: 16px; transition: all 0.15s; font-family: 'Inter', sans-serif; }
.load-more-comments:hover { border-color: var(--primary); color: var(--primary); }

/* ── SUPPORT ── */
.support-section { border-top: 1px solid var(--border); }
.support-layout { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
@media (max-width: 900px) { .support-layout { grid-template-columns: 1fr; } }
.support-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.support-feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.feature-title { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.feature-desc { font-size: 14px; color: var(--grey-light); line-height: 1.65; }
.support-card { background: var(--surface); border: 1px solid var(--primary-border); border-radius: 18px; padding: 32px; position: sticky; top: 80px; }
.support-card-eyebrow { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 16px; }
.support-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.support-card p { font-size: 14px; color: var(--grey-light); line-height: 1.7; margin-bottom: 20px; }
.support-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.support-perk { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--grey-light); line-height: 1.5; }
.perk-check { color: var(--primary); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.btn-patreon { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px 20px; border-radius: 10px; background: var(--primary); color: #080808; font-weight: 800; font-size: 15px; text-decoration: none; transition: background 0.15s; }
.btn-patreon:hover { background: var(--primary-dark); }
.patreon-note { font-size: 12px; color: var(--grey); text-align: center; margin-top: 10px; }

/* ── MERCH ── */
.merch-section { border-top: 1px solid var(--border); }
.merch-header { margin-bottom: 48px; }
.merch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
@media (max-width: 768px) { .merch-grid { grid-template-columns: 1fr; } }
.merch-item { }
.merch-img { border-radius: 14px; overflow: hidden; position: relative; background: var(--surface); border: 1px solid var(--border); aspect-ratio: 1; }
.merch-img-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.merch-tee-icon { font-size: 64px; filter: grayscale(0.3); }
.merch-coming-badge { background: var(--orange-glow); border: 1px solid var(--orange-border); color: var(--orange); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 5px 14px; border-radius: 100px; }
.merch-blur { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px; background: linear-gradient(to top, rgba(8,8,8,0.6) 0%, transparent 60%); }
.merch-soon-label { color: var(--grey); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.merch-info { padding: 12px 4px 4px; }
.merch-name { font-weight: 700; font-size: 16px; }
.merch-price { font-size: 13px; color: var(--grey); margin-top: 3px; }
.merch-notify-box { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; max-width: 520px; margin: 0 auto; text-align: center; }
.merch-notify-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.merch-notify-box p { font-size: 15px; color: var(--grey-light); margin-bottom: 24px; }
.notify-form { display: flex; gap: 10px; justify-content: center; }
.notify-input { flex: 1; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 10px 16px; color: var(--white); font-size: 15px; font-family: 'Inter', sans-serif; max-width: 280px; }
.notify-input:focus { outline: none; border-color: var(--primary); }

/* ── BRANDS / WORK WITH ME ── */
.brands-section { border-top: 1px solid var(--border); }
.brands-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
@media (max-width: 900px) { .brands-layout { grid-template-columns: 1fr; gap: 48px; } }
.audience-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.audience-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.audience-stat-num { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 28px; letter-spacing: -1px; }
.audience-stat-num span { color: var(--primary); font-size: 18px; }
.audience-stat-label { font-size: 12px; color: var(--grey); margin-top: 4px; font-weight: 500; }
.brands-right h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.brands-right p { font-size: 14px; color: var(--grey-light); line-height: 1.7; margin-bottom: 24px; }

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--grey-light); }
.required { color: var(--primary); }
.form-input, .form-textarea, .form-select {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 14px; font-size: 14px;
  color: var(--white); font-family: 'Inter', sans-serif;
  transition: border-color 0.2s; width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--primary); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.form-select option { background: var(--surface2); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.submit-inner { max-width: 740px; margin: 0 auto; }
.submit-header { text-align: center; margin-bottom: 40px; }
.submit-form { display: flex; flex-direction: column; gap: 16px; }
.form-hint { font-size: 12px; color: var(--grey); }
.upload-zone { border: 2px dashed var(--border); border-radius: 10px; padding: 24px; text-align: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; background: var(--surface2); position: relative; }
.upload-zone:hover { border-color: var(--primary); background: rgba(30,207,214,0.03); }
.upload-zone.has-file { border-color: var(--primary); border-style: solid; background: var(--primary-glow); }
.upload-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--primary-glow); border: 1px solid var(--primary-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.upload-icon svg { width: 20px; height: 20px; color: var(--primary); }
.upload-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.upload-sub { font-size: 13px; color: var(--grey); margin-bottom: 16px; }
.upload-sources { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.upload-source-btn { display: flex; align-items: center; gap: 6px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 6px 12px; font-size: 12px; font-weight: 600; color: var(--grey-light); cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
.upload-source-btn:hover { border-color: var(--primary); color: var(--primary); }
.upload-source-btn svg { width: 14px; height: 14px; }
.upload-file-list { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.upload-file-item { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 8px 12px; }
.upload-file-item svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.upload-file-name { font-size: 13px; font-weight: 500; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-file-remove { background: none; border: none; color: var(--grey); cursor: pointer; font-size: 16px; line-height: 1; padding: 0 2px; transition: color 0.2s; font-family: 'Inter', sans-serif; }
.upload-file-remove:hover { color: var(--red); }
.form-moderation-note { display: flex; align-items: flex-start; gap: 10px; background: var(--primary-glow); border: 1px solid var(--primary-border); border-radius: 8px; padding: 14px 16px; font-size: 13px; color: var(--grey-light); line-height: 1.6; }
.form-moderation-note svg { color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form-disclaimer { font-size: 12px; color: var(--grey); max-width: 400px; line-height: 1.5; }

/* ── ABOUT ── */
.about-section { border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-text p { color: var(--grey-light); font-size: 17px; line-height: 1.8; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--white); font-weight: 600; }
.about-text a { color: var(--primary); text-decoration: none; font-weight: 600; }
.about-visual { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.about-profile { display: flex; align-items: center; gap: 16px; }
.profile-avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--primary-border); box-shadow: 0 0 24px var(--primary-glow); }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-name { font-weight: 700; font-size: 18px; }
.profile-handle { font-size: 13px; color: var(--grey); margin-top: 2px; }
.about-social-item { display: flex; align-items: center; justify-content: space-between; background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; padding: 11px 14px; text-decoration: none; transition: border-color 0.2s; }
.about-social-item:hover { border-color: var(--primary); }
.about-social-left { display: flex; align-items: center; gap: 10px; }
.about-social-left svg { width: 17px; height: 17px; }
.about-social-name { font-weight: 600; font-size: 14px; color: var(--white); }
.about-social-handle { font-size: 12px; color: var(--grey); }
.about-social-followers { font-size: 12px; font-weight: 700; color: var(--primary); }
.about-socials { display: flex; flex-direction: column; gap: 10px; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-socials { display: flex; flex-direction: column; gap: 12px; }
.contact-social-item { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.contact-social-item:hover { border-color: var(--primary); background: var(--primary-glow); }
.contact-social-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-social-icon svg { width: 18px; height: 18px; }
.contact-social-name { font-weight: 700; font-size: 15px; color: var(--white); }
.contact-social-handle { font-size: 13px; color: var(--grey); margin-top: 2px; }
.contact-social-arrow { font-size: 12px; font-weight: 700; color: var(--primary); margin-left: auto; }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
.contact-form-wrap h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.contact-form-wrap p { font-size: 14px; color: var(--grey-light); line-height: 1.7; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }

/* ── HOME PAGE SECTIONS GRID (legacy, kept for compat) ── */
.sections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 72px; }
@media (max-width: 768px) { .sections-grid { grid-template-columns: 1fr; } }
.section-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px 28px; text-decoration: none; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column; gap: 8px; }
.section-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.section-card-icon { font-size: 28px; margin-bottom: 4px; }
.section-card-title { font-weight: 800; font-size: 18px; color: var(--white); letter-spacing: -0.3px; }
.section-card-desc { font-size: 14px; color: var(--grey-light); line-height: 1.6; }
.section-card-cta { font-size: 13px; font-weight: 700; color: var(--primary); margin-top: 8px; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 48px 24px 32px; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-name { font-size: 18px; }
.footer-brand p { font-size: 13.5px; color: var(--grey); line-height: 1.7; margin-top: 12px; max-width: 260px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--grey); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--grey-light); text-decoration: none; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-legal { font-size: 12px; color: #444; line-height: 1.6; max-width: 600px; }
.footer-copy { font-size: 12px; color: #444; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--surface2); border: 1px solid var(--primary-border); border-radius: 10px; padding: 14px 20px; font-size: 14px; font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); z-index: 999; transform: translateY(80px); opacity: 0; transition: all 0.3s ease; pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 18px; }

/* ── INVESTIGATION ROOM: LIVE BADGE ── */
.live-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(247,147,32,0.08); border: 1px solid var(--orange-border);
  color: var(--orange); font-family: var(--mono); font-size: 11px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 4px; margin-bottom: 36px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
  flex-shrink: 0; animation: live-pulse 1.5s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(247,147,32,0.8); }
  50% { opacity: 0.35; box-shadow: 0 0 2px rgba(247,147,32,0.2); }
}

/* ── INVESTIGATION ROOM: HERO ENTRANCE ANIMATIONS ── */
.hero-inner .live-badge { animation: fade-up 0.55s cubic-bezier(0.25,1,0.5,1) both; }
.hero-inner h1 { animation: fade-up 0.65s cubic-bezier(0.25,1,0.5,1) 0.08s both; }
.hero-inner .hero-sub { animation: fade-up 0.65s cubic-bezier(0.25,1,0.5,1) 0.16s both; }
.hero-inner .hero-ctas { animation: fade-up 0.65s cubic-bezier(0.25,1,0.5,1) 0.24s both; }
.hero-inner .evidence-brief { animation: fade-up 0.75s cubic-bezier(0.25,1,0.5,1) 0.32s both; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── INVESTIGATION ROOM: EVIDENCE BRIEF ── */
.evidence-brief {
  max-width: 760px; margin: 64px auto 0;
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: 12px; overflow: hidden;
}
.evidence-brief-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.eb-label {
  font-family: var(--mono); font-size: 10px; color: var(--grey);
  letter-spacing: 2px; text-transform: uppercase;
}
.eb-classification {
  font-family: var(--mono); font-size: 10px; color: var(--orange);
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid var(--orange-border); padding: 2px 8px; border-radius: 2px;
}
.eb-stats { display: flex; flex-wrap: wrap; }
.eb-stat {
  flex: 1; min-width: 130px; padding: 20px 24px;
  border-right: 1px solid var(--border); text-align: center;
}
.eb-stat:last-child { border-right: none; }
.eb-stat-num {
  font-family: 'Inter', sans-serif; font-weight: 900;
  font-size: 30px; color: var(--white); line-height: 1; letter-spacing: -1px;
}
.eb-stat-num span { color: var(--primary); }
.eb-stat-label {
  font-family: var(--mono); font-size: 10px; color: var(--grey);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 6px;
}
.eb-footer {
  padding: 8px 20px; background: var(--surface2); border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: 10px; color: var(--grey);
  letter-spacing: 1px; text-align: center;
}

/* ── INVESTIGATION ROOM: DOSSIER GRID ── */
.dossier-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 72px;
}
.dossier-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 30px; text-decoration: none;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column; gap: 10px;
}
.dossier-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--primary); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25,1,0.5,1);
}
.dossier-card:hover::before { transform: scaleX(1); }
.dossier-card:hover {
  border-color: var(--border-light); transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.dossier-file-num {
  font-family: var(--mono); font-size: 10px; color: var(--grey);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px;
}
.dossier-icon { font-size: 26px; margin-bottom: 2px; }
.dossier-title {
  font-weight: 800; font-size: 20px; color: var(--white);
  letter-spacing: -0.4px; line-height: 1.2;
}
.dossier-desc { font-size: 14px; color: var(--grey-light); line-height: 1.65; }
.dossier-cta {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--primary); text-transform: uppercase; letter-spacing: 1.5px;
  margin-top: 6px;
}

/* ── INVESTIGATION ROOM: METHOD SECTION ── */
.method-section { padding: 80px 24px; border-top: 1px solid var(--border); }
.method-inner { max-width: 1140px; margin: 0 auto; }
.method-header { max-width: 640px; }
.method-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 48px;
}
.method-step { position: relative; padding-left: 28px; }
.method-step::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--primary) 0%, transparent 80%);
}
.method-step-num {
  font-family: var(--mono); font-size: 10px; color: var(--primary);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px;
}
.method-step-title {
  font-weight: 800; font-size: 18px; letter-spacing: -0.3px;
  margin-bottom: 8px; color: var(--white);
}
.method-step-desc { font-size: 14px; color: var(--grey-light); line-height: 1.7; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.25,1,0.5,1),
              transform 0.65s cubic-bezier(0.25,1,0.5,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  body { font-size: 16px; }
  nav { padding: 0 16px; }
  .nav-links {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 8px 12px 16px;
    gap: 2px; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; font-size: 15px; }
  .mobile-menu-btn { display: flex; }
  .social-btn:not(.btn-nav-cta) { display: none; }
  .hero { padding: 48px 16px 56px; }
  .hero h1 { letter-spacing: -1.5px; }
  .hero-sub { font-size: 17px; margin-bottom: 32px; }
  .eb-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .eb-stat { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .eb-stat:nth-child(2n) { border-right: none; }
  .eb-stat:nth-last-child(-n+2) { border-bottom: none; }
  section { padding: 52px 16px; }
  .brands-section { padding: 52px 16px; }
  .section-title { letter-spacing: -0.5px; }
  .section-desc { font-size: 16px; }
  .case-header { padding: 18px 16px 0 20px; }
  .case-body { padding: 12px 16px 16px 20px; }
  .case-media { padding: 0 16px 16px; padding-top: 16px; }
  .case-footer { padding: 0 16px 0 20px; }
  .comments-section { padding: 16px 16px 16px 20px; }
  .business-name { font-size: 17px; }
  .case-title { font-size: 17px; }
  .case-desc { font-size: 15px; }
  .outcome-text { font-size: 15px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .page-hero { padding: 40px 16px 40px; }
  .dossier-grid { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: 1fr; gap: 32px; }
  .sections-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 32px; }
  .ticker-label { font-size: 9px; padding: 10px 10px; }
}
@media (max-width: 480px) {
  .hero h1 { letter-spacing: -1px; }
  .logo-sub { display: none; }
  .btn-nav-cta { font-size: 12px; padding: 5px 10px; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ── ACCESSIBILITY: REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
