/* OpsStack — Dark industrial theme */

:root {
  --bg-primary: #F7F5EE;
  --bg-dark: #141414;
  --bg-card: #FFFFFF;
  --fg-dark: #141414;
  --fg-muted: #6B6860;
  --fg-light: #F7F5EE;
  --accent: #F5A623;
  --accent-dark: #C47D0A;
  --border: #E0DDD3;
  --success: #2E7D32;
}

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

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

/* HERO */
.hero {
  background: var(--bg-dark);
  color: var(--fg-light);
  padding: 100px 48px 80px;
  text-align: left;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,238,0.55);
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #F7F5EE;
  max-width: 740px;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(247,245,238,0.7);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 64px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: rgba(247,245,238,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(247,245,238,0.15);
  margin: 0 48px;
}

.hero-visual {
  width: 100%;
  max-width: 900px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 48px;
  background: var(--bg-primary);
}

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

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 300;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}

.step-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  background: var(--bg-card);
  transition: border-color 0.2s;
}

.step-card:hover { border-color: var(--accent); }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(245,166,35,0.15);
  line-height: 1;
  margin-bottom: 24px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

.workflow-visual {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.workflow-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* OUTCOMES */
.outcomes {
  background: var(--bg-dark);
  padding: 100px 48px;
  color: var(--fg-light);
}

.outcomes-inner { max-width: 860px; margin: 0 auto; }

.outcomes-header { margin-bottom: 64px; }

.outcomes-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  color: #F7F5EE;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.outcomes .section-label { color: var(--accent); }

.outcomes-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.outcome-row { display: flex; flex-direction: column; gap: 12px; }

.outcome-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(247,245,238,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.outcome-bar-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 36px;
}

.outcome-bar {
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  min-width: 60px;
  position: relative;
}

.outcome-bar--before {
  background: rgba(247,245,238,0.12);
  width: 85%;
}

.outcome-bar--after {
  background: var(--accent);
  width: 25%;
}

.bar-label {
  font-size: 11px;
  color: rgba(247,245,238,0.5);
  font-weight: 500;
  padding: 0 12px;
  position: absolute;
  white-space: nowrap;
}

.outcome-time {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  min-width: 120px;
}

.outcome-time--before { color: rgba(247,245,238,0.45); }
.outcome-time--after { color: var(--accent); }

.outcomes-note {
  font-size: 13px;
  color: rgba(247,245,238,0.3);
  margin-top: 48px;
  font-style: italic;
}

/* PRICING */
.pricing {
  padding: 100px 48px;
  background: var(--bg-primary);
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
}

.pricing-card--featured {
  border-color: var(--fg-dark);
  border-width: 2px;
}

.pricing-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.pricing-card--featured .pricing-badge { color: var(--accent-dark); }

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--fg-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-period {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}

.pricing-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 15px;
  color: var(--fg-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-footer {
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
}

/* VERTICALS */
.verticals {
  padding: 100px 48px;
  background: var(--bg-dark);
  color: var(--fg-light);
}

.verticals .section-label { color: var(--accent); }
.verticals .section-title { color: #F7F5EE; }
.verticals .section-desc { color: rgba(247,245,238,0.6); }

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.vertical-card {
  background: rgba(247,245,238,0.04);
  border: 1px solid rgba(247,245,238,0.1);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}

.vertical-card:hover { border-color: var(--accent); }

.vertical-icon { color: var(--accent); }

.vertical-name {
  font-size: 20px;
  font-weight: 600;
  color: #F7F5EE;
}

.vertical-focus {
  font-size: 14px;
  color: rgba(247,245,238,0.5);
  line-height: 1.5;
}

.verticals-note {
  font-size: 14px;
  color: rgba(247,245,238,0.4);
  text-align: center;
}

/* MANIFESTO */
.manifesto {
  background: var(--accent);
  padding: 100px 48px;
}

.manifesto-inner { max-width: 720px; margin: 0 auto; }

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: #141414;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.manifesto-body {
  font-size: 17px;
  color: rgba(20,20,20,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

.manifesto-body--accent {
  font-weight: 600;
  color: #141414;
  font-size: 19px;
}

/* CLOSING */
.closing {
  background: var(--bg-primary);
  padding: 100px 48px;
  text-align: center;
}

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

.closing-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 56px;
  border: 1px solid var(--border);
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--fg-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}

/* FOOTER */
.footer {
  background: var(--bg-dark);
  color: rgba(247,245,238,0.5);
  padding: 56px 48px;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #F7F5EE;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(247,245,238,0.5);
  margin-bottom: 8px;
}

.footer-note {
  font-size: 13px;
  color: rgba(247,245,238,0.25);
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero, .how-it-works, .outcomes, .pricing, .verticals, .manifesto, .closing, .footer {
    padding: 64px 24px;
  }
  .steps-grid, .pricing-grid, .verticals-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  .stat-divider { display: none; }
  .stat-item { min-width: 120px; }
  .outcomes-note { display: none; }
}