/* ===== TOKENS ===== */
:root {
  --bg: #0B1D3A;
  --bg-2: #0F2547;
  --bg-card: #132848;
  --amber: #F5A623;
  --amber-dim: rgba(245,166,35,0.15);
  --coral: #E8503A;
  --fg: #FAF7F2;
  --fg-muted: #B8C5D6;
  --fg-dim: #7A93B0;
  --navy-deep: #060E1E;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 80px 80px 80px;
  gap: 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--amber);
}

.hero-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 48px;
  max-width: 480px;
}

.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--navy-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #ffb84d;
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.stat { text-align: left; }

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.visual-card {
  position: absolute;
  background: rgba(19,40,72,0.9);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.card-1 { top: 5%; right: 5%; }
.card-2 { top: 40%; right: -5%; }
.card-3 { bottom: 15%; right: 10%; }

.card-icon {
  color: var(--amber);
  margin-bottom: 4px;
}

.card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.card-sub {
  font-size: 11px;
  color: var(--fg-dim);
}

/* Compass */
.compass-ring {
  position: absolute;
  width: 280px;
  height: 280px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.15);
}

.ring-outer {
  inset: 0;
  border-style: dashed;
  animation: rotate-ring 30s linear infinite;
}

.ring-mid {
  inset: 40px;
  border-color: rgba(245,166,35,0.12);
}

.ring-inner {
  inset: 80px;
  border-color: rgba(245,166,35,0.08);
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.compass-needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 80px;
  transform: translate(-50%, -50%) rotate(35deg);
  transform-origin: center bottom;
  background: linear-gradient(to top, var(--amber) 50%, rgba(245,166,35,0.3) 50%);
  border-radius: 4px 4px 2px 2px;
  box-shadow: 0 0 20px rgba(245,166,35,0.4);
}

/* ===== SECTION COMMON ===== */
.section-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
}

.section-title em {
  font-style: italic;
  color: var(--amber);
}

/* ===== FEATURES ===== */
.features {
  background: var(--navy-deep);
  padding: 100px 80px;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-2px);
}

.feature-primary {
  background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(245,166,35,0.03));
  border-color: rgba(245,166,35,0.3);
}

.feature-icon {
  color: var(--amber);
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-dim);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* ===== JOURNEY ===== */
.journey {
  background: var(--bg);
  padding: 100px 80px;
}

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

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

.journey-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.journey-step {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  margin: -1px 0 0 -1px;
}

.journey-step--final {
  grid-column: span 2;
  text-align: center;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(245,166,35,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--navy-deep);
  padding: 100px 80px;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 32px;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fg-muted);
  margin-bottom: 48px;
  border: none;
  padding: 0;
}

.manifesto-pillars {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}

.pillar-icon {
  color: var(--amber);
  flex-shrink: 0;
}

/* ===== CLOSING ===== */
.closing {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(245,166,35,0.05) 100%);
  padding: 120px 80px;
  text-align: center;
}

.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-title em {
  font-style: italic;
  color: var(--amber);
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
}

.footer-tagline {
  display: block;
  font-size: 12px;
  color: var(--fg-dim);
  margin-top: 2px;
}

.footer-note {
  font-size: 13px;
  color: var(--fg-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    text-align: left;
    min-height: auto;
  }

  .hero-title { font-size: 42px; }

  .hero-visual { display: none; }

  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }

  .journey { padding: 60px 24px; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-step--final { grid-column: span 1; text-align: left; }

  .manifesto { padding: 60px 24px; }
  .manifesto-pillars { flex-direction: column; align-items: center; gap: 20px; }

  .closing { padding: 80px 24px; }
  .closing-title { font-size: 32px; }

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