* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(34, 197, 94, 0.10), transparent 28%),
    linear-gradient(180deg, #0f172a 0%, #111827 100%);
  color: #e5e7eb;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #052e16;
  background: linear-gradient(135deg, #86efac, #22c55e);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.22);
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #86efac;
  font-size: 0.74rem;
  margin: 0 0 10px;
  font-weight: 700;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: #f8fafc;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: #f8fafc;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.35rem;
  color: #f8fafc;
  margin-bottom: 14px;
}

p {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 1rem;
}

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.card {
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(10px);
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-panel {
  display: flex;
  align-items: stretch;
}

.truth-box {
  width: 100%;
  border-radius: 20px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.13), rgba(34, 197, 94, 0.04));
  border: 1px solid rgba(134, 239, 172, 0.18);
}

.truth-title {
  color: #f8fafc;
  font-weight: 700;
  margin-bottom: 14px;
}

.truth-box ul {
  margin: 0;
  padding-left: 18px;
  color: #d1fae5;
  line-height: 1.9;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.topic {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.12);
  color: #e2e8f0;
  line-height: 1.5;
}

.cta {
  margin-top: 24px;
  text-align: center;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #86efac, #22c55e);
  color: #052e16;
}

.button-secondary {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding: 10px 4px 0;
}

.site-footer p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .hero,
  .grid-two,
  .topics {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 24px;
  }

  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 16px;
  }
}
