:root {
  --navy: #0f1c2e;
  --navy-mid: #1a2d42;
  --amber: #f59e0b;
  --amber-light: #fde68a;
  --cream: #f8f7f4;
  --white: #ffffff;
  --text: #2c3a4a;
  --text-muted: #6b7a8a;
  --border: #e2e4e9;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 40px 100px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--amber-light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-block;
}

.hero-left h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

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

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* Proof Stats */
.hero-right { display: flex; align-items: center; }

.proof-stats {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-item { padding: 16px 0; }
.stat-item:first-child { padding-top: 0; }
.stat-item:last-child { padding-bottom: 0; }

.stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--amber);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 4px 0;
}

/* PROOF SECTION */
.proof { padding: 80px 40px; background: var(--white); }

.proof-inner { max-width: 1200px; margin: 0 auto; }

.proof-intro {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
}

.verticals {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.vertical {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  transition: border-color 0.2s;
}

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

.v-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.vertical span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* HOW SECTION */
.how { padding: 80px 40px; background: var(--cream); }

.how-inner { max-width: 1200px; margin: 0 auto; }

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

.how h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  margin-bottom: 12px;
}

.how-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.how-card:hover {
  box-shadow: 0 8px 32px rgba(15, 28, 46, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
}

.how-num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 16px;
}

.how-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.how-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.how-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.how-detail span {
  font-size: 11px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
  color: var(--text-muted);
}

/* PROCESS SECTION */
.process { padding: 80px 40px; background: var(--navy); color: var(--white); }

.process-inner { max-width: 1200px; margin: 0 auto; }

.process .section-label { color: var(--amber); }

.process h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  margin-bottom: 52px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 32px;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-marker { margin-bottom: 16px; }

.step-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
}

.step-body h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

.step-connector {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 24px;
  flex-shrink: 0;
}

/* CLOSING SECTION */
.closing { padding: 80px 40px; background: var(--white); }

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

.closing-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.4;
  color: var(--navy);
  max-width: 820px;
  margin-bottom: 56px;
}

.closing-value {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.cv-item { padding: 0 40px 0 0; }

.cv-item:first-child { padding-left: 0; }

.cv-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.cv-item span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.cv-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 40px 0 0;
}

/* FOOTER */
footer { padding: 40px; background: var(--navy); color: var(--white); }

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

.footer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 24px; }
  .step-connector { display: none; }
  .closing-value { grid-template-columns: 1fr; gap: 32px; }
  .cv-divider { display: none; }
  .cv-item { padding: 0; }
}

@media (max-width: 600px) {
  .hero, .proof, .how, .process, .closing { padding: 60px 24px; }
  .how-grid { grid-template-columns: 1fr; }
  .verticals { grid-template-columns: 1fr 1fr; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}