/* Sophyworks landing — extends colors_and_type.css with landing-specific styles */
@import url('tokens.css');

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg-page); color: var(--fg-page); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
button, a { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* themed surfaces, driven by Tweaks-set CSS vars on :root */
.theme-papel { --bg-page: #FAFAFA; --fg-page: #0B0B0F; --fg-soft: #3F3F46; --fg-mute: #71717A; --line: #E4E4E7; --card: #FFFFFF; --card-soft: #F4F4F5; }
.theme-ink   { --bg-page: #0B0B0F; --fg-page: #FAFAFA; --fg-soft: #D4D4D8; --fg-mute: #A1A1AA; --line: #27272A; --card: #18181B; --card-soft: #050507; }
.theme-warm  { --bg-page: #F5F1E8; --fg-page: #0B0B0F; --fg-soft: #3F3F46; --fg-mute: #6F6A5C; --line: #E2DCC9; --card: #FBF8F0; --card-soft: #EFE9D8; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: color-mix(in oklab, var(--bg-page) 88%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.nav-logo .mark {
  width: 38px; height: 38px; border-radius: 9px;
  display: block; flex-shrink: 0;
}
.tri-up { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; }

.nav-links { display: flex; gap: 28px; margin-left: 8px; white-space: nowrap; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--fg-soft); transition: color 120ms; }
.nav-links a:hover { color: var(--fg-page); }

.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.btn {
  font-size: 14px; font-weight: 600; padding: 10px 18px;
  border-radius: 10px; border: 1px solid transparent;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap; transition: all 120ms cubic-bezier(0.2,0,0,1);
}
.btn-primary { background: var(--fg-page); color: var(--bg-page); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary { background: var(--card); color: var(--fg-page); border-color: var(--line); }
.btn-secondary:hover { background: var(--card-soft); }
.btn-ghost { background: transparent; color: var(--fg-soft); padding: 10px 8px; }
.btn-ghost:hover { color: var(--fg-page); }
.btn-pink { background: #F5018D; color: #fff; }
.btn-pink:hover { background: #C8007A; }
.btn-cyan { background: #00BAFF; color: #0B0B0F; }
.btn-lg { font-size: 15px; padding: 13px 22px; }

/* ============ HERO ============ */
.hero {
  padding: 88px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-mute);
  padding: 7px 14px 7px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 32px;
}
.hero-eyebrow .pill {
  background: var(--accent-1, #F5018D);
  color: white;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--fg-page);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-1, #F5018D);
}
.hero h1 .secondary {
  color: var(--accent-2, #00BAFF);
}
.hero h1 .stack-glyph {
  display: inline-flex; flex-direction: column;
  vertical-align: -0.08em;
  gap: 4px;
  margin: 0 12px 0 4px;
}
.hero h1 .stack-glyph .tri-up {
  border-left-width: clamp(20px, 3vw, 36px);
  border-right-width: clamp(20px, 3vw, 36px);
}

.hero-sub {
  margin-top: 32px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--fg-soft);
  max-width: 620px;
}
.hero-ctas {
  margin-top: 40px;
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 24px;
  font-size: 13px; color: var(--fg-mute);
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.hero-meta .meta-dot { width: 6px; height: 6px; border-radius: 999px; background: #16A34A; box-shadow: 0 0 0 3px rgba(22,163,74,0.15); }

/* hero diagram (right column) */
.hero-diagram {
  position: relative;
  display: flex; flex-direction: column;
  gap: 14px;
}
.hd-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  position: relative;
}
.hd-card .num {
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.02em;
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hd-card .lbl { font-size: 13px; font-weight: 600; color: var(--fg-page); }
.hd-card .sub { font-size: 12px; color: var(--fg-mute); margin-top: 2px; line-height: 1.4; }
.hd-card .tag {
  position: absolute; top: 12px; right: 12px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
}
.tag-human { background: #FFE6F2; color: #9A005D; }
.tag-mix   { background: var(--card-soft); color: var(--fg-soft); }
.tag-agent { background: #E6F9FF; color: #007AAB; }
.theme-ink .tag-human { background: rgba(245,1,141,0.16); color: #FFB3DE; }
.theme-ink .tag-mix   { background: #27272A; color: #D4D4D8; }
.theme-ink .tag-agent { background: rgba(0,186,255,0.16); color: #7DDBFF; }

.hd-arrow {
  position: absolute;
  left: 28px;
  width: 1px;
  height: 16px;
  background: var(--line);
}

/* ============ STAT STRIP ============ */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--card-soft);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  display: flex; flex-direction: column; gap: 6px;
}
.stat .val {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .lbl {
  font-size: 12px; color: var(--fg-mute);
  line-height: 1.45;
  max-width: 220px;
}

/* ============ SECTION CHROME ============ */
.section { padding: 120px 0; }
.section-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-mute);
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
  content: ''; display: inline-block;
  width: 18px; height: 2px;
  background: var(--accent-1, #F5018D);
}
.section-head { max-width: 820px; margin-bottom: 64px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-top: 20px;
}
.section-head p {
  margin-top: 20px;
  font-size: 18px; color: var(--fg-soft);
  line-height: 1.55;
  max-width: 640px;
}

/* ============ PIPELINE ============ */
.pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.pipe-stage {
  display: flex; flex-direction: column;
  gap: 18px;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
  position: relative;
  min-height: 360px;
}
.pipe-stage::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 4px;
  background: var(--stage-color);
  border-radius: 0 0 4px 0;
}
.pipe-stage .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-mute);
  letter-spacing: 0.04em;
}
.pipe-stage h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.pipe-stage p {
  font-size: 14px; color: var(--fg-soft); line-height: 1.55;
}
.pipe-stage .modules {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.pipe-stage .mod {
  font-size: 12px; font-weight: 500;
  padding: 4px 10px; border-radius: 999px;
  background: var(--card-soft);
  color: var(--fg-soft);
  border: 1px solid var(--line);
}

/* ============ IDE STRIP ============ */
.ide-strip {
  display: flex; align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
}
.ide {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  color: var(--fg-soft);
  font-size: 13px;
  font-weight: 500;
}
.ide .icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}

/* ============ MCP DARK SPOTLIGHT ============ */
.mcp-spot {
  background: #0B0B0F;
  border-radius: 24px;
  padding: 80px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.mcp-spot::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 50% at 95% 5%, rgba(0,186,255,0.16), transparent),
    radial-gradient(40% 50% at 5% 95%, rgba(245,1,141,0.16), transparent);
  pointer-events: none;
}
.mcp-spot > * { position: relative; }
.mcp-spot .section-eyebrow { color: #71717A; }
.mcp-spot .section-eyebrow::before { background: #00BAFF; }
.mcp-spot h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: white;
  margin-top: 20px;
}
.mcp-spot p {
  font-size: 17px;
  color: #D4D4D8;
  line-height: 1.55;
  margin-top: 20px;
}
.mcp-spot .bullets {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.mcp-spot .bullet {
  display: flex; gap: 14px;
  font-size: 15px; color: #E4E4E7;
  line-height: 1.5;
}
.mcp-spot .bullet .tri {
  margin-top: 8px;
  display: flex; flex-direction: column; gap: 2px;
  flex-shrink: 0;
}
.mcp-spot .bullet .tri .tri-up {
  border-left-width: 5px;
  border-right-width: 5px;
}

.codebox {
  background: #050507;
  border: 1px solid #27272A;
  border-radius: 14px;
  overflow: hidden;
  font-family: var(--font-mono);
}
.codebox-head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid #27272A;
  font-size: 11px; color: #71717A;
}
.codebox-head .dot { width: 8px; height: 8px; border-radius: 999px; background: #27272A; }
.codebox-body {
  padding: 22px;
  font-size: 13px;
  line-height: 1.7;
  color: #E4E4E7;
  overflow-x: auto;
}
.codebox .c1 { color: #71717A; }
.codebox .c2 { color: #00BAFF; }
.codebox .c3 { color: #F5018D; }
.codebox .c4 { color: #A1A1AA; }
.codebox .c5 { color: #16A34A; }

/* ============ COMPARISON ============ */
.compare {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
}
.compare-row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div { padding: 22px 28px; }
.compare-row.head > div {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-mute);
  background: var(--card-soft);
}
.compare-row .tool { font-weight: 600; font-size: 16px; }
.compare-row .focus { color: var(--fg-soft); font-size: 15px; }
.compare-row .miss { color: var(--fg-soft); font-size: 15px; }
.compare-row.us { background: #0B0B0F; color: white; }
.compare-row.us .tool { display: flex; align-items: center; gap: 10px; }
.compare-row.us .focus { color: #D4D4D8; }
.compare-row.us .miss { color: #00BAFF; font-weight: 600; display: flex; align-items: center; gap: 8px; }

/* ============ PAINS (market study) ============ */
.pains-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pain { position: relative; border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px 22px; background: var(--card); transition: all 200ms cubic-bezier(0.2,0,0,1); }
.pain:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,11,15,0.06); }
.pain-num { position: absolute; top: 22px; right: 24px; font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--fg-mute); opacity: 0.6; }
.pain-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--card-soft); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--fg-page); margin-bottom: 16px; }
.pain h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; color: var(--fg-page); }
.pain p { font-size: 13.5px; color: var(--fg-soft); line-height: 1.55; margin-top: 10px; }
.pain-tag { margin-top: 16px; font-size: 11px; font-weight: 600; color: var(--fg-mute); font-family: var(--font-mono); letter-spacing: 0.01em; padding-top: 12px; border-top: 1px solid var(--line); }

/* ============ CROSSOVER table ============ */
.cross { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--card); }
.cross-head { display: grid; grid-template-columns: 1fr 1fr; }
.cross-head > div { padding: 16px 28px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-mute); background: var(--card-soft); }
.cross-head > div:last-child { border-left: 1px solid var(--line); color: #00BAFF; }
.cross-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.cross-row > div { padding: 18px 28px; }
.cross-pain { display: flex; align-items: center; gap: 12px; color: var(--fg-soft); font-size: 14.5px; }
.cross-pain .x { width: 18px; height: 18px; border-radius: 999px; background: var(--card-soft); border: 1px solid var(--line); flex-shrink: 0; position: relative; }
.cross-pain .x::before, .cross-pain .x::after { content: ''; position: absolute; top: 50%; left: 50%; width: 8px; height: 1.5px; background: var(--fg-mute); transform: translate(-50%,-50%) rotate(45deg); }
.cross-pain .x::after { transform: translate(-50%,-50%) rotate(-45deg); }
.cross-feat { display: flex; align-items: center; gap: 12px; border-left: 1px solid var(--line); color: var(--fg-page); font-size: 14.5px; font-weight: 600; background: linear-gradient(90deg, rgba(0,186,255,0.04), transparent 70%); }
.cross-feat .tri { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.cross-feat .tri-up { width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; }

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

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  display: flex; flex-direction: column; gap: 24px;
  background: var(--card);
  position: relative;
}
.plan.featured {
  background: #0B0B0F;
  border-color: #0B0B0F;
  color: white;
}
.plan.featured::before {
  /* Read from the element instead of hardcoded, so the badge follows the
     page language like everything else. */
  content: attr(data-badge);
  position: absolute;
  top: -12px;
  left: 36px;
  background: #F5018D;
  color: white;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.plan-name { font-size: 14px; font-weight: 600; }
.plan-tagline { font-size: 12px; color: var(--fg-mute); margin-top: 4px; }
.plan.featured .plan-tagline { color: #A1A1AA; }
.plan-price { display: flex; align-items: baseline; gap: 8px; }
.plan-price .amount { font-family: var(--font-display); font-size: 52px; font-weight: 700; letter-spacing: -0.025em; line-height: 1; }
.plan-price .per { font-size: 13px; color: var(--fg-mute); }
.plan.featured .plan-price .per { color: #A1A1AA; }
.plan-desc { font-size: 14px; color: var(--fg-soft); line-height: 1.55; }
.plan.featured .plan-desc { color: #D4D4D8; }
.plan-features {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px; flex: 1;
}
.plan-feature {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--fg-soft);
}
.plan.featured .plan-feature { color: #D4D4D8; }
.plan-feature .check {
  flex-shrink: 0;
  margin-top: 4px;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--accent-1, #F5018D);
  position: relative;
}
.plan-feature .check::after {
  content: '';
  position: absolute;
  inset: 3px 3px 3px 3px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg) translate(-1px, -1px);
  width: 4px; height: 7px;
}

/* ============ CTA ============ */
.cta {
  border-radius: 20px;
  padding: 96px;
  text-align: center;
  background: var(--card-soft);
  position: relative;
  overflow: hidden;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 720px;
  margin: 0 auto;
}
.cta p { font-size: 18px; color: var(--fg-soft); margin-top: 16px; }
.cta .ctas { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-deco {
  position: absolute;
  top: 40px; right: 80px;
  opacity: 0.5;
  display: flex; flex-direction: column; gap: 5px;
}
.cta-deco .tri-up { border-left-width: 22px; border-right-width: 22px; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
}
.footer-brand { max-width: 280px; display: flex; flex-direction: column; gap: 14px; }
.footer-brand p { font-size: 13px; color: var(--fg-mute); line-height: 1.5; }
.footer-col h4 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--fg-soft);
  padding: 4px 0;
}
.footer-col a:hover { color: var(--fg-page); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--fg-mute);
  flex-wrap: wrap; gap: 16px;
}

/* ─────────────────────────────────────────────────────────────────
   Additions to the design system — pieces the JSX prototype either
   carried inline or did not need (it had no language switch and no
   mobile nav). Tokens, radii and hairlines follow index.ui.md:
   buttons r8, cards r10–14, flat surfaces, hairline borders.
   ───────────────────────────────────────────────────────────────── */

/* Language selector */
.lang-selector { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  height: 34px; padding: 0 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  color: var(--fg-mute); background: transparent;
  border: 1px solid var(--border); border-radius: 8px;
}
.lang-btn:hover { color: var(--fg-page); background: var(--bg-hover); }
.lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 60;
  display: none; flex-direction: column; min-width: 148px; padding: 4px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 8px 24px rgba(11, 11, 15, .10);
}
.lang-menu.open { display: flex; }
.lang-selector__option {
  padding: 8px 10px; text-align: left; font-size: 13px;
  color: var(--fg-page); background: transparent; border: 0; border-radius: 6px;
}
.lang-selector__option:hover { background: var(--bg-hover); }
.lang-selector__option.active { color: var(--accent-1, #F5018D); font-weight: 600; }

/* Mobile nav toggle — hidden until the breakpoint below */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 34px; padding: 0 8px;
  background: transparent; border: 1px solid var(--border); border-radius: 8px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: var(--fg-page); transition: transform .18s, opacity .18s;
}
.nav-toggle.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.active span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* The 'S' mark inside the comparison table's Sophyworks row */
.us-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; margin-right: 8px; border-radius: 6px;
  background: #fff; color: #0B0B0F;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  letter-spacing: -.04em;
}

/* The design's footer grid assumes five columns; this page has the brand
   plus two link columns, so the track list is narrowed to match. */
.footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 8px;
    background: var(--bg); border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 10px; border-radius: 8px; }
  .nav-links a:hover { background: var(--bg-hover); }
}

/* ─── Single-plan pricing ────────────────────────────────────────
   One plan, everything included. The card borrows the dark treatment
   already used by the MCP block so the page keeps two surfaces, not
   three. Cyan is the agent accent in this system, and pricing is where
   "agents don't pay seats" lands — hence cyan rather than magenta.
   ──────────────────────────────────────────────────────────────── */
.pricing-solo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pricing-copy p { font-size: 16px; line-height: 1.65; color: var(--fg-soft); margin-bottom: 18px; }
.pricing-copy .lead { font-size: 18px; color: var(--fg-page); }
.pricing-copy .mono-note {
  font-family: var(--font-mono); font-size: 13px; color: var(--fg-mute); margin-bottom: 0;
}

.plan-solo {
  background: #0B0B0F; color: #fff;
  border: 1px solid rgba(255, 255, 255, .10); border-radius: 20px;
  padding: 36px; display: flex; flex-direction: column; gap: 18px;
}
.allin {
  align-self: flex-start;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid #00BAFF; color: #00BAFF;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.plan-solo-name { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -.02em; }

.billing-toggle {
  align-self: flex-start; display: inline-flex; gap: 2px; padding: 3px;
  background: rgba(255, 255, 255, .06); border-radius: 999px;
}
.bt {
  padding: 7px 18px; border: 0; border-radius: 999px; background: transparent;
  color: rgba(255, 255, 255, .55);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
}
.bt.active { background: #00BAFF; color: #04222E; font-weight: 600; }

.plan-solo-price { display: flex; align-items: flex-start; gap: 8px; }
.plan-solo-price .cur { font-size: 26px; font-weight: 600; color: rgba(255, 255, 255, .65); margin-top: 12px; }
.plan-solo-price .amount { font-family: var(--font-display); font-size: 76px; font-weight: 700; line-height: 1; letter-spacing: -.04em; }
.plan-solo-price .per {
  font-family: var(--font-mono); font-size: 13px; line-height: 1.5;
  color: rgba(255, 255, 255, .55); margin-top: 8px;
}
.plan-solo-note { font-family: var(--font-mono); font-size: 12px; color: rgba(255, 255, 255, .45); }
.plan-solo-note b { color: rgba(255, 255, 255, .8); font-weight: 500; }

.plan-solo-incl {
  padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .10);
  font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .68);
}
.plan-solo-incl b { color: #fff; font-weight: 600; }
.plan-solo .btn-primary { background: #00BAFF; color: #04222E; }
.plan-solo .btn-primary:hover { background: #34C9FF; }

@media (max-width: 980px) {
  .pricing-solo { grid-template-columns: 1fr; gap: 36px; }
}
