/* ═══════════════════════════════════════════════════════
   PausePoint — Clean developer SaaS, screenshotone reference
═══════════════════════════════════════════════════════ */

:root {
  --bg:        #ffffff;
  --bg-soft:   #f6f7fb;
  --bg-tint:   #eef0fa;
  --bg-card:   #ffffff;

  --bg-dark:   #171E50;
  --bg-dark-2: #0e1438;

  --text:      #0d0d18;
  --text-2:    #5b5f74;
  --text-3:    #9094a8;

  --rule:      #e6e8f0;
  --rule-hi:   #d0d4e0;

  --accent:    #2C4DFF;
  --accent-hi: #1d3ae8;
  --accent-soft: rgba(44,77,255,0.08);

  --code-bg:   #050817;
  --code-bg-2: #02041a;
  --code-text: #d8dce8;
  --code-mute: #6a7088;

  --star:      #fbbf24;

  --sans:  'Geist', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --mono:  'Geist Mono', 'SF Mono', 'JetBrains Mono', monospace;

  --max:     1180px;
  --gutter:  32px;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-q:  cubic-bezier(0.32, 0.72, 0, 1);
}

/* ─── BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
code, pre, kbd { font-family: var(--mono); }
strong, b { font-weight: 600; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 120px 0; }

/* ─── ACCESSIBILITY ───────────────────────────────── */
.skip-link {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--text);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  z-index: 500;
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── EYEBROW PILL — universal section label ──────── */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.005em;
  margin-bottom: 22px;
}
.eyebrow.eyebrow-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
}

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--rule); }
.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  height: 64px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--bg-dark);
}
.logo-mark {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; display: block; overflow: visible; }

.logo-wordmark {
  display: inline-flex;
  align-items: center;
  height: 22px;
  flex-shrink: 0;
}
.logo-wordmark svg { height: 100%; width: auto; display: block; }
.logo-wordmark--lg { height: 26px; }

