/**
 * Frankey's AI Body Shop landing - matches dark garage mockup
 * (neon service bay, orange CTAs, work-order cards).
 */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap");

body.shop {
  --bg: #0a0a0b;
  --bg-card: #121214;
  --bg-elevated: #18181b;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --faint: #71717a;
  --orange: #f97316;
  --orange-hot: #fb923c;
  --orange-dim: rgba(249, 115, 22, 0.15);
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.15);
  --blue: #38bdf8;
  --display: "Bebas Neue", Impact, sans-serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  min-height: 100vh;
}

body.shop * {
  box-sizing: border-box;
}
body.shop a {
  color: inherit;
  text-decoration: none;
}
body.shop ::selection {
  background: var(--orange);
  color: #0a0a0b;
}

.shop-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.shop-skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--orange);
  color: #0a0a0b;
  font-weight: 700;
}
.shop-skip:focus {
  left: 12px;
}

/* ========== NAV ========== */
.shop-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.shop-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 8px 0;
}

.shop-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.shop-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(249, 115, 22, 0.5);
  background: #1c1917;
}

.shop-brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
  background: transparent;
}

.shop-hero-brand {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 28px;
  padding: 12px 0 8px;
  text-align: center;
}

.shop-hero-logo {
  display: block;
  height: auto;
  width: min(680px, 92vw);
  max-height: clamp(120px, 22vw, 220px);
  object-fit: contain;
  margin: 0 auto;
  background: transparent;
  filter: drop-shadow(0 10px 36px rgba(249, 115, 22, 0.35));
}

.shop-sign-name {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--text);
}

.shop-sign-sub {
  display: block;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 3px;
  max-width: 22rem;
  line-height: 1.35;
}

@media (max-width: 520px) {
  .shop-sign-sub {
    font-size: 0.52rem;
    letter-spacing: 0.06em;
    max-width: 12rem;
  }
}

.shop-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-nav-links a:hover {
  color: var(--text);
}

.shop-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shop-bay-pill {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.25;
  text-align: right;
}

.shop-bay-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  flex-shrink: 0;
}

.shop-bay-pill strong {
  display: block;
  color: var(--green);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (min-width: 960px) {
  .shop-bay-pill {
    display: flex;
  }
}

.shop-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 46px;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease, border-color 0.15s ease;
}

.shop-btn span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.shop-btn-primary {
  background: var(--orange);
  color: #0a0a0b;
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.35);
}

.shop-btn-primary:hover {
  background: var(--orange-hot);
  transform: translateY(-1px);
}

.shop-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-strong);
}

.shop-btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange-hot);
}

.shop-btn-sm {
  min-height: 40px;
  padding: 6px 14px;
  font-size: 0.9rem;
  flex-direction: row;
  gap: 8px;
}

.shop-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-drawer {
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  padding: 12px 0 18px;
}

.shop-drawer a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 860px) {
  .shop-nav-links {
    display: none;
  }
  .shop-nav-toggle {
    display: inline-flex;
  }
}

/* ========== HERO ========== */
.shop-hero {
  position: relative;
  padding: 28px 0 44px;
  overflow: hidden;
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 75% 40%, rgba(249, 115, 22, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(56, 189, 248, 0.06), transparent 50%);
  pointer-events: none;
}

.shop-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: center;
}

@media (max-width: 960px) {
  .shop-hero-grid {
    grid-template-columns: 1fr;
  }
}

.shop-hero h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(2.75rem, 7.5vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text);
  max-width: 11ch;
}

.shop-hero h1 .accent {
  color: var(--orange);
}

.shop-hero-lead {
  margin: 0 0 22px;
  max-width: 40ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.shop-hero-lead strong {
  color: var(--orange);
  font-weight: 700;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero visual - full mockup art or photo */
.shop-hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.55);
  background: #0c0c0e;
}

.shop-hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: transparent;
}

.shop-hero-visual-cutout {
  /* soft shop floor glow under transparent PNG */
  background: radial-gradient(
    ellipse 70% 45% at 50% 85%,
    rgba(249, 115, 22, 0.18) 0%,
    transparent 70%
  );
}

.shop-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}

@media (min-width: 961px) {
  .shop-hero-visual img {
    max-height: 580px;
    min-height: 380px;
  }
}

/* ========== SECTIONS ========== */
.shop-section {
  padding: 36px 0 48px;
}

