/* landing.css — page-specific styling on top of marketing.css */

/* Top announcement bar — founding offer */
.fm-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: block;
  text-decoration: none;
  background: var(--sv-cream);
  padding: 12px 16px 12px;
}
.fm-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 11px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  line-height: 1.3;
  background: var(--sv-ink);
  color: var(--sv-cream-50);
  border: 2.5px solid var(--sv-ink);
  border-radius: 14px;
  box-shadow: 5px 5px 0 0 var(--sv-gold-500);
}
.fm-bar-tag {
  flex: none;
  white-space: nowrap;
  font-family: var(--sv-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-ink);
  background: var(--sv-gold-500);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 4px 11px;
}
.fm-bar-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: oklch(0.72 0.18 145);
  box-shadow: 0 0 0 0 oklch(0.72 0.18 145 / 0.6);
  animation: fm-pulse 2s ease-out infinite;
}
@keyframes fm-pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.72 0.18 145 / 0.6); }
  70% { box-shadow: 0 0 0 7px oklch(0.72 0.18 145 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.72 0.18 145 / 0); }
}
.fm-bar-text { color: oklch(0.92 0.01 95); }
.fm-bar-text strong { color: var(--sv-cream-50); font-weight: 800; }
.fm-bar-strike {
  position: relative;
  margin-left: 4px;
  color: oklch(0.72 0.02 95);
  font-size: 13px;
}
.fm-bar-strike::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; top: 50%;
  height: 1.5px;
  background: oklch(0.62 0.2 25);
  transform: rotate(-12deg);
}
.fm-bar-cta {
  flex: none;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 13.5px;
  color: var(--sv-ink);
  background: var(--sv-gold-500);
  border: 1.5px solid rgba(0,0,0,0.5);
  border-radius: 999px;
  padding: 7px 16px;
  transition: transform 70ms ease, box-shadow 70ms ease;
}
.fm-bar:hover .fm-bar-cta { transform: translate(-1px, -1px); }
.fm-bar:active .fm-bar-cta { transform: translate(1px, 1px); }
@media (max-width: 720px) {
  .fm-bar-inner { flex-wrap: wrap; gap: 8px; padding: 8px 16px; font-size: 12.5px; }
  .fm-bar-strike { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .fm-bar-dot { animation: none; }
}

/* Constrain decoration positioning to the content area so on wide viewports
   they stay near the content edge instead of fleeing to the viewport edge. */
.mk-deco-layer {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1200px;
  max-width: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.mk-deco-layer .mk-paper-deco { position: absolute; }

/* ---------- Hero variant switching ---------- */
[data-hero-variant] { display: none; }
.mk-page[data-hero="A"] [data-hero-variant="A"] { display: grid; }
.mk-page[data-hero="B"] [data-hero-variant="B"] { display: grid; }
.mk-page[data-hero="C"] [data-hero-variant="C"] { display: grid; }

/* ---------- Color accent switching ---------- */
/* default 'mix' — gold for primary action, teal for trust accents (current tokens) */
.mk-page[data-accent="gold"] .mk-eyebrow,
.mk-page[data-accent="gold"] .mk-eyebrow-pill,
.mk-page[data-accent="gold"] .mk-step-tag,
.mk-page[data-accent="gold"] .mk-bubble .who {
  color: var(--sv-gold-700);
}
.mk-page[data-accent="gold"] .sv-lede { color: var(--sv-gold-700); }
.mk-page[data-accent="gold"] .mk-nav-links a:hover { color: var(--sv-gold-700); }
.mk-page[data-accent="gold"] .mk-eyebrow-pill .dot { background: var(--sv-gold-500); }

.mk-page[data-accent="teal"] .mk-btn:not(.secondary) {
  background: var(--sv-mint-300);
}
.mk-page[data-accent="teal"] .mk-btn:not(.secondary):hover {
  box-shadow: 4px 4px 0 0 var(--sv-ink), 0 0 0 3px var(--sv-mint-200);
}
.mk-page[data-accent="teal"] .mk-cb { background: var(--sv-mint-300); }
.mk-page[data-accent="teal"] .mk-eyebrow-pill .dot { background: var(--sv-mint-300); }
.mk-page[data-accent="teal"] .mk-num-step .n { background: var(--sv-mint-300); }
.mk-page[data-accent="teal"] .mk-dark-section .takeaway { background: var(--sv-mint-300); }
.mk-page[data-accent="teal"] .price-amount { color: var(--sv-teal-900); }

/* ---------- Hero ---------- */
.hero-wrap {
  padding: 16px 0 64px;
  position: relative;
}
.hero-grid {
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.hero-h1 {
  font-size: clamp(52px, 7.4vw, 92px);
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  max-width: 540px;
  color: var(--sv-ink-soft);
  margin-bottom: 18px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-actions:has(+ .hero-scarcity) { margin-bottom: 14px; }
.hero-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  font-family: var(--sv-font-mono);
  font-size: 12.5px;
  line-height: 1;
  color: var(--sv-ink);
}
.hero-scarcity .sc-dot {
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: oklch(0.62 0.2 25);
  box-shadow: 0 0 0 0 oklch(0.62 0.2 25 / 0.5);
  animation: sc-pulse 1.6s ease-out infinite;
}
@keyframes sc-pulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.62 0.2 25 / 0.5); }
  70%  { box-shadow: 0 0 0 7px oklch(0.62 0.2 25 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.62 0.2 25 / 0); }
}
.hero-scarcity .sc-text { letter-spacing: 0.01em; }
.hero-scarcity .sc-text strong {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 13.5px;
}
.hero-scarcity .sc-slots {
  display: inline-flex;
  gap: 3px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--sv-cream-50);
  border: 2px solid var(--sv-ink);
}
.hero-scarcity .sc-slots i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  border: 1.5px solid var(--sv-ink);
  background: transparent;
}
.hero-scarcity .sc-slots i.taken { background: var(--sv-ink); }
/* Scarcity line inside the Founding card (below the CTA) */
.founding-scarcity {
  margin: 12px 0 0;
  font-size: 11.5px;
  flex-wrap: wrap;
  gap: 8px;
}
.founding-scarcity .sc-text strong { font-size: 12.5px; }
.founding-billing-note {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--sv-teal-900);
}
/* How the Founding year works */
.founding-how {
  margin-top: 26px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 18px;
  background: var(--sv-mint-100);
  box-shadow: 5px 5px 0 0 var(--sv-ink);
  padding: 22px 24px 24px;
}
.founding-how .fh-label {
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  margin-bottom: 12px;
}
.founding-how .fh-intro {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--sv-ink-soft);
  max-width: 760px;
}
.founding-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.founding-how .fh-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--sv-ink-soft);
}
.founding-how .fh-step strong { color: var(--sv-ink); }
.founding-how .fh-num {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2.5px solid var(--sv-ink);
  background: var(--sv-gold-500);
  box-shadow: 2px 2px 0 0 var(--sv-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sv-font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--sv-ink);
}
@media (max-width: 860px) {
  .founding-how-steps { grid-template-columns: 1fr; gap: 16px; }
}
/* Founding Member program intro */
.founding-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 8px;
}
.fi-card {
  border: 2.5px solid var(--sv-ink);
  border-radius: 20px;
  padding: 26px 28px;
}
.fi-get {
  background: var(--sv-gold-100);
  box-shadow: 5px 5px 0 0 var(--sv-ink);
}
.fi-card h3 {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 19px;
  margin: 0 0 16px;
}
.fi-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.fi-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--sv-ink);
}
.fi-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 9px;
  border-left: 2.5px solid var(--sv-teal-700);
  border-bottom: 2.5px solid var(--sv-teal-700);
  transform: rotate(-45deg);
}
.fi-fit {
  margin: 0;
  padding-top: 16px;
  border-top: 2px dashed var(--sv-ink-muted);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--sv-ink-soft);
}
.fi-fit strong { color: var(--sv-ink); }
.fi-how { margin-top: 0; }
.founding-how-steps-col { grid-template-columns: 1fr; }
@media (max-width: 860px) {
  .founding-intro-grid { grid-template-columns: 1fr; }
}
/* Language marquee */
.lang-band {
  position: relative;
  margin-top: 10px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 16px;
  background: var(--sv-cream-50);
  box-shadow: 5px 5px 0 0 var(--sv-ink);
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.lang-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: lang-scroll 48s linear infinite;
}
.lang-band:hover .lang-track { animation-play-state: paused; }
@keyframes lang-scroll {
  to { transform: translateX(-50%); }
}
.lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: none;
  font-family: var(--sv-font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--sv-ink);
  background: var(--sv-cream-100);
  border: 2px solid var(--sv-ink);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
}
.lang-chip .lang-flag { font-size: 18px; line-height: 1; }
@media (prefers-reduced-motion: reduce) {
  .lang-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .lang-band { -webkit-mask-image: none; mask-image: none; }
}
/* "Opening soon" — Standard & VIP not yet active */
.layer-card.is-soon > *:not(.soon-overlay) {
  pointer-events: none;
  user-select: none;
}
.soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(to bottom,
    oklch(0.97 0.01 95 / 0) 0%,
    oklch(0.97 0.01 95 / 0) 22%,
    oklch(0.97 0.01 95 / 0.82) 50%,
    oklch(0.97 0.01 95 / 0.9) 100%);
}
.layer-card-vip .soon-overlay {
  background: linear-gradient(to bottom,
    oklch(0.22 0.02 250 / 0) 0%,
    oklch(0.22 0.02 250 / 0) 22%,
    oklch(0.22 0.02 250 / 0.82) 50%,
    oklch(0.22 0.02 250 / 0.9) 100%);
}
.soon-badge {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--sv-ink);
  background: var(--sv-cream-50);
  border: 2.5px solid var(--sv-ink);
  border-radius: 999px;
  padding: 10px 22px;
  box-shadow: 4px 4px 0 0 var(--sv-ink);
  transform: rotate(-3deg);
}
@media (prefers-reduced-motion: reduce) {
  .hero-scarcity .sc-dot { animation: none; }
}

.hero-actions .mk-btn.is-disabled {
  background: repeating-linear-gradient(
    -45deg,
    var(--sv-cream-200),
    var(--sv-cream-200) 9px,
    var(--sv-cream-100) 9px,
    var(--sv-cream-100) 18px
  ) !important;
  color: var(--sv-ink-muted) !important;
  border: 2.5px dashed var(--sv-ink-muted) !important;
  box-shadow: none !important;
  cursor: not-allowed;
  pointer-events: none;
}
.hero-actions .mk-btn.is-disabled:hover { transform: none; box-shadow: none !important; }

