/* ===================================================================
   Brief Landing Page — Light Theme
   Primary font: Inter | Brand font: Plus Jakarta Sans (nearest to Sohno)
   =================================================================== */

:root {
  --bg:           #ffffff;
  --surface:      #f7f8fa;
  --surface-2:    #eef0f4;
  --surface-3:    #e4e7ed;
  --border:       #e2e6ec;
  --border-hover: #c8cdd8;
  --text:         #0d1117;
  --text-2:       #4b5563;
  --text-muted:   #8b95a4;
  --accent:       #2563eb;
  --accent-dim:   rgba(37,99,235,0.08);
  --accent-hover: #1d4ed8;
  --accent-border:rgba(37,99,235,0.20);
  --btn-bg:       #0d1117;
  --btn-bg-hover: #1a2233;
  --btn-text:     #ffffff;
  --success: #059669;
  --error:   #dc2626;
  --font-head:  'Inter', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --font-brand: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono','Cascadia Code',ui-monospace,monospace;
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-full:9999px;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / .06);
  --shadow:    0 1px 3px rgb(0 0 0 / .08), 0 1px 2px rgb(0 0 0 / .05);
  --shadow-md: 0 4px 8px -2px rgb(0 0 0 / .10), 0 2px 4px -1px rgb(0 0 0 / .06);
  --shadow-lg: 0 10px 24px -4px rgb(0 0 0 / .12), 0 4px 8px -2px rgb(0 0 0 / .06);
  --shadow-xl: 0 20px 40px -8px rgb(0 0 0 / .14), 0 8px 16px -4px rgb(0 0 0 / .06);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 140ms ease;
  --t-med:  240ms ease;
}

/* --- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: var(--radius);
  font-family: var(--font-head); font-size: 14px; font-weight: 500; line-height: 1;
  cursor: pointer; white-space: nowrap; border: 1px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-dark { background: var(--btn-bg); color: var(--btn-text); border-color: var(--btn-bg); }
.btn-dark:hover { background: var(--btn-bg-hover); border-color: var(--btn-bg-hover); }
.btn-sm { padding: 8px 15px; font-size: 13px; }

/* --- Hover button ------------------------------------------------- */
.hover-btn {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 500; line-height: 1;
  color: var(--text); text-decoration: none;
  background: rgba(43, 55, 80, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  cursor: pointer; overflow: hidden;
  transition: color 0.15s;
}
.hover-btn::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none; z-index: 1;
  box-shadow:
    inset 0 0 0 1px rgba(170, 202, 255, 0.18),
    inset 0 0 16px 0 rgba(170, 202, 255, 0.08),
    inset 0 -3px 12px 0 rgba(170, 202, 255, 0.12),
    0 1px 3px 0 rgba(0, 0, 0, 0.40),
    0 4px 12px 0 rgba(0, 0, 0, 0.30);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-btn:active::before { transform: scale(0.975); }
.hover-btn:hover { color: var(--text); }
.hover-btn svg { flex-shrink: 0; }

/* Circle trail particles */
.hover-btn .hb-circle {
  position: absolute; width: 12px; height: 12px;
  border-radius: 50%; pointer-events: none; z-index: -1;
  filter: blur(8px);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hover-btn .hb-circle.fade-in { opacity: 0.6; }
.hover-btn .hb-circle.fade-out { opacity: 0; transition-duration: 1.2s; }

/* Sizes */
.hover-btn-sm { padding: 8px 16px; font-size: 13px; }
.hover-btn-lg { padding: 13px 26px; font-size: 15px; }

/* Nav download group */
.nav-downloads { display: flex; gap: 8px; }

/* Hero download group */
.hero-downloads { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* --- Sections ----------------------------------------------------- */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500; letter-spacing: -2px; line-height: 1.1;
  color: var(--text); margin-bottom: 56px;
}
.section-heading-center { text-align: center; }
.section-heading-right { text-align: right; }
.section-heading-sm { font-size: clamp(28px, 4vw, 44px); }
.section-subheading { font-size: 16px; color: var(--text-2); max-width: 480px; margin: 0 auto; line-height: 1.65; }

/* --- Compat badges ------------------------------------------------ */
.compat-label { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); }
.compat-logos { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.compat-badge {
  display: inline-block; font-size: 12px; font-weight: 500;
  color: var(--text-2); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 3px 9px;
}
.compat-badge-dim { color: var(--text-muted); }

/* === BETA BANNER ================================================== */
.beta-banner {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  animation: banner-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}
@keyframes banner-in {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.beta-banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.beta-banner-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.beta-banner-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  white-space: nowrap;
}
.beta-banner-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  white-space: nowrap;
}
.beta-banner-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.beta-banner-action:hover {
  background: rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.3);
}
.beta-banner-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.beta-banner-close:hover {
  color: var(--text);
  background: var(--surface-2);
}
@media (max-width: 520px) {
  .beta-banner {
    left: 16px;
    right: 16px;
    transform: none;
    bottom: 32px;
  }
  @keyframes banner-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .beta-banner-desc { display: none; }
}

/* === NAV ========================================================== */
.nav {
  position: relative;
  background: rgba(255, 255, 255, 0.90);
  border-bottom: none;
}
.nav::after {
  content: ''; display: block; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.nav-inner { display: flex; align-items: center; height: 58px; gap: 32px; }
.nav-brand { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; position: relative; z-index: 10; }
.nav-brand svg { color: var(--accent); flex-shrink: 0; }
.nav-brand-name {
  font-family: var(--font-brand);
  font-size: 22px; font-weight: 800; letter-spacing: -0.5px; color: var(--text);
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  position: relative; z-index: 10;
}
.nav-downloads {
  margin-left: auto;
  position: relative;
  z-index: 10;
}
.nav-downloads .hover-btn-sm {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.08), 0 0 20px -4px rgba(37,99,235,0.1);
}
.nav-links a { font-size: 13px; font-weight: 500; color: var(--text-2); transition: color var(--t-fast); }
.nav-links a:hover { color: var(--text); }

/* === HERO ========================================================= */
.hero {
  position: relative;
  padding: clamp(72px, 9vw, 110px) 0 0;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}
.hero .aurora-glow {
  top: -80px;
}

