:root {
  --bg: #ffffff;
  --bg-alt: #f5f0e8;
  --fg: #1a1714;
  --fg-muted: #6b6259;
  --accent: #2D6A4F;
  --accent-light: #dceee5;
  --teal: #2D6A4F;
  --teal-light: #dceee5;
  --navy: #1B4332;
  --warm-gray: #e8e0d5;
  --border: #ddd5c8;
  --sand: #D4A574;
  --sand-light: #F5E6D3;
}

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-lang {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-lang-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
}
.nav-lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.nav-lang-btn.active, .nav-lang-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }
.nav-user {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.nav-btn:hover { background: #245a42; }
.nav-btn-outline {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.nav-btn-outline:hover { border-color: var(--fg-muted); }

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-cta {}
.cta-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.cta-from { font-size: 14px; color: var(--fg-muted); }
.cta-price { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 600; color: var(--accent); }
.cta-period { font-size: 14px; color: var(--fg-muted); }
.cta-free { font-size: 13px; color: var(--fg-muted); }

/* CITY MAP */
.city-map {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.city-map-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.city-path {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.city-node {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  position: relative;
}
.city-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--accent-light);
  color: var(--accent);
}
.city-start .city-icon { background: var(--teal-light); color: var(--teal); }
.city-current .city-icon { background: var(--accent); color: #fff; }
.city-locked .city-icon { background: var(--warm-gray); color: var(--fg-muted); }
.city-name {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
}
.city-lang {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.city-status {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
  display: inline-block;
}
.city-status.completed { background: var(--teal-light); color: var(--teal); }
.city-status.current { background: var(--accent-light); color: var(--accent); }
.city-status.locked { background: var(--warm-gray); color: var(--fg-muted); }
.city-path-line {
  width: 2px;
  height: 16px;
  background: var(--border);
  margin-left: 19px;
}
.city-path-line.completed { background: var(--teal); }
.journey-progress {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.progress-bar {
  height: 6px;
  background: var(--warm-gray);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}
.progress-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 3px;
}
.progress-label { font-size: 12px; color: var(--fg-muted); }

/* SECTION EYEBROW */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-eyebrow.centered { text-align: center; }

/* JOURNEY */
.journey { background: var(--bg-alt); }
.journey-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.journey-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.journey-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* FEATURES */
.features { padding: 80px 24px; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.8px;
  margin-bottom: 48px;
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.feature-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* PRICING */
.pricing { background: var(--bg-alt); padding: 80px 24px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  text-align: center;
}
.pricing-subtitle {
  font-size: 16px;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 40px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
}
.pricing-card.card-featured {
  border: 2px solid var(--accent);
  background: #fff;
  box-shadow: 0 8px 40px rgba(45, 106, 79, 0.12);
}
.card-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}
.card-badge.free { background: var(--sand-light); color: var(--sand); }
.card-price {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
}
.card-period { font-size: 14px; color: var(--fg-muted); margin-top: 4px; }
.card-alt { font-size: 13px; color: var(--fg-muted); margin-top: 12px; }
.card-features { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.card-feature { font-size: 14px; display: flex; align-items: center; gap: 8px; }
.card-feature.excluded { color: var(--fg-muted); opacity: 0.6; }
.check { color: var(--teal); font-weight: 700; }
.cross { color: var(--fg-muted); }

/* LANGUAGES */
.languages { padding: 80px 24px; }
.languages-inner { max-width: 1100px; margin: 0 auto; }
.lang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.lang-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.lang-flag {
  margin: 0 auto 16px;
  width: 48px;
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.lang-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.lang-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.lang-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing { background: var(--navy); padding: 80px 24px; }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* FOOTER */
.footer { background: #0f1729; padding: 32px 24px; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 48px 20px 40px; gap: 40px; }
  .hero-title { font-size: 36px; }
  .journey-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .lang-grid { grid-template-columns: 1fr; }
  .closing-stats { gap: 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .nav-lang-label { display: none; }
}

@media (max-width: 480px) {
  .city-map { padding: 20px; }
  .features, .pricing, .languages { padding: 60px 20px; }
  .closing { padding: 60px 20px; }
}