/* ============================================================
   OrderFlow PRO page — layers on top of style.css.
   The page keeps Whyrl's type + layout system but swaps the
   working accent for OFP's product indigo.
   ============================================================ */

.ofp {
  --ofp:      #3D4EE8;
  --ofp-soft: #F0F1FD;
  --ofp-deep: #0F1124;
}

.ofp .eyebrow { color: var(--ofp); }
.ofp .accent  { color: var(--ofp); }

.ofp .btn-solid { background: var(--ofp); }
.ofp .btn-solid:hover {
  background: #3A3FD8;
  box-shadow: 0 8px 24px rgba(61, 78, 232, 0.28);
}
.ofp .btn-ghost { color: var(--ofp); }

.ofp .chips li { background: var(--ofp-soft); color: var(--ofp); }

.ofp-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1.6rem;
}

/* ---------- hero chat mockup ---------- */

.chat-mock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem;
  display: grid;
  gap: 0.9rem;
  box-shadow: 0 14px 36px -10px rgba(40, 50, 100, 0.18);
  max-width: 420px;
  justify-self: center;
  width: 100%;
}

.chat-head {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.chat-msg {
  max-width: 85%;
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.chat-msg p { margin: 0; font-weight: 600; }

.chat-msg span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

.chat-msg.sent {
  background: var(--ofp);
  color: #fff;
  justify-self: end;
  border-bottom-right-radius: 4px;
}

.chat-msg.recv {
  background: var(--ofp-soft);
  color: var(--ink);
  justify-self: start;
  border-bottom-left-radius: 4px;
}

/* ---------- triad band ---------- */

.ofp-triad {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 0;
}

.ofp-triad h2 { max-width: 22em; }

.triad-lede {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 44em;
  margin-top: 1.4rem;
}

/* ---------- feature grid ---------- */

.ofp-features { padding: 90px 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem;
}

.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.feature-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- deep dives ---------- */

.ofp-dives { padding: 0 0 90px; }
.ofp-dives .product { margin-top: 0; }
.ofp-dives .product + .product { margin-top: 2.5rem; }
.ofp-dives .product-info h3 { font-size: 1.6rem; }

.board-mock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.board-col {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.board-col.is-active {
  background: var(--ofp);
  border-color: var(--ofp);
  color: #fff;
}

.widget-mock {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
  max-width: 340px;
  margin: 0 auto;
}

.widget-title {
  font-weight: 700;
  font-size: 1rem;
}

.widget-id {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.widget-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0;
}

.w-step {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
}

.w-step.done {
  background: var(--ofp-soft);
  border-color: transparent;
  color: var(--ofp);
}

.widget-eta { font-size: 0.9rem; color: var(--muted); }

/* ---------- getting started (reuses .approach dark band) ---------- */

.ofp-how { background: var(--ofp-deep); }
.ofp-how .eyebrow-light { color: #9BA6FF; }
.ofp-how .step-num { color: #9BA6FF; }
.ofp-how .approach-lede,
.ofp-how .step p { color: #B9BEDC; }

.steps-three { grid-template-columns: repeat(3, 1fr); }

/* ---------- pricing ---------- */

.ofp-pricing { padding: 100px 0; }

.pricing-lede { color: var(--muted); font-size: 1.1rem; margin-top: 0.8rem; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
  align-items: start;
}

.tier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
}

.tier h3 { font-size: 1.3rem; }

.tier-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.tier-price {
  font-size: 2.4rem;
  font-weight: 800;
  font-stretch: 115%;
  line-height: 1;
  margin: 0.8rem 0 0.6rem;
}

.tier-price span {
  font-size: 1rem;
  font-weight: 500;
  font-stretch: 100%;
  color: var(--muted);
}

.tier-blurb { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.2rem; }

.tier ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.tier ul li {
  font-size: 0.95rem;
  padding-left: 1.4rem;
  position: relative;
}

.tier ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ofp);
  font-weight: 700;
}

.tier-featured {
  background: var(--ofp);
  border-color: var(--ofp);
  color: #fff;
  box-shadow: 0 18px 36px -14px rgba(61, 78, 232, 0.55);
}

.tier-featured .tier-blurb { color: #D6DAFB; }
.tier-featured .tier-price span { color: #D6DAFB; }
.tier-featured ul li::before { color: #fff; }

/* ---------- closing CTA ---------- */

.ofp-cta {
  border-top: 1px solid var(--line);
  padding: 100px 0;
  text-align: center;
}

.ofp-cta p {
  color: var(--muted);
  font-size: 1.15rem;
  margin: 1rem auto 2rem;
  max-width: 34em;
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .steps-three { grid-template-columns: 1fr; }
  .chat-mock { max-width: 100%; }
}

@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
}
