:root {
  --bg-deep: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --fg: #e8e4df;
  --fg-dim: #8a857e;
  --fg-muted: #5a5650;
  --accent: #4a9e6e;
  --accent-light: #5cbf82;
  --accent-glow: rgba(74, 158, 110, 0.15);
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --border: #222;
  --radius: 12px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── SECTION LABELS ─── */
.section-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 760px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 580px;
  margin: 0 auto 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--accent-light);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── CATEGORIES ─── */
.categories {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.categories h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.cat-card:hover {
  background: var(--bg-card-hover);
  border-color: #333;
  transform: translateY(-2px);
}

.cat-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-light);
}

.cat-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.cat-card p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.65;
}

/* ─── WHY SECTION ─── */
.why {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0f0f0f 100%);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-text h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.why-body {
  font-size: 1rem;
  color: var(--fg-dim);
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}

.why-card.active {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(74, 158, 110, 0.06) 0%, var(--bg-card) 100%);
}

.why-card-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}

.why-card.active .why-card-label {
  color: var(--accent-light);
}

.why-list {
  list-style: none;
}

.why-list li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--fg-dim);
}

.why-list.bad li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: #7a3a3a;
  font-weight: 600;
}

.why-list.good li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-weight: 600;
}

/* ─── COMPLIANCE ─── */
.compliance {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.compliance h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.compliance-sub {
  color: var(--fg-dim);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.comp-item {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.comp-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 0.75rem;
  display: block;
}

.comp-item h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.comp-item p {
  font-size: 0.88rem;
  color: var(--fg-dim);
  line-height: 1.65;
}

/* ─── CLOSING ─── */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 80%, var(--accent-glow) 0%, transparent 60%);
}

.closing-inner {
  max-width: 650px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-dim);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 1rem;
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; min-height: 90vh; }
  .hero-stats { gap: 1.25rem; }
  .stat-divider { display: none; }
  .categories, .compliance { padding: 4rem 1.5rem; }
  .why { padding: 4rem 1.5rem; }
  .why-inner { grid-template-columns: 1fr; gap: 2rem; }
  .closing { padding: 5rem 1.5rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-badge { font-size: 0.6rem; padding: 0.4rem 1rem; }
  .hero-sub { font-size: 1rem; }
}