:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --fg: #1A1A2E;
  --fg-muted: #5A5A72;
  --accent: #E8614D;
  --accent-soft: #FDEAE7;
  --teal: #1B7A6E;
  --teal-soft: #E6F5F2;
  --ocean: #16425B;
  --coral: #E8614D;
  --sand: #D4A574;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #FAF7F2 0%, #E6F5F2 40%, #FDEAE7 100%);
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ocean);
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--coral);
}

.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-visual {
  margin-top: 60px;
  width: 100%;
  max-width: 600px;
  height: 6px;
  position: relative;
}

.route-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--sand));
  border-radius: 3px;
  position: relative;
}

.route-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--teal);
}

.dot-1 { left: 0%; background: var(--teal); }
.dot-2 { left: 25%; background: var(--teal); }
.dot-3 { left: 50%; background: var(--coral); }
.dot-4 { left: 75%; background: var(--coral); }
.dot-5 { left: 100%; background: var(--sand); transform: translate(-100%, -50%); }

/* ===== PROBLEM ===== */
.problem {
  padding: 120px 24px;
  background: var(--ocean);
  color: #fff;
}

.problem-inner {
  max-width: 800px;
  margin: 0 auto;
}

.problem-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 28px;
}

.problem h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: #fff;
}

.problem-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.75;
}

/* ===== FEATURES ===== */
.features {
  padding: 120px 24px;
  background: var(--bg);
}

.features-inner {
  max-width: 900px;
  margin: 0 auto;
}

.feature-block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(26,26,46,0.08);
}

.feature-block:last-child {
  border-bottom: none;
}

.feature-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--teal);
  opacity: 0.2;
  min-width: 90px;
  line-height: 1;
}

.feature-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ocean);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-content p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ===== JOURNEY ===== */
.journey {
  padding: 120px 24px;
  background: var(--bg-alt);
}

.journey-inner {
  max-width: 900px;
  margin: 0 auto;
}

.journey-header {
  text-align: center;
  margin-bottom: 72px;
}

.journey-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--ocean);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.journey-header p {
  font-size: 1.1rem;
  color: var(--fg-muted);
}

.journey-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  flex: 0 0 160px;
  padding: 0 8px;
}

.step-icon {
  font-size: 2rem;
  color: var(--coral);
  margin-bottom: 16px;
  display: block;
}

.step-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ocean);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  margin-top: 24px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 20px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 140px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ocean);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(26,26,46,0.06);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ocean);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 60px 20px 40px;
  }

  .problem { padding: 80px 20px; }
  .features { padding: 80px 20px; }
  .journey { padding: 80px 20px; }
  .closing { padding: 100px 20px; }

  .feature-block {
    flex-direction: column;
    gap: 12px;
    padding: 32px 0;
  }

  .feature-number {
    font-size: 2.2rem;
    min-width: auto;
  }

  .journey-steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .step-connector {
    width: 2px;
    height: 24px;
    margin: 0;
  }

  .step {
    flex: none;
    width: 100%;
    max-width: 280px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-visual {
    max-width: 320px;
  }
}
/* ===== HERO CTA ===== */

.hero-cta-row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 40px;
  background: var(--ocean);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(22, 66, 91, 0.2);
}

.hero-cta-btn:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27, 122, 110, 0.3);
}