/* Hero "applications closed" box (replaces the apply button when closed) */
.hero-closed-box {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border: 2.5px dashed var(--sv-ink-muted);
  border-radius: 18px;
  background: repeating-linear-gradient(
    -45deg,
    var(--sv-cream-200),
    var(--sv-cream-200) 9px,
    var(--sv-cream-100) 9px,
    var(--sv-cream-100) 18px
  );
}
.hero-closed-box .hcb-status {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--sv-ink-muted);
  white-space: nowrap;
}
.hero-closed-box .hcb-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  color: var(--sv-ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--sv-ink-muted);
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}
.hero-closed-box .hcb-link:hover { color: var(--sv-ink); text-decoration-color: var(--sv-ink); }
.hero-closed-box .hcb-link .dc-ico { flex: none; color: #5865F2; text-decoration: none; }
.hero-closed-box .hcb-link:hover .dc-ico { color: #4752c4; }

/* Quiet the hero's secondary CTA so it doesn't compete with the primary */
.hero-actions .mk-btn.secondary,
.final-cta-actions .mk-btn.secondary {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 13px 8px;
  gap: 7px;
  font-weight: 600;
  font-size: 14px;
  color: var(--sv-ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--sv-ink-muted);
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}
.hero-actions .mk-btn.secondary .dc-ico,
.final-cta-actions .mk-btn.secondary .dc-ico {
  flex: none;
  color: #5865F2;
  text-decoration: none;
}
.hero-actions .mk-btn.secondary:hover .dc-ico,
.final-cta-actions .mk-btn.secondary:hover .dc-ico { color: #4752c4; }
.hero-actions .mk-btn.secondary:hover,
.final-cta-actions .mk-btn.secondary:hover {
  background: transparent;
  box-shadow: none;
  color: var(--sv-ink);
  text-decoration-color: var(--sv-ink);
}
.hero-actions .mk-btn.secondary:active,
.final-cta-actions .mk-btn.secondary:active {
  transform: none;
  box-shadow: none;
}
/* Give the hero eyebrow the same breathing room as the rest of the stack */
.hero-grid .mk-eyebrow-pill { margin-bottom: 22px; }
/* Brand lockup sits at the top of the hero's left column */
.hero-grid .mk-brand { margin-bottom: 38px; }
.hero-grid .hero-primer { margin-bottom: 14px; }
/* CREW badge in the nav lockup */
.mk-nav-logo .crew-badge {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-ink);
  background: var(--sv-gold-500);
  border: 2.5px solid var(--sv-ink);
  border-radius: 999px;
  padding: 3px 10px;
  line-height: 1.35;
  white-space: nowrap;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
/* Full-width band under the hero columns so the trust pills sit on one line */
.hero-meta-full {
  grid-column: 1 / -1;
  margin-top: 28px;
}
/* Friction checklist centers vertically against the copy, like the hero */
#friction .personalization-grid { align-items: center; }
/* Owner-value cards center vertically against the copy too */
#owner .mk-grid-2 { align-items: center; }
.hero-meta .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  border: 2.5px solid var(--sv-ink);
  background: var(--sv-cream-50);
  border-radius: 999px;
  padding: 7px 14px;
  box-shadow: 3px 3px 0 0 var(--sv-ink);
}
.hero-meta .pill::before {
  content: "";
  width: 10px; height: 10px;
  border: 2px solid var(--sv-ink);
  border-radius: 3px;
  background: var(--sv-gold-500);
}

/* Hero right side: agent action stack */
.agent-carousel-wrap { position: relative; min-width: 0; }
/* Start the conversation column a little lower than the left column (desktop only) */
@media (min-width: 981px) {
  .hero-grid .agent-carousel-wrap { margin-top: 56px; }
}
.agent-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 10px 12px 0;
}
.agent-carousel::-webkit-scrollbar { display: none; }
.agent-slide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding-right: 8px;
}
.agent-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}
.agent-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--sv-ink);
  background: transparent;
  cursor: pointer;
  transition: background 120ms ease, transform 120ms ease;
}
.agent-dot:hover { background: var(--sv-gold-300); }
.agent-dot.is-active { background: var(--sv-ink); transform: scale(1.18); }
.agent-carousel-hint {
  margin-top: 10px;
  text-align: center;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--sv-ink-muted);
}
.agent-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.agent-card {
  border: 2.5px solid var(--sv-ink);
  border-radius: 18px;
  background: var(--sv-cream-50);
  box-shadow: 5px 5px 0 0 var(--sv-ink);
  padding: 16px 18px;
  position: relative;
  z-index: 1;
}
.agent-card.tilt-l { transform: rotate(-1.2deg); }
.agent-card.tilt-r { transform: rotate(1deg); }

/* Background-process "cloud" between question and answer */
.agent-process {
  align-self: center;
  max-width: 86%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  padding: 9px 18px;
  border: 1.5px dashed rgba(15, 18, 20, 0.28);
  border-radius: 16px;
  background: rgba(15, 18, 20, 0.025);
  opacity: 0.92;
}
.agent-process .proc-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-family: var(--sv-font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-ink-muted);
}
.agent-process .proc-steps {
  font-family: var(--sv-font-mono);
  font-size: 10.5px;
  line-height: 1.4;
  color: var(--sv-ink-muted);
  opacity: 0.78;
}
.agent-process .proc-start {
  display: inline-block;
  font-family: var(--sv-font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-cream-50);
  background: var(--sv-ink);
  border-radius: 999px;
  padding: 2px 8px;
  margin-right: 10px;
  vertical-align: 1px;
  opacity: 1;
}
.agent-process .proc-dots {
  display: inline-flex;
  gap: 3px;
}
.agent-process .proc-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sv-ink-muted);
  opacity: 0.4;
  animation: procPulse 1.2s ease-in-out infinite;
}
.agent-process .proc-dots i:nth-child(2) { animation-delay: 0.2s; }
.agent-process .proc-dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes procPulse {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(-1px); }
}
@media (prefers-reduced-motion: reduce) {
  .agent-process .proc-dots i { animation: none; opacity: 0.5; }
}

/* Scrolling marquee variant for the full pipeline */
.agent-process.is-marquee { max-width: 100%; align-self: stretch; min-width: 0; }
.agent-process.is-marquee .proc-track-mask {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}
.agent-process.is-marquee .proc-track {
  display: inline-flex;
  width: max-content;
  animation: procMarquee 22s linear infinite;
}
.agent-process.is-marquee .proc-steps {
  white-space: nowrap;
  padding-right: 2.4em;
}
.agent-process.is-marquee:hover .proc-track { animation-play-state: paused; }
@keyframes procMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .agent-process.is-marquee .proc-track { animation: none; }
}
.agent-card.mint { background: var(--sv-mint-100); }
.agent-card.gold { background: var(--sv-gold-100); }
.agent-card.ink {
  background: var(--sv-ink);
  color: var(--sv-cream-50);
  border-color: var(--sv-ink);
}
.agent-card .header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.agent-card .header .who {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
}
.agent-card.ink .header .who { color: var(--sv-mint-300); }
.agent-card .header .when {
  margin-left: auto;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  color: var(--sv-ink-muted);
}
.agent-card.ink .header .when { color: var(--sv-cream-200); opacity: 0.7; }
.agent-card .header img.avatar {
  width: 26px; height: 26px;
  border: 2px solid var(--sv-ink);
  border-radius: 50%;
  background: var(--sv-mint-300);
}
.agent-card .body {
  font-size: 14.5px;
  line-height: 1.45;
}
.agent-card .meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.agent-card .tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 600;
  border: 2px solid var(--sv-ink);
  background: var(--sv-cream-50);
  border-radius: 999px;
  padding: 4px 10px;
}
.agent-card.ink .tool-pill {
  background: rgba(251,246,236,0.1);
  border-color: rgba(251,246,236,0.3);
  color: var(--sv-cream-50);
}
.agent-card .tool-pill.gold { background: var(--sv-gold-500); border-color: var(--sv-ink); color: var(--sv-ink); }
.agent-card .tool-pill.ink {
  background: var(--sv-ink);
  border-color: var(--sv-ink);
  color: var(--sv-cream-50);
}
.agent-card .tool-pill.ink::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sv-mint-300);
  margin-right: 2px;
}

/* ---------- Section header pattern ---------- */
.section-header { margin-bottom: 40px; max-width: 880px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .sv-lede { max-width: 700px; }

/* ---------- Problem cards row ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.problem-card {
  border: 2.5px solid var(--sv-ink);
  border-radius: 18px;
  padding: 22px 22px 26px;
  background: var(--sv-cream-50);
  box-shadow: 4px 4px 0 0 var(--sv-ink);
}
.friction-grid { align-items: start; }

/* Custom skills section */
.skill-examples-head {
  font-family: var(--sv-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-teal-900);
  margin: 4px 0 14px;
}
.skill-examples-note {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0 0;
  padding: 14px 18px;
  border: 2px dashed var(--sv-ink);
  border-radius: 14px;
  background: var(--sv-cream-50);
}
.skill-examples-note .skill-examples-tag {
  flex: none;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sv-ink);
  background: var(--sv-gold-500);
  border: 2px solid var(--sv-ink);
  border-radius: 999px;
  padding: 4px 12px;
}
.skill-examples-note p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--sv-ink-soft);
  flex: 1;
  min-width: 240px;
}
.skill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.skill-grid.skill-grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
}
.skill-card {
  border: 2.5px solid var(--sv-ink);
  border-radius: 20px;
  padding: 26px 24px 28px;
  box-shadow: 5px 5px 0 0 var(--sv-ink);
  display: flex;
  flex-direction: column;
}
.skill-grid-2x2 .skill-card:nth-child(1) { background: var(--sv-mint-100); }
.skill-grid-2x2 .skill-card:nth-child(2) { background: var(--sv-gold-100); }
.skill-grid-2x2 .skill-card:nth-child(3) { background: var(--sv-blush-100); }
.skill-grid-2x2 .skill-card.skill-card-vip {
  background: var(--sv-ink);
  box-shadow: 5px 5px 0 0 var(--sv-gold-500);
}
.skill-card.skill-card-vip h3 { color: var(--sv-cream-50); }
.skill-card.skill-card-vip p { color: oklch(0.86 0.02 95); }
.skill-card.skill-card-vip .skill-tag {
  color: var(--sv-ink);
  background: var(--sv-gold-500);
  border-color: var(--sv-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.skill-card.skill-card-vip .vip-star { font-size: 12px; line-height: 1; }
.skill-card .skill-tag {
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-teal-900);
  background: var(--sv-cream-50);
  border: 2px solid var(--sv-ink);
  border-radius: 999px;
  padding: 4px 11px;
  align-self: flex-start;
  margin-bottom: 18px;
}
.skill-card h3 {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--sv-ink);
  margin: 0 0 12px;
  line-height: 1.2;
  text-wrap: balance;
}
.skill-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--sv-ink-soft);
}
@media (max-width: 860px) {
  .skill-grid { grid-template-columns: 1fr; }
  .skill-grid.skill-grid-2x2 { grid-template-columns: 1fr; }
}
.skill-offer-note {
  margin: 16px 0 0;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--sv-cream-100);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--sv-ink-soft);
}