.shop-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px 20px;
}

.shop-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.shop-panel-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.shop-panel-head .hint {
  font-size: 0.85rem;
  color: var(--faint);
}

/* How it works steps */
.shop-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .shop-steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .shop-steps {
    grid-template-columns: 1fr;
  }
}

.shop-step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 12px 16px;
  text-align: center;
}

.shop-step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--orange-dim);
  border: 1px solid rgba(249, 115, 22, 0.35);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.shop-step h3 {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.shop-step p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.shop-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.shop-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

.shop-trust-item i {
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}

/* Split: how + job card */
.shop-split {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 16px;
}

@media (max-width: 900px) {
  .shop-split {
    grid-template-columns: 1fr;
  }
}

/* Job card */
.shop-job {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shop-job-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--faint);
  letter-spacing: 0.04em;
}

.shop-job-top .done {
  color: var(--green);
  font-weight: 700;
}

.shop-job h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.shop-job-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--faint);
}

.shop-job-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-job-track li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
}

.shop-job-track .pip {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--faint);
  flex-shrink: 0;
}

.shop-job-track .pip.done {
  background: var(--green);
  border-color: var(--green);
  box-shadow: inset 0 0 0 3px var(--bg-card);
}

.shop-job-track .pip.ready {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.shop-job-status {
  background: var(--green-dim);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
}

.shop-job-status p {
  margin: 4px 0 0;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--muted);
}

.shop-job-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-job-actions .shop-btn {
  flex: 1;
  min-width: 120px;
}

/* Specials board — mechanic chalkboard */
.shop-specials {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.04), transparent 50%),
    linear-gradient(165deg, #1c2a1c 0%, #121a12 45%, #0e140e 100%);
  border: 3px solid #3a4a32;
  border-radius: 6px;
  padding: 18px 20px 16px;
  box-shadow:
    inset 0 0 0 1px rgba(180, 200, 140, 0.12),
    inset 0 0 40px rgba(0, 0, 0, 0.35),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.shop-specials-kicker {
  margin: 0 0 4px;
  text-align: center;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 220, 160, 0.55);
}

.shop-specials h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: #e8f0c8;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.shop-specials ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-specials li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(200, 220, 160, 0.18);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: #d4e0b0;
}

.shop-specials li:last-child {
  border-bottom: none;
}

.shop-specials li::before {
  content: "—";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* Promise + social */
.shop-bottom {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 800px) {
  .shop-bottom {
    grid-template-columns: 1fr;
  }
}

.shop-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 700px) {
  .shop-quotes {
    grid-template-columns: 1fr;
  }
}

.shop-notes-label {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: var(--faint);
  max-width: 42rem;
  line-height: 1.45;
}

.shop-quote {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.shop-job-note {
  text-align: left;
}

.shop-job-type {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.shop-job-note p {
  margin: 0 0 8px;
  line-height: 1.45;
}

.shop-job-result {
  margin: 10px 0 0 !important;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem !important;
  color: var(--faint) !important;
}

.shop-quote strong {
  display: block;
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--faint);
  font-weight: 600;
}

.shop-promise {
  background: var(--bg-card);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.shop-promise .icon {
  font-size: 1.5rem;
}

.shop-promise-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(180px, 36vw);
  object-fit: contain;
  flex: 0 0 auto;
  background: transparent;
}

.shop-promise h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--orange);
}

.shop-promise p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.shop-promise-wide {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  padding: 20px 22px;
}

.shop-promise-copy {
  flex: 1 1 220px;
  min-width: 0;
  text-align: left;
}

.shop-promise-cta {
  flex: 0 0 auto;
  margin-left: auto;
}

@media (max-width: 700px) {
  .shop-promise-wide {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .shop-promise-cta {
    margin-left: 0;
    align-self: stretch;
    text-align: center;
  }
  .shop-promise-logo {
    height: 48px;
  }
}

.shop-elevator {
  margin: 0 0 18px;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--muted);
}

.shop-elevator strong {
  color: var(--text);
  font-weight: 600;
}

.shop-hero-sub {
  margin: -6px 0 16px;
  max-width: 34rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--faint);
  line-height: 1.45;
}

.shop-ticket {
  text-align: left;
  padding: 14px 16px 12px;
}

.shop-ticket-row {
  margin: 0 0 8px !important;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 8px 10px;
  font-size: 0.88rem !important;
  line-height: 1.4 !important;
  color: var(--muted) !important;
}