.footer-logo { color: #fff; }
.footer-logo .logo-mark { width: 36px; height: 36px; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.nav-signin {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.15s;
}
.nav-signin:hover { color: var(--text); }
.btn-nav {
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 16px;
  background: var(--text);
  color: #fff;
  border-radius: 7px;
  flex-shrink: 0;
  transition: background 0.18s var(--ease), transform 0.12s var(--ease);
}
.btn-nav:hover { background: #1a1a2c; }
.btn-nav:active { transform: scale(0.97); }

/* ─── HAMBURGER + MOBILE MENU ─────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.ham-line {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}
.hamburger.open .ham-line:first-child { transform: translateY(3.25px) rotate(45deg); }
.hamburger.open .ham-line:last-child  { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 90;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(14px);
  padding: 24px var(--gutter) 32px;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-cta {
  margin-top: 14px !important;
  padding: 14px !important;
  text-align: center;
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-bottom: none !important;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 8px;
  transition: background 0.18s var(--ease), transform 0.12s var(--ease);
}
.btn-primary:hover { background: var(--accent-hi); }
.btn-primary:active { transform: scale(0.985); }
.btn-primary--lg { padding: 14px 26px; font-size: 15px; }

.btn-icon {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-q);
}
.btn-primary:hover .btn-icon { transform: translateX(2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  color: var(--text);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--rule-hi);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.btn-ghost:hover { border-color: var(--text); }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  padding: 80px 0 96px;
  position: relative;
  background: var(--bg);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}
.hero-left { padding-top: 8px; }
.hero-h1 {
  font-size: clamp(40px, 5.6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-fineprint {
  font-size: 13.5px;
  color: var(--text-3);
}

/* ─── HERO RIGHT — DEVICE FRAME MOCKUP ────────────── */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.code-shell {
  background: var(--code-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 8px 24px rgba(23,30,80,0.08),
    0 24px 48px rgba(23,30,80,0.06);
  border: 1px solid rgba(23,30,80,0.06);
}
.code-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: var(--code-bg-2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.code-tab {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--code-text);
  cursor: default;
}
.code-tab.active { color: var(--code-text); }
.code-shell-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--code-mute);
}
.code-pre {
  padding: 18px 22px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--code-text);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #2a2e44 transparent;
}
.ck { color: #c485ff; }
.cs { color: #87d685; }
.cn { color: #f8a76e; }
.cc { color: var(--code-mute); font-style: italic; }
.cm { color: #c485ff; }
.cf { color: #87b4f0; }
.code-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 11px 16px;
  background: var(--code-bg-2);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.code-badge {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--code-mute);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 3px 9px;
  border-radius: 4px;
}

/* SMS card sitting beside the code */
.sms-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 1px 2px rgba(23,30,80,0.04);
}
.sms-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.sms-app-label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.sms-ts { font-size: 11px; color: var(--text-3); }
.sms-sender { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.sms-bubble {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 12px;
}
.sms-btns { display: flex; gap: 8px; }
.sms-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: default;
}
.sms-btn--approve, .sms-approve { background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(44,77,255,0.22); }
.sms-btn--reject,  .sms-reject  { background: rgba(220,38,38,0.05); color: #b91c1c; border: 1px solid rgba(220,38,38,0.2); }

/* ─── TRUST BAR — testimonials w/ stars ───────────── */
.trust-bar {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stars { display: flex; gap: 2px; color: var(--star); font-size: 14px; }
.trust-quote {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.trust-attr {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}
.trust-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-2);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.trust-name { color: var(--text); font-weight: 500; }
.trust-role { color: var(--text-3); }

/* ─── FRAMEWORKS LOGO STRIP ───────────────────────── */
.frameworks-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.frameworks-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.frameworks-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
  font-weight: 500;
  flex-shrink: 0;
}
.frameworks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  flex: 1;
  align-items: center;
}
.fw {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.fw:hover { color: var(--text); }
.fw-mono { font-family: var(--mono); font-size: 13px; font-weight: 500; }

/* ─── ALTERNATING FEATURE SECTIONS (new pattern) ──── */
.alt-section {
  padding: 100px 0;
  background: var(--bg);
}
.alt-section--soft { background: var(--bg-soft); }

.alt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.alt-layout.alt-reverse { direction: rtl; }
.alt-layout.alt-reverse > * { direction: ltr; }

.alt-text { display: flex; flex-direction: column; gap: 20px; }
.alt-h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  text-wrap: balance;
}
.alt-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 52ch;
}
.alt-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.alt-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.alt-feature-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
}
.alt-feature-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.alt-feature-text span {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
}
.alt-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* ─── COMPARISON ──────────────────────────────────── */
.comparison-section {
  background: var(--bg);
  padding: 120px 0;
}
.comp-header { max-width: 720px; margin-bottom: 56px; }
.comp-h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 18px;
  text-wrap: balance;
}
.comp-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 60ch;
}
.comp-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.comp-panel {
  background: var(--code-bg);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(23,30,80,0.06);
}
.comp-before {}
.comp-after {
  border: 1px solid rgba(44,77,255,0.32);
  box-shadow: 0 8px 32px rgba(44,77,255,0.10);
}
.comp-panel-header {
  display: flex;
  justify-content: space-between;
  padding: 13px 18px;
  background: var(--code-bg-2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 12px;
  flex-wrap: wrap;
}
.comp-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.comp-label--before { color: #d68a8a; }
.comp-label--after  { color: #87d685; }
.comp-lines { font-family: var(--mono); font-size: 11px; color: var(--code-mute); }
.comp-code {
  padding: 22px 24px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.85;
  color: var(--code-text);
  overflow-x: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: #2a2e44 transparent;
}
.comp-divider, .comp-arrow { display: none; }

/* ─── STATS STRIP ─────────────────────────────────── */
.stats-section {
  background: var(--bg);
  padding: 60px 0 80px;
}
.stats-card {
  background: var(--bg-tint);
  border: 1px solid rgba(44,77,255,0.10);
  border-radius: 14px;
  padding: 8px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(44,77,255,0.12);
}
.stat:last-child { border-right: none; }
.stat-label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.stat-num {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--text);
}
.stat-sub {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}

/* ─── HOW IT WORKS — clean numbered list ──────────── */
.how-section {
  background: var(--bg);
  padding: 120px 0;
}
.how-header { max-width: 660px; margin-bottom: 56px; }
.how-h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 18px;
  text-wrap: balance;
}
.how-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.how-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  transition: border-color 0.2s var(--ease), transform 0.3s var(--ease);
}
.how-step:hover { border-color: var(--rule-hi); transform: translateY(-2px); }
.how-connector { display: none; }
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.step-body h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
}
.step-body p code, .step-body code {
  font-family: var(--mono);
  font-size: 12.5px;
  background: var(--bg-soft);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--text);
  border: 1px solid var(--rule);
}
.step-endpoint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.step-endpoint code {
  font-family: var(--mono);
  font-size: 12px;
  background: var(--code-bg);
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--code-text);
}
.step-badge {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-2);
  background: var(--bg-soft);
  padding: 4px 9px;
  border-radius: 4px;
  border: 1px solid var(--rule);
}
.step-channels { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.sch {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--text-2);
}