/* Friction path — the long manual grind */
.friction-path {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 4px;
}
.friction-path .fp-rail {
  position: absolute;
  left: 25px;
  top: 22px;
  bottom: 22px;
  width: 2.5px;
  background: repeating-linear-gradient(to bottom, var(--sv-ink) 0 6px, transparent 6px 13px);
  z-index: 0;
}
.fp-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
}
.fp-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid var(--sv-ink);
  background: var(--sv-cream-50);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 0 var(--sv-ink);
}
.fp-marker .fp-n {
  font-family: var(--sv-font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--sv-ink);
}
.fp-marker.gold { background: var(--sv-gold-500); }
.fp-marker.mint { background: var(--sv-mint-100); }
.fp-marker .fp-check {
  width: 16px;
  height: 9px;
  border-left: 3px solid var(--sv-ink);
  border-bottom: 3px solid var(--sv-ink);
  transform: rotate(-45deg) translateY(-2px);
}
.fp-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fp-row.step .fp-content {
  border: 2px solid var(--sv-ink);
  border-radius: 12px;
  background: var(--sv-cream-50);
  padding: 12px 14px;
  justify-content: space-between;
}
.fp-label {
  font-family: var(--sv-font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--sv-ink);
  line-height: 1.3;
}
.fp-friction {
  flex: none;
  font-family: var(--sv-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sv-ink-soft);
  background: var(--sv-blush-100);
  border: 1.5px solid var(--sv-ink);
  border-radius: 999px;
  padding: 3px 9px;
}
.fp-cap-tag {
  font-family: var(--sv-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-ink);
  background: var(--sv-cream-50);
  border: 2px solid var(--sv-ink);
  border-radius: 999px;
  padding: 3px 9px;
}
.fp-cap-label {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--sv-ink);
  line-height: 1.25;
}
.fp-row.drop {
  grid-template-columns: 1fr;
  margin: 2px 0;
}
.fp-drop-band {
  margin-left: 58px;
  border: 2px dashed var(--sv-ink);
  border-radius: 12px;
  background: var(--sv-blush-100);
  padding: 10px 16px;
  font-family: var(--sv-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sv-ink);
}
@media (max-width: 860px) {
  .fp-content { gap: 8px; }
}

.problem-card:nth-child(2) { background: var(--sv-mint-100); }
.problem-card:nth-child(3) { background: var(--sv-gold-100); }
.problem-card:nth-child(4) { background: var(--sv-blush-100); }
.problem-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.problem-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--sv-ink-soft);
}
.problem-card .leak {
  display: inline-block;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 600;
  background: var(--sv-ink);
  color: var(--sv-cream-50);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ---------- How it works — numbered horizontal ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.how-card {
  border: 2.5px solid var(--sv-ink);
  border-radius: 18px;
  padding: 24px 22px 26px;
  background: var(--sv-cream-50);
  box-shadow: 4px 4px 0 0 var(--sv-ink);
  position: relative;
}
.how-card:nth-child(2) { background: var(--sv-mint-100); }
.how-card:nth-child(3) { background: var(--sv-gold-100); }
.how-card:nth-child(4) { background: var(--sv-ink); color: var(--sv-cream-50); }
.how-card .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 50%;
  background: var(--sv-gold-500);
  font-family: var(--sv-font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--sv-ink);
  margin-bottom: 18px;
}
.how-card:nth-child(4) .n { background: var(--sv-gold-500); border-color: var(--sv-gold-500); }
.how-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.how-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--sv-ink-soft);
}
.how-card:nth-child(4) p { color: var(--sv-cream-200); }

/* ---------- What Solvie does — 3 buckets ---------- */
.buckets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bucket {
  border: 2.5px solid var(--sv-ink);
  border-radius: 22px;
  padding: 28px;
  background: var(--sv-cream-50);
  box-shadow: 4px 4px 0 0 var(--sv-ink);
}
.bucket.b1 { background: var(--sv-mint-100); }
.bucket.b2 { background: var(--sv-cream-50); }
.bucket.b3 { background: var(--sv-blush-100); }
.bucket .bucket-tag {
  display: inline-block;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  border: 2.5px solid var(--sv-ink);
  background: var(--sv-cream-50);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.bucket h3 {
  font-size: 26px;
  line-height: 1.05;
  margin-bottom: 18px;
  text-wrap: balance;
}
.bucket ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bucket li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
}
.bucket li::before {
  content: "";
  flex: none;
  width: 14px; height: 14px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 3px;
  background: var(--sv-gold-500);
  margin-top: 4px;
}

/* ---------- Lives where you live — channels ---------- */
.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.channel {
  border: 2.5px solid var(--sv-ink);
  border-radius: 20px;
  padding: 22px;
  background: var(--sv-cream-50);
  box-shadow: 4px 4px 0 0 var(--sv-ink);
}
.channel.tg { background: var(--sv-mint-100); }
.channel.wa { background: var(--sv-gold-100); }
.channel.dc { background: var(--sv-blush-100); }
.channel .ch-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px dashed rgba(15,18,20,0.25);
}
.channel .ch-head .ch-name {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 17px;
}
.channel .ch-head .ch-handle {
  margin-left: auto;
  font-family: var(--sv-font-mono);
  font-size: 12px;
  color: var(--sv-ink-muted);
}
.channel .ch-logo {
  width: 28px; height: 28px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sv-cream-50);
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 13px;
}
.channel .ch-msgs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.channel .msg {
  border: 2px solid var(--sv-ink);
  background: var(--sv-cream-50);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13.5px;
  line-height: 1.4;
  max-width: 92%;
}
.channel .msg.them { align-self: flex-start; }
.channel .msg.me { align-self: flex-end; background: var(--sv-ink); color: var(--sv-cream-50); }
.channel .msg .nm {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  margin-bottom: 2px;
}
.channel .msg.me .nm { color: var(--sv-mint-300); }

/* ---------- Privacy section ---------- */
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.privacy-item {
  display: flex;
  gap: 14px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 14px;
  background: var(--sv-cream-50);
  padding: 18px 20px;
  box-shadow: 4px 4px 0 0 var(--sv-ink);
}
.privacy-item .cb {
  flex: none;
  width: 22px; height: 22px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 5px;
  background: var(--sv-gold-500);
  margin-top: 2px;
  position: relative;
}
.privacy-item .cb::after {
  content: "";
  position: absolute;
  inset: 4px 4px auto auto;
  width: 6px; height: 10px;
  border-right: 2.5px solid var(--sv-ink);
  border-bottom: 2.5px solid var(--sv-ink);
  transform: rotate(45deg);
  top: 1px; left: 6px;
}
.privacy-item h4 {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 6px;
}
.privacy-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--sv-ink-soft);
}

/* ---------- Member output: list card + use-case switcher ---------- */
.output-list-card {
  border: 2.5px solid var(--sv-ink);
  border-radius: 22px;
  background: var(--sv-mint-100);
  box-shadow: 4px 4px 0 0 var(--sv-ink);
  padding: 26px 26px 30px;
}
.output-list-head {
  display: inline-block;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sv-teal-900);
  background: var(--sv-cream-50);
  border: 2px solid var(--sv-ink);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 20px;
  white-space: nowrap;
}
.output-list-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.output-list-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.42;
  color: var(--sv-ink);
}
.output-list-card li .mk-cb { flex: none; margin-top: 2px; }

.usecase-switcher { margin-top: 44px; }
.uc-intro { margin-bottom: 20px; }
.uc-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--sv-ink-soft);
  max-width: 640px;
}
.uc-layout {
  display: grid;
  grid-template-columns: 248px 1fr;
  gap: 28px;
  align-items: start;
}
.uc-bar {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 0;
  position: sticky;
  top: 24px;
}
.uc-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--sv-ink);
  background: var(--sv-cream-50);
  border: 2.5px solid var(--sv-ink);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  box-shadow: 3px 3px 0 0 var(--sv-ink);
  transition: transform 80ms ease, box-shadow 80ms ease, background 120ms ease;
}
.uc-tab .uc-n {
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 600;
  background: var(--sv-ink);
  color: var(--sv-cream-50);
  border-radius: 999px;
  padding: 2px 7px;
}
.uc-tab:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 0 var(--sv-ink); }
.uc-tab.is-active {
  background: var(--sv-gold-500);
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 0 var(--sv-ink);
}
.uc-tab.is-active .uc-n { background: var(--sv-ink); color: var(--sv-gold-300); }

