:root {
  --bg: #FDF6EE;
  --bg-alt: #F7EDD8;
  --fg: #2D3748;
  --fg-muted: #718096;
  --accent: #E07B4C;
  --accent-dark: #C45F2E;
  --accent-light: #F5D4C1;
  --surface: #FFFFFF;
  --border: #E8D9C8;
  --success: #38A169;
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.2;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.2rem;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* HERO */
.hero {
  padding: 80px 24px 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Map card */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(45,55,72,0.08);
}
.map-header {
  background: var(--fg);
  color: white;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
}
.map-title { opacity: 0.7; }
.map-radius { color: var(--accent-light); font-weight: 600; }
.map-body {
  padding: 24px;
  position: relative;
  background: linear-gradient(135deg, #F0E8D8 0%, #E8DFCA 100%);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.map-dots {
  position: relative;
  flex: 1;
}
.map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}
.map-dot-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--fg);
  opacity: 1;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.map-dot-1 { top: 30%; left: 38%; }
.map-dot-2 { top: 22%; left: 58%; background: var(--accent); width: 14px; height: 14px; }
.map-dot-3 { top: 60%; left: 30%; }
.map-dot-4 { top: 68%; left: 55%; }
.map-dot-5 { top: 40%; left: 70%; background: #8B5CF6; }
.map-legend {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
}

/* Result cards */
.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(45,55,72,0.06);
}
.result-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.result-avatar-2 { background: var(--fg); }
.result-info { flex: 1; min-width: 0; }
.result-name { font-weight: 600; font-size: 0.9rem; }
.result-loc { font-size: 0.75rem; color: var(--fg-muted); }
.result-stars { font-size: 0.7rem; color: #F6AD55; letter-spacing: -0.5px; }
.result-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.tag {
  font-size: 0.68rem;
  background: var(--bg-alt);
  color: var(--fg-muted);
  padding: 3px 8px;
  border-radius: 100px;
  font-weight: 500;
}

/* TRUST BAR */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-stat {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}
.trust-desc {
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.hiw-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.hiw-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--fg);
}
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(224, 123, 76, 0.3);
}
.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--fg);
}
.step-content p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  margin: 0 16px;
  margin-bottom: 40px;
}

/* FEATURES */
.features {
  padding: 80px 24px;
  background: var(--bg-alt);
}
.features-header {
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}
.features-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--fg);
  margin-bottom: 16px;
}
.features-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.feature-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}
.feature-card-2::before { background: #8B5CF6; }
.feature-card-3::before { background: #38A169; }
.feature-card-4::before { background: #E07B4C; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PROVIDER CTA */
.provider-cta {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.provider-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.provider-text .section-label { display: block; text-align: left; margin-bottom: 12px; }
.provider-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--fg);
  margin-bottom: 16px;
}
.provider-text p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.provider-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.provider-list li {
  font-size: 0.88rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.provider-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.earnings-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 24px rgba(45,55,72,0.08);
}
.earnings-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.earnings-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}
.earnings-currency {
  font-size: 1.8rem;
  color: var(--accent);
}
.earnings-period {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}
.earnings-meta {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.earnings-bar {
  height: 8px;
  background: var(--bg-alt);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}
.earnings-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 100px;
}
.earnings-detail {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  background: var(--fg);
  padding: 80px 24px;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: white;
  margin-bottom: 20px;
}
.closing p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col-head {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg);
  margin-bottom: 14px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .provider-inner { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { gap: 24px; }
  .trust-divider { display: none; }
  .nav-links { display: none; }
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .hero { padding: 48px 24px 40px; }
}
@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .hero-headline { font-size: 1.8rem; }
}