/* ─── INTEGRATIONS — DARK SECTION (key visual) ─────── */
.integrations-section {
  background: var(--bg-dark);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.integrations-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(circle, rgba(44,77,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.int-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  position: relative;
}
.int-header .eyebrow { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.int-h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 18px;
  text-wrap: balance;
}
.int-sub {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

.int-tabs {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.int-tab-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
  background: transparent;
  border: none;
  padding: 0;
  flex-wrap: wrap;
}
.int-tab-row::-webkit-scrollbar { display: none; }
.int-tab {
  padding: 9px 18px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.005em;
  margin-bottom: 0;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.int-tab:hover { color: #fff; background: rgba(255,255,255,0.09); }
.int-tab.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(44,77,255,0.35);
}
.int-panel {
  display: none;
  background: var(--code-bg);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  overflow: hidden;
}
.int-panel.active { display: block; }
.int-code {
  padding: 28px 32px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.85;
  color: var(--code-text);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #2a2e44 transparent;
}

/* ─── SPOTLIGHT CARDS ─────────────────────────────── */
.spotlight-card {
  position: relative;
  isolation: isolate;
}
.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(380px circle at var(--mouse-x, -300px) var(--mouse-y, -300px), rgba(44,77,255,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.spotlight-card:hover::before { opacity: 1; }
.spotlight-card > * { position: relative; z-index: 1; }

/* ─── FEATURES BENTO ─────────────────────────────── */
.features-section {
  background: var(--bg-soft);
  padding: 120px 0;
}
.features-header { max-width: 660px; margin-bottom: 48px; }
.features-h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 18px;
  text-wrap: balance;
}
.features-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
}
.fb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fb-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  transition: border-color 0.2s var(--ease), transform 0.3s var(--ease);
}
.fb-card:hover { border-color: var(--rule-hi); transform: translateY(-2px); }
.fb-wide { grid-column: span 2; }
.fb-inner {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.fb-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.fb-top-row { display: flex; gap: 10px; flex-wrap: wrap; }
.fb-inner h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--text);
}
.fb-inner p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
  flex: 1;
}
.fb-inner p code {
  font-family: var(--mono);
  font-size: 12.5px;
  background: var(--bg-soft);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--text);
  border: 1px solid var(--rule);
}
.fb-codeline { margin-top: auto; }
.fb-codeline code {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--code-text);
  background: var(--code-bg);
  padding: 12px 14px;
  border-radius: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fb-chs { display: flex; gap: 6px; margin-top: auto; flex-wrap: wrap; }
.fch {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 9px;
  border-radius: 5px;
  background: var(--bg-soft);
  color: var(--text-2);
  border: 1px solid var(--rule);
  letter-spacing: 0.02em;
}
.fch-mute { color: var(--text-3); }

.fb-phone {
  margin-top: auto;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 14px 16px;
}
.fp-screen { display: flex; flex-direction: column; gap: 8px; }
.fp-q {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
  line-height: 1.35;
}
.fp-btn { padding: 9px; border-radius: 7px; font-size: 12.5px; font-weight: 600; text-align: center; }
.fp-approve { background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(44,77,255,0.22); }
.fp-reject  { background: rgba(220,38,38,0.05); color: #b91c1c; border: 1px solid rgba(220,38,38,0.2); }

.fb-audit {
  margin-top: auto;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
}
.fa-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11.5px;
}
.fa-row:last-child { border-bottom: none; }
.fa-evt { color: var(--text); flex: 1; font-weight: 500; }
.fa-act {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  background: var(--bg);
  color: var(--text-2);
  border: 1px solid var(--rule);
  letter-spacing: 0.02em;
}
.fa-t { color: var(--text-3); font-size: 10.5px; white-space: nowrap; }