.uc-stage {
  border: 2.5px solid var(--sv-ink);
  border-radius: 24px;
  background: var(--sv-cream-50);
  box-shadow: 6px 6px 0 0 var(--sv-ink);
  padding: 30px 32px 34px;
}
.uc-panel { display: none; }
.uc-panel.is-active { display: block; }
.uc-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.uc-panel-head .uc-title {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--sv-ink);
  margin: 0;
  text-wrap: balance;
}
.uc-body {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--sv-ink-soft);
  max-width: 780px;
}
.uc-trust {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 2px dashed rgba(15, 18, 20, 0.18);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--sv-ink-soft);
}
.uc-trust-tag {
  flex: none;
  font-family: var(--sv-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-teal-900);
  background: var(--sv-mint-100);
  border: 1.5px solid var(--sv-ink);
  border-radius: 999px;
  padding: 3px 9px;
  margin-top: 1px;
}
.uc-sample {
  font-family: var(--sv-font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-ink-soft);
  border: 2px dashed rgba(15, 18, 20, 0.3);
  border-radius: 999px;
  padding: 3px 10px;
}
.uc-demo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.uc-col {
  width: fit-content;
  max-width: 100%;
  border: 2px solid var(--sv-ink);
  border-radius: 16px;
  padding: 18px 20px;
  background: var(--sv-cream-50);
  box-shadow: 3px 3px 0 0 var(--sv-ink);
}
.uc-col.ask {
  align-self: flex-start;
  max-width: 74%;
  border-bottom-left-radius: 5px;
}
.uc-col.ans {
  align-self: flex-end;
  max-width: 84%;
  background: var(--sv-mint-100);
  border-bottom-right-radius: 5px;
}
.uc-col.ans .uc-tag { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.uc-col.ans .uc-tag::after {
  content: "*";
  margin-left: 1px;
  color: var(--sv-teal-700);
  font-weight: 700;
}
.uc-disclaimer {
  margin: 18px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  font-style: italic;
  color: var(--sv-ink-muted);
}
.uc-disclaimer .star { font-style: normal; font-weight: 700; color: var(--sv-teal-700); }
.uc-disclaimer em { font-style: italic; color: var(--sv-ink-soft); }
.uc-foundation {
  margin-top: 30px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 22px;
  background: var(--sv-mint-100);
  box-shadow: 5px 5px 0 0 var(--sv-ink);
  padding: 32px 36px;
}
.uc-foundation-eyebrow {
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-teal-900);
  margin-bottom: 14px;
}
.uc-foundation h3 {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--sv-ink);
  margin: 0 0 14px;
  text-wrap: balance;
  max-width: 720px;
}
.uc-foundation p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--sv-ink-soft);
  max-width: 780px;
}
.uc-foundation strong { color: var(--sv-ink); font-weight: 800; }
.uc-col.ans .uc-tag::before {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: url('../assets/solvie-mascot.png') center/cover no-repeat, var(--sv-mint-100);
  border: 1.5px solid var(--sv-ink);
}
.uc-col .uc-tag {
  display: block;
  font-family: var(--sv-font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-teal-900);
  margin-bottom: 10px;
}
.uc-col p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--sv-ink); }
.uc-col.ans p + p { margin-top: 10px; }
.uc-cite {
  font-family: var(--sv-font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sv-teal-700);
  letter-spacing: -0.01em;
}
.uc-proof-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--sv-font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--sv-teal-900);
  background: var(--sv-cream-50);
  border: 2px solid var(--sv-ink);
  border-radius: 999px;
  padding: 5px 12px;
  text-decoration: none;
  box-shadow: 2px 2px 0 0 var(--sv-ink);
  transition: transform 80ms ease, box-shadow 80ms ease;
}
.uc-proof-link:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 0 var(--sv-ink); }
.uc-proof-link .mono { color: var(--sv-teal-700); }
.uc-proof {
  display: inline-block;
  margin-left: 4px;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--sv-teal-700);
  border-bottom: 1.5px solid var(--sv-teal-700);
  cursor: pointer;
  white-space: nowrap;
}
.uc-foot {
  margin: 18px 0 0;
  font-size: 13px;
  font-style: italic;
  color: var(--sv-ink-muted);
}
@media (max-width: 860px) {
  .uc-layout { grid-template-columns: 1fr; gap: 18px; }
  .uc-bar { flex-direction: row; flex-wrap: wrap; position: static; top: auto; }
  .uc-tab { width: auto; }
}
@media (max-width: 720px) {
  .uc-col.ask, .uc-col.ans { max-width: 100%; align-self: stretch; }
}

/* ---------- Personalization ---------- */
.config-card {
  border: 2.5px solid var(--sv-ink);
  border-radius: 22px;
  background: var(--sv-cream-50);
  box-shadow: 6px 6px 0 0 var(--sv-mint-300), 12px 12px 0 0 var(--sv-ink);
  padding: 0;
  overflow: hidden;
}
.config-card .config-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: var(--sv-ink);
  color: var(--sv-cream-50);
  border-bottom: 2.5px solid var(--sv-ink);
}
.config-card .config-head img {
  width: 28px; height: 28px;
  border-radius: 6px;
}
.config-card .config-head .t {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.config-card .config-head .v {
  margin-left: auto;
  font-family: var(--sv-font-mono);
  font-size: 11.5px;
  color: var(--sv-mint-300);
}
.config-rows { padding: 12px 0; }
.config-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 22px;
  border-bottom: 1.5px dashed rgba(15,18,20,0.18);
}
.config-row:last-child { border-bottom: 0; }
.config-row .k {
  flex: none;
  width: 38%;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
}
.config-row .v {
  font-size: 14.5px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--sv-ink);
}
.config-row .v .mono {
  font-family: var(--sv-font-mono);
  font-size: 13px;
  font-weight: 500;
}
.config-row .v .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border: 2px solid var(--sv-ink);
  border-radius: 999px;
  background: var(--sv-gold-500);
  margin-left: 6px;
  vertical-align: middle;
}

/* ---------- For you / not for you ---------- */
.foryou-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.foryou-card {
  border: 2.5px solid var(--sv-ink);
  border-radius: 22px;
  padding: 28px;
  background: var(--sv-cream-50);
  box-shadow: 4px 4px 0 0 var(--sv-ink);
}
.foryou-card.notfor { background: var(--sv-blush-100); }
.foryou-card .tag {
  display: inline-block;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  border: 2.5px solid var(--sv-ink);
  background: var(--sv-cream-50);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  white-space: nowrap;
}
.foryou-card.notfor .tag { color: var(--sv-ink); background: var(--sv-blush-200); }
.foryou-card h3 { font-size: 24px; margin-bottom: 18px; }
.foryou-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foryou-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}
.foryou-card li::before {
  content: "";
  flex: none;
  width: 16px; height: 16px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 4px;
  background: var(--sv-gold-500);
  margin-top: 3px;
}
.foryou-card.notfor li::before {
  background: var(--sv-cream-50);
  position: relative;
}
.foryou-card.notfor li::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2.5px;
  background: var(--sv-ink);
  margin-left: 2px;
  margin-top: 9px;
  transform: rotate(45deg);
}
.foryou-card.notfor li { position: relative; }

/* ---------- Pricing — TIERS (rewritten) ---------- */
/* Hosting toggle (segmented) */
.hosting-toggle {
  display: inline-flex;
  border: 2.5px solid var(--sv-ink);
  border-radius: 999px;
  background: var(--sv-cream-50);
  padding: 5px;
  box-shadow: 4px 4px 0 0 var(--sv-ink);
  margin-bottom: 26px;
  gap: 4px;
}
.hosting-toggle .seg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--sv-ink);
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}
.hosting-toggle .seg .seg-name {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.hosting-toggle .seg .seg-sub {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--sv-ink-muted);
  letter-spacing: 0.01em;
}
.hosting-toggle .seg.active {
  background: var(--sv-ink);
  color: var(--sv-cream-50);
}
.hosting-toggle .seg.active .seg-sub { color: var(--sv-mint-300); }
.hosting-toggle .seg:not(.active):hover { background: var(--sv-cream-200); }

/* Body-level hosting mode swap */
.hosting-managed, .hosting-byo { display: none; }
[data-hosting="managed"] .hosting-managed { display: inline; }
[data-hosting="byo"]     .hosting-byo     { display: inline; }

