:root {
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --surface: #f1f5f9;
  --fg: #000000;
  --fg-muted: #64748b;
  --accent: #2563eb;
  --accent-dark: #0033a4;
  --accent-dim: rgba(37,99,235,0.08);
  --border: #e2e8f0;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.cta-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}
.cta-btn:active {
  transform: translateY(0);
}
.cta-btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cta-btn-outline:hover {
  background: var(--accent-dim);
  transform: none;
}

/* HERO */
.hero {
  position: relative;
  padding: 120px 48px 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}

.stat-number {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

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

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 40px;
}

.hero-bg-accent {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* SECTION SHARED */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* FAST METHOD */
.fast-method {
  background: var(--bg-alt);
  padding: 100px 48px;
}

.section-header {
  margin-bottom: 56px;
}

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

.pillar {
  background: var(--surface);
  padding: 40px 32px;
  border: 1px solid var(--border);
}

.pillar-icon {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 24px;
  font-style: italic;
}

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

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

/* RESULTS */
.results {
  padding: 100px 48px;
}

.results-inner {}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 48px;
}

.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 40px;
}

.result-marker {
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}

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

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

.results-badge {
  display: inline-block;
  border: 1px solid var(--accent);
  padding: 12px 24px;
}

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

/* PROCESS */
.process {
  background: var(--bg-alt);
  padding: 100px 48px;
}

.process-inner {}

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

.step {
  flex: 1;
}

.step-number {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 24px;
}

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

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

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 32px 32px 0;
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
}

.closing-inner {}

.closing-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  max-width: 700px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 300;
}

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 6px;
}

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

.footer-actions {
  display: flex;
  align-items: center;
}

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

.footer-tilda {
  font-size: 12px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
}

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

.site-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .site-header { padding: 0 24px; }
  .hero { padding: 80px 24px 64px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding-right: 0; }
  .stat-divider { width: 40px; height: 1px; margin: 0; }

  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { width: 40px; height: 1px; margin: 0; }

  .fast-method, .results, .process, .closing { padding: 72px 24px; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
}