.fb-wide-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  height: 100%;
}
.fb-wide-text { display: flex; flex-direction: column; gap: 14px; }
.fb-compliance { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 6px; }
.comp-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 5px;
  background: var(--bg-soft);
  color: var(--text-2);
  border: 1px solid var(--rule);
  letter-spacing: 0.02em;
}

/* ─── MCP SECTION ─────────────────────────────────── */
.mcp-section {
  background: var(--bg);
  padding: 120px 0;
}
.mcp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.mcp-left {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mcp-eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.005em;
  width: fit-content;
}
.mcp-h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--text);
  text-wrap: balance;
}
.mcp-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
}
.mcp-body code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--bg-soft);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--text);
  border: 1px solid var(--rule);
}
.mcp-tools {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.mcp-tool {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
}
.mcp-tool code {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.mcp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
  width: fit-content;
  transition: color 0.15s;
}
.mcp-link:hover { color: var(--accent-hi); }
.mcp-right { display: flex; flex-direction: column; gap: 14px; }
.mcp-code-card {
  background: var(--code-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(23,30,80,0.06);
  box-shadow: 0 8px 24px rgba(23,30,80,0.06);
}
.mcp-code-label {
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--code-mute);
  background: var(--code-bg-2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mcp-code {
  padding: 20px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--code-text);
  overflow-x: auto;
}
.mcp-prompt-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mcp-prompt-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
}
.mcp-prompt-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}

/* ─── USE CASES — bento style cards ──────────────── */
.cases-section {
  background: var(--bg-soft);
  padding: 120px 0;
}
.cases-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.cases-h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  text-wrap: balance;
}
.cases-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  padding-bottom: 4px;
  max-width: 38ch;
}
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.case-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s var(--ease), transform 0.3s var(--ease);
}
.case-card:hover { border-color: var(--rule-hi); transform: translateY(-2px); }
.case-top { display: flex; align-items: center; gap: 12px; }
.case-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.case-quote {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.case-card > p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
}

/* ─── SOCIAL PROOF — single centered testimonial ─── */
.proof-section {
  background: var(--bg);
  padding: 120px 0;
}
.proof-layout {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.proof-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
  font-weight: 500;
}
.proof-q {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.018em;
  text-wrap: balance;
}
.proof-attr {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.proof-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.proof-meta { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.proof-name { font-size: 14.5px; font-weight: 600; color: var(--text); }
.proof-role { font-size: 13px; color: var(--text-2); }
.proof-side, .proof-mini, .proof-main { display: none; }

/* ─── PRICING ─────────────────────────────────────── */
.pricing-section {
  background: var(--bg);
  padding: 120px 0;
}
.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  text-wrap: balance;
  max-width: 14ch;
}
.pricing-toggle {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 3px;
  flex-shrink: 0;
}
.toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 7px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s, background 0.15s;
}
.toggle-btn.active { background: var(--bg); color: var(--text); box-shadow: 0 1px 2px rgba(23,30,80,0.06); }
.save-badge {
  font-size: 10.5px;
  background: rgba(44,77,255,0.12);
  color: var(--accent);
  padding: 1px 7px;
  border-radius: 99px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 14px;
  align-items: start;
}
.pc {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.pc:hover { border-color: var(--rule-hi); box-shadow: 0 1px 2px rgba(23,30,80,0.04); }
.pc-featured {
  background: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 36px rgba(44,77,255,0.14);
  padding-top: 44px;
}
.pc-popular {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pc-name {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
}
.pc-price-row { display: flex; align-items: baseline; gap: 4px; }
.pc-num {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  transition: opacity 0.15s, transform 0.15s;
}
.pc-per { font-size: 14px; color: var(--text-3); }
.pc-desc { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.btn-pc-ghost {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  border: 1px solid var(--rule-hi);
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  background: var(--bg);
  transition: background 0.15s, border-color 0.15s;
}
.btn-pc-ghost:hover { border-color: var(--text); }
.btn-pc-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: background 0.15s, transform 0.1s;
}
.btn-pc-primary:hover { background: var(--accent-hi); }
.btn-pc-primary:active { transform: scale(0.98); }
.pc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.pc-list li {
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}
.pc-list li::before {
  content: '';
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
}
.ptag, .ptag--green, .ptag--sky, .ptag--amber {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 5px;
  background: var(--bg-soft);
  color: var(--text-2);
  border: 1px solid var(--rule);
  letter-spacing: 0.02em;
}
.pc-free, .pc-pro {}
.pricing-ent {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-2);
}
.pricing-ent a { color: var(--accent); transition: color 0.15s; font-weight: 600; }
.pricing-ent a:hover { color: var(--accent-hi); }

/* ─── FAQ ─────────────────────────────────────────── */
.faq-section {
  background: var(--bg-soft);
  padding: 120px 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-left {
  position: sticky;
  top: calc(64px + 32px);
}
.faq-h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
  text-wrap: balance;
}
.faq-sub {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.6;
}
.faq-sub a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(44,77,255,0.4); text-underline-offset: 3px; }
.faq-right { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  letter-spacing: -0.012em;
  line-height: 1.4;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: '';
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  border-right: 1.5px solid var(--text-3);
  border-bottom: 1.5px solid var(--text-3);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s var(--ease), border-color 0.15s;
}
.faq-item[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
  border-color: var(--accent);
}
.faq-item[open] summary { color: var(--accent); }
.faq-item p {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 64ch;
}
.faq-item p code {
  font-family: var(--mono);
  font-size: 12.5px;
  background: var(--bg);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--text);
  border: 1px solid var(--rule);
}