/* Aurora background lights
   Vanilla CSS port of the aurora-background React component.
   Uses repeating-linear-gradient stripes + blue aurora layer,
   animated via background-position shift over 60s. */
:root {
  --aurora-white: #ffffff;
  --aurora-transparent: transparent;
  --aurora-blue-500: #3b82f6;
  --aurora-blue-400: #60a5fa;
  --aurora-blue-300: #93c5fd;
  --aurora-indigo-300: #a5b4fc;
}
.aurora-glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 90%);
}
.aurora-glow::before,
.aurora-glow::after {
  content: '';
  position: absolute;
  inset: -10px;
  background-image:
    repeating-linear-gradient(
      100deg,
      var(--aurora-white) 0%, var(--aurora-white) 7%,
      var(--aurora-transparent) 10%, var(--aurora-transparent) 12%,
      var(--aurora-white) 16%
    ),
    repeating-linear-gradient(
      100deg,
      var(--aurora-blue-500) 10%, var(--aurora-indigo-300) 15%,
      var(--aurora-blue-300) 20%, var(--aurora-blue-400) 25%,
      var(--aurora-blue-500) 30%
    );
  background-size: 300% 200%;
  background-position: 50% 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
  animation: aurora 60s linear infinite;
}
.aurora-glow::after {
  background-image:
    repeating-linear-gradient(
      100deg,
      var(--aurora-white) 0%, var(--aurora-white) 7%,
      var(--aurora-transparent) 10%, var(--aurora-transparent) 12%,
      var(--aurora-white) 16%
    ),
    repeating-linear-gradient(
      100deg,
      var(--aurora-blue-500) 10%, var(--aurora-indigo-300) 15%,
      var(--aurora-blue-300) 20%, var(--aurora-blue-400) 25%,
      var(--aurora-blue-500) 30%
    );
  background-size: 200% 100%;
  background-attachment: fixed;
  mix-blend-mode: soft-light;
}
@keyframes aurora {
  from { background-position: 50% 50%, 50% 50%; }
  to   { background-position: 350% 50%, 350% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .aurora-glow::before,
  .aurora-glow::after { animation: none; }
}
.hero-animate {
  opacity: 0; transform: translateY(18px);
  animation: hero-in 0.7s var(--ease) forwards;
  animation-delay: var(--delay, 0ms);
}
@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }

.hero-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 760px; margin: 0 auto; padding-bottom: 56px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  background: rgba(255, 255, 255, 0.9); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 5px 14px;
  margin-bottom: 28px; box-shadow: var(--shadow-sm);
}
.hero-pill-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--success); animation: pulse 2s ease infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.82); }
}
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 500; letter-spacing: -2.5px; line-height: 1.06;
  color: var(--text); margin-bottom: 22px;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 17px); color: var(--text-2);
  line-height: 1.7; max-width: 560px; margin-bottom: 36px;
}
.hero-br { display: block; }

/* Compact waitlist box */
.hero-waitlist { width: 100%; max-width: 440px; margin-bottom: 28px; }
.hero-waitlist-form {
  display: flex;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.hero-waitlist-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12), var(--shadow-md);
}
.hero-waitlist-form input {
  flex: 1; min-width: 0; padding: 13px 16px; font-size: 14px;
  color: var(--text); background: transparent; border: none; outline: none;
  text-align: center;
}
.hero-waitlist-form input::placeholder { color: var(--text-muted); }
.btn-spinner { display: flex; align-items: center; justify-content: center; }
.spinner { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.waitlist-error { font-size: 12px; color: var(--error); margin-top: 8px; text-align: center; }
.waitlist-success {
  align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--success); margin-top: 10px;
}
.hero-compat { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Hero product preview window */
.hero-demo-preview { position: relative; width: 100%; max-width: 680px; margin: 0 auto; padding: 0 20px; }
.hero-demo-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to bottom, transparent, #ffffff 80%);
  z-index: 2; pointer-events: none;
}
.bm-hero {
  border-radius: 18px;
  padding: 18px 22px;
  font-size: 13px;
}
.bm-hiw {
  border-radius: 18px;
  padding: 22px 24px;
  font-size: 13px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 24px 64px rgba(0,0,0,0.50),
    0 8px 24px rgba(0,0,0,0.30);
}
.bm-hiw .bm-textarea {
  padding: 14px 16px; font-size: 14px; border-radius: 12px; margin-bottom: 14px;
}
.bm-hiw .bm-controls { gap: 8px; }
.bm-hiw .bm-dropdown { font-size: 12px; padding: 7px 12px; border-radius: 10px; }
.bm-hiw .bm-btn-primary { font-size: 12px; padding: 7px 16px; border-radius: 10px; }
.bm-hiw .bm-question { font-size: 14px; margin-bottom: 14px; }
.bm-hiw .bm-choices { gap: 8px; margin-bottom: 0; }
.bm-hiw .bm-choice { font-size: 12px; padding: 6px 16px; }
.bm-hiw .bm-thread-brief { padding: 12px 14px; border-radius: 12px; margin-bottom: 14px; }
.bm-hiw .bm-thread-brief p { font-size: 13px; line-height: 1.6; }
.bm-hiw .bm-thread-label { font-size: 10px; margin-bottom: 6px; }
.bm-hiw .bm-footer { gap: 8px; }
.bm-hiw .bm-btn-dismiss { font-size: 12px; padding: 7px 16px; border-radius: 10px; }
.bm-hiw .bm-btn-accept { font-size: 12px; padding: 7px 16px; border-radius: 10px; }