.delivery-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 18px;
  background: var(--sv-gold-500);
  box-shadow: 4px 4px 0 0 var(--sv-ink);
  padding: 16px 22px;
  margin: 36px 0 0;
}
.delivery-banner .db-icon {
  flex: none;
  width: 60px;
  height: 60px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 50%;
  background: var(--sv-ink);
  color: var(--sv-gold-500);
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivery-banner .db-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.delivery-banner .db-text strong {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.3;
}
.delivery-banner .db-text span {
  font-size: 14.5px;
  color: var(--sv-ink-soft);
  line-height: 1.4;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.tier-foot-note {
  margin: 26px auto 0;
  max-width: 620px;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: var(--sv-ink-soft);
}
/* ---------- Standard vs VIP layer cards ---------- */
.layer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 8px;
}
.layer-grid.layer-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.layer-grid-3 .layer-card { padding: 28px 24px 30px; }
.layer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2.5px solid var(--sv-ink);
  border-radius: 24px;
  background: var(--sv-cream-50);
  box-shadow: 5px 5px 0 0 var(--sv-ink);
  padding: 30px 30px 32px;
}
.layer-card-vip {
  background: var(--sv-ink);
  box-shadow: 6px 6px 0 0 var(--sv-gold-500);
}
.layer-card-founding {
  background: var(--sv-gold-100);
  box-shadow: 6px 6px 0 0 var(--sv-teal-700);
}
.founding-flag {
  background: var(--sv-teal-700);
  color: var(--sv-cream-50);
}
.founding-tag {
  background: var(--sv-gold-500) !important;
  color: var(--sv-ink) !important;
}
.layer-flag {
  position: absolute;
  top: -14px;
  right: 26px;
  white-space: nowrap;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-ink);
  background: var(--sv-gold-500);
  border: 2.5px solid var(--sv-ink);
  border-radius: 999px;
  padding: 5px 13px;
}
.layer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.layer-tag {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 6px;
  font-family: var(--sv-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-ink);
  background: var(--sv-cream-50);
  border: 2px solid var(--sv-ink);
  border-radius: 999px;
  padding: 4px 13px;
}
.layer-card-vip .layer-tag {
  color: var(--sv-ink);
  background: var(--sv-gold-500);
}
.layer-tag .vip-star { font-size: 12px; line-height: 1; }
.layer-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  color: var(--sv-ink);
}
.layer-card-vip .layer-price { color: var(--sv-cream-50); }
.lp-main { display: flex; align-items: baseline; gap: 3px; }
.lp-setup {
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0.7;
}
.lp-from {
  font-family: var(--sv-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}
.lp-amt {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
}
.lp-per { font-size: 14px; font-weight: 600; opacity: 0.7; }
.lp-was {
  position: relative;
  align-self: center;
  font-family: var(--sv-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--sv-ink-muted);
  margin-right: 3px;
}
.lp-was::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 2px;
  background: oklch(0.62 0.2 25);
  transform: rotate(-14deg);
  transform-origin: center;
}
.layer-card h3 {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 23px;
  line-height: 1.2;
  color: var(--sv-ink);
  margin: 0 0 12px;
  text-wrap: balance;
}
.layer-card-vip h3 { color: var(--sv-cream-50); }
.layer-desc {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--sv-ink-soft);
}
.layer-card-vip .layer-desc { color: oklch(0.86 0.02 95); }
.layer-plus {
  margin: 0 0 12px;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--sv-gold-500);
}
.layer-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.layer-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--sv-ink);
}
.layer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--sv-teal-700);
  border-bottom: 2.5px solid var(--sv-teal-700);
  transform: rotate(-45deg);
}
.layer-card-vip .layer-list li { color: oklch(0.92 0.01 95); }
.layer-card-vip .layer-list li::before {
  border-left-color: var(--sv-gold-500);
  border-bottom-color: var(--sv-gold-500);
}
.layer-annual {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid var(--sv-ink);
  background: var(--sv-gold-100);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--sv-ink-soft);
}
.layer-annual-tag {
  align-self: flex-start;
  white-space: nowrap;
  font-family: var(--sv-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-ink);
  background: var(--sv-gold-500);
  border: 1.5px solid var(--sv-ink);
  border-radius: 999px;
  padding: 3px 10px;
}
.layer-annual strong { color: var(--sv-ink); }
.layer-card-vip .layer-annual {
  border-color: var(--sv-gold-500);
  background: oklch(0.32 0.02 250);
  color: oklch(0.86 0.02 95);
}
.layer-card-vip .layer-annual strong { color: var(--sv-cream-50); }
.layer-positioning {
  margin: 0 0 22px;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--sv-ink);
  text-wrap: balance;
}
.layer-card-vip .layer-positioning { color: var(--sv-gold-500); }
.layer-cta { margin-top: auto; align-self: flex-start; }
.layer-cta-vip {
  background: var(--sv-gold-500);
  color: var(--sv-ink);
  border-color: var(--sv-gold-500);
}
.layer-cta-founding {
  background: var(--sv-teal-700);
  color: var(--sv-cream-50);
  border-color: var(--sv-ink);
}
.layer-card-founding .lp-setup { opacity: 0.85; }
.founding-hook {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 16px;
  padding: 11px 14px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 12px;
  background: var(--sv-teal-700);
  color: var(--sv-cream-50);
}
.founding-hook .fh-big {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.15;
}
.founding-hook .fh-sub {
  font-family: var(--sv-font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  opacity: 0.85;
}
.layer-card-founding .layer-positioning { color: var(--sv-teal-900); }
.layer-setup-note {
  margin: 22px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: var(--sv-ink-soft);
}
.layer-setup-note strong { color: var(--sv-ink); }
.layer-foot-note {
  margin: 10px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: var(--sv-ink-soft);
}
.layer-foot-note strong { color: var(--sv-ink); }
@media (max-width: 980px) {
  .layer-grid.layer-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .layer-grid { grid-template-columns: 1fr; }
}
.tier-card {
  display: flex;
  flex-direction: column;
  border: 2.5px solid var(--sv-ink);
  border-radius: 24px;
  background: var(--sv-cream-50);
  box-shadow: 4px 4px 0 0 var(--sv-ink);
  /* Extra padding-bottom so the inner button's shadow has room to breathe
     and doesn't collide with the card's own offset shadow. */
  padding: 28px 26px 32px;
  position: relative;
}
.tier-card.featured {
  background: var(--sv-mint-100);
  box-shadow: 6px 6px 0 0 var(--sv-ink);
  transform: translateY(-6px);
}
.tier-card.stable { background: var(--sv-gold-100); }
.tier-flag {
  position: absolute;
  top: -14px; left: 28px;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--sv-ink);
  color: var(--sv-gold-500);
  border-radius: 999px;
  padding: 6px 14px;
  border: 2.5px solid var(--sv-ink);
}
/* Badge row keeps the level pill + type pill on one tidy line, wrapping
   together only when truly out of room. */
.tier-card .tier-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.tier-card .tier-tag {
  display: inline-block;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  border: 2.5px solid var(--sv-ink);
  background: var(--sv-cream-50);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-card .agent-badge {
  display: inline-block;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-cream-50);
  background: var(--sv-ink);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-card.featured .agent-badge { background: var(--sv-teal-900); }
.tier-card.stable .agent-badge { background: var(--sv-teal-900); color: var(--sv-gold-300); }
.tier-card .tier-head h3 {
  font-size: 30px;
  margin-bottom: 8px;
}
.tier-card .tier-head p {
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--sv-ink-soft);
  margin: 0 0 22px;
  min-height: 38px;
}
.tier-price {
  border-top: 2.5px dashed rgba(15,18,20,0.2);
  border-bottom: 2.5px dashed rgba(15,18,20,0.2);
  padding: 18px 0;
  margin-bottom: 20px;
}
.tier-price .from {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  margin-bottom: 6px;
}
.tier-price .price-amount {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--sv-ink);
}
.tier-price .price-amount .small {
  font-size: 14px;
  font-weight: 700;
  color: var(--sv-ink-muted);
  letter-spacing: 0;
  margin-left: 6px;
}
.tier-price .from-mo {
  font-size: 14.5px;
  color: var(--sv-ink-soft);
  margin-top: 10px;
}
.tier-price .from-mo strong { color: var(--sv-ink); font-weight: 800; }

.tier-includes { margin-bottom: 22px; flex: 1; }
.tier-includes-tag {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  margin-bottom: 12px;
}

/* Agent groups — each card lists its workflow categories grouped under
   the agent that owns them. Makes the multi-agent model legible. */
.agent-group { margin-bottom: 16px; }
.agent-group:last-child { margin-bottom: 0; }
.agent-group-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sv-ink);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1.5px dashed rgba(15,18,20,0.2);
}
.agent-group-head .dot {
  flex: none;
  width: 10px; height: 10px;
  border: 2px solid var(--sv-ink);
  border-radius: 50%;
  background: var(--sv-gold-500);
}
.agent-group.locked .agent-group-head { color: var(--sv-ink-muted); }
.agent-group.locked .agent-group-head .dot { background: transparent; border-color: rgba(15,18,20,0.3); }
.agent-group .locked-note {
  margin: 0;
  font-size: 13px;
  color: var(--sv-ink-muted);
  font-weight: 500;
  line-height: 1.4;
  padding-left: 18px;
}

.tier-card .scales-note {
  margin: 14px 0 24px;
  padding: 12px 14px;
  border: 2px dashed rgba(15,18,20,0.3);
  border-radius: 10px;
  background: var(--sv-cream-50);
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--sv-ink-soft);
}
.tier-card .scales-note strong { color: var(--sv-ink); font-weight: 800; }
.tier-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  flex-wrap: nowrap;
}
.tier-includes li .cb {
  flex: none;
  width: 14px; height: 14px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 3px;
  background: var(--sv-gold-500);
  margin-top: 3px;
}
.tier-includes li.off {
  color: var(--sv-ink-muted);
  font-weight: 600;
}
.tier-includes li.off .cb { background: transparent; border-color: rgba(15,18,20,0.3); }
.tier-includes li .sub {
  width: 100%;
  padding-left: 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sv-ink-soft);
}
.tier-includes li.off .sub { color: var(--sv-ink-muted); }

.tier-cta {
  width: 100%;
  /* Without border-box, width:100% + padding + border overflows the card on
     the right by ~20px. This is the actual reason the button "doesn't fit". */
  box-sizing: border-box;
  justify-content: center;
  /* Flatter radius than the .mk-btn pill so the button hugs the card's
     rounded corners cleanly. Smaller shadow than the card. */
  border-radius: 14px;
  box-shadow: 3px 3px 0 0 var(--sv-ink);
}
.tier-cta:hover {
  box-shadow: 3px 3px 0 0 var(--sv-ink), 0 0 0 3px var(--sv-gold-300);
}
.tier-cta:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 var(--sv-ink);
}
.tier-card.featured .tier-cta { background: var(--sv-gold-500); }

.pricing-fineprint {
  margin-top: 28px;
  font-size: 14px;
  color: var(--sv-ink-muted);
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* ---------- Apply CTA card (replaces inline form) ---------- */
.apply-cta-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  border: 2.5px solid var(--sv-ink);
  border-radius: 28px;
  background: var(--sv-cream-50);
  box-shadow: 6px 6px 0 0 var(--sv-ink);
  padding: 44px 44px 44px 44px;
  position: relative;
  overflow: hidden;
}
.apply-cta-card::before {
  content: "";
  position: absolute;
  inset: auto auto -40% -10%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--sv-mint-100);
  z-index: 0;
}
.apply-cta-left, .apply-cta-right { position: relative; z-index: 1; }
.apply-cta-left h2 { margin-bottom: 16px; font-size: clamp(30px, 3.6vw, 44px); }
.apply-cta-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.apply-big {
  font-size: 18px;
  padding: 20px 28px;
  text-align: center;
  justify-content: center;
  box-shadow: 5px 5px 0 0 var(--sv-ink);
}
.apply-cta-hints { display: flex; flex-direction: column; gap: 8px; }
.apply-cta-hints .hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--sv-ink-soft);
}
.apply-cta-hints .hint .dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--sv-gold-500);
  border: 2px solid var(--sv-ink);
}

/* ---------- Apply: open / closed states ---------- */
/* Show the card that matches the section state, hide the other. */
#apply[data-apply-state="open"] .apply-closed { display: none; }
#apply[data-apply-state="closed"] .apply-open { display: none; }

