/* === BASICS === */
:root {
  --slate-950: #0d1117;
  --slate-900: #111827;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-100: #fef3c7;
  --red-600: #dc2626;
  --red-100: #fee2e2;
  --green-600: #16a34a;
  --green-100: #dcfce7;
  --blue-600: #2563eb;
  --blue-100: #dbeafe;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--slate-950);
  color: var(--slate-200);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 0.75rem;
}

.section-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 3rem;
  max-width: 700px;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 2rem;
}

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

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* === HERO === */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-lede em { color: var(--slate-200); font-style: normal; }

.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.proof-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.proof-stat {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber-400);
  min-width: 80px;
}

.proof-label {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.4;
}

/* === FEED WIDGET === */
.hero-visual {
  display: flex;
  justify-content: center;
}

.feed-widget {
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.feed-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--slate-800);
}

.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slate-500);
}

.feed-dot.live {
  background: var(--green-600);
  box-shadow: 0 0 6px var(--green-600);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.feed-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
}

.feed-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.feed-item {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.feed-item.new {
  background: rgba(245, 158, 11, 0.05);
  border-left: 3px solid var(--amber-400);
}

.feed-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.feed-agency {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber-400);
  background: rgba(245, 158, 11, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.feed-time {
  font-size: 0.72rem;
  color: var(--slate-500);
}

.feed-text {
  font-size: 0.8rem;
  color: var(--slate-400);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.feed-risk {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.feed-risk.high {
  color: var(--red-600);
  background: var(--red-100);
}

.feed-risk.medium {
  color: var(--blue-600);
  background: var(--blue-100);
}

/* === RISK SECTION === */
.risk-section {
  background: var(--slate-900);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.risk-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.risk-headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.risk-body {
  font-size: 0.95rem;
  color: var(--slate-400);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.risk-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.comparison-col {
  padding: 1.5rem;
  background: var(--slate-800);
}

.comparison-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 1rem;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comparison-list li {
  font-size: 0.85rem;
  color: var(--slate-400);
  padding-left: 1.25rem;
  position: relative;
}

.before .comparison-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--slate-600);
}

.after .comparison-list li {
  color: var(--slate-200);
}

.after .comparison-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-400);
}

/* === INDUSTRIES === */
.industries {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.industry-card {
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s;
}

.industry-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.industry-icon {
  color: var(--amber-400);
  margin-bottom: 1.25rem;
}

.industry-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.industry-desc {
  font-size: 0.85rem;
  color: var(--slate-400);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.industry-regs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.reg-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--slate-400);
  background: var(--slate-800);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* === HOW IT WORKS === */
.howitworks {
  background: var(--slate-900);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.steps {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(245, 158, 11, 0.3);
  line-height: 1;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--slate-400);
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.closing-body {
  font-size: 1rem;
  color: var(--slate-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2rem;
  background: var(--slate-900);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.6;
  max-width: 360px;
}

.footer-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-600);
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  font-size: 0.85rem;
  color: var(--slate-400);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-link:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--slate-600);
  line-height: 1.6;
  max-width: 700px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid, .risk-inner { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .risk-comparison { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-headline { font-size: 2.25rem; }
  .feed-widget { max-width: 100%; }
  .proof-item { flex-direction: column; gap: 0.2rem; }
  .nav-tagline { display: none; }
}