/* Chatbox mock (generic AI chat input) */
.hiw-chatbox {
  background: #1e1e22;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 24px 64px rgba(0,0,0,0.45),
    0 8px 24px rgba(0,0,0,0.25);
}
.hiw-chatbox-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.hiw-chatbox-cursor {
  width: 2px;
  height: 18px;
  background: rgba(255,255,255,0.50);
  border-radius: 1px;
  margin-left: 1px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hiw-chatbox-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  display: flex;
  align-items: center;
  gap: 4px;
}
.hiw-chatbox-hint kbd {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 11px;
  font-family: inherit;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.bm-hero .bm-thread-main {
  max-height: 120px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.hero-demo-window {
  background: #18181b; border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.10),
    0 24px 60px -12px rgba(0,0,0,.28),
    0 8px 24px -4px rgba(0,0,0,.14);
}
.hdw-titlebar {
  display: flex; align-items: center; gap: 10px; padding: 10px 16px;
  background: #111113; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hdw-dots { display: flex; gap: 5px; }
.hdw-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hdw-dots span:nth-child(1) { background: #ff5f57; }
.hdw-dots span:nth-child(2) { background: #ffbd2e; }
.hdw-dots span:nth-child(3) { background: #28ca42; }
.hdw-title {
  display: flex; align-items: center; gap: 5px; flex: 1;
  font-family: var(--font-brand); font-size: 12px; font-weight: 700; color: rgba(255,255,255,.45);
}
.hdw-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: #60a5fa; background: rgba(96,165,250,.10);
  border: 1px solid rgba(96,165,250,.22); border-radius: var(--radius-full); padding: 2px 9px;
}
.hdw-body { display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; }
.hdw-before { padding: 20px 22px; border-right: 1px solid rgba(255,255,255,.06); }
.hdw-divider { display: flex; flex-direction: column; align-items: center; padding: 20px 18px; gap: 8px; min-width: 110px; }
.hdw-divider-line { width: 1px; height: 28px; background: linear-gradient(to bottom, rgba(255,255,255,.10), transparent); }
.hdw-divider-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 10px; background: #ffffff; color: #0d1117;
  border-radius: var(--radius-full); font-size: 11px; font-weight: 700; white-space: nowrap;
}
.hdw-after { padding: 20px 22px; }
.hdw-lbl {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 8px;
}
.hdw-lbl-accent { color: #60a5fa; font-family: var(--font-brand); }
.hdw-before-text {
  font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,.55);
  line-height: 1.5; display: flex; align-items: flex-start; gap: 3px;
}
.hdw-cursor {
  display: inline-block; width: 2px; height: 1.1em;
  background: rgba(255,255,255,.5); margin-top: 2px; flex-shrink: 0;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hdw-after-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.90); margin-bottom: 12px; line-height: 1.4; }
.hdw-group { margin-bottom: 9px; }
.hdw-group:last-child { margin-bottom: 0; }
.hdw-group-lbl {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 4px;
}
.hdw-group ul { list-style: none; }
.hdw-group li {
  font-size: 12px; color: rgba(255,255,255,.50); line-height: 1.6;
  display: flex; gap: 7px; margin-bottom: 3px;
}
.hdw-group li::before { content: '—'; color: #60a5fa; flex-shrink: 0; }
.hdw-group code {
  font-family: var(--font-mono); font-size: 11px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10);
  border-radius: 3px; padding: 1px 4px; color: #93c5fd;
}

/* === MODES BENTO ================================================= */
.modes-section { padding: 96px 0 80px; }
.modes-heading {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500; letter-spacing: -2px; line-height: 1.1;
  color: var(--text); margin-bottom: 56px;
}
.modes-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
}
.modes-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.modes-card:hover {
  border-color: rgba(37,99,235,0.2);
  box-shadow: 0 0 40px -8px rgba(37,99,235,0.06), var(--shadow-lg);
}
.modes-card .bm {
  font-size: 11px;
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 12px 32px rgba(0,0,0,0.35);
}
.modes-card .bm-header { padding: 4px 6px; margin-bottom: 8px; border-radius: 8px; }
.modes-card .bm-textarea { padding: 8px 10px; font-size: 11px; margin-bottom: 8px; }
.modes-card .bm-controls { padding: 6px 8px; }
.modes-card .bm-dropdown { font-size: 10px; padding: 3px 8px; }
.modes-card .bm-btn-primary { font-size: 10px; padding: 4px 10px; }
.modes-card .bm-result { padding: 6px 8px; }
.modes-card .bm-result-header { margin-bottom: 6px; }
.modes-card .bm-section-label { font-size: 9px; }
.modes-card .bm-toggle span { font-size: 9px; padding: 2px 6px; }
.modes-card .bm-thread-you,
.modes-card .bm-thread-brief { padding: 4px 8px; margin-bottom: 4px; }
.modes-card .bm-thread-label { font-size: 8px; }
.modes-card .bm-thread-brief p { font-size: 10px; }
.modes-card .bm-footer { padding: 6px 8px; }
.modes-card .bm-btn-dismiss { font-size: 10px; padding: 3px 8px; }
.modes-card .bm-btn-accept { font-size: 10px; padding: 3px 10px; }
.modes-card .bm-refine { margin-top: 4px; padding: 4px 8px; }
.modes-card .bm-refine-input { font-size: 10px; }
.modes-card .bm-flyout { margin-bottom: 4px; }
.modes-card-lg {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}
.modes-card-body { padding: 36px 32px; }
.modes-card-title {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 600; letter-spacing: -0.5px;
  color: var(--text); margin-bottom: 8px;
}
.modes-card-desc {
  font-size: 14px; color: var(--text-2); line-height: 1.6;
}
.modes-card-lg .modes-card-mock {
  padding: 24px 24px 0 0;
  display: flex; align-items: flex-end; justify-content: flex-end;
}
.modes-card-lg .bm { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.modes-card-sm {
  padding: 28px 24px 0;
}
.modes-card-sm .modes-card-title { margin-bottom: 6px; }
.modes-card-sm .modes-card-desc { margin-bottom: 16px; font-size: 13px; }
.modes-card-sm .modes-card-mock { margin: 0 -4px; }
.modes-card-sm .bm { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }

/* Scroll-reveal */
.modes-card[data-animate] {
  opacity: 0; transform: translateY(24px) scale(0.98);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.modes-card[data-animate].in-view { opacity: 1; transform: translateY(0) scale(1); }
.modes-card[data-animate]:nth-child(2) { transition-delay: 80ms; }
.modes-card[data-animate]:nth-child(3) { transition-delay: 160ms; }
.modes-card[data-animate]:nth-child(4) { transition-delay: 240ms; }

/* ── Brief Mock (bm-*) — pixel-accurate card replica ──────────── */

.bm {
  font-family: 'Inter', system-ui, sans-serif;
  background: rgba(16, 16, 18, 0.98);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 24px 64px rgba(0,0,0,0.50),
    0 8px 24px rgba(0,0,0,0.30);
  font-size: 12px;
  color: rgba(255,255,255,0.92);
}

/* Header bar */
.bm-header {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 8px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.055);
  box-shadow: 0 1px 4px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
}
.bm-grip {
  display: grid; grid-template-columns: repeat(2, 3px); grid-template-rows: repeat(3, 3px);
  gap: 3px; opacity: 0.22;
}
.bm-grip span {
  display: block; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
}
.bm-logo { display: flex; align-items: center; gap: 5px; }
.bm-logo-text {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: #60A5FA;
}
.bm-tag {
  font-size: 9.5px; font-weight: 500;
  color: rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  padding: 2px 7px; border-radius: 100px;
}
.bm-tag-active {
  color: #60A5FA;
  background: rgba(96,165,250,0.10); border-color: rgba(96,165,250,0.25);
}
.bm-spacer { flex: 1; }
.bm-badge {
  font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #60A5FA; background: rgba(96,165,250,0.10); border: 1px solid rgba(96,165,250,0.25);
  padding: 2px 8px; border-radius: 100px;
}
.bm-badge-done {
  color: #4ADE80; background: rgba(74,222,128,0.09); border-color: rgba(74,222,128,0.22);
}
.bm-badge-thinking {
  color: rgba(96,165,250,0.50); background: rgba(96,165,250,0.05); border-color: rgba(96,165,250,0.12);
}
.bm-close {
  font-size: 10px; color: rgba(255,255,255,0.30); line-height: 1;
}

/* Input state */
.bm-textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 10px 12px;
  font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
}
.bm-controls {
  display: flex; align-items: center; gap: 6px;
}
.bm-dropdown {
  font-size: 10.5px; color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px; padding: 5px 9px;
}
.bm-dropdown strong {
  color: rgba(255,255,255,0.70); font-weight: 500;
}
.bm-btn-primary {
  font-size: 11px; font-weight: 600;
  color: #0d1117; background: #60A5FA;
  border-radius: 9px; padding: 5px 12px;
  margin-left: auto;
}

/* Result state */
.bm-result {
  background: rgba(255,255,255,0.018); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 9px; margin-bottom: 10px;
}
.bm-result-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 7px;
}
.bm-section-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.30);
}
.bm-toggle {
  display: flex; gap: 2px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 100px; padding: 2px; font-size: 9px; font-weight: 600;
}
.bm-toggle span {
  padding: 1px 7px; border-radius: 100px; color: rgba(255,255,255,0.30);
}
.bm-tog-active {
  background: rgba(96,165,250,0.10); color: #60A5FA !important;
}
.bm-thread-you {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px; padding: 8px 10px; margin-bottom: 3px;
}
.bm-thread-you p {
  font-size: 11px; line-height: 1.55; color: rgba(255,255,255,0.52);
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.bm-thread-brief {
  background: rgba(96,165,250,0.07); border: 1px solid rgba(96,165,250,0.14);
  border-radius: 9px; padding: 8px 10px; margin-bottom: 6px;
}
.bm-thread-brief p { font-size: 11px; line-height: 1.55; color: rgba(255,255,255,0.52); }
.bm-thread-main { color: rgba(255,255,255,0.88) !important; }
.bm-thread-label {
  display: flex; align-items: center; gap: 4px;
  font-size: 9px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.30); margin-bottom: 4px;
}
.bm-thread-label-accent { color: #60A5FA; }
.bm-refine {
  display: flex; gap: 5px; align-items: center;
}
.bm-refine-input {
  flex: 1;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px; padding: 5px 10px;
  font-size: 10.5px; color: rgba(255,255,255,0.18);
}
.bm-refine-send {
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 9px; font-size: 12px; color: rgba(255,255,255,0.52);
}
.bm-footer {
  display: flex; gap: 6px; justify-content: flex-end;
}
.bm-btn-dismiss {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.52);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 9px; padding: 5px 12px;
}
.bm-btn-accept {
  font-size: 11px; font-weight: 600;
  color: #0d1117; background: #4ADE80;
  border-radius: 9px; padding: 5px 12px;
}