/* Status pill (eyebrow with live dot) */
.founding-note {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0 0 14px;
  padding: 13px 16px;
  border: 2px solid var(--sv-ink);
  border-radius: 12px;
  background: var(--sv-gold-100);
  font-size: 14px;
  line-height: 1.5;
  color: var(--sv-ink);
}
.founding-note .fm-tag {
  font-family: var(--sv-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--sv-ink);
  background: var(--sv-gold-500);
  border: 1.5px solid var(--sv-ink);
  border-radius: 999px;
  padding: 3px 10px;
}
.apply-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 12px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 999px;
  background: var(--sv-cream-50);
  font-family: var(--sv-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sv-ink);
  margin-bottom: 20px;
  white-space: nowrap;
}
.apply-status .s-dot {
  flex: none;
  width: 9px; height: 9px;
  border-radius: 50%;
}
.apply-status.is-open .s-dot {
  background: var(--sv-green-600, #1f8a5b);
  box-shadow: 0 0 0 0 var(--sv-green-600, #1f8a5b);
  animation: apply-pulse 1.8s ease-out infinite;
}
.apply-status.is-closed {
  background: var(--sv-ink);
  color: var(--sv-cream-50);
  border-color: var(--sv-ink);
}
.apply-status.is-closed .s-dot { background: oklch(0.62 0.2 25); }
@keyframes apply-pulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.6 0.13 160 / 0.5); }
  70%  { box-shadow: 0 0 0 7px oklch(0.6 0.13 160 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.6 0.13 160 / 0); }
}
@media (prefers-reduced-motion: reduce) {
  .apply-status.is-open .s-dot { animation: none; }
}

/* Slot meter on the open card */
.apply-meter {
  border: 2.5px solid var(--sv-ink);
  border-radius: 18px;
  background: var(--sv-cream-100);
  padding: 18px 20px;
}
.apply-meter .m-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.apply-meter .m-count {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  color: var(--sv-ink);
  white-space: nowrap;
}
.apply-meter .m-count b { color: var(--sv-green-600, #1f8a5b); }
.apply-meter .m-label {
  font-family: var(--sv-font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sv-ink-muted);
  white-space: nowrap;
}
.apply-meter .m-bar {
  display: flex;
  gap: 5px;
}
.apply-meter .m-bar i {
  flex: 1;
  height: 12px;
  border-radius: 4px;
  border: 2px solid var(--sv-ink);
  background: transparent;
}
.apply-meter .m-bar i.taken { background: var(--sv-ink); }
.apply-meter .m-deadline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--sv-font-mono);
  font-size: 12px;
  color: var(--sv-ink-soft);
}

/* Closed card: next-window panel */
.apply-next {
  border: 2.5px solid var(--sv-ink);
  border-radius: 18px;
  background: var(--sv-cream-100);
  padding: 18px 20px;
  text-align: center;
}
.apply-next .n-label {
  font-family: var(--sv-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sv-ink-muted);
  margin-bottom: 6px;
}
.apply-next .n-date {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  color: var(--sv-ink);
}
.apply-big.is-ghost {
  background: var(--sv-cream-50);
  color: var(--sv-ink);
}
.apply-big.is-disabled,
.apply-big[disabled] {
  background: repeating-linear-gradient(
    -45deg,
    var(--sv-cream-200),
    var(--sv-cream-200) 9px,
    var(--sv-cream-100) 9px,
    var(--sv-cream-100) 18px
  ) !important;
  color: var(--sv-ink-muted) !important;
  border: 2.5px dashed var(--sv-ink-muted) !important;
  box-shadow: none !important;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.9;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.apply-secondary {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  gap: 7px;
  font-weight: 600;
  font-size: 14px;
  color: var(--sv-ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--sv-ink-muted);
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  justify-content: center;
}
.apply-secondary:hover {
  background: transparent;
  box-shadow: none;
  color: var(--sv-ink);
  text-decoration-color: var(--sv-ink);
}
.apply-secondary:active { transform: none; box-shadow: none; }
.apply-secondary .dc-ico { flex: none; color: #5865F2; text-decoration: none; }
.apply-secondary:hover .dc-ico { color: #4752c4; }
.apply-cta-card.apply-closed::before { background: oklch(0.62 0.2 25 / 0.12); }

/* Compare mode: show both cards stacked, each with a state label */
#apply[data-apply-state="both"] .apply-open,
#apply[data-apply-state="both"] .apply-closed { display: grid; }
#apply[data-apply-state="both"] .apply-cta-card + .apply-cta-card { margin-top: 28px; }
.apply-statelabel {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-ink-muted);
  margin: 0 0 10px 2px;
}
#apply[data-apply-state="both"] .apply-statelabel { display: flex; }
.apply-statelabel::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--sv-ink);
}

/* ---------- After you apply (3-step) ---------- */
.apply-after {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 2.5px dashed var(--sv-ink-muted);
}
.apply-after-title {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--sv-ink);
  margin: 0 0 24px;
}
.apply-after-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.apply-after-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.aas-num {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--sv-ink);
  background: var(--sv-gold-500);
  box-shadow: 3px 3px 0 0 var(--sv-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sv-font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--sv-ink);
}
.aas-body h4 {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--sv-ink);
  margin: 6px 0 6px;
  line-height: 1.25;
}
.aas-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--sv-ink-soft);
}
@media (max-width: 860px) {
  .apply-after-steps { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- Final CTA band ---------- */
.final-cta {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
.final-cta-h {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 auto 26px;
  max-width: 760px;
  text-wrap: balance;
}
.final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.final-cta-note {
  margin: 0;
  font-size: 14px;
  color: var(--sv-ink-soft);
}

/* Dev-only state switch (building aid) */
.apply-devswitch {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9500;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 999px;
  background: var(--sv-cream-50);
  box-shadow: 3px 3px 0 0 var(--sv-ink);
  font-family: var(--sv-font-mono);
}
.apply-devswitch .ds-label {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-ink-muted);
  padding: 0 6px 0 8px;
}
.apply-devswitch button {
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 11px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--sv-ink-soft);
  cursor: pointer;
}
.apply-devswitch button:hover { background: var(--sv-cream-200); }
.apply-devswitch button.on {
  background: var(--sv-ink);
  color: var(--sv-cream-50);
}

/* ---------- Configurator modal ---------- */
.cfg-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,18,20,0.55);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: cfg-fade 160ms ease-out;
}
@keyframes cfg-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cfg-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.cfg-modal {
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 48px);
  background: var(--sv-cream-50);
  border: 3px solid var(--sv-ink);
  border-radius: 24px;
  box-shadow: 8px 8px 0 0 var(--sv-ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: cfg-rise 200ms ease-out;
  font-family: var(--sv-font-body);
}
.cfg-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--sv-ink);
  color: var(--sv-cream-50);
  border-bottom: 2.5px solid var(--sv-ink);
}
.cfg-head img { width: 32px; height: 32px; border-radius: 6px; }
.cfg-head .t {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 17px;
}
.cfg-head .t .sub {
  display: block;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--sv-mint-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.cfg-head .close {
  margin-left: auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  color: var(--sv-cream-50);
  border: 2px solid var(--sv-cream-50);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.cfg-head .close:hover { background: var(--sv-cream-50); color: var(--sv-ink); }

.cfg-steps {
  display: flex;
  gap: 6px;
  padding: 14px 24px;
  border-bottom: 2px dashed rgba(15,18,20,0.15);
  background: var(--sv-cream-50);
}
.cfg-step-dot {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(15,18,20,0.15);
  position: relative;
  overflow: hidden;
}
.cfg-step-dot.active { background: var(--sv-gold-500); }
.cfg-step-dot.done { background: var(--sv-teal-700); }

.cfg-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
.cfg-body h3 {
  font-size: 26px;
  margin-bottom: 8px;
  text-wrap: balance;
}
.cfg-body .lede {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--sv-ink-soft);
  margin: 0 0 24px;
}

/* tier picker */
.cfg-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cfg-tier {
  border: 2.5px solid var(--sv-ink);
  border-radius: 16px;
  background: var(--sv-cream-50);
  box-shadow: 3px 3px 0 0 var(--sv-ink);
  padding: 16px 18px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  text-align: left;
  font: inherit;
  color: inherit;
}
.cfg-tier:hover { background: var(--sv-cream-200); }
.cfg-tier.selected {
  background: var(--sv-gold-100);
  box-shadow: 3px 3px 0 0 var(--sv-ink), 0 0 0 3px var(--sv-gold-500);
}
.cfg-tier .name {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 2px;
}
.cfg-tier .name .agent-mini {
  font-family: var(--sv-font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  margin-left: 4px;
}
.cfg-tier .tag {
  font-size: 13.5px;
  color: var(--sv-ink-soft);
  line-height: 1.4;
}
.cfg-tier .price {
  text-align: right;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}
.cfg-tier .price .big {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}
.cfg-tier .price .from {
  font-family: var(--sv-font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
}

.cfg-tier .price .monthly {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.3;
}
.cfg-tier .price .monthly .byo-note {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--sv-ink-muted);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 1px;
}

/* rollout step (Standard / VIP / not sure) */
.cfg-rollout .roll-head {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--sv-ink);
  line-height: 1.3;
  margin: 2px 0 4px;
}
.cfg-rollout .roll-bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--sv-ink-soft);
}
.cfg-rollout .roll-bullets li { margin-bottom: 2px; }
.cfg-rollout .roll-price {
  margin-top: 10px;
  font-family: var(--sv-font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--sv-ink);
}
.cfg-rollout .roll-annual {
  font-weight: 500;
  color: var(--sv-ink-soft);
}
.cfg-rollout.is-vip.selected {
  background: var(--sv-gold-100);
  box-shadow: 3px 3px 0 0 var(--sv-ink), 0 0 0 3px var(--sv-gold-500);
}

/* reserve step (step 5) */
.cfg-billing {
  border: 2px solid var(--sv-ink);
  border-radius: 14px;
  background: var(--sv-cream-100);
  padding: 15px 18px;
  margin-bottom: 18px;
}
.cfg-billing-label {
  font-family: var(--sv-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  margin-bottom: 10px;
}
.cfg-billing-steps {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--sv-ink-soft);
}
.cfg-billing-steps strong { color: var(--sv-ink); }
.cfg-billing-steps li::marker { color: var(--sv-teal-700); font-weight: 700; }