.shop-ticket-key {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  padding-top: 2px;
}

.shop-ticket-repair {
  margin-top: 10px !important;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  color: var(--text) !important;
}

.shop-ticket-repair .shop-ticket-key {
  color: var(--orange);
}

.shop-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 800px) {
  .shop-proof-grid {
    grid-template-columns: 1fr;
  }
}

.shop-proof-card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
}

.shop-proof-stars {
  margin: 0 0 10px;
  color: var(--orange);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.shop-proof-card > p:last-child {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
}

.shop-panel-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  gap: 6px;
}

.shop-section-tight {
  padding-top: 8px;
}

.shop-core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 800px) {
  .shop-core-grid {
    grid-template-columns: 1fr;
  }
}

.shop-core-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 18px;
}

.shop-core-num {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 10px;
}

.shop-core-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

.shop-core-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.shop-trust-line {
  margin: 22px auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text);
  padding: 14px 18px;
  border-left: 3px solid var(--orange);
  background: rgba(249, 115, 22, 0.06);
  border-radius: 0 10px 10px 0;
}

.shop-split-equal {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 900px) {
  .shop-split-equal {
    grid-template-columns: 1fr;
  }
}

.shop-panel-accent {
  border-color: rgba(249, 115, 22, 0.25);
}

.shop-output-hero {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--text);
}

.shop-output-hero strong {
  color: var(--orange);
}

.shop-muted-p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.shop-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-check-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--muted);
}

.shop-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.shop-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .shop-tier-grid {
    grid-template-columns: 1fr;
  }
}

.shop-tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shop-tier-card-featured {
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.12);
}

.shop-tier-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.shop-tier-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.shop-tier-card ul {
  list-style: none;
  margin: 4px 0 12px;
  padding: 0;
  flex: 1;
}

.shop-tier-card li {
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--muted);
}

.shop-tier-card .shop-btn {
  align-self: flex-start;
}

.shop-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .shop-pillars {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .shop-pillars {
    grid-template-columns: 1fr;
  }
}

.shop-pillars article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.shop-pillars h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.shop-pillars p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.shop-moat {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.shop-moat span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--faint);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--bg-elevated);
}

/* Footer */
.shop-foot {
  padding: 24px 0 36px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--faint);
}

.shop-foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}

.shop-foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.shop-foot a:hover {
  color: var(--orange);
}

@media (prefers-reduced-motion: reduce) {
  .shop-btn {
    transition: none;
  }
}

/* ========== ABOUT PAGE ========== */
.shop-about {
  padding-top: 48px;
  padding-bottom: 64px;
}

.shop-about-wrap {
  max-width: 720px;
}

.shop-about-kicker {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.shop-about-title {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  font-weight: 400;
}

.shop-about-deck {
  margin: 0 0 36px;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 36rem;
}

.shop-about-prose {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.shop-about-prose p {
  margin: 0 0 1.15em;
  color: var(--muted);
}

.shop-about-prose p strong {
  color: var(--text);
  font-weight: 650;
}

.shop-about-prose h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
}

.shop-about-pull {
  margin: 1.75rem 0 !important;
  padding: 16px 18px;
  border-left: 3px solid var(--orange);
  background: rgba(249, 115, 22, 0.08);
  border-radius: 0 12px 12px 0;
  color: var(--text) !important;
  font-size: 1.12rem;
  font-weight: 650;
}

.shop-about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.shop-nav-links a[aria-current="page"] {
  color: var(--text);
  font-weight: 650;
}

/* ========== FAQ PAGE ========== */
.shop-faq {
  padding-top: 48px;
  padding-bottom: 64px;
}

.shop-faq-wrap {
  max-width: 720px;
}

.shop-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shop-faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  overflow: hidden;
}

.shop-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 650;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-faq-item summary::-webkit-details-marker {
  display: none;
}

.shop-faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.shop-faq-item[open] summary::after {
  content: "−";
}

.shop-faq-item summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.shop-faq-body {
  padding: 0 18px 16px;
  border-top: 1px solid var(--border);
}

.shop-faq-body p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.shop-faq-body p:first-child {
  margin-top: 14px;
}