/* Question state */
.bm-question {
  font-size: 12px; line-height: 1.55; color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
}
.bm-choices {
  display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px;
}
.bm-choice {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 100px; padding: 4px 12px;
  font-size: 11px; color: rgba(255,255,255,0.52);
}
.bm-choice-selected {
  background: rgba(96,165,250,0.10); border-color: rgba(96,165,250,0.25);
  color: #60A5FA;
}
.bm-hints {
  font-size: 10px; color: rgba(255,255,255,0.25);
}
.bm-hints kbd {
  display: inline-block;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 4px; padding: 1px 5px;
  font-size: 9.5px; font-family: inherit; color: rgba(255,255,255,0.40);
}
.bm-dot { opacity: 0.4; margin: 0 2px; }

/* Flyout dropdown (open state mock) */
.bm-dropdown-open {
  background: rgba(255,255,255,0.10);
  border-color: rgba(96,165,250,0.30);
  color: #60A5FA;
}
.bm-flyout {
  background: rgba(24,24,28,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 3px;
  display: flex; flex-direction: column; gap: 0;
  margin-top: 4px;
}
.bm-flyout-item {
  font-size: 10px; color: rgba(255,255,255,0.50);
  padding: 5px 8px; border-radius: 6px;
  display: flex; align-items: center; gap: 6px;
}
.bm-flyout-item:hover { background: rgba(255,255,255,0.04); }
.bm-flyout-active {
  background: rgba(96,165,250,0.08);
  color: #60A5FA;
}
.bm-flyout-desc {
  font-size: 9px; opacity: 0.45; margin-left: auto;
}

/* XML preview */
.bm-xml-preview {
  display: flex; flex-direction: column; gap: 1px;
  font-family: var(--font-mono); font-size: 10px; line-height: 1.55;
  padding: 6px 0;
}
.bm-xml {
  color: rgba(239,68,68,0.55); font-size: 9.5px;
}
.bm-xml-body {
  color: rgba(255,255,255,0.70);
  padding-left: 12px;
  font-family: var(--font-body);
  font-size: 10px;
}

/* Custom style form mock */
.bm-form {
  display: flex; flex-direction: column; gap: 10px;
  padding: 2px 0;
}
.bm-form-row {
  display: flex; flex-direction: column; gap: 3px;
}
.bm-form-label {
  font-size: 9px; color: rgba(255,255,255,0.30);
  text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
}
.bm-form-input {
  font-size: 11px; color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px; padding: 6px 9px;
}
.bm-form-pills {
  display: flex; gap: 4px;
}
.bm-form-pill {
  font-size: 10px; color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; padding: 3px 10px;
}
.bm-form-pill-active {
  background: rgba(96,165,250,0.08);
  border-color: rgba(96,165,250,0.20);
  color: #60A5FA;
}
.bm-form-actions {
  display: flex; justify-content: flex-end;
  padding-top: 2px;
}
.bm-form-actions .bm-btn-primary { font-size: 10px; padding: 4px 10px; }

@media (max-width: 768px) {
  .modes-grid { grid-template-columns: 1fr; }
  .modes-card-lg { grid-template-columns: 1fr; }
  .modes-card-lg .modes-card-mock { padding: 16px 16px 0; }
  .modes-heading br { display: none; }
}

/* === DEMO SECTION ================================================= */
.demo-section {
  background: var(--surface);
  border-top: none; border-bottom: none;
}
.demo-section::before {
  content: ''; display: block; height: 1px; margin: 0 auto; max-width: 1100px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.demo-layout { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: start; }
.demo-mode-list { display: flex; flex-direction: column; gap: 5px; }
.demo-mode-btn {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 11px 13px; border-radius: var(--radius-lg); border: 1px solid transparent;
  background: transparent; color: var(--text-2);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast); cursor: pointer;
}
.demo-mode-btn:hover { background: var(--bg); border-color: var(--border); color: var(--text); }
.demo-mode-btn.active { background: var(--btn-bg); border-color: var(--btn-bg); color: #ffffff; box-shadow: var(--shadow-md); }
.demo-mode-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.demo-mode-icon {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; flex-shrink: 0; border-radius: var(--radius);
  background: color-mix(in srgb, var(--mc) 12%, transparent); color: var(--mc);
}
.demo-mode-btn.active .demo-mode-icon { background: rgba(255,255,255,.12); color: #ffffff; }
.demo-mode-text { display: flex; flex-direction: column; gap: 2px; }
.demo-mode-name { font-size: 13px; font-weight: 600; line-height: 1.2; }
.demo-mode-desc { font-size: 11px; opacity: .65; line-height: 1.3; }
.demo-content { display: flex; flex-direction: column; gap: 16px; }
.demo-panels-wrap {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: start;
  transition: opacity .2s ease, transform .2s ease;
}
.demo-panels-wrap.switching { opacity: 0; transform: translateY(5px); }
.demo-panels-wrap.visible   { opacity: 1; transform: translateY(0); }

/* Dark panels represent the actual Brief popup */
.demo-panel {
  background: #18181b; border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 4px 16px -4px rgba(0,0,0,.18);
}
.demo-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: #111113; border-bottom: 1px solid rgba(255,255,255,.07);
}
.demo-dots { display: flex; gap: 5px; }
.demo-dots span { width: 10px; height: 10px; border-radius: 50%; }
.demo-dots span:nth-child(1) { background: #ff5f57; }
.demo-dots span:nth-child(2) { background: #ffbd2e; }
.demo-dots span:nth-child(3) { background: #28ca42; }
.demo-panel-label { font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.28); }
.demo-improved-badge {
  display: inline-flex; align-items: center; gap: 4px; font-family: var(--font-brand); font-size: 10px; font-weight: 700;
  color: #60a5fa; background: rgba(96,165,250,.10); border-radius: var(--radius-full); padding: 3px 8px;
}
.demo-panel-body { padding: 16px; min-height: 200px; }
.demo-after .demo-panel-body {
  max-height: 280px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.15) transparent;
}
.demo-after .demo-panel-body::-webkit-scrollbar { width: 5px; }
.demo-after .demo-panel-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 9999px; }
.demo-before .demo-panel-body { display: flex; align-items: flex-start; gap: 4px; }
.demo-before-text { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; flex: 1; }
.demo-cursor {
  display: inline-block; width: 2px; height: 1.1em;
  background: rgba(255,255,255,.5); margin-top: 2px; flex-shrink: 0;
  animation: blink 1s step-end infinite;
}
.demo-after-content { font-size: 13px; color: rgba(255,255,255,.85); line-height: 1.7; }
.demo-after-content .pt { font-weight: 600; font-size: 13px; margin-bottom: 10px; color: rgba(255,255,255,.92); }
.demo-after-content .pl {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-top: 10px; margin-bottom: 4px;
}
.demo-after-content ul { list-style: none; }
.demo-after-content li { display: flex; gap: 8px; font-size: 12px; color: rgba(255,255,255,.52); margin-bottom: 4px; }
.demo-after-content li::before { content: '--'; color: #60a5fa; flex-shrink: 0; }
.demo-after-content code {
  font-family: var(--font-mono); font-size: 11px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10);
  border-radius: 3px; padding: 1px 4px; color: #93c5fd;
}
.demo-divider { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 46px; gap: 8px; }
.demo-divider-pill {
  display: flex; align-items: center; gap: 4px; padding: 6px 10px;
  background: var(--btn-bg); color: #ffffff; border-radius: var(--radius);
  font-family: var(--font-brand); font-size: 11px; font-weight: 700; letter-spacing: .04em; white-space: nowrap;
}
.demo-divider-line { width: 1px; flex: 1; min-height: 80px; background: linear-gradient(to bottom, var(--border), transparent); }
.demo-copy-btn {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px;
  border-radius: var(--radius-sm); font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.35); background: transparent; border: 1px solid rgba(255,255,255,.10);
  cursor: pointer; transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.demo-copy-btn:hover { color: rgba(255,255,255,.8); background: rgba(255,255,255,.06); }
.demo-copy-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.demo-copy-btn .icon-check { display: none; color: #4ade80; }
.demo-copy-btn.copied { color: #4ade80; border-color: rgba(74,222,128,.25); }
.demo-copy-btn.copied .icon-copy { display: none; }
.demo-copy-btn.copied .icon-check { display: block; }
.demo-footnote { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }

/* Demo loading states */
.demo-shimmer-wrap { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.demo-sl {
  height: 10px; width: 100%; border-radius: 4px;
  background: linear-gradient(
    90deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.09) 35%,
    rgba(255,255,255,.14) 50%, rgba(255,255,255,.09) 65%, rgba(255,255,255,.04) 100%
  );
  background-size: 220% 100%;
  animation: demo-shimmer 1.6s ease-in-out infinite;
}
.demo-sl:nth-child(2) { animation-delay: -.26s; }
.demo-sl:nth-child(3) { animation-delay: -.52s; }
.demo-sl:nth-child(4) { animation-delay: -.18s; }
.demo-sl:nth-child(5) { animation-delay: -.44s; }
.demo-sl:nth-child(6) { animation-delay: -.70s; }
@keyframes demo-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.demo-thinking-lbl { font-size: 11px; font-weight: 500; letter-spacing: .04em; color: rgba(255,255,255,.28); margin-top: 12px; }
.dots span { animation: dot-pulse 1.4s ease-in-out infinite; opacity: 0; }
.dots span:nth-child(1) { animation-delay: 0s; }
.dots span:nth-child(2) { animation-delay: .22s; }
.dots span:nth-child(3) { animation-delay: .44s; }
@keyframes dot-pulse { 0%, 80%, 100% { opacity: 0; } 40% { opacity: 1; } }
.demo-reveal { animation: demo-reveal-in .38s var(--ease) both; }
@keyframes demo-reveal-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* === METHODOLOGY / CREDIBILITY ==================================== */
.method-section {
  padding: 80px 0;
}
.method-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.method-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 14px;
}
.method-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 32px;
}
.method-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.method-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.method-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
}
.method-label {
  font-size: 13px;
  color: var(--text-muted);
}
.method-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-hover);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .method-proof { gap: 20px; }
  .method-dot { display: none; }
  .method-num { font-size: 26px; }
}

