:root {
  --bg: #faf8f3;
  --fg: #1a2744;
  --accent: #e8930a;
  --accent-dark: #c47a00;
  --muted: #6b7280;
  --surface: #ffffff;
  --border: #e8e2d9;
  --green: #2d8a5f;
}

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

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 {
  padding: 80px 48px 96px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

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

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  background: rgba(232, 147, 10, 0.08);
  padding: 6px 14px;
  border-radius: 4px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

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

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

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* DASHBOARD MOCK */
.hero-visual {
  display: flex;
  justify-content: center;
}

.dashboard-mock {
  background: var(--fg);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 24px 64px rgba(26, 39, 68, 0.18);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #febc2e; }
.mock-dot:nth-child(3) { background: #28c840; }

.mock-title {
  margin-left: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.mock-body {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 16px;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mock-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.mock-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.mock-badge.green { background: rgba(45, 138, 95, 0.3); color: #6fcf9a; }
.mock-badge.amber { background: rgba(232, 147, 10, 0.3); color: #f5b942; }

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 72px;
  margin: 16px 0;
  padding-top: 8px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent), rgba(232, 147, 10, 0.4));
  border-radius: 4px 4px 0 0;
  min-height: 20%;
}

.mock-spend {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding-top: 8px;
}

.mock-spend strong { color: rgba(255,255,255,0.85); }

/* PROBLEM */
.problem {
  padding: 96px 48px;
  background: var(--fg);
  color: white;
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 32px;
}

.problem-mark {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.problem-line {
  width: 2px;
  height: 100%;
  background: var(--accent);
  min-height: 200px;
}

.problem-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.problem-text > p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.problem-list li {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  padding-left: 20px;
  border-left: 2px solid var(--accent);
  line-height: 1.7;
}

.problem-list strong { color: #ffffff; }

.problem-conclusion {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.problem-conclusion em { color: var(--accent); font-style: normal; }

/* FEATURES */
.features {
  padding: 96px 48px;
  background: var(--bg);
}

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

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.features h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 56px;
  color: var(--fg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--surface);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 147, 10, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* HOW IT WORKS */
.howitworks {
  padding: 96px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.howitworks-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.howitworks h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 56px;
  color: var(--fg);
}

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

.step {
  flex: 1;
}

.step-connector {
  width: 80px;
  flex-shrink: 0;
  height: 2px;
  background: var(--border);
  margin-top: 28px;
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--border);
  border-top: 2px solid var(--border);
  transform: rotate(45deg);
  background: var(--surface);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

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

/* OUTCOMES */
.outcomes {
  padding: 96px 48px;
  background: var(--fg);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.outcomes-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.outcomes-left > p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.check {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.quote-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
}

.quote {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.quote-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-initial {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--fg);
  font-size: 14px;
}

.quote-meta strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.quote-meta span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: var(--accent);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.1;
}

.closing p {
  font-size: 18px;
  color: rgba(26, 39, 68, 0.7);
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .dashboard-mock { max-width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .problem-inner { grid-template-columns: 1fr; }
  .problem-mark { display: none; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .hero, .problem, .features, .howitworks, .outcomes, .closing { padding: 64px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat { flex: 1; min-width: 100px; }
  .closing h2 { font-size: 36px; }
}