.shop-faq-list-bullets {
  margin: 12px 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.shop-faq-list-bullets li {
  margin: 0.25em 0;
}

/* ========== PITCH / JUDGE LANDING ========== */
.shop-hero-kicker {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.shop-hero-trust {
  margin: 18px 0 0;
  font-size: 0.85rem;
  color: var(--faint);
}

.shop-hero-trust a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-hero-trust a:hover {
  color: var(--text);
}

.shop-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.shop-snapshot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 16px 18px;
}

.shop-snapshot-card h3 {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--mono);
}

.shop-snapshot-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.shop-snapshot-card p strong {
  color: var(--text);
  font-weight: 650;
}

.shop-snapshot-card-cta {
  border-color: rgba(249, 115, 22, 0.35);
  background: linear-gradient(160deg, rgba(249, 115, 22, 0.1), var(--bg-card));
}

.shop-snapshot-card-cta .shop-btn {
  margin-top: 12px;
}

.shop-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .shop-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .shop-flow-grid {
    grid-template-columns: 1fr;
  }
}

.shop-flow-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
}

.shop-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-dim);
  color: var(--orange);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.shop-flow-step h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.shop-flow-step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Demo bay */
.shop-demo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .shop-demo {
    grid-template-columns: 1fr;
  }
}

.shop-demo-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  min-width: 0;
}

.shop-demo-label {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.shop-demo-code {
  margin: 0;
  padding: 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.45;
  color: #e4e4e7;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 280px;
  overflow: auto;
}

.shop-demo-code-fixed {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.12);
}