/* === HOW IT WORKS ================================================= */
.hiw-section { background: var(--surface); border-top: none; border-bottom: none; }
.hiw-section::before {
  content: ''; display: block; height: 1px; margin: 0 auto; max-width: 1100px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hiw-step { display: flex; flex-direction: column; gap: 20px; }

/* Mockup card */
.hiw-mockup {
  border-radius: 16px; overflow: hidden;
}
.hiw-mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.hiw-mock-dots { display: flex; gap: 5px; }
.hiw-mock-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--surface-3);
}
.hiw-mock-badge {
  display: inline-flex; align-items: center; gap: 4px; margin-left: auto;
  font-family: var(--font-brand); font-size: 10px; font-weight: 700; color: var(--text-muted);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 2px 8px;
}
.hiw-mock-badge-accent { color: var(--success); border-color: rgba(5,150,105,.2); background: rgba(5,150,105,.06); }
.hiw-mock-body { padding: 18px 16px; min-height: 110px; }

/* Step 1 mockup — prompt input */
.hiw-mock-prompt-row { margin-bottom: 14px; }
.hiw-mock-prompt-label { display: block; font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.hiw-mock-prompt-text { font-size: 13px; color: var(--text); }
.hiw-mock-cursor {
  display: inline-block; width: 1px; height: 13px; background: var(--accent);
  margin-left: 1px; vertical-align: -1px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hiw-mock-kbd-hint {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--text-muted);
}
.hiw-mock-kbd-hint kbd {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 4px; padding: 1px 5px; color: var(--text);
}
.hiw-mock-kbd-label { font-size: 11px; color: var(--text-muted); margin-left: 2px; }

/* Step 2 mockup — shimmer */
.hiw-mock-body-shimmer { display: flex; flex-direction: column; gap: 8px; }
.hiw-shimmer-line {
  height: 9px; border-radius: 4px; width: 100%;
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 50%, var(--surface-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.hiw-mock-thinking {
  font-size: 11px; color: var(--text-muted); margin-top: 6px;
}
.hiw-dots span { animation: dotpulse 1.2s ease infinite; }
.hiw-dots span:nth-child(2) { animation-delay: .2s; }
.hiw-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dotpulse { 0%,80%,100%{opacity:.25} 40%{opacity:1} }

/* Step 2 mockup — mode picker */
.hiw-mock-body-picker { display: flex; flex-direction: column; gap: 10px; }
.hiw-picker-label {
  font-size: 9px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--text-muted);
}
.hiw-picker-options { display: flex; gap: 6px; }
.hiw-picker-opt {
  font-size: 11px; font-weight: 500; color: var(--text-muted);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 4px 10px;
  transition: all var(--t-fast);
}
.hiw-picker-opt-active {
  color: #fff; background: var(--accent);
  border-color: var(--accent); box-shadow: 0 1px 4px rgba(37,99,235,.2);
}
.hiw-picker-q {
  display: flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.05); border: 1px solid var(--accent-border);
  border-radius: var(--radius); padding: 8px 10px;
}
.hiw-picker-q-icon {
  flex-shrink: 0; width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: var(--accent);
  background: rgba(37,99,235,.1); border-radius: 50%;
}
.hiw-picker-q-text { font-size: 11px; color: var(--text-2); line-height: 1.4; }

/* Step 3 mockup — result */
.hiw-mock-body-result { display: flex; flex-direction: column; gap: 12px; }
.hiw-mock-result-title { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.4; }
.hiw-mock-result-group { display: flex; flex-direction: column; gap: 5px; }
.hiw-mock-result-lbl { font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); }
.hiw-mock-result-lines { display: flex; flex-direction: column; gap: 4px; }
.hiw-mock-rl { height: 7px; border-radius: 3px; width: 100%; background: var(--surface-2); }

