/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #f5f0e8;
  --bg-alt: #ede8de;
  --navy: #1a2744;
  --navy-light: #2a3a5c;
  --terracotta: #e8725a;
  --terracotta-light: #f0957a;
  --terracotta-dark: #c45a42;
  --cream: #f5f0e8;
  --text: #1a2744;
  --text-muted: #5a6a8a;
  --text-light: #8a96b0;
  --border: rgba(26,39,68,0.12);
  --shadow: 0 4px 24px rgba(26,39,68,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--cream); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
/* === Typography === */
h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 400; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; line-height: 1.15; }
h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
section { padding: 0; }
/* === Hero === */
.hero { background: var(--navy); padding: 80px 0 100px; overflow: hidden; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-label { display: inline-block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); background: rgba(232,114,90,0.15); padding: 4px 12px; border-radius: 20px; margin-bottom: 28px; }
.hero-text h1 { color: var(--cream); margin-bottom: 24px; }
.hero-text h1 em { color: var(--terracotta); font-style: italic; }
.hero-lede { font-size: 1.05rem; color: rgba(245,240,232,0.65); max-width: 440px; line-height: 1.7; margin-bottom: 40px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--cream); line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(245,240,232,0.5); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 36px; background: rgba(245,240,232,0.15); }
/* Hero Visual */
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.map-frame { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 20px; }
.map-label { font-size: 0.7rem; color: rgba(245,240,232,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.map-area { background: rgba(26,39,68,0.6); border-radius: var(--radius); height: 200px; position: relative; overflow: hidden; }
/* World map abstraction */
.map-pins { position: absolute; inset: 0; }
.pin { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pin-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(245,240,232,0.25); border: 2px solid rgba(245,240,232,0.15); }
.pin-active .pin-dot { background: var(--terracotta); border-color: var(--terracotta); box-shadow: 0 0 12px rgba(232,114,90,0.5); }
.pin-label { font-size: 0.65rem; color: rgba(245,240,232,0.6); white-space: nowrap; }
.map-legend { display: flex; gap: 16px; margin-top: 10px; font-size: 0.7rem; color: rgba(245,240,232,0.4); align-items: center; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(245,240,232,0.2); display: inline-block; }
.legend-active { background: var(--terracotta); }
/* Kanban mini */
.kanban-mini { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 16px; overflow: hidden; }
.kanban-mini-header { font-size: 0.75rem; font-weight: 500; color: rgba(245,240,232,0.5); margin-bottom: 12px; }
.kanban-mini-cols { display: flex; gap: 8px; overflow-x: auto; }
.kanban-mini-col { flex: 1; min-width: 90px; }
.col-header { font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 8px; border-radius: 6px; margin-bottom: 8px; }
.considering { background: rgba(90,106,138,0.2); color: rgba(245,240,232,0.5); }
.shortlisted { background: rgba(232,114,90,0.2); color: var(--terracotta-light); }
.decided { background: rgba(100,180,120,0.2); color: #8cd4a0; }
.mini-card { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 8px; margin-bottom: 6px; display: flex; flex-direction: column; gap: 2px; border: 1px solid rgba(255,255,255,0.06); }
.card-selected { border-color: var(--terracotta); background: rgba(232,114,90,0.08); }
.card-name { font-size: 0.7rem; font-weight: 500; color: rgba(245,240,232,0.9); }
.card-meta { font-size: 0.6rem; color: rgba(245,240,232,0.4); }
.card-badge { font-size: 0.55rem; font-weight: 600; color: var(--terracotta); background: rgba(232,114,90,0.15); padding: 2px 6px; border-radius: 4px; margin-top: 2px; display: inline-block; }
.card-icon { font-size: 0.8rem; }
/* === Section Label === */
.section-label { display: inline-block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 16px; }
/* === Features === */
.features { padding: 100px 0; background: var(--cream); }
.features-header { max-width: 640px; margin: 0 auto 64px; padding: 0 40px; text-align: center; }
.features-header h2 { margin-bottom: 20px; }
.features-header p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }
.features-grid { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; transition: transform 0.2s, box-shadow 0.2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--cream); }
.ai-icon { background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark)); }
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; color: var(--navy); }
.feature-card > p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-list li { font-size: 0.8rem; color: var(--text-muted); padding-left: 16px; position: relative; }
.feature-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--terracotta); }
.feature-cta { text-align: center; margin-top: 48px; font-size: 0.85rem; color: var(--text-light); }
/* === Destinations === */
.destinations { padding: 100px 0; background: var(--bg-alt); }
.destinations-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.destinations-text .section-label { margin-bottom: 20px; }
.destinations-text h2 { margin-bottom: 20px; line-height: 1.2; }
.destinations-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.destinations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dest-card { background: white; border-radius: var(--radius); padding: 18px 20px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; transition: transform 0.2s; }
.dest-card:hover { transform: translateY(-2px); }
.dest-more { background: var(--navy); border-color: var(--navy); }
.dest-more span { font-family: var(--font-display); font-size: 1.4rem; color: var(--cream); }
.dest-flag { font-size: 1.4rem; }
.dest-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.dest-detail { font-size: 0.75rem; color: var(--text-light); }
/* === How it Works === */
.howitworks { padding: 100px 0; background: var(--cream); }
.hiw-header { max-width: 640px; margin: 0 auto 64px; padding: 0 40px; text-align: center; }
.hiw-header .section-label { margin-bottom: 16px; }
.hiw-header h2 { margin-bottom: 0; }
.steps { max-width: 900px; margin: 0 auto; padding: 0 40px; display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; }
.step-num { font-family: var(--font-display); font-size: 3.5rem; color: var(--terracotta); line-height: 1; margin-bottom: 16px; }
.step h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.step-connector { width: 60px; height: 1px; background: var(--border); margin-top: 28px; flex-shrink: 0; }
/* === Closing === */
.closing { background: var(--navy); padding: 100px 0; }
.closing-inner { max-width: 700px; margin: 0 auto; padding: 0 40px; text-align: center; }
.closing h2 { color: var(--cream); margin-bottom: 20px; }
.closing h2 em { color: var(--terracotta); font-style: italic; }
.closing p { color: rgba(245,240,232,0.6); font-size: 1rem; line-height: 1.7; margin-bottom: 40px; }
.closing-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tag { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(245,240,232,0.7); font-size: 0.75rem; padding: 6px 14px; border-radius: 20px; }
/* === Footer === */
footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 32px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); display: block; }
.footer-tagline { font-size: 0.75rem; color: rgba(245,240,232,0.35); margin-top: 2px; display: block; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.8rem; color: rgba(245,240,232,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-built { font-size: 0.7rem; color: rgba(245,240,232,0.25); }
/* === Responsive === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .destinations-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 0 80px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .features, .destinations, .howitworks, .closing { padding: 64px 0; }
  .hero-inner, .features-header, .features-grid, .destinations-inner, .steps, .closing-inner, .footer-inner { padding: 0 24px; }
  .destinations-grid { grid-template-columns: 1fr; }
}