:root {
  --bg-dark: #0f0f17;
  --bg-section: #151521;
  --bg-card: #1c1c2e;
  --bg-warm: #faf5e8;
  --fg-primary: #f0ece4;
  --fg-secondary: #a09b90;
  --fg-dark: #1a1a2e;
  --accent: #d4a853;
  --accent-soft: rgba(212, 168, 83, 0.15);
  --accent-glow: rgba(212, 168, 83, 0.4);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-dark);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero-line-1 {
  display: block;
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--fg-primary);
}

.hero-line-2 {
  display: block;
  font-size: clamp(3rem, 8vw, 6.5rem);
  background: linear-gradient(135deg, var(--accent), #e8c874);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--fg-secondary);
  margin-bottom: var(--space-md);
}

.hero-description {
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg-primary);
}

.stat-unit {
  font-size: 1rem;
  color: var(--accent);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(240, 236, 228, 0.15);
}

.hero-accent {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.accent-circle {
  position: absolute;
  border-radius: 50%;
}

.accent-1 {
  width: 500px;
  height: 500px;
  top: 10%;
  right: 5%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
}

.accent-2 {
  width: 300px;
  height: 300px;
  top: 40%;
  right: 25%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.2) 0%, transparent 70%);
  opacity: 0.5;
}

.accent-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  border: 1px solid rgba(212, 168, 83, 0.15);
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  background: var(--bg-section);
  padding: var(--space-2xl) var(--space-md);
}

.philosophy-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.philosophy-label,
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.philosophy-main h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.philosophy-main h2 em {
  color: var(--accent);
  font-style: italic;
}

.philosophy-main p {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.9;
}

.philosophy-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 236, 228, 0.06);
  border-radius: 12px;
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
}

.card-icon {
  color: var(--accent);
  font-size: 1.2rem;
  display: block;
  margin-bottom: var(--space-xs);
}

.philosophy-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.philosophy-card p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ===== CAPABILITIES ===== */
.capabilities {
  padding: var(--space-2xl) var(--space-md);
}

.capabilities-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.capabilities-header {
  margin-bottom: var(--space-xl);
}

.capabilities-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.capabilities-subtitle {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  max-width: 500px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.capability-item {
  background: var(--bg-section);
  border: 1px solid rgba(240, 236, 228, 0.06);
  border-radius: 12px;
  padding: var(--space-md) var(--space-md) var(--space-lg);
  transition: border-color 0.3s ease;
}

.capability-item:hover {
  border-color: rgba(212, 168, 83, 0.3);
}

.capability-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(212, 168, 83, 0.15);
  margin-bottom: var(--space-sm);
}

.capability-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.capability-item p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ===== PROCESS (TIMELINE) ===== */
.process {
  background: var(--bg-section);
  padding: var(--space-2xl) var(--space-md);
}

.process-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.process-header {
  margin-bottom: var(--space-xl);
}

.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
}

.process-timeline {
  max-width: 700px;
}

.process-step {
  display: flex;
  gap: var(--space-md);
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  flex-shrink: 0;
}

.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--accent), rgba(212, 168, 83, 0.1));
  margin-top: 4px;
}

.step-content {
  padding-bottom: var(--space-lg);
}

.step-time {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.step-content p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ===== OUTCOMES (PRICING) ===== */
.outcomes {
  padding: var(--space-2xl) var(--space-md);
}

.outcomes-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.outcomes-header {
  margin-bottom: var(--space-xl);
}

.outcomes-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
}

.outcomes-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.tier {
  background: var(--bg-section);
  border: 1px solid rgba(240, 236, 228, 0.06);
  border-radius: 16px;
  padding: var(--space-lg) var(--space-md);
  position: relative;
}

.tier-featured {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(212, 168, 83, 0.02));
  border-color: rgba(212, 168, 83, 0.3);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--fg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), #e8c874);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.tier-desc {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

.outcomes-note {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  text-align: center;
  font-style: italic;
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: linear-gradient(135deg, var(--bg-section), var(--bg-dark));
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.manifesto-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.manifesto-text p {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.manifesto-cta {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent) !important;
  font-style: italic;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: var(--space-xs);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  margin-bottom: var(--space-md);
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(240, 236, 228, 0.1);
  margin: 0 auto var(--space-md);
}

.footer-powered {
  font-size: 0.8rem;
  color: var(--fg-secondary);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-tiers {
    grid-template-columns: 1fr;
  }

  .hero-accent {
    display: none;
  }

  .hero {
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-stats {
    gap: var(--space-sm);
  }

  .stat-divider {
    height: 30px;
  }

  .philosophy,
  .capabilities,
  .process,
  .outcomes,
  .manifesto {
    padding: var(--space-xl) var(--space-sm);
  }

  .tier {
    padding: var(--space-md);
  }
}