/* Step body */
.hiw-step-body {
  display: flex; align-items: flex-start; gap: 12px; padding: 0 4px;
}
.hiw-step-num {
  flex-shrink: 0;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--text-muted); line-height: 1.5;
}
.hiw-step-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 5px; letter-spacing: -0.2px; }
.hiw-step-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.hiw-accent { color: var(--accent); font-weight: 500; }
.hiw-kbd {
  font-family: var(--font-mono); font-size: 11px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 4px; padding: 1px 5px; color: var(--text);
}

/* === PRODUCTS ===================================================== */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow var(--t-med), transform var(--t-med);
}
.product-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-2px); }
.product-card-accent { background: var(--bg); border-color: rgba(37,99,235,.18); }
.product-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-muted); background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 3px 10px; width: fit-content;
}
.product-badge-accent { color: var(--accent); background: var(--accent-dim); border-color: var(--accent-border); }
.product-title { font-family: var(--font-head); font-size: 26px; font-weight: 700; letter-spacing: -0.5px; color: var(--text); }
.product-desc { font-size: 15px; color: var(--text-2); line-height: 1.65; }
.product-desc kbd {
  display: inline; font-size: 12px; font-weight: 600; font-family: var(--font-head);
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1px 5px;
}
.product-compat { display: flex; flex-wrap: wrap; gap: 6px; }
.product-install-block { margin-top: 4px; }
.install-label { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.code-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 14px;
  font-family: var(--font-mono); font-size: 13px; color: var(--text);
}
.copy-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: var(--radius-sm);
  color: var(--text-muted); flex-shrink: 0;
  transition: color var(--t-fast), background var(--t-fast);
}
.copy-btn:hover { color: var(--text); background: var(--surface-3); }
.copy-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.copy-btn .icon-check { display: none; }
.copy-btn.copied .icon-copy { display: none; }
.copy-btn.copied .icon-check { display: block; color: var(--success); }
.kbdkey {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border); border-bottom-width: 2px;
  border-radius: var(--radius-sm); padding: 2px 8px;
  font-size: 12px; font-weight: 600; font-family: var(--font-head); color: var(--text);
}
.kbdplus { color: var(--text-muted); margin: 0 2px; font-size: 12px; }
.kbd-hint { margin-left: 10px; color: var(--text-muted); font-size: 11px; }
.product-features { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.product-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); }
.product-features li svg { color: var(--success); flex-shrink: 0; }

