:root {
  --bg: #F5F1EC;
  --fg: #111111;
  --muted: #6B645C;
  --accent: #E85D04;
  --accent-dark: #C44D03;
  --surface: #FFFFFF;
  --border: #DDD8CF;
  --stat-bg: #1A1A1A;
  --stat-fg: #F5F1EC;
  --manifesto-bg: #1A1A1A;
  --manifesto-fg: #F5F1EC;
  --manifesto-muted: #9B9490;
}

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

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

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  width: 32px; height: 32px;
  background: var(--fg);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.05em;
}
.nav-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px 80px;
}
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--stat-bg);
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
}
.stat {
  padding: 28px 40px;
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--stat-fg);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--manifesto-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: #2E2E2E;
  flex-shrink: 0;
}

/* HOW IT WORKS */
.how {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.how-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.how-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.step {
  padding: 40px;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* FEATURES */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}
.features-header {
  margin-bottom: 64px;
}
.features-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
}
.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 520px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.feature {
  background: var(--surface);
  padding: 36px;
}
.feature-icon {
  color: var(--fg);
  margin-bottom: 20px;
}
.feature h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  background: var(--manifesto-bg);
  padding: 100px 48px;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9B9490;
  margin-bottom: 24px;
}
.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--manifesto-fg);
  max-width: 640px;
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 17px;
  color: #9B9490;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* HERO CTAS */
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); color: white; }
.btn-ghost {
  display: inline-block;
  color: var(--muted);
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--fg); color: var(--fg); }

/* CLOSING */
.closing {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 100px 48px;
  text-align: center;
}
.closing-cta {
  margin-top: 40px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto 28px;
}
.closing-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* PRICING SECTION */
.pricing-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.pricing-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.agtek-callout {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--stat-bg);
  color: var(--stat-fg);
  border-radius: 4px;
  padding: 20px 28px;
  margin-bottom: 52px;
}
.agtek-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9B9490;
  margin-bottom: 4px;
}
.agtek-body {
  font-size: 16px;
  color: var(--stat-fg);
}
.agtek-body strong { color: #fbbf24; }
.agtek-arrow {
  font-size: 28px;
  color: #fbbf24;
  flex-shrink: 0;
  margin-left: auto;
}

.pricing-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.pricing-section-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.pricing-section-header p {
  font-size: 17px;
  color: var(--muted);
}

.pricing-billing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.ps-toggle-btn {
  padding: 10px 24px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.2s;
}
.ps-toggle-btn.active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.ps-save-badge {
  background: var(--emerald, #059669);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 6px;
}

.ps-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 48px;
}
.ps-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 36px;
  position: relative;
}
.ps-card-highlighted {
  border: 2px solid var(--accent);
  background: var(--surface);
  box-shadow: 0 4px 24px rgba(232,93,4,0.12);
}
.ps-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.ps-plan-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 4px;
}
.ps-plan-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.ps-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.ps-currency { font-size: 22px; color: var(--muted); }
.ps-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.02em;
}
.ps-period { font-size: 15px; color: var(--muted); }
.ps-annual-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.ps-plan-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.ps-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.ps-plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.ps-check {
  width: 20px;
  height: 20px;
  background: #d1fae5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.ps-cta {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 4px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.ps-cta-primary {
  background: var(--accent);
  color: white;
}
.ps-cta-primary:hover { background: var(--accent-dark); color: white; }
.ps-cta-secondary {
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--border);
}
.ps-cta-secondary:hover { border-color: var(--fg); }

.ps-roi-callout {
  max-width: 600px;
  margin: 0 auto;
  background: var(--stat-bg);
  border-radius: 4px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}
.ps-roi-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.ps-roi-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--stat-fg);
  margin-bottom: 4px;
}
.ps-roi-sub {
  font-size: 14px;
  color: #9B9490;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo {
  width: 28px; height: 28px;
  background: var(--fg);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 60px 24px 60px; }
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { text-align: center; }
  .stat-divider { width: 100%; height: 1px; }
  .how-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto, .closing { padding: 60px 24px; }
  .footer { flex-direction: column; gap: 16px; }
  .pricing-section { padding: 60px 24px; }
  .ps-pricing-grid { grid-template-columns: 1fr; }
  .agtek-callout { flex-direction: column; text-align: center; }
  .agtek-arrow { display: none; }
  .ps-roi-callout { flex-direction: column; text-align: center; }
}