:root {
  --bg: #f5f2ed;
  --bg-alt: #ece8e0;
  --fg: #0f1929;
  --fg-muted: #4a5568;
  --accent: #e8591a;
  --accent-dark: #c44d15;
  --navy: #0f1929;
  --white: #ffffff;
  --border: rgba(15,25,41,0.12);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  background: var(--navy);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--bg);
  letter-spacing: 0.02em;
}
.nav-logo strong {
  color: var(--accent);
  font-weight: 700;
}
.nav-tagline {
  font-size: 0.8rem;
  color: rgba(245,242,237,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  background: var(--navy);
  padding: 80px 40px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,89,26,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(100,160,220,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-block;
  background: rgba(232,89,26,0.15);
  border: 1px solid rgba(232,89,26,0.3);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  max-width: 640px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,242,237,0.65);
  max-width: 500px;
  margin-bottom: 52px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(245,242,237,0.1);
  padding-top: 36px;
  width: fit-content;
}
.stat {
  padding: 0 40px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(245,242,237,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.stat-sep {
  width: 1px;
  height: 50px;
  background: rgba(245,242,237,0.12);
  margin: 0 40px 0 0;
}

/* Pain section */
.pain-section {
  background: var(--bg-alt);
  padding: 100px 40px;
}
.pain-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pain-label, .power-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pain-label { color: var(--fg-muted); }
.power-label { color: var(--accent); }
.pain-heading, .power-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 18px;
}
.pain-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.power-list {
  list-style: none;
}
.power-list li {
  font-size: 0.95rem;
  color: var(--fg);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.power-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Features */
.features {
  padding: 100px 40px;
  background: var(--white);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feat {
  padding: 40px 40px 40px 0;
  border-bottom: 1px solid var(--border);
}
.feat:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--border); }
.feat:nth-child(even) { padding-left: 40px; }
.feat:nth-child(3), .feat:last-child { border-bottom: none; }
.feat:nth-child(4) { border-bottom: none; }
.feat-icon {
  color: var(--accent);
  margin-bottom: 18px;
}
.feat-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.feat-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* How it works */
.how {
  padding: 100px 40px;
  background: var(--navy);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how .section-label { color: rgba(245,242,237,0.4); }
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}
.step {
  flex: 1;
  padding: 36px 40px 36px 0;
}
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.88rem;
  color: rgba(245,242,237,0.55);
  line-height: 1.6;
}
.step-arrow {
  color: rgba(245,242,237,0.2);
  flex-shrink: 0;
  padding: 36px 20px;
}

/* Outro */
.outro {
  padding: 120px 40px;
  background: var(--bg);
  text-align: center;
}
.outro-inner {
  max-width: 680px;
  margin: 0 auto;
}
.outro-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 32px;
}
.outro-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 24px;
}
.outro-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* Footer */
.footer {
  background: var(--navy);
  padding: 60px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bg);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 10px;
}
.footer-logo strong { color: var(--accent); font-weight: 700; }
.footer-sub {
  font-size: 0.8rem;
  color: rgba(245,242,237,0.35);
  max-width: 260px;
  line-height: 1.5;
}
.footer-note {
  font-size: 0.82rem;
  color: rgba(245,242,237,0.25);
  line-height: 1.7;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .pain-inner { grid-template-columns: 1fr; gap: 48px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat:nth-child(odd) { border-right: none; padding-right: 0; }
  .feat:nth-child(even) { padding-left: 0; }
  .steps { flex-direction: column; align-items: flex-start; }
  .step-arrow { display: none; }
  .step { padding: 24px 0; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-note { text-align: left; }
  .hero { padding: 60px 24px 80px; }
  .hero-headline { font-size: 3rem; }
  .stat { padding-right: 24px; }
  .stat-sep { margin-right: 24px; }
}