/* FlowOps — Theme CSS */
:root {
  --bg: #0d0d0f;
  --bg-2: #141417;
  --bg-card: #1a1a1f;
  --fg: #f0f0f5;
  --fg-2: #a0a0b0;
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --mint: #10d9a0;
  --mint-dim: rgba(16, 217, 160, 0.1);
  --border: rgba(240, 240, 245, 0.07);
  --border-amber: rgba(245, 158, 11, 0.25);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 6rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.amber { color: var(--amber); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-2);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border-amber);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--amber);
  background: var(--amber-dim);
}

/* WORKFLOW DIAGRAM */
.hero-diagram { display: flex; align-items: center; justify-content: center; }
.workflow-container {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
}
.workflow-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 1.8rem;
}
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wf-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
}
.wf-node {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.node-amber { background: var(--amber-dim); border: 1px solid var(--border-amber); color: var(--amber); }
.node-mint { background: var(--mint-dim); border: 1px solid rgba(16, 217, 160, 0.25); color: var(--mint); }
.node-white { background: rgba(240,240,245,0.05); border: 1px solid var(--border); color: var(--fg); }
.wf-info {}
.wf-label { font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.1rem; }
.wf-desc { font-size: 0.8rem; color: var(--fg-2); }
.wf-connector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0 0.2rem 1.5rem;
}
.connector-line {
  width: 2px; height: 20px;
  background: var(--border);
  margin-left: 21px;
}
.connector-arrow { color: var(--fg-2); }
.workflow-badge {
  margin-top: 1.5rem;
  padding: 0.6rem 1rem;
  background: var(--mint-dim);
  border: 1px solid rgba(16,217,160,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--mint);
  display: inline-block;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 8rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  max-width: 680px;
  margin: 0 auto 5rem;
  text-align: center;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-header p { color: var(--fg-2); font-size: 1.05rem; line-height: 1.7; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s ease;
}
.step-card:hover { border-color: var(--border-amber); }
.step-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--amber-dim);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}
.step-icon { color: var(--amber); margin-bottom: 1.2rem; }
.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.step-card p { color: var(--fg-2); font-size: 0.9rem; line-height: 1.65; }

/* FEATURES */
.features {
  padding: 8rem 6rem;
  background: var(--bg-2);
}
.features .section-header { margin-bottom: 4rem; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
  border-color: var(--border-amber);
  transform: translateY(-2px);
}
.feature-icon { color: var(--amber); margin-bottom: 1.2rem; }
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.feature-card p { color: var(--fg-2); font-size: 0.88rem; line-height: 1.65; margin-bottom: 1rem; }
.feature-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--mint);
  padding: 0.25rem 0.65rem;
  background: var(--mint-dim);
  border-radius: 100px;
  border: 1px solid rgba(16,217,160,0.15);
}

/* OUTCOMES */
.outcomes {
  padding: 8rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}
.outcomes .section-header { margin-bottom: 4rem; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.outcome-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg-card);
}
.outcome-stat {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.outcome-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-2);
  margin-bottom: 1rem;
}
.outcome-card p { color: var(--fg-2); font-size: 0.88rem; line-height: 1.65; }
.outcomes-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.outcomes-quote blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg-2);
  font-style: italic;
  margin-bottom: 1rem;
  border-left: 2px solid var(--amber);
  padding-left: 1.5rem;
  text-align: left;
}
.outcomes-quote cite {
  font-size: 0.85rem;
  color: var(--fg-2);
  font-style: normal;
}

/* PRICING */
.pricing {
  padding: 8rem 6rem;
  background: var(--bg-2);
  max-width: 1400px;
  margin: 0 auto;
}
.pricing .section-header { margin-bottom: 4rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.pricing-card-featured {
  border-color: var(--border-amber);
  position: relative;
}
.pricing-tier {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 1rem;
}
.pricing-card-featured .pricing-tier { color: var(--amber); }
.pricing-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-2);
  letter-spacing: 0;
}
.pricing-desc {
  color: var(--fg-2);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--fg-2);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--amber);
  color: #0d0d0f;
}
.pricing-cta:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}
.pricing-callout {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.callout-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: var(--mint-dim);
  border: 1px solid rgba(16,217,160,0.2);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mint);
  margin-bottom: 0.75rem;
}
.pricing-callout p {
  color: var(--fg-2);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  background: var(--amber);
  padding: 8rem 6rem;
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-badge {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-bottom: 2rem;
}
.manifesto h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0d0d0f;
  margin-bottom: 1.5rem;
}
.manifesto p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(13,13,15,0.7);
  max-width: 640px;
  margin-bottom: 1rem;
}
.manifesto p:last-of-type { margin-bottom: 3rem; }
.manifesto-details {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.m-detail { display: flex; flex-direction: column; gap: 0.3rem; }
.m-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(13,13,15,0.5); }
.m-value { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: #0d0d0f; }

/* FOOTER */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 5rem 6rem 3rem;
}
.footer-cta-bar {
  max-width: 1400px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: center;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  background: var(--amber);
  color: #0d0d0f;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-cta-btn:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.footer-brand p { color: var(--fg-2); font-size: 0.88rem; line-height: 1.6; }
.footer-links { display: flex; gap: 4rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-head {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 0.4rem;
}
.footer-col span { font-size: 0.88rem; color: rgba(240,240,245,0.5); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--fg-2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 6rem 3rem 4rem; min-height: auto; }
  .hero-diagram { justify-content: flex-start; }
  .how-it-works, .features, .outcomes, .manifesto { padding: 5rem 3rem; }
  .steps-row, .feature-grid, .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .pricing { padding: 5rem 3rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
}
@media (max-width: 640px) {
  .hero, .how-it-works, .features, .outcomes, .manifesto, .pricing { padding: 4rem 1.5rem; }
  .steps-row, .feature-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .manifesto-details { flex-direction: column; gap: 1.5rem; }
  .footer-inner { padding: 0; }
  footer { padding: 4rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .workflow-container { padding: 1.5rem; }
}