:root {
  --bg: #0D1B2A;
  --bg-surface: #142033;
  --bg-card: #1B2A3F;
  --fg: #F0F4F8;
  --fg-muted: #7A8FA6;
  --accent: #F4A236;
  --accent-dim: rgba(244, 162, 54, 0.15);
  --border: rgba(240, 244, 248, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.header-nav {
  display: flex;
  gap: 32px;
}
.header-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--fg); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 32px 80px;
}
.hero-bg-shape {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,162,54,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-pill-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.pill-sep { color: var(--fg-muted); font-size: 14px; }

/* Trip Card */
.trip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.trip-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.trip-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.trip-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #4ADE80;
  background: rgba(74, 222, 128, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
}
.trip-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
}
.trip-dest {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}
.trip-dates {
  color: var(--fg-muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.trip-segments {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.segment {
  display: grid;
  grid-template-columns: 24px 1fr 1fr;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}
.seg-icon { font-size: 16px; }
.seg-route { font-weight: 600; }
.seg-time { color: var(--fg-muted); font-size: 13px; }
.trip-agent-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  background: rgba(244,162,54,0.06);
  border-radius: 8px;
  padding: 10px 12px;
  line-height: 1.4;
}
.agent-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Section shared */
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
}

/* What section */
.what-section { padding: 80px 32px; }
.what-inner { max-width: 1200px; margin: 0 auto; }
.what-header { margin-bottom: 56px; }
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.what-item { }
.what-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.what-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.what-item p { color: var(--fg-muted); font-size: 15px; line-height: 1.65; }

/* Features section */
.features-section { padding: 80px 32px; background: var(--bg-surface); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { margin-bottom: 48px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--bg-card);
  padding: 32px;
}
.feature-card--large {
  grid-column: span 2;
}
.feature-card--cta { background: linear-gradient(135deg, #1B2A3F 0%, rgba(244,162,54,0.06) 100%); }
.feature-number {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p { color: var(--fg-muted); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.feature-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Process section */
.process-section { padding: 80px 32px; }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
  position: relative;
}
.process-step { position: relative; }
.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 20px;
}
.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.process-step p { color: var(--fg-muted); font-size: 15px; line-height: 1.65; }
.step-connector {
  position: absolute;
  top: 30px;
  right: -24px;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.3;
}

/* Difference section */
.difference-section { padding: 80px 32px; background: var(--bg-surface); }
.difference-inner { max-width: 1200px; margin: 0 auto; }
.difference-content { margin-bottom: 56px; }
.difference-body { color: var(--fg-muted); font-size: 16px; line-height: 1.7; max-width: 640px; margin-bottom: 16px; }
.difference-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--bg-card);
  padding: 40px 32px;
  text-align: center;
}
.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-label { font-size: 14px; color: var(--fg-muted); }

/* Closing section */
.closing-section {
  padding: 120px 32px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 100%);
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Footer */
.site-footer {
  padding: 48px 32px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-wordmark {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 14px; color: var(--fg-muted); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.footer-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 36px; }
  .what-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .difference-stats { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .header-nav { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 20px 48px; }
  .what-section, .features-section, .process-section, .difference-section { padding: 60px 20px; }
  .closing-section { padding: 80px 20px; }
  .trip-card { padding: 20px; }
  .trip-dest { font-size: 22px; }
}