.cfg-reserve-opts { display: flex; flex-direction: column; gap: 12px; }
.cfg-reserve {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  border: 2.5px solid var(--sv-ink);
  border-radius: 14px;
  background: var(--sv-cream-50);
  padding: 16px 18px;
  cursor: pointer;
  transition: transform 70ms ease, box-shadow 70ms ease;
}
.cfg-reserve.reserve-now {
  background: var(--sv-gold-100);
  box-shadow: 4px 4px 0 0 var(--sv-ink);
}
.cfg-reserve:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 0 var(--sv-ink); }
.cfg-reserve:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 0 var(--sv-ink); }
.cfg-reserve .rz-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.cfg-reserve .rz-title { font-family: var(--sv-font-display); font-weight: 800; font-size: 16px; color: var(--sv-ink); }
.cfg-reserve .rz-price { font-family: var(--sv-font-display); font-weight: 800; font-size: 20px; color: var(--sv-ink); white-space: nowrap; }
.cfg-reserve .rz-per { font-size: 13px; font-weight: 600; opacity: 0.65; }
.cfg-reserve .rz-desc { font-size: 13px; line-height: 1.5; color: var(--sv-ink-soft); }
.cfg-reserve .rz-cta {
  margin-top: 4px;
  font-family: var(--sv-font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--sv-teal-700);
}
.cfg-reserve .rz-cta.ghost { color: var(--sv-ink-muted); }

/* hosting step */
.cfg-hosting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cfg-host {
  position: relative;
  border: 2.5px solid var(--sv-ink);
  border-radius: 16px;
  background: var(--sv-cream-50);
  box-shadow: 3px 3px 0 0 var(--sv-ink);
  padding: 20px 18px 18px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.cfg-host:hover { background: var(--sv-cream-200); }
.cfg-host.selected {
  background: var(--sv-gold-100);
  box-shadow: 3px 3px 0 0 var(--sv-ink), 0 0 0 3px var(--sv-gold-500);
}
.cfg-host .host-flag {
  position: absolute;
  top: -11px; right: 14px;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--sv-ink);
  color: var(--sv-gold-500);
  border-radius: 999px;
  padding: 4px 10px;
  border: 2px solid var(--sv-ink);
}
.cfg-host .host-name {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 4px;
}
.cfg-host .host-tag {
  font-size: 13.5px;
  color: var(--sv-ink-soft);
  line-height: 1.35;
  margin-bottom: 14px;
  min-height: 36px;
}
.cfg-host .host-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.cfg-host .host-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--sv-ink);
}
.cfg-host .host-bullets li::before {
  content: "";
  flex: none;
  width: 12px; height: 12px;
  border: 2px solid var(--sv-ink);
  border-radius: 3px;
  background: var(--sv-gold-500);
  margin-top: 3px;
}
.cfg-host .host-price {
  padding-top: 12px;
  border-top: 1.5px dashed rgba(15,18,20,0.2);
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--sv-ink);
}
.cfg-host .host-price .from {
  display: block;
  font-family: var(--sv-font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  margin-bottom: 3px;
}

/* category step */
/* Agent grouping inside the workflow step — visually communicates that
   workflows live under their owning agent (separate memory pools). */
.cfg-agent {
  border: 2.5px solid var(--sv-ink);
  border-radius: 16px;
  background: var(--sv-cream-50);
  margin-bottom: 16px;
  padding: 16px 16px 14px;
}
.cfg-agent-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1.5px dashed rgba(15,18,20,0.2);
}
.cfg-agent-head .agent-dot {
  flex: none;
  width: 12px; height: 12px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 50%;
  background: var(--sv-gold-500);
}
.cfg-agent-head .agent-name {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.cfg-agent-head .agent-count {
  margin-left: auto;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  color: var(--sv-ink-soft);
  background: var(--sv-cream);
  border: 2px solid var(--sv-ink);
  padding: 2px 8px;
  border-radius: 999px;
}
.cfg-agent .cfg-cat {
  margin: 0 0 8px;
  border-width: 2px;
  background: var(--sv-cream);
}
.cfg-agent .cfg-cat:last-child { margin-bottom: 0; }
.cfg-agent .cfg-cat-head { background: var(--sv-mint-100); padding: 10px 14px; }
.cfg-agent .cfg-cat-head .cat-name { font-size: 14px; }
.cfg-agent .cfg-cat-rows { padding: 4px 0; }
.cfg-agent .cfg-row { padding: 8px 14px; }

/* Stable scale section */
.cfg-scale {
  border: 2.5px solid var(--sv-ink);
  border-radius: 16px;
  background: var(--sv-gold-100);
  margin-bottom: 16px;
  overflow: hidden;
}
.cfg-scale-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--sv-gold-300);
  border-bottom: 2.5px solid var(--sv-ink);
}
.cfg-scale-head .cat-name {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 16px;
}
.cfg-scale-head .cat-count {
  margin-left: auto;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  color: var(--sv-ink-soft);
}
.cfg-scale-body { padding: 16px 18px 18px; }
.cfg-scale-lede {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--sv-ink-soft);
  margin: 0 0 14px;
}
.cfg-scale-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.cfg-scale-field label {
  display: block;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  margin-bottom: 6px;
}
.cfg-scale-field input {
  width: 100%;
  border: 2.5px solid var(--sv-ink);
  background: var(--sv-cream-50);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--sv-font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--sv-ink);
  box-shadow: 2px 2px 0 0 var(--sv-ink);
  box-sizing: border-box;
}
.cfg-scale-field input:focus {
  outline: none;
  box-shadow: 2px 2px 0 0 var(--sv-ink), 0 0 0 2px var(--sv-gold-300);
}

/* category step */
.cfg-cat {
  border: 2.5px solid var(--sv-ink);
  border-radius: 14px;
  background: var(--sv-cream-50);
  margin-bottom: 12px;
  overflow: hidden;
}
.cfg-cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--sv-mint-100);
  border-bottom: 2.5px solid var(--sv-ink);
}
.cfg-cat-head .cat-name {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 16px;
}
.cfg-cat-head .cat-count {
  margin-left: auto;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  color: var(--sv-ink-soft);
  background: var(--sv-cream-50);
  border: 2px solid var(--sv-ink);
  padding: 2px 8px;
  border-radius: 999px;
}
.cfg-cat-rows { padding: 8px 0; }
.cfg-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 18px;
  cursor: pointer;
  user-select: none;
}
.cfg-row:hover { background: var(--sv-cream-200); }
.cfg-row .cb {
  flex: none;
  width: 18px; height: 18px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 4px;
  background: transparent;
  margin-top: 1px;
  position: relative;
}
.cfg-row.on .cb { background: var(--sv-gold-500); }
.cfg-row.on .cb::after {
  content: "";
  position: absolute;
  inset: 1px 3px auto auto;
  width: 5px; height: 9px;
  border-right: 2.5px solid var(--sv-ink);
  border-bottom: 2.5px solid var(--sv-ink);
  transform: rotate(45deg);
  top: 1px; left: 4px;
}
.cfg-row .label {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
}

.cfg-locked-note {
  margin-top: 16px;
  padding: 14px 16px;
  border: 2px dashed rgba(15,18,20,0.25);
  border-radius: 12px;
  background: var(--sv-blush-100);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--sv-ink-soft);
}
.cfg-locked-note strong { color: var(--sv-ink); }

/* contact step */
.cfg-field { margin-bottom: 14px; }
.cfg-field label {
  display: block;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  margin-bottom: 6px;
}
.cfg-field input,
.cfg-field select,
.cfg-field textarea {
  width: 100%;
  border: 2.5px solid var(--sv-ink);
  background: var(--sv-cream);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--sv-font-body);
  font-size: 14.5px;
  color: var(--sv-ink);
  box-shadow: 2px 2px 0 0 var(--sv-ink);
  font-weight: 500;
  box-sizing: border-box;
}
.cfg-field textarea { min-height: 86px; resize: vertical; line-height: 1.4; }
.cfg-field input:focus,
.cfg-field select:focus,
.cfg-field textarea:focus {
  outline: none;
  background: var(--sv-cream-50);
  box-shadow: 2px 2px 0 0 var(--sv-ink), 0 0 0 2px var(--sv-gold-300);
}
.cfg-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* pill selectors (group size, stakes, use cases) */
.cfg-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cfg-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  border: 2.5px solid var(--sv-ink);
  border-radius: 999px;
  background: var(--sv-cream-50);
  padding: 9px 15px;
  font-family: var(--sv-font-display);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1;
  color: var(--sv-ink);
  cursor: pointer;
}
.cfg-pill:hover { background: var(--sv-cream-200); }
.cfg-pill.on {
  background: var(--sv-gold-100);
  box-shadow: 2px 2px 0 0 var(--sv-ink), 0 0 0 2px var(--sv-gold-500);
}
.cfg-pill .hint {
  font-family: var(--sv-font-mono);
  font-weight: 500;
  font-size: 11px;
  color: var(--sv-ink-muted);
}
.cfg-pill.on .hint { color: var(--sv-ink-soft); }

/* summary card on step 3 */
.cfg-summary {
  border: 2.5px solid var(--sv-ink);
  border-radius: 14px;
  background: var(--sv-mint-100);
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 13.5px;
  line-height: 1.5;
}
.cfg-summary .row {
  display: flex;
  gap: 10px;
  padding: 4px 0;
}
.cfg-summary .row .k {
  flex: none;
  width: 110px;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  padding-top: 1px;
}
.cfg-summary .row .v { font-weight: 600; color: var(--sv-ink); }

/* footer */
.cfg-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-top: 2.5px solid var(--sv-ink);
  background: var(--sv-cream-50);
}
.cfg-foot .fine {
  font-size: 12.5px;
  color: var(--sv-ink-muted);
  flex: 1;
  line-height: 1.4;
}
.cfg-foot .actions { display: flex; gap: 10px; }
.cfg-foot button.back {
  border: 2.5px solid var(--sv-ink);
  background: var(--sv-cream-50);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 3px 3px 0 0 var(--sv-ink);
}
.cfg-foot button.next {
  border: 2.5px solid var(--sv-ink);
  background: var(--sv-gold-500);
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 3px 3px 0 0 var(--sv-ink);
  color: var(--sv-ink);
}
.cfg-foot button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.cfg-foot button.next:active,
.cfg-foot button.back:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 var(--sv-ink);
}