/* === PRICING ====================================================== */
.pricing-section { background: var(--surface); border-top: none; border-bottom: none; position: relative; }
.pricing-section::before {
  content: ''; display: block; height: 1px; margin: 0 auto; max-width: 1100px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--t-fast), box-shadow var(--t-med);
}
.pricing-card:hover { border-color: rgba(37,99,235,0.2); box-shadow: 0 0 32px -8px rgba(37,99,235,0.06), var(--shadow-lg); }
.pricing-card .pricing-features { margin-top: auto; }

/* Featured (Solo) card */
.pricing-card-featured {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 1px var(--accent-border), var(--shadow-lg);
  background: linear-gradient(180deg, rgba(37,99,235,.04) 0%, var(--bg) 60%);
}
.pricing-card-featured:hover {
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 0 0 1px rgba(37,99,235,.35), var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 3px 12px;
  white-space: nowrap;
}

.pricing-card-header { display: flex; flex-direction: column; gap: 4px; }
.pricing-tier-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
}
.pricing-tier-target {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}
.pricing-price-row { display: flex; align-items: baseline; gap: 3px; }
.pricing-price {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--text);
  font-family: var(--font-mono);
}
.pricing-period { font-size: 13px; color: var(--text-muted); }

/* CTA buttons */
.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
}
.pricing-btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.pricing-btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--border-hover);
}
.pricing-btn-accent {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  box-shadow: 0 1px 3px rgba(37,99,235,.25);
}
.pricing-btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
}

/* Feature list */
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.pricing-features li svg { flex-shrink: 0; color: var(--accent); }
.pricing-features-divider {
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  display: block !important;
}

