:root {
  --bg: #F8F5EE;
  --fg: #111111;
  --accent: #FFB830;
  --accent-dark: #E5A500;
  --muted: #888880;
  --border: #E0DDD5;
  --card-bg: #FFFFFF;
  --hero-bg: #0F0F0F;
  --hero-fg: #F8F5EE;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* ─── NAV ─── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  color: var(--accent);
  font-size: 0.75rem;
}

.nav-tag {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ─── HERO ─── */
.hero {
  background: var(--hero-bg);
  color: var(--hero-fg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  align-items: center;
}

.hero-content {
  padding: 5rem 4rem 5rem 5rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 184, 48, 0.3);
  padding: 0.375rem 0.875rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--hero-fg);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(248, 245, 238, 0.65);
  max-width: 44ch;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(248, 245, 238, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── HERO VISUAL ─── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
}

.geo-panel {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.geo-block {
  border-radius: 4px;
}

.geo-block--a {
  background: var(--accent);
  border-radius: 8px 4px 4px 8px;
}

.geo-block--b {
  background: rgba(255, 184, 48, 0.25);
  border-radius: 4px 8px 8px 4px;
}

.geo-block--c {
  background: rgba(255, 184, 48, 0.1);
  border-radius: 4px 4px 8px 8px;
}

.geo-block--d {
  background: rgba(255, 184, 48, 0.4);
  border-radius: 4px 4px 4px 8px;
}

.geo-label {
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  display: flex;
  flex-direction: column;
}

.geo-label-main {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
}

.geo-label-sub {
  font-size: 0.75rem;
  color: rgba(248, 245, 238, 0.4);
}

/* ─── SECTION SHARED ─── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 22ch;
}

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 8rem 5rem;
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
}

.manifesto-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 32ch;
  margin-bottom: 1.25rem;
}

.manifesto-body {
  font-size: 1rem;
  color: var(--muted);
  max-width: 50ch;
}

.manifesto-body--large {
  font-size: 1.25rem;
  color: var(--fg);
  max-width: 40ch;
}

.manifesto-divider {
  width: 4rem;
  height: 1px;
  background: var(--accent);
  margin: 3rem 0;
}

.manifesto-solution {}

/* ─── PROCESS ─── */
.process {
  padding: 8rem 5rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.process-header {
  margin-bottom: 4rem;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3rem;
}

.step {
  flex: 1;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.step-connector {
  width: 3rem;
  height: 1px;
  background: var(--border);
  margin-top: 4rem;
  flex-shrink: 0;
}

.process-guarantee {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.guarantee-mark {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
}

/* ─── PRICING ─── */
.pricing {
  padding: 8rem 5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-header {
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
}

.price-card--featured {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.price-card-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--accent);
  color: var(--fg);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 2px;
}

.price-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.price-card--featured .price-tier {
  color: rgba(248, 245, 238, 0.5);
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.price-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.price-card--featured .price-desc {
  color: rgba(248, 245, 238, 0.65);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.price-features li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--fg);
}

.price-card--featured .price-features li {
  color: var(--bg);
}

.price-features li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-maintenance {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.maintenance-badge {
  background: var(--accent);
  color: var(--fg);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 2px;
  flex-shrink: 0;
}

.maintenance-price {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.maintenance-desc {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ─── NICHES ─── */
.niches {
  padding: 8rem 5rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.niches-header {
  margin-bottom: 3.5rem;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.niche {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
}

.niche-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.125rem;
}

.niche-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.niche-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── CLOSING ─── */
.closing {
  padding: 10rem 5rem;
  background: var(--hero-bg);
  color: var(--hero-fg);
  text-align: center;
}

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

.closing-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 184, 48, 0.3);
  padding: 0.375rem 0.875rem;
  border-radius: 2px;
  margin-bottom: 2.5rem;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.0625rem;
  color: rgba(248, 245, 238, 0.6);
  margin-bottom: 4rem;
}

.closing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.closing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.closing-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.closing-stat-label {
  font-size: 0.75rem;
  color: rgba(248, 245, 238, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.closing-divider {
  width: 1px;
  height: 3rem;
  background: rgba(248, 245, 238, 0.15);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg);
  padding: 3rem 5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  flex: 1;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 4rem 2rem; }
  .manifesto, .process, .pricing, .niches, .closing { padding: 5rem 2rem; }
  .process-steps { flex-direction: column; }
  .step-connector { width: 1px; height: 1.5rem; margin: 0.5rem 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .closing-cta { flex-direction: column; gap: 1.5rem; }
  .closing-divider { display: none; }
  .footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .pricing-maintenance { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero-meta { gap: 1.5rem; }
  .hero-content { padding: 3rem 1.5rem; }
  .manifesto, .process, .pricing, .niches, .closing { padding: 4rem 1.5rem; }
}