:root {
  --bg: #FFFBF5;
  --bg-alt: #FFF5E6;
  --primary: #F59E0B;
  --primary-dark: #D97706;
  --slate: #0F172A;
  --slate-mid: #334155;
  --slate-light: #64748B;
  --amber-light: #FEF3C7;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-sm: 8px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--slate);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--slate);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-mid);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--slate); }
.nav-link-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.15s;
}
.nav-link-cta:hover { background: var(--primary-dark); }

/* HERO */
.hero {
  padding: 90px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--amber-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  color: var(--slate);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.hero-lede {
  font-size: 17px;
  color: var(--slate-mid);
  max-width: 440px;
  line-height: 1.65;
}
.hero-art {
  position: relative;
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 158, 11, 0.3);
}
.art-ring-1 { width: 280px; height: 280px; animation: spin 18s linear infinite; }
.art-ring-2 { width: 200px; height: 200px; animation: spin 12s linear infinite reverse; border-color: rgba(245, 158, 11, 0.25); }
.art-ring-3 { width: 130px; height: 130px; animation: spin 8s linear infinite; border-color: rgba(245, 158, 11, 0.35); }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.art-dot {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px rgba(245, 158, 11, 0.3);
}
.art-dot-1 { top: 15%; left: 60%; }
.art-dot-2 { top: 50%; right: 12%; }
.art-dot-3 { bottom: 20%; left: 50%; }
.art-dot-4 { top: 30%; left: 20%; background: var(--primary-dark); }
.art-dot-5 { bottom: 35%; right: 25%; background: var(--primary-dark); }

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
}
.stat {
  background: var(--bg);
  padding: 24px 28px;
}
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--slate-light);
  line-height: 1.4;
}

/* HOW IT WORKS */
.howitworks {
  background: var(--slate);
  padding: 90px 24px;
  color: var(--white);
}
.howitworks .section-label { color: var(--primary); }
.howitworks .section-header h2 { color: var(--white); }

.section-header {
  max-width: 1100px;
  margin: 0 auto 56px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -1px;
  line-height: 1.15;
}

.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  background: rgba(255,255,255,0.04);
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* CATEGORIES */
.categories {
  padding: 90px 24px;
  background: var(--bg);
}
.cat-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08); }
.cat-icon {
  width: 48px; height: 48px;
  background: var(--amber-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-dark);
}
.cat-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 8px;
}
.cat-card p { font-size: 13px; color: var(--slate-light); line-height: 1.6; }

/* TRUST */
.trust {
  background: var(--bg-alt);
  padding: 90px 24px;
}
.trust-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.trust-quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--slate);
  line-height: 1.5;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  font-style: normal;
}
.trust-quote cite {
  font-size: 13px;
  color: var(--slate-light);
  font-style: normal;
}
.trust-pillars { display: flex; flex-direction: column; gap: 24px; }
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.pillar h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 3px;
}
.pillar p { font-size: 13px; color: var(--slate-light); }

/* CLOSING */
.closing {
  background: var(--slate);
  padding: 100px 24px;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.closing p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 36px;
}
.cta-label {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.cta-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary);
  border: 1px solid rgba(245, 158, 11, 0.25);
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 99px;
}

/* FOOTER */
.footer {
  background: var(--bg);
  padding: 32px 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--slate);
}
.footer-brand p { font-size: 13px; color: var(--slate-light); margin-top: 4px; }
.footer-meta { display: flex; gap: 20px; font-size: 13px; color: var(--slate-light); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 60px; }
  .hero-art { height: 240px; }
  .steps-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; }
}