/* === BEFORE / AFTER =============================================== */
.ba-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.ba-panel {
  padding: 40px 36px;
}
.ba-panel-before {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ba-panel-after {
  background: var(--bg);
}
.ba-panel-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.ba-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
}
.ba-item svg { flex-shrink: 0; margin-top: 3px; }
.ba-icon-x { color: var(--text-muted); opacity: 0.5; }
.ba-icon-check { color: var(--accent); }
.ba-panel-before .ba-item {
  color: var(--text-muted);
}
.ba-verdict {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.ba-panel-after .ba-verdict {
  color: var(--text);
}
.ba-single-prompt {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  padding: 24px;
  background: var(--surface-2);
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.ba-full-prompt {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 28px;
}
.ba-full-prompt p {
  margin-bottom: 12px;
}
.ba-full-prompt p:last-child {
  margin-bottom: 0;
}
.ba-full-prompt ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ba-full-prompt ul:last-child {
  margin-bottom: 0;
}
.ba-expand {
  border: none;
}
.ba-expand-toggle {
  list-style: none;
  cursor: pointer;
}
.ba-expand-toggle::-webkit-details-marker { display: none; }
.ba-expand-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 12px;
  transition: color 0.15s;
}
.ba-expand-label svg {
  transition: transform 0.2s ease;
}
.ba-expand[open] .ba-expand-label svg {
  transform: rotate(180deg);
}
.ba-expand[open] .ba-expand-label {
  margin-bottom: 4px;
}
.ba-preview p {
  margin-bottom: 0;
}
.ba-compare[data-animate] {
  opacity: 0; transform: translateY(20px) scale(0.98);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.ba-compare[data-animate].in-view { opacity: 1; transform: translateY(0) scale(1); }
@media (max-width: 768px) {
  .ba-compare { grid-template-columns: 1fr; }
  .ba-panel { padding: 28px 24px; }
}

/* === WHO IT'S FOR ================================================= */
.wif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wif-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.wif-card:hover {
  border-color: rgba(37,99,235,0.25);
  box-shadow: 0 0 32px -8px rgba(37,99,235,0.08), var(--shadow-md);
}
.wif-icon {
  display: none;
}
.wif-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.wif-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}
.wif-card[data-animate] {
  opacity: 0; transform: translateY(20px) scale(0.98);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.wif-card[data-animate].in-view { opacity: 1; transform: translateY(0) scale(1); }
.wif-card[data-animate]:nth-child(2) { transition-delay: 80ms; }
.wif-card[data-animate]:nth-child(3) { transition-delay: 160ms; }
@media (max-width: 768px) {
  .wif-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* === FAQ =========================================================== */
.faq-section {
  background: var(--surface);
  border-top: none;
  border-bottom: none;
  position: relative;
}
.faq-section::before {
  content: ''; display: block; height: 1px; margin: 0 auto; max-width: 1100px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.faq-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 32px;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.2px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  padding: 0 0 22px;
  max-width: 600px;
}

/* === CLOSING CTA / FOOTER ========================================= */
.cta-footer {
  background: var(--surface);
  padding: 80px 0 48px;
}
.cta-footer-inner {
  max-width: 720px;
}
.cta-footer-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.cta-footer-heading {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.3;
  color: var(--text);
}
.cta-footer-sub {
  color: var(--text-muted);
  font-weight: 400;
}
.cta-downloads {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: var(--radius-lg); }

.btn-primary {
  background: var(--accent);
  color: #0f0f10;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.9; }

.hero-cta { text-align: center; }
.hero-cta-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-2);
}

/* === PRICING PAGE (pp-*) ========================================== */

.pp-hero {
  padding: 80px 0 40px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(37, 99, 235, 0.10) 0%, transparent 70%),
    linear-gradient(180deg, #eef3fb 0%, #f5f8ff 40%, #fafbff 70%, #ffffff 100%);
}
.pp-heading {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 500; letter-spacing: -2px; line-height: 1.1;
  color: var(--text);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pp-icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: #111;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
  vertical-align: middle;
  transform: rotate(-6deg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pp-icon-wrap:hover { transform: rotate(0deg) scale(1.05); }
.pp-icon-wrap svg { display: block; }
.pp-sub {
  font-size: 16px; color: var(--text-2); line-height: 1.65;
  margin-bottom: 28px;
}

/* Cards section */
.pp-cards-section {
  padding: 40px 0 96px;
  background:
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}
.pp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pp-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px 24px;
  display: flex; flex-direction: column;
  transition: border-color var(--t-fast), box-shadow var(--t-med);
}
.pp-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}
.pp-card-featured {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 1px var(--accent-border), var(--shadow-lg);
  background: linear-gradient(180deg, rgba(37,99,235,.04) 0%, var(--bg) 60%);
}
.pp-card-featured:hover {
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 0 0 1px rgba(37,99,235,.35), var(--shadow-xl);
}
.pp-card-header {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 16px;
}
.pp-tier {
  font-size: 18px; font-weight: 700; letter-spacing: -0.3px; color: var(--text);
}
.pp-target {
  font-size: 13px; color: var(--text-2); margin-bottom: 8px;
}
.pp-price-row {
  display: flex; align-items: baseline; gap: 3px;
}
.pp-price {
  font-family: var(--font-head);
  font-size: 42px; font-weight: 700; letter-spacing: -1.5px;
  color: var(--text);
}
.pp-period {
  font-size: 14px; color: var(--text-muted); font-weight: 500;
}

/* CTA buttons */
.pp-cta {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%;
  padding: 11px 18px;
  border-radius: var(--radius-lg);
  font-family: var(--font-head); font-size: 14px; font-weight: 600; line-height: 1;
  text-decoration: none; text-align: center;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  margin-bottom: 16px;
}
.pp-cta-outline {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.pp-cta-outline:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}
.pp-cta-chevron { font-size: 10px; opacity: 0.4; }
.pp-cta-dark {
  background: var(--btn-bg); border: 1px solid var(--btn-bg);
  color: var(--btn-text);
}
.pp-cta-dark:hover { background: var(--btn-bg-hover); }

/* Dual download buttons */
.pp-cta-pair {
  display: flex; gap: 8px;
  margin-bottom: 12px;
}
.pp-cta-pair .pp-cta {
  flex: 1; margin-bottom: 0;
  padding: 10px 12px; font-size: 13px;
}

.pp-card-note {
  font-size: 13px; color: var(--text-2);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pp-features-header {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--text-2); margin-bottom: 10px;
}
.pp-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-top: auto;
}
.pp-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text); line-height: 1.4;
}
.pp-features li svg { flex-shrink: 0; }

/* Active nav link */
.nav-link-active { color: var(--text) !important; }

@media (max-width: 900px) {
  .pp-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* === TERMS OF SERVICE ============================================= */
.tos-content { padding: 0 0 96px; }
.tos-body { max-width: 720px; margin: 0 auto; }
.tos-body h2 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 600; color: var(--text);
  margin: 40px 0 12px; letter-spacing: -0.3px;
}
.tos-body h2:first-child { margin-top: 0; }
.tos-body p { font-size: 15px; line-height: 1.7; color: var(--text-2); margin-bottom: 12px; }
.tos-body ul { padding-left: 20px; margin-bottom: 12px; }
.tos-body li { font-size: 15px; line-height: 1.7; color: var(--text-2); margin-bottom: 4px; }
.tos-body a { color: var(--accent); text-decoration: none; }
.tos-body a:hover { text-decoration: underline; }

/* === FOOTER (shared) ============================================= */
.footer-brand { text-align: left; }
.footer-logo { font-family: var(--font-brand); font-weight: 700; font-size: 16px; color: var(--text); }
.footer-tagline { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a { font-size: 13px; color: var(--text-2); text-decoration: none; transition: color var(--t-fast); }
.footer-nav a:hover { color: var(--text); }

/* === FOOTER ======================================================= */
.footer { background: var(--surface); padding: 24px 0; }
.footer-inner { display: flex; align-items: center; justify-content: center; gap: 40px; }
.footer-legal { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

/* === SCROLL ANIMATIONS =========================================== */
[data-animate] {
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE =================================================== */
@media (max-width: 1024px) {
  .hiw-steps { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { gap: 14px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
}
@media (max-width: 768px) {
  .hdw-body { grid-template-columns: 1fr; }
  .hdw-before { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .hdw-divider { flex-direction: row; padding: 12px 22px; gap: 12px; }
  .hdw-divider-line { width: 32px; height: 1px; flex: none; }
  .hiw-steps { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 640px) {
  .demo-panels-wrap { grid-template-columns: 1fr; }
  .demo-divider { flex-direction: row; padding-top: 0; justify-content: center; }
  .demo-divider-line { display: none; }
  .demo-mode-list { grid-template-columns: repeat(2, 1fr); }
  .hero-br { display: inline; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .hero { padding: clamp(56px, 8vw, 80px) 0 0; }
  .hero-heading { letter-spacing: -1.5px; }
  .hero-waitlist { max-width: 100%; }
  .product-card { padding: 24px; }
  .demo-mode-list { grid-template-columns: 1fr; }
}