.shop-demo-findings {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-demo-findings li {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.shop-demo-findings li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.shop-demo-findings strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.shop-demo-findings span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.shop-demo-changelog {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.shop-demo-changelog ul {
  margin: 0 0 14px;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.shop-demo-changelog li {
  margin: 0.35em 0;
}

/* Why built */
.shop-why-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.shop-why-title {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 1.15;
}

.shop-why-prose p {
  margin: 0 0 1em;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.shop-why-prose a {
  color: var(--orange);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 800px) {
  .shop-trust-grid {
    grid-template-columns: 1fr;
  }
}

.shop-trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
}

.shop-trust-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.shop-trust-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.shop-trust-line a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-trust-line a:hover {
  color: var(--text);
}

/* ========== LANDING v2: show first, less text ========== */
.shop-proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 0;
}

.shop-proof-strip-label {
  margin: 0 0 10px;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

.shop-proof-tools {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.shop-proof-tools li {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.shop-demo-large .shop-demo-code {
  max-height: 340px;
  font-size: 0.82rem;
  min-height: 200px;
}

.shop-demo-large .shop-demo-col {
  padding: 16px;
}

/* ========== WORKFLOW BEFORE / AFTER SHOWCASE ========== */
.shop-bay-showcase {
  position: relative;
  padding: 48px 0 56px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(249, 115, 22, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
}

.shop-bay-showcase > .shop-wrap {
  width: min(1240px, calc(100% - 32px));
}

.shop-ba-card {
  height: 100%;
}

.shop-ba-card .n8n-canvas {
  flex: 1;
}

.shop-bay-showcase-head {
  margin-bottom: 22px;
}

.shop-bay-eyebrow {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

.shop-bay-showcase .shop-panel-head h2,
.shop-bay-showcase-head h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-weight: 400;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--text);
}

.shop-bay-thesis {
  margin: 0 auto 12px;
  max-width: 48ch;
  color: var(--text);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.5;
}

.shop-bay-sub {
  margin: 0 auto;
  max-width: 46ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Example switcher: Prompt / Agent / Workflow */
.shop-example-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 18px;
}

.shop-example-tab {
  appearance: none;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 650;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.shop-example-tab:hover {
  color: var(--text);
  border-color: rgba(249, 115, 22, 0.45);
}

.shop-example-tab.is-active {
  color: #0a0a0b;
  background: var(--orange);
  border-color: var(--orange);
}

.shop-example-tab:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.shop-example-panel {
  display: none;
}

.shop-example-panel.is-active {
  display: block;
}

.shop-example-label {
  margin: 0 0 14px;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Repair receipt / health score */
.shop-receipt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  margin: 0 auto 22px;
  padding: 16px 20px;
  max-width: 720px;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.08), transparent 50%),
    var(--bg-elevated);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.shop-receipt-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 100px;
}

.shop-receipt-k {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 4px;
}

.shop-receipt-v {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--text);
}

.shop-receipt-v span {
  font-family: var(--mono);
  font-size: 0.55em;
  font-weight: 600;
  color: var(--faint);
  letter-spacing: 0;
}

.shop-receipt-v-bad {
  color: #fca5a5;
}

.shop-receipt-v-ok {
  color: #86efac;
}

.shop-receipt-sub {
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.shop-receipt-arrow {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.shop-receipt-divider {
  width: 1px;
  height: 48px;
  background: var(--border-strong);
}

.shop-receipt-muted {
  color: var(--faint);
  font-size: 0.7em;
  margin: 0 0.15em;
}

@media (max-width: 600px) {
  .shop-receipt-divider {
    display: none;
  }
}

.shop-ba-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.shop-ba-stat-pill {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}

.shop-ba-stat-bad {
  color: #fecaca;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.shop-ba-stat-ok {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.shop-upgrade-tags {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.shop-upgrade-tags li {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #86efac;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 4px 8px;
  border-radius: 999px;
}

.shop-ba-snippet {
  margin: 0;
  padding: 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.5;
  color: #d4d4d8;
  white-space: pre-wrap;
  word-break: break-word;
  flex: 1;
}

.shop-ba-snippet-ok {
  border-color: rgba(34, 197, 94, 0.35);
  color: #e4e4e7;
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.1);
}

.shop-agent-bullets {
  list-style: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  flex: 1;
}

.shop-agent-bullets li {
  margin: 0.45em 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.shop-agent-bullets-bad li {
  color: #fecaca;
}

.shop-agent-bullets-ok li {
  color: #bbf7d0;
}

/* Side-by-side grid */
.shop-ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .shop-ba {
    grid-template-columns: 1fr;
  }
}

.shop-ba-card {
  min-width: 0;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 18px 16px 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.shop-ba-before {
  border-color: rgba(248, 113, 113, 0.35);
  background:
    linear-gradient(165deg, rgba(248, 113, 113, 0.07), transparent 42%),
    var(--bg-card);
}

.shop-ba-after {
  border-color: rgba(34, 197, 94, 0.4);
  background:
    linear-gradient(165deg, rgba(34, 197, 94, 0.08), transparent 42%),
    var(--bg-card);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(34, 197, 94, 0.08);
}

.shop-ba-card-head h3 {
  margin: 8px 0 4px;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.shop-ba-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--faint);
  line-height: 1.4;
}

.shop-ba-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.shop-ba-badge-bad {
  color: #fecaca;
  background: rgba(248, 113, 113, 0.14);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.shop-ba-badge-ok {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.4);
}

/* ========== n8n-style canvas diagrams ========== */
.n8n-canvas {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0e0e12;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.n8n-canvas-ok {
  border-color: rgba(34, 197, 94, 0.28);
}

.n8n-canvas-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #16161c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.n8n-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3f3f46;
}

.n8n-dot:nth-child(1) {
  background: #f87171;
}
.n8n-dot:nth-child(2) {
  background: #fbbf24;
}
.n8n-dot:nth-child(3) {
  background: #4ade80;
}

.n8n-canvas-title {
  margin-left: 6px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.n8n-canvas-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

.n8n-canvas-tag-bad {
  color: #fecaca;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.n8n-canvas-tag-ok {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.n8n-board {
  position: relative;
  padding: 16px 14px 14px;
  background-color: #111118;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 320px;
}

.n8n-chain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

/* Node card — n8n look: icon strip + body */
.n8n-node {
  position: relative;
  display: flex;
  align-items: stretch;
  width: min(100%, 280px);
  min-height: 52px;
  border-radius: 8px;
  background: #1c1c24;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.25);
  overflow: visible;
}

.n8n-node-sm {
  min-height: 46px;
  width: min(100%, 200px);
}

.n8n-node-fault {
  border-color: rgba(248, 113, 113, 0.45);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(248, 113, 113, 0.15);
}

.n8n-node-ok {
  border-color: rgba(34, 197, 94, 0.28);
}

.n8n-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0a0a0b;
  border-radius: 7px 0 0 7px;
  background: #a1a1aa;
}

.n8n-type-trigger .n8n-icon {
  background: #f97316;
}
.n8n-type-http .n8n-icon {
  background: #38bdf8;
}
.n8n-type-set .n8n-icon {
  background: #a78bfa;
}
.n8n-type-code .n8n-icon {
  background: #818cf8;
  font-size: 0.65rem;
}
.n8n-type-if .n8n-icon {
  background: #e879f9;
}
.n8n-type-crm .n8n-icon {
  background: #fb923c;
}
.n8n-type-mail .n8n-icon {
  background: #f87171;
}
.n8n-type-slack .n8n-icon {
  background: #c084fc;
}
.n8n-type-error .n8n-icon {
  background: #ef4444;
  color: #fff;
}

.n8n-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  padding: 8px 12px 8px 10px;
  min-width: 0;
  flex: 1;
}

.n8n-type {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--faint);
  line-height: 1.2;
}

.n8n-name {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--text);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.n8n-node-sm .n8n-name {
  font-size: 0.8rem;
}

/* Fault / fix chips on nodes */
.n8n-fault,
.n8n-fix {
  position: absolute;
  right: -6px;
  top: -9px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 2px 7px;
  border-radius: 999px;
  white-space: nowrap;
  max-width: calc(100% + 12px);
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.n8n-fault {
  color: #fecaca;
  background: #3f1515;
  border: 1px solid rgba(248, 113, 113, 0.5);
}

.n8n-fix {
  color: #bbf7d0;
  background: #0f2918;
  border: 1px solid rgba(34, 197, 94, 0.45);
}

/* Connection wires */
.n8n-wire {
  width: 2px;
  height: 16px;
  background: linear-gradient(180deg, #f87171, rgba(248, 113, 113, 0.35));
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}

.n8n-wire::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-right: 2px solid #f87171;
  border-bottom: 2px solid #f87171;
  transform: rotate(45deg);
  opacity: 0.85;
}

.n8n-wire-ok {
  background: linear-gradient(180deg, #4ade80, rgba(34, 197, 94, 0.35));
}

.n8n-wire-ok::after {
  border-color: #4ade80;
}

.n8n-wire-short {
  height: 10px;
}

/* Branching layout (IF true/false) */
.n8n-branch {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
  align-items: start;
}

.n8n-branch-leaf {
  grid-template-columns: 1fr 1fr;
  margin-top: 2px;
}

.n8n-branch-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 0;
  padding: 8px 6px 6px;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.n8n-branch-main {
  border-color: rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.04);
}

.n8n-branch-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 2px;
}

.n8n-branch-label-true {
  color: #86efac;
}

/* Sticky notes on canvas */
.n8n-sticky {
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  line-height: 1.4;
  transform: rotate(-0.4deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.n8n-sticky strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.n8n-sticky ul {
  margin: 0;
  padding-left: 1.1rem;
  color: inherit;
}

.n8n-sticky li {
  margin: 0.2em 0;
}

.n8n-sticky-warn {
  background: #3d2e12;
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fde68a;
}

.n8n-sticky-ok {
  background: #12241a;
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
  transform: rotate(0.3deg);
}

.n8n-sticky-ok .n8n-node {
  margin-top: 6px;
  width: 100%;
  max-width: none;
}

@media (max-width: 520px) {
  .n8n-branch {
    grid-template-columns: 1fr;
  }

  .n8n-fault,
  .n8n-fix {
    position: static;
    display: inline-block;
    margin: 0 10px 8px auto;
    align-self: flex-end;
  }

  .n8n-node {
    flex-wrap: wrap;
    width: 100%;
  }

  .n8n-icon {
    min-height: 48px;
  }

  .n8n-body {
    flex: 1 1 auto;
    width: calc(100% - 40px);
  }
}

/* Center: Diagnose → Repair → Verify */
.shop-ba-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 6px;
  align-self: center;
  min-width: 108px;
}

.shop-ba-mid-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  background:
    radial-gradient(circle at 50% 20%, rgba(249, 115, 22, 0.18), transparent 60%),
    #141210;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.shop-ba-mid-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 84px;
  padding: 10px 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-ba-mid-step-hot {
  border-color: rgba(249, 115, 22, 0.55);
  background: rgba(249, 115, 22, 0.12);
}

.shop-ba-mid-step-ok {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.1);
}

.shop-ba-mid-icon {
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.shop-ba-mid-step-ok .shop-ba-mid-icon {
  color: #4ade80;
}

.shop-ba-mid-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.shop-ba-mid-arrow {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  opacity: 0.85;
}

.shop-ba-mid-brand {
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--orange-hot);
}

/* Broken canvas extras */
.n8n-canvas-broken {
  border-color: rgba(248, 113, 113, 0.4);
}

.n8n-wire-broken {
  width: 2px;
  height: 22px;
  background: repeating-linear-gradient(
    180deg,
    #ef4444 0 4px,
    transparent 4px 8px
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.n8n-wire-broken::after {
  display: none;
}

.n8n-wire-x {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fecaca;
  background: #3f1515;
  border: 1px solid rgba(248, 113, 113, 0.6);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.n8n-wire-loop {
  width: 72px;
  height: 28px;
  border: 2px dashed #f87171;
  border-bottom: none;
  border-radius: 40px 40px 0 0;
  position: relative;
  margin: 4px 0 2px;
  background: transparent;
}

.n8n-wire-loop::after {
  display: none;
}

.n8n-loop-badge {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  color: #fecaca;
  background: #3f1515;
  border: 1px solid rgba(248, 113, 113, 0.5);
  padding: 2px 7px;
  border-radius: 999px;
}

.n8n-missing {
  width: min(100%, 280px);
  padding: 12px 14px;
  border-radius: 8px;
  border: 2px dashed rgba(251, 191, 36, 0.55);
  background: rgba(251, 191, 36, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.06);
}

.n8n-missing-mark {
  font-size: 0.95rem;
  line-height: 1;
}

.n8n-missing-title {
  font-weight: 750;
  font-size: 0.9rem;
  color: #fde68a;
}

.n8n-missing-desc {
  font-size: 0.78rem;
  color: #fbbf24;
  line-height: 1.35;
}

.n8n-node-dead {
  opacity: 0.92;
  filter: saturate(0.85);
  outline: 1px solid rgba(239, 68, 68, 0.35);
}

.n8n-fault-2 {
  top: auto;
  bottom: -9px;
  right: 8px;
}

.n8n-dup {
  width: min(100%, 300px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 6px 6px;
  border-radius: 10px;
  border: 1px dashed rgba(248, 113, 113, 0.45);
  background: rgba(248, 113, 113, 0.06);
}

.n8n-dup-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fecaca;
}

.n8n-dup-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  width: 100%;
}

.n8n-dup-row .n8n-node {
  width: min(100%, 140px);
}

.n8n-node-ghost {
  opacity: 0.55;
  transform: rotate(1.5deg);
}

.n8n-sticky .n8n-inspect-list,
.n8n-inspect-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.n8n-inspect-list li {
  position: relative;
  padding-left: 1.15rem;
  margin: 0.3em 0;
  font-size: 0.8rem;
  line-height: 1.4;
}

.n8n-inspect-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: #fbbf24;
}

.n8n-sticky-ok .n8n-inspect-list li::before {
  color: #4ade80;
}

@media (max-width: 900px) {
  .shop-ba-mid {
    flex-direction: row !important;
    min-width: 0;
    width: 100%;
    padding: 4px 0 10px !important;
  }

  .shop-ba-mid-stack {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 8px;
  }

  .shop-ba-mid-arrow {
    transform: rotate(-90deg);
  }

  .shop-ba-mid-brand {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .shop-ba-mid-step-hot {
    animation: shop-ba-pulse 3.2s ease-in-out infinite;
  }
}

@keyframes shop-ba-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.12);
  }
}

/* Changelog + CTA under comparison */
.shop-ba-changelog {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
}

@media (max-width: 800px) {
  .shop-ba-changelog {
    grid-template-columns: 1fr;
  }
}

.shop-ba-changelog-copy ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.shop-ba-changelog-copy li {
  margin: 0.3em 0;
}

.shop-ba-changelog-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 0;
}

@media (min-width: 801px) {
  .shop-ba-changelog-cta {
    align-items: flex-end;
    text-align: right;
  }
}

.shop-ba-cta-line {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--text);
}

.shop-tier-audience {
  margin: -4px 0 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1.35;
}

.shop-tier-grid-audiences .shop-tier-card {
  padding-top: 22px;
}

.shop-tier-grid-audiences .shop-tier-card h3 {
  margin-bottom: 6px;
}

.shop-quote-band {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 28px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.shop-quote-band blockquote {
  margin: 8px 0 12px;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 650;
  color: var(--text);
  line-height: 1.4;
}

.shop-quote-band .shop-proof-stars {
  margin: 0;
  color: var(--orange);
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.shop-quote-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--faint);
}
