/* === TOKENS === */
:root {
  --bg: #f5f2ed;
  --bg-warm: #edeae4;
  --fg: #1a1917;
  --fg-muted: #6b6560;
  --accent: #ff5c00;
  --accent-warm: #fff3ec;
  --dark-surface: #1a1917;
  --border: #e0dcd4;
  --card-bg: #ffffff;
  --radius: 10px;
  --radius-lg: 16px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

h1, h2, h3, h4 { font-family: 'Syne', system-ui, sans-serif; font-weight: 700; line-height: 1.15; }

/* === NAV === */
.nav {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.nav__logo strong { color: var(--accent); }
.nav__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.nav__cta {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 8px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,92,0,0.25);
}

/* === HERO === */
.hero {
  position: relative;
  padding: 100px 32px 90px;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero__bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__stripe {
  position: absolute;
  background: var(--accent);
  opacity: 0.07;
}
.hero__stripe--1 { width: 2px; height: 100%; right: 18%; top: 0; }
.hero__stripe--2 { width: 2px; height: 60%; right: 22%; top: 20%; }
.hero__stripe--3 { width: 120px; height: 2px; right: 12%; top: 38%; }
.hero__dot-grid {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  background-image: radial-gradient(circle, var(--fg) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.06;
  border-radius: 50%;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-warm);
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero__headline {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,92,0,0.25);
}
.hero__industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  display: inline-block;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.01em;
  transition: border-color 0.2s, color 0.2s;
}
.pill:hover { border-color: var(--accent); color: var(--accent); }

/* === PROOF BAR === */
.proof {
  background: var(--dark-surface);
  color: #fff;
  padding: 52px 32px;
}
.proof__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.proof__stat { flex: 1; }
.proof__number {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}
.proof__label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.proof__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* === FEATURES === */
.features {
  padding: 100px 32px;
}
.features__header {
  max-width: 620px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-title {
  font-size: clamp(30px, 4.5vw, 46px);
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.features__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(26,25,23,0.08); }
.feature-card__icon { margin-bottom: 16px; }
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }

/* === PRICING === */
.pricing {
  background: var(--bg-warm);
  padding: 100px 32px;
}
.pricing__header { max-width: 620px; margin: 0 auto 60px; text-align: center; }
.pricing__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.plan--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px var(--accent-warm);
}
.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.plan__name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.plan__price { margin-bottom: 10px; }
.plan__amount {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -2px;
}
.plan__period { font-size: 18px; color: var(--fg-muted); margin-left: 2px; }
.plan__tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.5; }
.plan__features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan__features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 22px;
  position: relative;
}
.plan__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2 7l4 4 6-7' stroke='%23ff5c00' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

/* === PROCESS === */
.process {
  padding: 100px 32px;
}
.process__header { max-width: 620px; margin: 0 auto 72px; text-align: center; }
.process__steps {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step__number {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  letter-spacing: -2px;
  line-height: 1;
  padding-top: 4px;
}
.step__body h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.step__body p { font-size: 16px; color: var(--fg-muted); line-height: 1.7; }

/* === MANIFESTO === */
.manifesto {
  background: var(--dark-surface);
  padding: 100px 32px;
}
.manifesto__inner { max-width: 760px; margin: 0 auto; }
.manifesto__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.manifesto__statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.3;
  margin-bottom: 32px;
}
.manifesto__highlight { color: var(--accent); }
.manifesto__body {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto__body:last-child { color: rgba(255,255,255,0.8); }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px 32px;
  background: var(--bg);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
}
.footer__logo {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}
.footer__logo strong { color: var(--accent); }
.footer__desc { font-size: 14px; color: var(--fg-muted); max-width: 280px; line-height: 1.5; }
.footer__tagline { font-size: 14px; color: var(--fg-muted); font-style: italic; }
.footer__bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer__bottom p { font-size: 13px; color: var(--fg-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .features__grid, .pricing__grid { grid-template-columns: 1fr 1fr; }
  .proof__inner { flex-wrap: wrap; gap: 32px; }
}
@media (max-width: 640px) {
  .hero { padding: 72px 20px 60px; }
  .hero__headline { letter-spacing: -1px; }
  .features__grid, .pricing__grid { grid-template-columns: 1fr; }
  .proof__inner { flex-direction: column; align-items: flex-start; }
  .proof__divider { display: none; }
  .step { grid-template-columns: 52px 1fr; gap: 20px; }
  .step__number { font-size: 28px; }
  .manifesto, .process, .features, .pricing { padding: 72px 20px; }
  .footer__inner { flex-direction: column; }
}