/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0E0E0E;
  --bg-alt: #131313;
  --bg-card: #171717;
  --amber: #F5A623;
  --amber-dim: rgba(245, 166, 35, 0.12);
  --amber-border: rgba(245, 166, 35, 0.25);
  --cream: #F2E8D5;
  --cream-dim: rgba(242, 232, 213, 0.6);
  --muted: rgba(242, 232, 213, 0.35);
  --divider: rgba(242, 232, 213, 0.08);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  border-bottom: 1px solid var(--divider);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--amber-border);
  border-radius: 2px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream-dim);
  max-width: 420px;
  margin-bottom: 32px;
}

.hero-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber);
  border: 1px solid var(--amber-border);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 2px;
}

/* Pipeline Viz */
.pipeline-viz {
  background: var(--bg-alt);
  border: 1px solid var(--divider);
  border-radius: 12px;
  overflow: hidden;
}

.pipeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--divider);
  background: var(--bg-card);
}

.pipeline-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pipeline-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--amber);
  font-weight: 500;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  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); }
}

.pipeline-stages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stage {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

.pipeline-arrow {
  color: var(--muted);
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

.stage-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--divider);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.stage-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
}

.stage-desc {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.stage-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.stage-badge--active {
  background: var(--amber-dim);
  color: var(--amber);
  border: 1px solid var(--amber-border);
}

.stage-badge--hot {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.stage-badge--gold {
  background: rgba(245, 166, 35, 0.08);
  color: var(--cream-dim);
  border: 1px solid var(--divider);
}

/* ==================== PROOF STRIP ==================== */
.proof {
  border-bottom: 1px solid var(--divider);
  padding: 60px;
}

.proof-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.proof-item {
  text-align: center;
  flex: 1;
}

.proof-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 10px;
}

.proof-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--divider);
  flex-shrink: 0;
}

/* ==================== FEATURES ==================== */
.features {
  padding: 120px 60px;
  border-bottom: 1px solid var(--divider);
}

.features-header {
  max-width: 1280px;
  margin: 0 auto 72px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.features-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-card {
  background: var(--bg-card);
  padding: 36px 32px;
  border: 1px solid var(--divider);
  position: relative;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: var(--amber-border);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-border), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--amber-border);
  background: var(--amber-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 24px;
}

.feature-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-dim);
}

/* ==================== PROCESS ==================== */
.process {
  padding: 120px 60px;
  border-bottom: 1px solid var(--divider);
  background: var(--bg-alt);
}

.process-header {
  max-width: 1280px;
  margin: 0 auto 80px;
}

.process-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.process-steps {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr 60px 1fr;
  align-items: start;
  gap: 0;
}

.process-step {
  padding: 32px 28px;
  border: 1px solid var(--divider);
  background: var(--bg-card);
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--cream-dim);
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 160px;
  color: var(--amber-border);
}

/* ==================== PHILOSOPHY ==================== */
.philosophy {
  padding: 120px 60px;
  border-bottom: 1px solid var(--divider);
}

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

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

.philosophy-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 36px;
  font-style: normal;
  letter-spacing: -0.02em;
}

.philosophy-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 640px;
  margin: 0 auto 60px;
}

.philosophy-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.pstat {
  text-align: center;
}

.pstat-number {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}

.pstat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ==================== CLOSING ==================== */
.closing {
  padding: 120px 60px;
  border-bottom: 1px solid var(--divider);
}

.closing-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.closing-cta { margin-top: 64px; }
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--amber);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}
.cta-btn:hover { opacity: 0.88; text-decoration: none; }
.cta-sub { font-size: 13px; color: var(--muted); margin-top: 12px; }

.hero-cta { display: flex; align-items: center; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.cta-secondary { font-size: 14px; color: var(--cream-dim); transition: color 0.2s; }
.cta-secondary:hover { color: var(--cream); text-decoration: none; }

.closing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 680px;
  margin-bottom: 72px;
}

.closing-vision {
  border-left: 3px solid var(--amber);
  padding-left: 32px;
}

.vision-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.vision-text {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--cream-dim);
  letter-spacing: -0.01em;
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 60px;
  background: var(--bg-alt);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--divider);
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}

.footer-location {
  font-size: 13px;
  color: var(--cream-dim);
  margin-bottom: 6px;
}

.footer-offer {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.05em;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

.footer-built {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .hero { padding: 60px 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .features { padding: 80px 32px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .process { padding: 80px 32px; }
  .process-steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .proof { padding: 48px 32px; }
  .proof-inner { flex-wrap: wrap; gap: 24px; }
  .proof-divider { display: none; }
  .proof-item { flex: 0 0 45%; }
  .philosophy { padding: 80px 32px; }
  .philosophy-stats { gap: 32px; }
  .closing { padding: 80px 32px; }
  .footer { padding: 48px 32px; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .proof-item { flex: 0 0 100%; }
  .philosophy-stats { flex-direction: column; gap: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}