:root {
  --bg-black: #ffffff;
  --bg-surface: #f9fafb;
  --bg-elevated: #f3f4f6;
  --text-primary: #1a1a1a;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --border-color: #e5e7eb;
  --border-subtle: #f3f4f6;
  --fraud: #e8192c;
  --safe: #00cc6a;
  --warning: #ffb300;
  --info: #1565c0;
  --max: 1152px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-black);
  color: var(--text-primary);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

code {
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.05rem 0.25rem;
}

.container {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 250, 251, 0.94);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(14px);
}

.site-header .container,
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

.brand-logo {
  color: var(--text-primary);
  font-family: "Anton", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.brand-logo span {
  color: var(--fraud);
}

.hero-copy h1,
.section-heading h2,
.post-card h3,
.post-hero h1,
.cta-card h3,
.archive-card h3,
.post-body h2 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--text-primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 800;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button.primary {
  background: var(--fraud);
  border-color: var(--fraud);
  color: #ffffff;
}

.button.ghost {
  background: transparent;
}

.button:hover {
  border-color: rgba(232, 25, 44, 0.55);
}

.button.primary:hover {
  background: #c91425;
}

.hero {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  padding: 5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
  gap: 3rem;
  align-items: end;
}

.hero-copy h1 {
  margin: 0;
  max-width: 48rem;
  color: var(--text-primary);
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  line-height: 0.95;
}

.eyebrow,
.meta,
.tag {
  color: var(--fraud);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 43rem;
  color: var(--text-secondary);
  font-size: 1.03rem;
  margin: 1.35rem 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card,
.metric,
.post-card,
.cta-card,
.quote,
.post-body,
.archive-card {
  background: var(--bg-black);
  border: 1px solid var(--border-color);
}

.hero-card {
  padding: 1.5rem;
}

.hero-card h2 {
  margin: 0.75rem 0 0.65rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-card p,
.metric p,
.post-card p,
.cta-card p,
.archive-card p,
.post-body p,
.post-body li {
  color: var(--text-secondary);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.metric {
  min-height: 6.6rem;
  padding: 0.9rem;
}

.metric strong {
  display: block;
  color: var(--text-primary);
  font-family: "Anton", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.section {
  padding: 4rem 0;
}

.section + .section {
  border-top: 1px solid var(--border-subtle);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.section-heading p {
  max-width: 38rem;
  color: var(--text-secondary);
  margin: 0.4rem 0 0;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.posts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.35rem;
  transition: border-color 160ms ease, transform 160ms ease;
}

.post-card:hover {
  border-color: rgba(232, 25, 44, 0.55);
  transform: translateY(-2px);
}

.post-card h3 {
  margin: 0.45rem 0 0.7rem;
  font-size: 1.45rem;
  line-height: 1.05;
}

.post-card p {
  margin-bottom: 1rem;
}

.post-link {
  display: inline-flex;
  align-items: center;
  color: var(--fraud);
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cta-card,
.archive-card {
  padding: 1.5rem;
}

.archive-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.archive-list li + li {
  margin-top: 0.75rem;
}

.archive-list a {
  color: var(--text-primary);
  font-weight: 700;
}

.archive-list a:hover {
  color: var(--fraud);
}

.footer {
  padding: 2rem 0 3rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
}

.footer-top {
  align-items: start;
}

.footer strong {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footer small {
  color: var(--text-secondary);
}

.footer a {
  color: var(--fraud);
  font-weight: 700;
}

.post-shell {
  padding: 3.5rem 0 4rem;
}

.post-hero {
  padding-bottom: 1.5rem;
}

.post-hero h1 {
  max-width: 52rem;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: 0.96;
  margin: 0.5rem 0 1rem;
}

.post-hero p {
  max-width: 46rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.post-body {
  max-width: 52rem;
  padding: 2rem;
}

.post-body h2 {
  margin-top: 2rem;
  font-size: 1.75rem;
  line-height: 1;
}

.post-body ul,
.post-body ol {
  padding-left: 1.2rem;
}

.quote {
  padding: 1.1rem 1.25rem;
  margin: 1.7rem 0;
  border-left: 4px solid var(--fraud);
  background: var(--bg-surface);
}

.quote strong {
  display: block;
  margin-bottom: 0.25rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-weight: 700;
}

.back-link:hover {
  color: var(--fraud);
}

@media (max-width: 960px) {
  .hero-grid,
  .grid.posts,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: start;
  }

  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 2rem), var(--max));
  }

  .site-header .container,
  .footer-top,
  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .nav {
    gap: 0.8rem;
    padding-bottom: 1rem;
  }

  .hero {
    padding: 3.5rem 0 2.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 16vw, 4.25rem);
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .post-body {
    padding: 1.25rem;
  }
}