/* ─── CTA ─────────────────────────────────────────── */
.cta-section {
  background: var(--bg-tint);
  padding: 100px 0;
  border-top: 1px solid var(--rule);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-left { display: flex; flex-direction: column; }
.cta-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.cta-h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  text-wrap: balance;
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cta-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 44ch;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-ghost {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  padding: 12px 4px;
  transition: color 0.15s;
}
.cta-ghost:hover { color: var(--text); }

/* ─── FOOTER — DARK ───────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer-inner { display: flex; flex-direction: column; gap: 56px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  width: fit-content;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 32ch;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-hd {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.footer-badges { display: flex; gap: 8px; }
.fbadge {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.02em;
}

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-item.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-layout       { grid-template-columns: 1fr; gap: 56px; }
  .alt-layout        { grid-template-columns: 1fr; gap: 48px; }
  .alt-layout.alt-reverse { direction: ltr; }
  .trust-grid        { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid        { grid-template-columns: 1fr; }
  .stat              { border-right: none; border-bottom: 1px solid rgba(44,77,255,0.12); }
  .stat:last-child   { border-bottom: none; }
  .comp-panels       { grid-template-columns: 1fr; }
  .how-steps         { grid-template-columns: 1fr 1fr; }
  .fb-grid           { grid-template-columns: 1fr 1fr; }
  .fb-wide           { grid-column: span 2; }
  .fb-wide-layout    { grid-template-columns: 1fr; }
  .cases-grid        { grid-template-columns: 1fr; }
  .cases-header      { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .pricing-cards     { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-header    { flex-direction: column; align-items: flex-start; }
  .faq-layout        { grid-template-columns: 1fr; gap: 40px; }
  .faq-left          { position: static; }
  .footer-nav        { grid-template-columns: 1fr 1fr; }
  .mcp-layout        { grid-template-columns: 1fr; gap: 48px; }
  .cta-grid          { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .container         { padding: 0 22px; }
  .section,
  .alt-section,
  .how-section,
  .features-section,
  .integrations-section,
  .cases-section,
  .proof-section,
  .pricing-section,
  .faq-section,
  .comparison-section,
  .mcp-section       { padding: 80px 0; }
  .cta-section       { padding: 64px 0; }
  .nav-inner         { padding: 0 22px; height: 60px; }
  .nav-links         { display: none; }
  .nav-right         { display: none; }
  .hamburger         { display: flex; }
  .mobile-menu       { top: 60px; }
  .hero              { padding: 48px 0 72px; }
  .hero-h1           { font-size: clamp(36px, 9vw, 48px); }
  .hero-body         { font-size: 16px; }
  .how-steps         { grid-template-columns: 1fr; }
  .fb-grid           { grid-template-columns: 1fr; }
  .fb-wide           { grid-column: span 1; }
  .pricing-cards     { max-width: 100%; }
  .footer-nav        { grid-template-columns: 1fr; }
  .cta-h2            { font-size: 36px; }
  .frameworks-grid   { gap: 16px 24px; }
  .case-quote        { font-size: 17px; }
  .faq-item summary  { font-size: 15px; padding: 18px 0; }
  .stat              { padding: 24px; }
  .stat-num          { font-size: 32px; }
}