/* success state */
.cfg-success {
  padding: 40px 28px;
  text-align: center;
}
.cfg-success .check {
  width: 64px; height: 64px;
  border: 3px solid var(--sv-ink);
  background: var(--sv-gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  font-weight: 800;
  position: relative;
}
.cfg-success .check::after {
  content: "";
  position: absolute;
  width: 14px; height: 26px;
  border-right: 4px solid var(--sv-ink);
  border-bottom: 4px solid var(--sv-ink);
  transform: rotate(45deg);
  top: 12px;
}
.cfg-success h3 { font-size: 28px; margin-bottom: 12px; }
.cfg-success p { font-size: 15px; line-height: 1.5; color: var(--sv-ink-soft); max-width: 460px; margin: 0 auto 20px; }
.cfg-success-recap { margin-bottom: 12px !important; }
.cfg-success-recap:last-of-type { margin-bottom: 22px !important; }

/* success — next steps */
.cfg-next {
  max-width: 460px;
  margin: 0 auto 22px;
  text-align: left;
  border: 2px solid var(--sv-ink);
  border-radius: 14px;
  background: var(--sv-cream-100);
  padding: 16px 20px 18px;
}
.cfg-next-label {
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-ink);
  margin-bottom: 10px;
}
.cfg-next-steps {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--sv-ink-soft);
}
.cfg-next-steps li::marker { color: var(--sv-teal-700); font-weight: 700; }

/* success — demo prompt + actions */
.cfg-demo { max-width: 460px; margin: 0 auto; }
.cfg-demo-text {
  font-size: 14.5px !important;
  line-height: 1.5 !important;
  color: var(--sv-ink) !important;
  margin: 0 auto 16px !important;
}
.cfg-success-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.cfg-discord-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sv-font-display);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.3;
  color: #fff;
  background: #5865F2;
  border: 2.5px solid var(--sv-ink);
  border-radius: 12px;
  box-shadow: 3px 3px 0 0 var(--sv-ink);
  padding: 13px 20px;
  text-decoration: none;
  transition: transform 80ms ease, box-shadow 80ms ease, background 120ms ease;
}
.cfg-discord-cta:hover { background: #4752c4; transform: translate(-1px, -1px); box-shadow: 4px 4px 0 0 var(--sv-ink); }
.cfg-discord-cta:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 0 var(--sv-ink); }
.cfg-discord-cta svg { flex: none; }
.cfg-success-close {
  font-family: var(--sv-font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--sv-ink-soft);
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--sv-ink-muted);
}
.cfg-success-close:hover { color: var(--sv-ink); text-decoration-color: var(--sv-ink); }

/* ---------- Compact waitlist modal (applications closed) ---------- */
.cfg-modal.cfg-modal-sm { max-width: 540px; }
.cfg-modal-sm .cfg-body { padding: 24px 36px 8px; }
.cfg-modal-sm .cfg-body h3 {
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.2;
  color: var(--sv-ink);
  margin: 0 0 8px;
}
.cfg-modal-sm .cfg-body .lede {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--sv-ink-soft);
  margin: 0 0 20px;
}
.cfg-field label .opt {
  font-weight: 500;
  color: var(--sv-ink-muted);
  text-transform: none;
  letter-spacing: 0;
}
.cfg-done {
  font-family: var(--sv-font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--sv-cream-50);
  background: var(--sv-ink);
  border: none;
  border-radius: 12px;
  padding: 12px 26px;
  cursor: pointer;
}
.cfg-done:hover { background: oklch(0.28 0.02 250); }

/* ---------- Mobile tweaks ---------- */
@media (min-width: 981px) {
  .tier-card .tier-head { min-height: 285px; }
}
@media (max-width: 980px) {
  .tier-grid { grid-template-columns: 1fr; }
  .tier-card.featured { transform: none; }
  .apply-cta-card { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .cfg-field-row { grid-template-columns: 1fr; }
  .cfg-hosting-grid { grid-template-columns: 1fr; }
  .cfg-scale-fields { grid-template-columns: 1fr; }
  .delivery-banner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Apply form ---------- */
.apply-card {
  border: 2.5px solid var(--sv-ink);
  border-radius: 22px;
  background: var(--sv-cream-50);
  box-shadow: 6px 6px 0 0 var(--sv-ink);
  padding: 40px;
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.apply-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-teal-700);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 2.5px solid var(--sv-ink);
  background: var(--sv-cream);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--sv-font-body);
  font-size: 15px;
  color: var(--sv-ink);
  box-shadow: 3px 3px 0 0 var(--sv-ink);
  font-weight: 500;
}
.field textarea { min-height: 110px; resize: vertical; line-height: 1.4; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--sv-cream-50);
  box-shadow: 3px 3px 0 0 var(--sv-ink), 0 0 0 2px var(--sv-gold-300);
}
.apply-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.apply-submit-row .fine {
  font-size: 13px;
  color: var(--sv-ink-muted);
  max-width: 360px;
  line-height: 1.4;
  margin: 0;
}
.apply-success {
  display: none;
  padding: 28px;
  border: 2.5px solid var(--sv-ink);
  background: var(--sv-mint-100);
  border-radius: 14px;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  margin-top: 18px;
}
.apply-success.show { display: block; }
.cfg-error {
  margin: 14px 0 18px;
  padding: 12px 14px;
  border: 2px solid var(--sv-ink);
  border-radius: 12px;
  background: var(--sv-blush-100);
  color: var(--sv-ink);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

/* ---------- Footer ---------- */
.mk-footer {
  padding: 40px 0 56px;
  border-top: 2.5px solid var(--sv-ink);
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.mk-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mk-footer .mk-nav-logo .word { font-size: 18px; }
.mk-footer .fine {
  font-size: 13px;
  color: var(--sv-ink-muted);
}
.mk-footer .links { display: flex; gap: 22px; }
.mk-footer .links a {
  color: var(--sv-ink);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}
.mk-footer .links a:hover { color: var(--sv-teal-700); }

/* ---------- Generic section spacing ---------- */
.section-eyebrow { margin-bottom: 14px; }

/* ---------- Solver dark section content ---------- */
.solver-run {
  border-radius: 16px;
  background: rgba(251,246,236,0.04);
  border: 1.5px solid rgba(251,246,236,0.15);
  padding: 22px 24px;
  margin: 0 0 24px;
}
.solver-line {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  align-items: flex-start;
  border-bottom: 1.5px dashed rgba(251,246,236,0.12);
}
.solver-line:last-child { border-bottom: 0; }
.solver-line .who {
  flex: none;
  width: 78px;
  font-family: var(--sv-font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--sv-mint-300);
  padding-top: 2px;
}
.solver-line.user .who { color: var(--sv-cream-200); }
.solver-line.tool .who { color: var(--sv-gold-300); }
.solver-line .body {
  flex: 1;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--sv-cream-50);
}
.solver-line.tool .body {
  font-family: var(--sv-font-mono);
  font-size: 13px;
  color: var(--sv-gold-300);
  line-height: 1.6;
}
.solver-line .body strong { color: var(--sv-cream-50); }
.solver-line .body .gtag {
  display: inline-block;
  font-family: var(--sv-font-mono);
  font-size: 11px;
  font-weight: 600;
  border: 1.5px solid var(--sv-mint-300);
  color: var(--sv-mint-300);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
}

/* ---------- Mobile tweaks ---------- */
@media (max-width: 980px) {
  .hero-grid,
  .mk-grid-2 { grid-template-columns: 1fr; }
  .problem-grid,
  .how-grid,
  .buckets,
  .channels { grid-template-columns: 1fr 1fr; }
  .pricing-row { grid-template-columns: 1fr; }
  .price-block:first-child { border-right: 0; }
  .privacy-grid,
  .foryou-grid,
  .apply-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(34px, 6vw, 50px) !important; }
}
@media (max-width: 640px) {
  .problem-grid,
  .how-grid,
  .buckets,
  .channels { grid-template-columns: 1fr; }
  .mk-container { padding: 0 20px; }
  .mk-section { padding: 44px 0; }
  .section-header { margin-bottom: 28px; }
  .price-includes ul { grid-template-columns: 1fr; }
  .apply-card { padding: 24px; }

  /* Typography — keep headings readable but trim */
  h2, .sv-h2 { font-size: clamp(28px, 7.5vw, 40px); }
  .hero-h1 { font-size: clamp(30px, 7.5vw, 42px) !important; }
  .sv-lede { font-size: 17px; line-height: 1.4; }

  /* Hero — hide tilted decoration cards + decoration pills */
  .hero-grid { gap: 24px; }
  .hero-meta { display: none; }
  .agent-stack > .agent-card { transform: none !important; }
  .agent-stack > .agent-card:not(:last-child) { display: none; }

  /* Solver-proof — hide tool-call lines (they're verbose on a narrow column) */
  .mk-dark-section { padding: 32px 22px; border-radius: 22px; }
  .solver-line.tool { display: none; }
  .solver-line .who { width: 64px; font-size: 10.5px; }
  .solver-line .body { font-size: 14px; }

  /* Channels — show only first, indicate the rest */
  .channels > .channel:not(:first-child) { display: none; }
  .channels::after {
    content: "Also lives on WhatsApp & Discord";
    display: block;
    text-align: center;
    font-family: var(--sv-font-display);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sv-ink-soft);
    border: 2px dashed rgba(15,18,20,0.3);
    border-radius: 12px;
    padding: 14px 12px;
    margin-top: 12px;
  }

  /* Personalization — collapse the long config-rows list (visual demo only) */
  .config-card .config-rows { display: none; }
  .config-card .config-head { padding: 16px 18px; }
  .config-card { box-shadow: 4px 4px 0 0 var(--sv-ink); }

  /* Pricing — tier cards tighter; 48h banner more compact */
  .tier-card { padding: 22px 22px 28px; }
  .tier-card .tier-head h3 { font-size: 26px; }
  .tier-price .price-amount { font-size: 38px; }
  .agent-group { margin-bottom: 12px; }
  .delivery-banner {
    padding: 14px 16px;
    gap: 14px;
    margin-top: 28px;
  }
  .delivery-banner .db-icon { width: 48px; height: 48px; font-size: 14px; }
  .delivery-banner .db-text strong { font-size: 14.5px; }
  .delivery-banner .db-text span { font-size: 13px; }

  /* For-you / not-for-you cards */
  .foryou-card { padding: 24px; }
  .foryou-card h3 { font-size: 22px; }

  /* Apply CTA */
  .apply-cta-card { padding: 28px 24px; }

  /* Final CTA */
  .mk-final-cta { padding: 40px 24px; border-radius: 22px; }
  .mk-final-cta h2 { font-size: clamp(26px, 7.5vw, 36px); }

  /* Footer */
  .mk-footer { padding: 28px 0 36px; margin-top: 36px; }

  /* Decorative paper layer — looks like clutter on tiny screens */
  .mk-deco-layer { display: none; }
}
