/* ========= NeuroStep shared styles ========= */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #0B1220;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.font-display { font-family: 'General Sans', Inter, system-ui, sans-serif; letter-spacing: -0.02em; }
.font-mono { font-family: 'JetBrains Mono', monospace; font-feature-settings: "tnum"; }

.container-x { max-width: 1200px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 32px); }
.section { padding-block: clamp(56px, 8vw, 110px); }

.h1 { font-family: 'General Sans', sans-serif; font-weight: 600; letter-spacing: -0.035em; line-height: 1.02; font-size: clamp(40px, 5.6vw, 68px); overflow-wrap: break-word; }
.h2 { font-family: 'General Sans', sans-serif; font-weight: 600; letter-spacing: -0.028em; line-height: 1.08; font-size: clamp(30px, 4.4vw, 50px); }
.h3 { font-family: 'General Sans', sans-serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; font-size: clamp(20px, 2vw, 24px); }
.lede { font-size: clamp(17px, 1.4vw, 19px); color: #475569; line-height: 1.55; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #0F766E;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; background: #0F766E; border-radius: 999px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'General Sans', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 22px; border-radius: 10px;
  transition: transform .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
  white-space: nowrap;
}
.btn-primary { background: #0B1220; color: #fff; }
.btn-primary:hover { background: #1D4ED8; }
.btn-ghost { background: #fff; color: #0B1220; border: 1px solid #E2E8F0; }
.btn-ghost:hover { border-color: #0B1220; }
.btn-sm { padding: 10px 16px; font-size: 14px; }

.field { display: block; }
.field-label { display:block; font-size: 13px; color: #475569; margin-bottom: 6px; font-weight: 500; }
.field-input, .field-select, .field-textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #E2E8F0;
  border-radius: 10px; font-size: 15px; background: #fff; color: #0B1220;
  transition: border-color .12s ease, box-shadow .12s ease;
  font-family: inherit;
}
.field-input:focus, .field-select:focus, .field-textarea:focus {
  outline: none; border-color: #1D4ED8; box-shadow: 0 0 0 3px rgba(29,78,216,0.12);
}
.field-textarea { min-height: 100px; resize: vertical; }

.img-placeholder { background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%); }
.step-num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #94a3b8; letter-spacing: 0.06em; }

details summary { list-style: none; cursor: pointer; }
details summary::-webkit-details-marker { display: none; }
details[open] .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform .2s ease; }

/* ===== Audience dropdown ===== */
.aud-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 12px 0 14px;
  border: 1px solid #E2E8F0; border-radius: 999px;
  background: #fff;
  font-size: 14px; font-weight: 500; color: #0B1220;
  transition: border-color .12s ease, background .12s ease, color .12s ease;
  cursor: pointer;
}
.aud-trigger:hover { border-color: #94a3b8; }
.aud-trigger[aria-expanded="true"] { border-color: #0B1220; background: #0B1220; color: #fff; }
.aud-trigger .chev { transition: transform .15s ease; }
.aud-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }

.aud-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 300px; background: #fff;
  border: 1px solid #E2E8F0; border-radius: 14px;
  box-shadow: 0 16px 40px -12px rgba(15,23,42,0.18), 0 4px 12px -4px rgba(15,23,42,0.08);
  padding: 6px;
  opacity: 0; transform: translateY(-4px); pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 60;
}
.aud-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.aud-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 14px; border-radius: 10px;
  text-align: left; width: 100%;
  transition: background .12s ease;
  cursor: pointer; text-decoration: none; color: inherit;
}
.aud-item:hover { background: #F1F5F9; }
.aud-item .aud-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center; flex-shrink: 0;
  background: #F1F5F9; color: #0B1220;
}
.aud-item.is-current .aud-icon { background: #0B1220; color: #fff; }
.aud-item-title { font-family: 'General Sans', sans-serif; font-weight: 600; font-size: 14.5px; color: #0B1220; }
.aud-item-sub { font-size: 12.5px; color: #64748b; margin-top: 2px; line-height: 1.4; }

/* ===== Top nav ===== */
.topnav-link {
  font-size: 14px; color: #475569;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: color .12s ease, border-color .12s ease;
  text-decoration: none;
}
.topnav-link:hover { color: #0B1220; }
.topnav-link.is-active { color: #0B1220; border-bottom-color: #0B1220; }

.header-phone {
  font-family: 'General Sans', sans-serif; font-weight: 600;
  font-size: 14.5px; color: #0B1220; text-decoration: none;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.header-phone:hover { color: #1D4ED8; }
.header-phone svg { opacity: 0.55; }

@media (max-width: 1023px) {
  .topnav-pages { display: none !important; }
  .header-phone-text { display: none; }
  .mobile-menu-btn { display: inline-flex !important; }
}
@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-drawer {
  position: fixed; inset: 64px 0 0 0;
  background: #fff; z-index: 50;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  overflow-y: auto;
}
.mobile-drawer.open { transform: none; opacity: 1; pointer-events: auto; }

/* ===== Hero portrait (parents only) ===== */
.hero-poster { background: #F0E9D8; }
.hero-portrait-wrap {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: clamp(560px, 65%, 1000px);
  pointer-events: none; overflow: hidden;
}
.hero-portrait-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 80% center; display: block;
}
.hero-portrait-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    #F0E9D8 0%, rgba(240,233,216,0.96) 5%,
    rgba(240,233,216,0.6) 16%, rgba(240,233,216,0.18) 28%,
    rgba(240,233,216,0) 38%);
}
@media (max-width: 899px) {
  .hero-portrait-wrap { width: 100%; opacity: 0.22; }
  .hero-portrait-wrap::after {
    background: linear-gradient(180deg,
      #F0E9D8 0%, rgba(240,233,216,0.45) 30%,
      rgba(240,233,216,0.85) 80%, #F0E9D8 100%);
  }
}

/* Schools hero — deep warm parchment to match the painting's reds/greens */
.hero-poster-schools { background: #E4D9C4; }
.hero-portrait-wrap-schools { width: clamp(620px, 68%, 1080px); }
.hero-portrait-wrap-schools img { object-fit: cover; object-position: right center; height: 100%; }
.hero-portrait-wrap-schools::after {
  background: linear-gradient(90deg,
    #E4D9C4 0%, rgba(228,217,196,0.96) 6%,
    rgba(228,217,196,0.55) 18%, rgba(228,217,196,0.15) 30%,
    rgba(228,217,196,0) 42%) !important;
}
@media (max-width: 899px) {
  .hero-portrait-wrap-schools { width: 100%; opacity: 0.20; }
  .hero-portrait-wrap-schools::after {
    background: linear-gradient(180deg,
      #E4D9C4 0%, rgba(228,217,196,0.45) 30%,
      rgba(228,217,196,0.85) 80%, #E4D9C4 100%) !important;
  }
}

/* Adults hero — warm parchment/amber to match the painting */
.hero-poster-adults { background: #E8DBC3; }
.hero-portrait-wrap-adults { width: clamp(560px, 62%, 980px); }
.hero-portrait-wrap-adults img { object-fit: cover; object-position: right center; height: 100%; }
.hero-portrait-wrap-adults::after {
  background: linear-gradient(90deg,
    #E8DBC3 0%, rgba(232,219,195,0.96) 6%,
    rgba(232,219,195,0.55) 18%, rgba(232,219,195,0.15) 30%,
    rgba(232,219,195,0) 42%) !important;
}
@media (max-width: 899px) {
  .hero-portrait-wrap-adults { width: 100%; opacity: 0.20; }
  .hero-portrait-wrap-adults::after {
    background: linear-gradient(180deg,
      #E8DBC3 0%, rgba(232,219,195,0.45) 30%,
      rgba(232,219,195,0.85) 80%, #E8DBC3 100%) !important;
  }
}

/* Page hero (generic, used by inner pages) */
.page-hero {
  padding: clamp(64px, 8vw, 110px) 0 clamp(40px, 5vw, 64px);
  border-bottom: 1px solid #E2E8F0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero-illo {
  position: absolute; right: 0; top: 0; bottom: 0; width: clamp(320px, 42%, 560px);
  background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
  display: grid; place-items: center;
}
.page-hero-illo .placeholder-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #94a3b8;
  border: 1px dashed #cbd5e1; padding: 10px 16px; border-radius: 8px;
  background: rgba(255,255,255,0.6);
}
@media (max-width: 899px) {
  .page-hero-illo { display: none; }
}

/* SEO geo block */
.geo-block {
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  padding: 48px 0;
  font-size: 14px; color: #475569; line-height: 1.65;
}
.geo-block .geo-title {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: #94a3b8; margin-bottom: 14px;
}
.geo-block .geo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.geo-block h3 { font-family: 'General Sans', sans-serif; font-weight: 600; color: #0B1220; font-size: 15px; margin-bottom: 6px; }

/* ===== Micro-interactions ===== */

/* Buttons: lift + shadow on hover */
.btn { transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease; will-change: transform; }
.btn-primary { box-shadow: 0 1px 2px rgba(15,23,42,0.06); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(29,78,216,0.45), 0 2px 4px rgba(15,23,42,0.08); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost:hover { transform: translateY(-1px); box-shadow: 0 6px 16px -8px rgba(15,23,42,0.18); }
.btn-ghost:active { transform: translateY(0); }

/* Generic card hover (rounded white surfaces with .border-line) */
a.bg-white.border.border-line.rounded-2xl,
.bg-white.border.border-line.rounded-2xl.shadow-card {
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
a.bg-white.border.border-line.rounded-2xl:hover,
.bg-white.border.border-line.rounded-2xl.shadow-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 18px 40px -16px rgba(15,23,42,0.16), 0 4px 12px -6px rgba(15,23,42,0.08);
}

/* Inline arrow on link-style "→" labels nudges on parent hover */
a:hover > .pick-arrow,
.btn:hover svg { transform: translateX(2px); }
.btn svg { transition: transform .18s ease; }

/* Audience dropdown items: slight indent on hover */
.aud-item { transition: background .15s ease, transform .15s ease; }
.aud-item:hover { transform: translateX(2px); }

/* Topnav underline animates in */
.topnav-link { position: relative; }
.topnav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: #0B1220; transform: scaleX(0); transform-origin: left center;
  transition: transform .22s ease;
}
.topnav-link:hover::after { transform: scaleX(1); }
.topnav-link.is-active { border-bottom-color: transparent; }
.topnav-link.is-active::after { transform: scaleX(1); }

/* Eyebrow dot pulses subtly */
.eyebrow::before { animation: nspPulse 2.6s ease-in-out infinite; }
@keyframes nspPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* AI logo sprite — 4×4 grid, source cell 220px */
.ai-logo {
  display: inline-block;
  width: 32px; height: 32px;
  background-image: url('images/ai-logos-sprite.png');
  background-size: 128px 128px;          /* 4 cells × 32px */
  background-repeat: no-repeat;
  flex: none;
}
.ai-logo-row { display: inline-flex; gap: 10px; align-items: center; flex-wrap: wrap; }
/* Row 0 */
.ai-yandexgpt   { background-position:   0px   0px; }
.ai-gigachat    { background-position: -32px   0px; }
.ai-chatgpt     { background-position: -64px   0px; }
.ai-shedevrum   { background-position: -96px   0px; }
/* Row 1 */
.ai-kandinsky   { background-position:   0px -32px; }
.ai-midjourney  { background-position: -32px -32px; }
.ai-runway      { background-position: -64px -32px; }
.ai-pika        { background-position: -96px -32px; }
/* Row 2 */
.ai-heygen      { background-position:   0px -64px; }
.ai-suno        { background-position: -32px -64px; }
.ai-udio        { background-position: -64px -64px; }
.ai-cursor      { background-position: -96px -64px; }
/* Row 3 */
.ai-bolt        { background-position:   0px -96px; }
.ai-v0          { background-position: -32px -96px; }
.ai-elevenlabs  { background-position: -64px -96px; }
.ai-salutespeech{ background-position: -96px -96px; }

/* FAQ row hover */
.faq-item { transition: background-color .18s ease; }
.faq-item:hover { background-color: rgba(241,245,249,0.6); }
.faq-item summary { transition: padding-left .2s ease; }
.faq-item:hover summary { padding-left: 8px; }
.faq-item .faq-icon svg { transition: transform .25s ease; }
details[open] .faq-icon svg { transform: rotate(45deg); }

/* Image placeholder cards: slight zoom on hover */
.img-placeholder img { transition: transform .5s ease; }
article:hover .img-placeholder img { transform: scale(1.03); }

/* Pick cards (home audience tiles) — refined */
.pick-card { transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease; }
.pick-card .pick-arrow { transition: opacity .22s ease, transform .22s ease; }

/* Reveal animation — fades in elements when they scroll into view */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ===== Page components for corporate / self ===== */

/* Header wrapper: must not be the sticky containing block,
   otherwise <header class="sticky"> un-sticks once the wrapper scrolls past. */
#nsp-header { display: contents; }

/* Anchor sub-nav strip */
.subnav {
  position: sticky; top: 64px; z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid #E2E8F0;
}
.subnav-inner { display: flex; gap: 6px; overflow-x: auto; padding: 10px 0; }
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  flex: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #64748b; padding: 8px 14px; border-radius: 999px;
  border: 1px solid transparent;
  transition: color .15s ease, background .15s ease, border-color .15s ease;
  text-decoration: none; white-space: nowrap;
}
.subnav a:hover { color: #0B1220; background: #F1F5F9; }
.subnav a.is-active { color: #0B1220; border-color: #E2E8F0; background: #fff; }

/* Audience hero pills */
.aud-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.aud-pill::before { content:''; width:6px; height:6px; border-radius:999px; background: #6ee7b7; }
.aud-pill.is-light { background: #F1F5F9; color: #475569; }
.aud-pill.is-light::before { background: #0F766E; }

/* Scenario flow: 5 chips with arrows */
.flow-strip { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.flow-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #E2E8F0; border-radius: 10px;
  padding: 10px 14px;
  font-family: 'General Sans', sans-serif; font-weight: 600; font-size: 14px; color: #0B1220;
  white-space: nowrap;
}
.flow-chip .flow-dot { width:7px; height:7px; border-radius:999px; background:#0F766E; }
.flow-arrow { color: #94a3b8; font-family: 'JetBrains Mono', monospace; font-size: 14px; }
.flow-strip.is-dark .flow-chip { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); color: #fff; }
.flow-strip.is-dark .flow-chip .flow-dot { background: #6ee7b7; }
.flow-strip.is-dark .flow-arrow { color: rgba(255,255,255,0.45); }

/* Timeline (vertical) — used for 2h intensive */
.timeline { position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 78px; top: 0; bottom: 0;
  width: 1px; background: #E2E8F0;
}
.timeline-step {
  position: relative; display: grid; grid-template-columns: 88px 1fr;
  gap: 24px; padding: 20px 0;
}
.timeline-step::before {
  content: ''; position: absolute; left: 74px; top: 30px;
  width: 9px; height: 9px; border-radius: 999px;
  background: #fff; border: 2px solid #0B1220;
}
.timeline-time {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #0B1220; font-weight: 500;
  padding-top: 4px;
}
.timeline-step h4 {
  font-family: 'General Sans', sans-serif; font-weight: 600;
  font-size: 18px; letter-spacing: -0.01em; line-height: 1.25;
  color: #0B1220;
}
.timeline-step p {
  margin-top: 6px; font-size: 14.5px; color: #475569; line-height: 1.55;
}
.timeline-step .do {
  margin-top: 10px; font-size: 13px;
  display: inline-block; padding: 4px 10px;
  background: #ECFDF5; color: #065F46; border-radius: 999px;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .timeline::before { left: 8px; }
  .timeline-step { grid-template-columns: 1fr; gap: 4px; padding-left: 26px; }
  .timeline-step::before { left: 4px; top: 8px; }
}

/* Before / After comparison row */
.ba-row {
  display: grid; grid-template-columns: 1fr 24px 1fr;
  gap: 12px; align-items: stretch;
  padding: 16px 0;
  border-top: 1px solid #E2E8F0;
}
.ba-row:first-child { border-top: 0; }
.ba-side {
  padding: 14px 16px; border-radius: 12px;
  font-size: 14.5px; line-height: 1.5;
}
.ba-before {
  background: #F8FAFC; color: #64748b;
}
.ba-before .ba-label, .ba-after .ba-label {
  display: block;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 4px;
}
.ba-before .ba-label { color: #94a3b8; }
.ba-after {
  background: #0B1220; color: #fff;
}
.ba-after .ba-label { color: #6ee7b7; }
.ba-arrow {
  align-self: center; justify-self: center;
  font-family: 'JetBrains Mono', monospace; color: #94a3b8;
}
@media (max-width: 640px) {
  .ba-row { grid-template-columns: 1fr; gap: 8px; }
  .ba-arrow { justify-self: start; padding-left: 8px; }
}

/* Mock window — abstract UI chrome */
.mock-win {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 14px;
  overflow: hidden; box-shadow: 0 8px 24px -16px rgba(15,23,42,0.18);
}
.mock-win.is-dark { background: #0B1220; border-color: #1f2a44; color: #fff; }
.mock-win-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-bottom: 1px solid #E2E8F0;
  background: #F8FAFC;
}
.mock-win.is-dark .mock-win-bar { background: #111a30; border-color: #1f2a44; }
.mock-win-bar .dot { width:8px; height:8px; border-radius:999px; background: #cbd5e1; }
.mock-win-bar .mock-title {
  margin-left: 10px; font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: #64748b;
}
.mock-win.is-dark .mock-win-bar .mock-title { color: rgba(255,255,255,0.55); }
.mock-body { padding: 18px 18px 20px; }
.mock-prompt {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  background: #F1F5F9; border-radius: 10px; padding: 12px 14px; color: #0B1220;
  line-height: 1.5;
}
.mock-win.is-dark .mock-prompt { background: rgba(255,255,255,0.06); color: #fff; }
.mock-response {
  margin-top: 12px;
  font-size: 14px; line-height: 1.55; color: #0B1220;
}
.mock-win.is-dark .mock-response { color: rgba(255,255,255,0.85); }
.mock-meta {
  margin-top: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.06em; color: #64748b;
}

/* Role tile (with mini tasks) */
.role-tile {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 16px;
  padding: 22px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.role-tile:hover {
  transform: translateY(-2px); border-color: #cbd5e1;
  box-shadow: 0 18px 40px -18px rgba(15,23,42,0.16);
}
.role-tile .role-name {
  font-family: 'General Sans', sans-serif; font-weight: 600; font-size: 17px;
}
.role-tile .role-kicker {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: #0F766E;
  margin-bottom: 8px;
}
.role-tile ul { margin-top: 12px; }
.role-tile li {
  font-size: 13.5px; color: #475569; line-height: 1.55;
  padding-left: 14px; position: relative;
}
.role-tile li + li { margin-top: 4px; }
.role-tile li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px; background: #94a3b8;
}

/* Artifact card */
.artifact {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid #E2E8F0; border-radius: 14px;
  padding: 18px 18px;
}
.artifact .artifact-glyph {
  width: 40px; height: 40px; border-radius: 10px;
  background: #F1F5F9; display: grid; place-items: center;
  color: #0B1220; flex: none;
  font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 600;
}
.artifact h4 {
  font-family: 'General Sans', sans-serif; font-weight: 600; font-size: 15.5px;
}
.artifact p { font-size: 13.5px; color: #475569; line-height: 1.5; margin-top: 4px; }

/* Pricing card (clean, no gradients) */
.tier {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.tier:hover { transform: translateY(-2px); border-color: #cbd5e1; box-shadow: 0 24px 50px -20px rgba(15,23,42,0.16); }
.tier.is-pro { background: #0B1220; color: #fff; border-color: #0B1220; }
.tier .tier-kicker {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: #64748b;
}
.tier.is-pro .tier-kicker { color: rgba(255,255,255,0.6); }
.tier h3 {
  font-family: 'General Sans', sans-serif; font-weight: 600;
  font-size: 26px; line-height: 1.15; letter-spacing: -0.02em;
  margin-top: 10px;
}
.tier .tier-lede {
  margin-top: 10px; font-size: 14.5px; line-height: 1.55;
  color: #475569;
}
.tier.is-pro .tier-lede { color: rgba(255,255,255,0.72); }
.tier .tier-price {
  font-family: 'General Sans', sans-serif; font-weight: 600;
  font-size: 44px; letter-spacing: -0.025em; line-height: 1;
}
.tier .tier-price-meta {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; color: #64748b;
}
.tier.is-pro .tier-price-meta { color: rgba(255,255,255,0.6); }
.tier .tier-divider { border-top: 1px solid #E2E8F0; margin: 22px 0; }
.tier.is-pro .tier-divider { border-color: rgba(255,255,255,0.12); }
.tier ul li {
  display: flex; gap: 10px; padding: 6px 0;
  font-size: 14px; line-height: 1.5;
}
.tier ul li::before {
  content: ''; width: 6px; height: 6px; border-radius: 999px;
  background: #0F766E; margin-top: 8px; flex: none;
}
.tier.is-pro ul li::before { background: #6ee7b7; }
.tier .tier-result {
  margin-top: 18px; padding: 14px 16px;
  background: #F1F5F9; border-radius: 12px;
  font-size: 13.5px; line-height: 1.55; color: #0B1220;
}
.tier.is-pro .tier-result { background: rgba(255,255,255,0.06); color: #fff; }
.tier .tier-result strong {
  display: block;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #0F766E; font-weight: 500; margin-bottom: 4px;
}
.tier.is-pro .tier-result strong { color: #6ee7b7; }

/* Format card (3 variants of group composition) */
.format-card {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 16px;
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
}
.format-card .fc-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: #94a3b8;
}
.format-card .fc-title {
  font-family: 'General Sans', sans-serif; font-weight: 600; font-size: 18px;
}
.format-card .fc-body { font-size: 14px; color: #475569; line-height: 1.55; }

/* Quote / objection block */
.objection {
  background: #FFFBEB; border: 1px solid #FDE68A; color: #78350F;
  border-radius: 14px; padding: 18px 20px;
  font-size: 14.5px; line-height: 1.55;
}
.objection strong { color: #78350F; }

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
