/* Roadbox additions on top of the shared Paralaks Tools stylesheet (style.css).
 * Same tokens, same type, same spacing — only the pieces this product needs. */

/* ─── Brand wordmark (text, so it takes the page font like the sidebar in the plugin) ── */
.brand__word {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.brand__word em { font-style: normal; color: var(--accent); }
.brand__by {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--subtle);
  letter-spacing: 0.01em;
}
.site-foot .brand__word { font-size: 20px; }

/* ─── Hero product shot: the engine's own render on a quiet plate ───────────────── */
.hero-art {
  margin: 44px auto 0;
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px) 0 0 / 28px 28px,
    #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 12px 32px rgba(0,0,0,.08);
  padding: 18px 26px 10px;
  overflow: hidden;
}
.hero-art img { display: block; width: 100%; height: auto; }
.hero-art__cap {
  font-size: 13.5px;
  color: var(--subtle);
  text-align: center;
}
.hero-art__cap strong { color: var(--muted); font-weight: 600; }

.hero-art__cap { max-width: 720px; margin: 14px auto 0; }
.fblock__art--pair { display: grid; gap: 18px; }
.mock--card-wide { max-width: 900px; margin: 0 auto; }

/* ─── Three steps ──────────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px 22px 20px;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 14px;
  margin-bottom: 14px;
}
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.015em; }
.step p { color: var(--muted); font-size: 15px; }
.step code { font-size: 13.5px; background: var(--wash); padding: 1px 5px; border-radius: 4px; }

/* ─── Feature boxes: one per capability, aligned in a strict grid ───────────────── */
.fboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fbox {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.fbox:hover {
  border-color: rgba(217,119,87,.45);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.fbox h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.015em; }
.fbox p { color: var(--muted); font-size: 15px; }
.fbox__mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--accent-wash);
  color: var(--accent-dk);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  flex: 0 0 auto;
}
.fbox__mark svg { width: 20px; height: 20px; }

/* ─── Real screenshots inside feature blocks ───────────────────────────────────── */
.mock--card { padding: 0; overflow: hidden; }
.mock--card img { display: block; width: 100%; height: auto; }
.mock--render {
  padding: 12px 16px;
  background:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px) 0 0 / 22px 22px,
    #fff;
}
.mock--render img { display: block; width: 100%; height: auto; }

/* ─── Pricing when sales are closed ─────────────────────────────────────────────── */
.btn--soon {
  background: var(--wash);
  color: var(--muted);
  border-color: var(--line);
  cursor: default;
}
.btn--soon:hover { background: var(--wash); text-decoration: none; }

/* One plan only: the plan card takes the width of the order summary. */
.buy-page .plan-switch { grid-template-columns: 1fr; }

/* ─── Small print under the demo monitor ───────────────────────────────────────── */
.demo-note { text-align: center; color: var(--subtle); font-size: 13.5px; margin-top: 18px; }

@media (max-width: 900px) {
  .steps, .fboxes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .steps, .fboxes { grid-template-columns: 1fr; }
  .hero-art { padding: 12px 12px 6px; }
  .brand__by { display: none; }
}
