/* ═══════════════════════════════════════════════════════════════════════
   OPTITECHAUTOMATION — Marketing Site Styles
   Token-driven · Mobile-first · Premium
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* Brand — White → Violet palette (Tailwind Violet, AAA contrast at 700+ on white) */
  /* Conservative B2B SaaS positioning — Linear / Stripe / Vercel territory, not Twitch/Discord */
  --brand-50:  #F5F3FF;  /* soft section bg tint */
  --brand-100: #EDE9FE;  /* card surfaces, hover states */
  --brand-200: #DDD6FE;  /* subtle borders, badges */
  --brand-300: #C4B5FD;  /* decorative accents */
  --brand-400: #A78BFA;  /* illustrations only */
  --brand-500: #8B5CF6;  /* mid step */
  --brand-600: #7C3AED;  /* secondary CTA, links */
  --brand-700: #6D28D9;  /* PRIMARY brand · CTAs · 7.5:1 on warm white */
  --brand-800: #5B21B6;  /* hover / pressed */
  --brand-900: #4C1D95;  /* deep accents, display headings */

  /* Violet accent — kept for compatibility with existing component rules */
  --violet-300: #C4B5FD;
  --violet-400: #A78BFA;
  --violet-500: #8B5CF6;
  --violet-600: #7C3AED;
  --violet-700: #6D28D9;

  /* Grow (worker green) */
  --grow-300: hsl(140, 60%, 65%);
  --grow-500: hsl(140, 65%, 45%);
  --grow-600: hsl(140, 70%, 36%);
  --grow-700: hsl(140, 75%, 28%);

  /* Ink scale */
  --ink-50:  #FAFAF9;
  --ink-100: #F5F5F4;
  --ink-200: #E7E5E4;
  --ink-300: #D6D3D1;
  --ink-400: #A8A29E;
  --ink-500: #78716C;
  --ink-600: #57534E;
  --ink-700: #44403C;
  --ink-800: #292524;
  --ink-900: #1C1917;
  --ink-950: #0A0A0A;

  /* Status */
  --green-500: #10B981;
  --red-500:   #EF4444;
  --amber-500: #F59E0B;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;

  /* Shadow */
  --shadow-soft: 0 1px 2px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 6px rgba(0,0,0,0.05), 0 12px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 24px rgba(0,0,0,0.08), 0 24px 48px rgba(0,0,0,0.12);
  --shadow-xl:   0 24px 48px rgba(0,0,0,0.12), 0 48px 96px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 24px rgba(109, 40, 217, 0.30);

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;
  --r-full: 9999px;

  /* Container */
  --container: 1280px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--ink-900);
  background: var(--ink-50);
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.display { font-family: var(--font-display); letter-spacing: -0.02em; font-weight: 700; }
.italic { font-style: italic; font-weight: 600; }
.tabular { font-variant-numeric: tabular-nums; }
.gradient-text {
  background: linear-gradient(135deg, var(--brand-600), var(--violet-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ═════ ANNOUNCEMENT BAR ═════ */
.ann-bar {
  background: linear-gradient(90deg, var(--brand-600), var(--violet-600));
  color: white;
  font-size: var(--text-sm);
  position: relative;
  overflow: hidden;
}
.ann-bar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.5;
}
.ann-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  min-height: 36px;
}
.ann-dot { width: 6px; height: 6px; border-radius: 50%; background: white; box-shadow: 0 0 8px rgba(255,255,255,0.8); animation: pulse 2s infinite; }
.ann-arrow { font-weight: 700; opacity: 0.7; }
.ann-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: white; font-size: 18px; line-height: 1; padding: 4px 8px; opacity: 0.7;
  border-radius: var(--r-sm); transition: opacity 0.15s, background 0.15s;
}
.ann-close:hover { opacity: 1; background: rgba(255,255,255,0.15); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ═════ STICKY NAV ═════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 249, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav-scrolled {
  border-bottom-color: var(--ink-200);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-500), var(--violet-500));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.brand-mark-inner {
  width: 12px; height: 12px;
  border-radius: 3px;
  background: white;
  transform: rotate(45deg);
}
.brand-text { display: flex; gap: 4px; font-size: var(--text-base); letter-spacing: -0.01em; }
.brand-bold { font-weight: 700; color: var(--ink-900); }
.brand-light { font-weight: 400; color: var(--ink-600); }
.nav-links { display: none; gap: 28px; font-size: var(--text-sm); font-weight: 500; color: var(--ink-700); }
.nav-links a { position: relative; transition: color 0.15s; }
.nav-links a:hover { color: var(--brand-600); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--brand-500); transform: scaleX(0);
  transition: transform 0.18s ease-out; transform-origin: left;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-phone {
  width: 36px; height: 36px;
  display: none; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  color: var(--ink-600); border: 1px solid var(--ink-200);
  transition: all 0.15s;
}
.nav-phone:hover { color: var(--brand-600); border-color: var(--brand-300); }
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-phone { display: flex; }
  .nav-inner { height: 60px; padding: 0 24px; }
}
@media (min-width: 1024px) { .nav-inner { padding: 0 32px; } }

/* ═════ BUTTONS ═════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600;
  border-radius: var(--r-md);
  transition: transform 0.15s ease-out, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.btn:active { transform: scale(0.98); }
.btn-sm { height: 36px; padding: 0 14px; font-size: var(--text-sm); }
.btn-lg { height: 56px; padding: 0 24px; font-size: var(--text-base); border-radius: var(--r-lg); }
.btn-xl { height: 64px; padding: 0 32px; font-size: var(--text-lg); border-radius: var(--r-lg); }
.btn-block { width: 100%; justify-content: center; height: 48px; padding: 0 16px; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  color: white;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(37,99,235,0.3) inset;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37,99,235,0.4) inset; }
.btn-glow { box-shadow: var(--shadow-md), 0 0 32px rgba(37,99,235,0.4); }

.btn-outline {
  background: white; color: var(--ink-900);
  border: 1px solid var(--ink-300);
}
.btn-outline:hover { border-color: var(--brand-500); color: var(--brand-600); transform: translateY(-1px); }

.btn-light { background: white; color: var(--ink-900); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn-divider { opacity: 0.5; font-weight: 400; }
.btn-tabular { font-variant-numeric: tabular-nums; opacity: 0.92; font-weight: 500; }
.btn-arrow { transition: transform 0.18s ease-out; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ═════ HERO ═════ */
.hero {
  position: relative;
  padding: 56px 16px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(139, 92, 246, 0.12), transparent 60%),
    radial-gradient(600px 320px at 0% 10%, rgba(245, 158, 11, 0.08), transparent 60%),
    radial-gradient(900px 500px at 50% 50%, rgba(37, 99, 235, 0.10), transparent 60%),
    linear-gradient(180deg, var(--ink-50) 0%, white 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(28, 25, 23, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-700);
  background: var(--brand-50);
  padding: 6px 12px;
  border-radius: var(--r-full);
  border: 1px solid var(--brand-100);
  margin-bottom: 20px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-500); animation: pulse 2s infinite; }

.hero-h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 6.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ink-900);
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-squiggle-wrap {
  position: relative; display: inline-block;
  color: var(--brand-600);
}
.hero-squiggle {
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  width: 100%;
  height: 0.4em;
  color: var(--violet-500);
  opacity: 0.85;
}

.hero-h2 {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--ink-700);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 56ch;
  text-wrap: pretty;
}
.hero-h2 strong { color: var(--ink-900); font-weight: 600; }
@media (min-width: 768px) { .hero-h2 { font-size: var(--text-xl); } }

.hero-pills {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-pills li {
  font-size: var(--text-xs); font-weight: 500;
  color: var(--ink-700);
  background: white;
  border: 1px solid var(--ink-200);
  padding: 6px 12px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-soft);
}

.hero-fineprint {
  font-size: var(--text-xs);
  color: var(--ink-600);
  margin-top: 12px;
  max-width: 50ch;
}

.hero-preview-col {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

@media (min-width: 1024px) {
  .hero { padding: 80px 32px 120px; }
  .hero-inner { grid-template-columns: 1.05fr 1fr; gap: 64px; }
  .hero-pills { gap: 8px; }
  .hero-pills li { font-size: var(--text-sm); padding: 7px 14px; }
}

/* ═════ EMBEDDED PREVIEW ═════ */
.preview-shell {
  width: 100%;
  max-width: 540px;
  display: flex; flex-direction: column;
  gap: 12px;
  user-select: none;
}
.preview-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--ink-100);
  border-radius: var(--r-lg);
  align-self: flex-start;
  position: relative;
}
.preview-tab {
  padding: 7px 16px;
  font-size: var(--text-sm); font-weight: 600;
  color: var(--ink-600);
  border-radius: var(--r-md);
  transition: all 0.18s;
}
.preview-tab.active {
  background: white;
  color: var(--ink-900);
  box-shadow: var(--shadow-soft);
}
.preview-pause-pill {
  margin-left: auto;
  align-self: center;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--ink-500);
  font-family: var(--font-mono);
  padding: 4px 10px;
  background: white;
  border-radius: var(--r-full);
  border: 1px solid var(--ink-200);
}
.preview-device {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--ink-200);
  position: relative;
}
.preview-device::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent 8%);
  opacity: 0.6;
}
.preview-device-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--ink-100);
  border-bottom: 1px solid var(--ink-200);
}
.preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.preview-dot.red { background: #FF5F57; }
.preview-dot.amber { background: #FEBC2E; }
.preview-dot.green { background: #28C940; }
.preview-url {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-500);
  background: white;
  padding: 3px 10px;
  border-radius: var(--r-md);
  flex: 1;
  text-align: center;
}
.preview-screen {
  height: 460px;
  overflow: hidden;
  position: relative;
  background: white;
}

.preview-switcher {
  display: flex; align-items: center; gap: 8px;
  background: white;
  padding: 8px 10px;
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-soft);
}
.biz-arrow {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  font-size: 18px;
  color: var(--ink-600);
  transition: all 0.15s;
}
.biz-arrow:hover { background: var(--ink-100); color: var(--ink-900); }
.biz-chip {
  flex: 1;
  display: flex; align-items: center; gap: 10px;
}
.biz-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px;
  flex-shrink: 0;
}
.biz-name { font-size: var(--text-sm); font-weight: 700; color: var(--ink-900); line-height: 1.2; }
.biz-trade { font-size: var(--text-xs); color: var(--ink-500); }
.preview-dots-row {
  display: flex; gap: 6px;
  justify-content: center;
}
.preview-dot-mini {
  width: 24px; height: 3px;
  background: var(--ink-200);
  border-radius: var(--r-full);
  transition: background 0.18s;
}
.preview-dot-mini.on { background: var(--brand-500); }

/* PREVIEW: PUBLIC tab */
.pp-root { font-family: var(--font-sans); height: 100%; display: flex; flex-direction: column; }
.pp-topbar {
  padding: 10px 14px;
  color: white;
  display: flex; align-items: center; justify-content: space-between;
  font-size: var(--text-xs);
}
.pp-logo { font-weight: 700; font-size: var(--text-sm); }
.pp-nav-text { opacity: 0.8; font-size: 10px; }
.pp-hero {
  padding: 14px 14px 10px;
  background: linear-gradient(180deg, var(--demo-brand-soft, rgba(37,99,235,0.06)), white);
}
.pp-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 6px; }
.pp-h1 { font-size: 18px; line-height: 1.15; font-weight: 700; color: var(--ink-900); margin-bottom: 6px; letter-spacing: -0.01em; }
.pp-sub { font-size: 11px; color: var(--ink-600); }
.pp-cal {
  margin: 12px 14px;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  overflow: hidden;
}
.pp-cal-hdr, .pp-cal-row {
  display: grid;
  grid-template-columns: 38px repeat(4, 1fr);
  font-size: 10px;
}
.pp-cal-hdr {
  background: var(--ink-50);
  border-bottom: 1px solid var(--ink-200);
}
.pp-cal-hdr > div {
  padding: 6px 4px;
  text-align: center;
  font-weight: 700;
  color: var(--ink-700);
  border-right: 1px solid var(--ink-200);
}
.pp-cal-hdr > div:nth-child(1) { content: ''; }
.pp-cal-hdr > div:last-child, .pp-cal-row > div:last-child { border-right: 0; }
.pp-cal-row { border-bottom: 1px solid var(--ink-200); }
.pp-cal-row:last-child { border-bottom: 0; }
.pp-cal-time { padding: 7px 4px; text-align: center; color: var(--ink-500); font-size: 9px; font-family: var(--font-mono); border-right: 1px solid var(--ink-200); display: flex; align-items: center; justify-content: center; }
.pp-slot {
  padding: 5px 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  border-right: 1px solid var(--ink-200);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.pp-slot-g { background: rgba(16, 185, 129, 0.12); color: #047857; }
.pp-slot-r { background: rgba(239, 68, 68, 0.10); color: #B91C1C; }
.pp-slot-a { background: rgba(245, 158, 11, 0.14); color: #B45309; animation: amber-flash 1.6s infinite; }
@keyframes amber-flash { 0%, 100% { box-shadow: inset 0 0 0 1px rgba(245,158,11,0.3); } 50% { box-shadow: inset 0 0 0 1px rgba(245,158,11,0.7); } }
.pp-cta-row { padding: 0 14px 14px; margin-top: auto; }
.pp-cta {
  width: 100%; height: 38px;
  border-radius: var(--r-md);
  color: white;
  font-size: var(--text-sm); font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* PREVIEW: OWNER tab */
.op-root { font-family: var(--font-sans); height: 100%; display: flex; flex-direction: column; background: var(--ink-50); }
.op-topbar {
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--ink-900), var(--ink-800));
  color: white;
  display: flex; align-items: center; justify-content: space-between;
  font-size: var(--text-xs);
}
.op-logo { font-weight: 700; }
.op-biz-name { opacity: 0.7; font-size: 10px; }
.op-greeting { padding: 12px 14px 8px; }
.op-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-500); }
.op-title { font-family: var(--font-display); font-size: 18px; color: var(--ink-900); }
.op-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 0 14px; margin-bottom: 10px; }
.op-kpi-card {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  padding: 8px 8px 6px;
}
.op-kpi-label { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-500); margin-bottom: 2px; }
.op-kpi-val { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--ink-900); line-height: 1; margin-bottom: 2px; }
.op-kpi-sub { font-size: 9px; font-weight: 700; }
.op-kpi-sub-pos { color: var(--grow-600); }
.op-kpi-sub-warn { color: var(--amber-500); }
.op-kpi-sub-neutral { color: var(--ink-500); }
.op-spark-card {
  margin: 0 14px 10px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  padding: 10px 12px;
}
.op-spark-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-500); margin-bottom: 6px; }
.op-spark-svg { width: 100%; height: 36px; }
.op-workers {
  margin: 0 14px 14px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  padding: 10px 12px;
}
.op-workers-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-500); margin-bottom: 8px; }
.op-worker-row { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 11px; }
.op-worker-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.op-dot-available { background: var(--green-500); box-shadow: 0 0 6px var(--green-500); }
.op-dot-busy { background: var(--amber-500); }
.op-dot-off { background: var(--ink-300); }
.op-worker-name { font-weight: 700; color: var(--ink-900); flex: 1; }
.op-worker-type { font-size: 9px; color: var(--ink-500); }

/* PREVIEW: WORKER tab */
.wp-root { background: linear-gradient(180deg, var(--ink-100), var(--ink-200)); height: 100%; display: flex; align-items: center; justify-content: center; padding: 16px; }
.wp-phone {
  width: 200px; height: 410px;
  background: var(--ink-900);
  border-radius: 28px;
  padding: 6px;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.wp-phone-notch {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 14px;
  background: var(--ink-900);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 2;
}
.wp-phone-screen {
  background: white;
  width: 100%; height: 100%;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.wp-status-bar {
  display: flex; justify-content: space-between;
  padding: 4px 16px 2px;
  font-size: 9px; font-weight: 700;
  color: var(--ink-900);
}
.wp-app-hdr {
  padding: 16px 14px 14px;
  color: white;
}
.wp-online-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.18);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 9px; font-weight: 600;
  margin-bottom: 10px;
}
.wp-online-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 6px var(--green-500); }
.wp-greeting { font-family: var(--font-display); font-size: 18px; font-weight: 600; line-height: 1.1; }
.wp-job-card {
  margin: 12px 12px 10px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  padding: 12px;
  box-shadow: var(--shadow-soft);
}
.wp-job-time { font-family: var(--font-mono); font-size: 11px; font-weight: 700; margin-bottom: 4px; }
.wp-job-customer { font-size: 14px; font-weight: 700; color: var(--ink-900); }
.wp-job-addr { font-size: 11px; color: var(--ink-600); margin: 2px 0 6px; }
.wp-job-type { font-size: 11px; color: var(--ink-700); }
.wp-job-divider { height: 1px; background: var(--ink-200); margin: 10px 0; }
.wp-otw-btn {
  width: 100%; height: 36px;
  border-radius: var(--r-md);
  color: white;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.wp-job-card-mini {
  margin: 0 12px 10px;
  background: var(--ink-50);
  border-radius: var(--r-md);
  padding: 8px 10px;
  border-left: 3px solid var(--ink-300);
}
.wp-job-time-mini { font-family: var(--font-mono); font-size: 9px; font-weight: 700; color: var(--ink-500); }
.wp-job-type-mini { font-size: 11px; color: var(--ink-700); margin-top: 2px; }
.wp-nav {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-around;
  padding: 8px 0 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--ink-200);
  font-size: 10px;
  color: var(--ink-500);
}

/* ═════ TRUST TICKER ═════ */
.ticker-wrap {
  background: white;
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, white, transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(-90deg, white, transparent); }
.ticker-track {
  display: flex; gap: 16px;
  width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--ink-700);
  flex-shrink: 0;
  transition: all 0.2s;
}
.ticker-pill:hover { background: white; border-color: var(--pill-c); color: var(--pill-c); }
.ticker-pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pill-c); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═════ SECTION SHELL ═════ */
.section { padding: 80px 16px; position: relative; }
.section-tinted { background: linear-gradient(180deg, white, var(--ink-50)); }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-500);
  margin-bottom: 16px;
}
.section-h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink-900);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-sub {
  font-size: var(--text-lg);
  color: var(--ink-600);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.55;
  text-wrap: pretty;
}
@media (min-width: 768px) { .section { padding: 112px 32px; } }
@media (min-width: 1280px) { .section { padding: 144px 32px; } }

/* ═════ TRADES ═════ */
.trades-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .trades-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trades-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

.trade-card {
  position: relative;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: all 0.2s ease-out;
  cursor: default;
  overflow: hidden;
}
.trade-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c, var(--brand-500)), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.trade-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.trade-card:hover::before { opacity: 0.05; }
.trade-card:hover .trade-arrow { transform: translateX(4px); opacity: 1; }
.trade-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 70%, white));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--c) 30%, transparent);
}
.trade-name { font-size: var(--text-lg); font-weight: 600; color: var(--ink-900); margin-bottom: 6px; }
.trade-desc { font-size: var(--text-sm); color: var(--ink-600); line-height: 1.5; }
.trade-arrow {
  position: absolute; top: 24px; right: 24px;
  font-size: 20px;
  color: var(--c);
  opacity: 0;
  transition: all 0.2s;
}

/* ═════ HOW IT WORKS ═════ */
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
}
@media (min-width: 1024px) { .how-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.how-card {
  position: relative;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all 0.2s;
}
.how-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.how-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  font-style: italic;
  background: linear-gradient(135deg, var(--brand-600), var(--violet-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.9;
  margin-bottom: 12px;
}
.how-day {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brand-700);
  background: var(--brand-50);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.how-title { font-size: var(--text-xl); font-weight: 600; color: var(--ink-900); margin-bottom: 8px; letter-spacing: -0.015em; }
.how-body { font-size: var(--text-base); color: var(--ink-600); line-height: 1.55; }
.how-connect {
  position: absolute;
  top: 50%; right: -16px;
  transform: translateY(-50%);
  display: none;
  font-size: 22px;
  color: var(--brand-500);
  z-index: 2;
}
@media (min-width: 1024px) { .how-connect { display: block; } }

/* ═════ PLEDGE ═════ */
.pledge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .pledge-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pledge-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.pledge-card {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-xl);
  padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: all 0.18s;
}
.pledge-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }
.pledge-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.pledge-text { font-size: var(--text-base); color: var(--ink-800); line-height: 1.5; font-weight: 500; }

.pledge-rose .pledge-icon { background: hsl(350, 90%, 95%); color: hsl(350, 70%, 45%); }
.pledge-blue .pledge-icon { background: var(--brand-50); color: var(--brand-700); }
.pledge-violet .pledge-icon { background: hsl(270, 80%, 96%); color: var(--violet-600); }
.pledge-amber .pledge-icon { background: hsl(38, 92%, 95%); color: hsl(38, 80%, 38%); }
.pledge-green .pledge-icon { background: hsl(140, 65%, 95%); color: var(--grow-600); }
.pledge-gradient .pledge-icon { background: linear-gradient(135deg, var(--brand-500), var(--violet-500)); color: white; box-shadow: 0 4px 12px rgba(37,99,235,0.3); }

/* ═════ DEMO BLOCK ═════ */
.section-demo {
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(139,92,246,0.08), transparent 70%),
    linear-gradient(180deg, white, var(--ink-50));
}
.demo-inner { text-align: center; }
.demo-eyebrow { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.06em; color: var(--ink-500); margin-bottom: 16px; }
.demo-inner .btn { margin: 32px 0 16px; }
.demo-fine { font-size: var(--text-sm); color: var(--ink-500); max-width: 50ch; margin: 0 auto; }

/* ═════ PRICING ═════ */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) { .price-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
/* 4-tier grid: stacked on mobile, 2×2 on tablets, 4-across only at desktop+ for breathing room */
.price-grid-4 { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) and (max-width: 1199px) { .price-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: stretch; } }
@media (min-width: 1200px) { .price-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: stretch; } }

/* At 4-across desktop, collapsed cards tighten typography to keep price + setup readable */
@media (min-width: 1200px) {
  .price-grid-4 .price-card:not(.price-active) .price-amount { font-size: var(--text-3xl); }
  .price-grid-4 .price-card:not(.price-active) .price-cycle { display: none; }
  .price-grid-4 .price-card:not(.price-active) .price-setup { font-size: 10px; }
  .price-grid-4 .price-card { padding: 22px 20px; }
  .price-grid-4 .price-card.price-active { padding: 26px 22px; }
}

/* Expand-on-touch: collapsed cards shrink, active card scales up + centers focus */
.price-grid-4 .price-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s, opacity 0.3s;
  cursor: pointer;
}
.price-grid-4 .price-card .price-body { transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s; overflow: hidden; }
@media (min-width: 768px) {
  .price-grid-4 .price-card .price-body { max-height: 0; opacity: 0.55; }
  .price-grid-4 .price-card.price-active .price-body { max-height: 600px; opacity: 1; }
  .price-grid-4 .price-card.price-active {
    transform: translateY(-8px) scale(1.04);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--brand-500);
    z-index: 2;
  }
  .price-grid-4 .price-card:not(.price-active) { opacity: 0.78; }
  .price-grid-4 .price-card:not(.price-active):hover { opacity: 1; }
}
@media (max-width: 767px) {
  .price-grid-4 .price-card .price-body { max-height: 0; opacity: 0; }
  .price-grid-4 .price-card.price-active .price-body { max-height: 800px; opacity: 1; }
}

/* LOCAL / MULTI-LOCAL kind chip */
.price-kind {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  padding: 4px 8px; border-radius: 4px;
}
.price-kind-local { background: hsl(220, 80%, 96%); color: var(--brand-700); border: 1px solid hsl(220, 80%, 88%); }
.price-kind-multi { background: linear-gradient(135deg, hsl(38, 92%, 96%), hsl(270, 75%, 96%)); color: var(--ink-800); border: 1px solid hsl(38, 92%, 85%); }

.price-perkcount {
  font-size: var(--text-xs);
  color: var(--ink-600);
  font-family: var(--font-mono);
  padding: 8px 10px;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: 6px;
  margin-bottom: 16px;
  text-align: center;
}
.price-perkcount span { color: var(--ink-900); font-weight: 700; font-size: var(--text-sm); }
.price-highlight .price-perkcount { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.75); }
.price-highlight .price-perkcount span { color: white; }

.price-inherits {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--ink-200);
}
.price-highlight .price-inherits { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.15); }

.price-report {
  margin-top: 14px;
  padding: 10px 12px;
  background: linear-gradient(135deg, hsl(220, 80%, 98%), hsl(270, 75%, 98%));
  border-radius: 8px;
  font-size: var(--text-xs);
  color: var(--ink-700);
  line-height: 1.5;
}
.price-report-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-600);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.price-highlight .price-report { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }
.price-highlight .price-report-label { color: var(--brand-300); }
.price-premium .price-report { background: linear-gradient(135deg, hsl(38, 92%, 96%), hsl(270, 75%, 96%)); }

/* Coming-soon disabled tier */
/* Empire "coming soon" — keep card fully readable, show clear badge instead of blurring content */
.price-coming { cursor: default; }
.price-coming.price-card:hover { transform: none; box-shadow: var(--shadow-soft); }
.price-coming .price-amount,
.price-coming .price-cycle,
.price-coming .price-setup,
.price-coming .price-features,
.price-coming .price-report,
.price-coming .price-inherits,
.price-coming .price-perkcount { /* readable; no blur, no opacity fade */ user-select: text; }
.price-coming-overlay {
  position: absolute;
  inset: 18px 16px auto 16px;        /* badge at TOP of card, not blocking content */
  display: flex; flex-direction: column; gap: 10px;
  align-items: center;
  z-index: 3;
  pointer-events: none;
  pointer-events: none;
}
.price-coming-stamp {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-900);
  background: linear-gradient(135deg, var(--amber-500), hsl(38, 92%, 75%));
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
}
.price-coming-progress {
  display: flex; flex-direction: column; gap: 6px;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-700);
  background: rgba(255,255,255,0.92);
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--ink-200);
  backdrop-filter: blur(6px);
  align-items: center;
}
.price-coming-bar {
  width: 100%; height: 6px;
  background: var(--ink-100);
  border-radius: 999px;
  overflow: hidden;
}
.price-coming-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-500), var(--violet-500));
  border-radius: 999px;
  transition: width 0.6s ease-out;
}

.btn-disabled {
  background: var(--ink-100);
  color: var(--ink-500);
  border: 1px solid var(--ink-200);
  cursor: not-allowed;
  font-weight: 500;
}
.btn-disabled:hover { transform: none; background: var(--ink-100); }

.price-card {
  position: relative;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-2xl);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: all 0.2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.price-highlight {
  background: linear-gradient(180deg, var(--ink-900), var(--ink-950));
  border-color: var(--ink-800);
  color: white;
  position: relative;
  overflow: hidden;
}
.price-highlight::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(139,92,246,0.18), transparent 70%),
    radial-gradient(400px 200px at 50% 100%, rgba(37,99,235,0.16), transparent 70%);
  pointer-events: none;
}
.price-highlight > * { position: relative; z-index: 1; }
.price-highlight .price-name,
.price-highlight .price-amount,
.price-highlight .price-features li { color: white; }
.price-highlight .price-setup { color: rgba(255,255,255,0.7); }
.price-highlight .price-tag { color: rgba(255,255,255,0.65); }
.price-highlight .price-tick { color: var(--brand-300); }

.price-premium {
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--amber-500), var(--violet-500)) 1;
  background: linear-gradient(180deg, white, hsl(38, 92%, 99%));
}
.price-premium .price-amount { background: linear-gradient(135deg, var(--amber-500), var(--violet-600)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.price-badge {
  position: absolute; top: 16px; right: 16px;
  white-space: nowrap;
  font-size: var(--text-xs); font-weight: 700;
  background: linear-gradient(135deg, var(--amber-500), hsl(38, 92%, 45%));
  color: white;
  padding: 4px 10px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 12px rgba(245,158,11,0.4);
  letter-spacing: 0.02em;
}

.price-name { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 12px; }
.price-amount-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-amount { font-size: var(--text-4xl); font-weight: 600; color: var(--ink-900); letter-spacing: -0.03em; }
.price-cycle { font-size: var(--text-sm); color: var(--ink-500); font-weight: 500; }
.price-setup { font-size: var(--text-xs); color: var(--ink-500); margin-bottom: 24px; font-family: var(--font-mono); }
.price-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; flex-grow: 1; }
.price-features li { font-size: var(--text-sm); color: var(--ink-700); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.price-feature-divider { color: var(--ink-500) !important; font-weight: 600; padding-top: 6px; border-top: 1px dashed var(--ink-200); }
.price-tick { color: var(--brand-600); font-weight: 700; flex-shrink: 0; }
.price-tag {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--ink-500);
  margin-top: 14px;
  font-style: italic;
}
.price-foot {
  text-align: center;
  margin-top: 36px;
  font-size: var(--text-sm);
  color: var(--ink-600);
  max-width: 50ch;
  margin-left: auto; margin-right: auto;
}

/* ═════ FOUNDER ═════ */
.section-founder {
  background: linear-gradient(180deg, var(--ink-900), var(--ink-950));
  color: var(--ink-100);
  position: relative;
  overflow: hidden;
  padding: 120px 16px;
}
@media (min-width: 768px) { .section-founder { padding: 144px 32px; } }
.founder-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 30% 30%, rgba(37,99,235,0.18), transparent 70%),
    radial-gradient(600px 300px at 70% 70%, rgba(139,92,246,0.15), transparent 70%);
  pointer-events: none;
}
.founder-inner { position: relative; max-width: 720px; margin: 0 auto; text-align: center; }
.founder-eyebrow { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.06em; color: var(--brand-300); margin-bottom: 32px; }
.founder-quote {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.25;
  font-style: italic;
  font-weight: 500;
  color: white;
  margin-bottom: 32px;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.founder-place { background: linear-gradient(135deg, var(--brand-300), var(--violet-300)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.founder-divider { display: flex; justify-content: center; margin-bottom: 32px; }
.founder-divider span { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--brand-400), transparent); }
.founder-body { font-size: var(--text-base); color: var(--ink-300); line-height: 1.6; max-width: 60ch; margin: 0 auto 16px; text-wrap: pretty; }
.founder-link { display: inline-block; margin-top: 28px; color: var(--brand-300); font-size: var(--text-sm); font-weight: 600; transition: color 0.15s; }
.founder-link:hover { color: var(--brand-200); }

/* ═════ COMPETITORS TABLE ═════ */
.cmp-wrap {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-xl);
  overflow-x: auto;
  box-shadow: var(--shadow-soft);
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  min-width: 720px;
}
.cmp-table th, .cmp-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--ink-200);
}
.cmp-table th {
  font-weight: 600;
  color: var(--ink-500);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--ink-50);
  border-bottom: 1px solid var(--ink-200);
}
.cmp-table th.cmp-us, .cmp-table .cmp-us-cell {
  background: linear-gradient(180deg, var(--brand-50), white);
  color: var(--brand-700);
  font-weight: 700;
  border-left: 1px solid var(--brand-200);
  border-right: 1px solid var(--brand-200);
}
.cmp-table th.cmp-us { color: var(--brand-700); }
.cmp-table .cmp-feature {
  text-align: left;
  font-weight: 600;
  color: var(--ink-800);
  background: var(--ink-50);
}
.cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-table tbody tr:hover { background: rgba(37, 99, 235, 0.02); }
.cmp-yes { color: var(--grow-600); font-weight: 800; font-size: 16px; }
.cmp-no { color: var(--ink-400); font-weight: 600; }
.cmp-text { color: var(--ink-700); font-size: var(--text-sm); }
.cmp-us-cell .cmp-text { color: var(--brand-700); font-weight: 700; }
.cmp-foot {
  text-align: center;
  margin-top: 20px;
  font-size: var(--text-xs);
  color: var(--ink-500);
  max-width: 60ch;
  margin-left: auto; margin-right: auto;
}

/* ═════ KPI FOCUS GRID ═════ */
.kpi-inner { max-width: 1080px; }
.kpi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  text-align: left;
  margin-top: 12px;
}
@media (min-width: 640px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .kpi-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.kpi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: all 0.18s;
  backdrop-filter: blur(8px);
}
.kpi-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--brand-400);
  transform: translateY(-2px);
}
.kpi-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--brand-500), var(--violet-500));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.kpi-label {
  font-size: var(--text-base);
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}
.kpi-detail {
  font-size: var(--text-sm);
  color: var(--ink-300);
  line-height: 1.55;
}

/* ═════ FAQ ═════ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.18s;
}
.faq-item:hover { border-color: var(--brand-300); }
.faq-open { border-color: var(--brand-400); box-shadow: var(--shadow-soft); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 22px;
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink-900);
  cursor: pointer;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400;
  color: var(--ink-700);
  flex-shrink: 0;
  transition: all 0.18s;
}
.faq-open .faq-icon { background: var(--brand-500); color: white; }
.faq-a {
  padding: 0 22px 20px;
  font-size: var(--text-base);
  color: var(--ink-600);
  line-height: 1.6;
  animation: slide-down 0.2s ease-out;
}
@keyframes slide-down { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ═════ FINAL CTA ═════ */
.final-cta {
  position: relative;
  padding: 100px 16px;
  /* Deepened gradient — ensures AAA contrast for white text even with the orb overlays */
  background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-700) 50%, var(--brand-900) 100%);
  color: white;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 768px) { .final-cta { padding: 144px 32px; } }
.final-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  background: white;
  filter: blur(60px);
}
.orb-1 { width: 200px; height: 200px; top: -50px; left: 10%; opacity: 0.18; }
.orb-2 { width: 280px; height: 280px; top: 20%; right: -50px; opacity: 0.12; }
.orb-3 { width: 160px; height: 160px; bottom: 10%; left: 30%; opacity: 0.15; }
.orb-4 { width: 220px; height: 220px; bottom: -50px; right: 20%; opacity: 0.10; }
.final-inner { position: relative; max-width: 720px; margin: 0 auto; }
.final-h2 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.final-h2 .italic {
  font-family: var(--font-display);
  background: linear-gradient(135deg, white, hsl(38, 92%, 80%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-sub { font-size: var(--text-lg); opacity: 0.85; max-width: 50ch; margin: 0 auto 32px; }
.final-cta .btn-light { box-shadow: var(--shadow-xl); }
.final-fine { font-size: var(--text-sm); opacity: 0.75; margin-top: 20px; }
.final-fine a { color: white; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ═════ NEW: TRADES EXPANDABLE STACK ═════ */
.trades-stack { display: flex; flex-direction: column; gap: 12px; max-width: 920px; margin: 0 auto; }
.trade-card {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.2s ease-out;
  --c: var(--brand-500);
}
.trade-card:hover { border-color: var(--c); box-shadow: var(--shadow-soft); }
.trade-open { border-color: var(--c); box-shadow: var(--shadow-md); }
.trade-head {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
}
.trade-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c), color-mix(in srgb, var(--c) 70%, white));
  color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--c) 30%, transparent);
}
.trade-icon svg { width: 22px; height: 22px; }
.trade-head-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.trade-name { font-size: var(--text-lg); font-weight: 700; color: var(--ink-900); }
.trade-short { font-size: var(--text-sm); color: var(--ink-600); }
.trade-toggle {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ink-100);
  color: var(--ink-700);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.18s;
}
.trade-open .trade-toggle { background: var(--c); color: white; }
.trade-body {
  padding: 0 22px 22px 82px;
  border-top: 1px dashed var(--ink-200);
  margin-top: 4px;
  padding-top: 18px;
  animation: slide-down 0.25s ease-out;
}
@media (max-width: 640px) { .trade-body { padding-left: 22px; } }
.trade-desc { font-size: var(--text-base); color: var(--ink-700); line-height: 1.6; margin-bottom: 18px; }
.trade-growth { margin-bottom: 18px; }
.trade-growth-label { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c); margin-bottom: 8px; }
.trade-growth ul { display: flex; flex-direction: column; gap: 6px; }
.trade-growth li { display: flex; gap: 10px; font-size: var(--text-sm); color: var(--ink-700); line-height: 1.5; }
.trade-growth-tier { font-weight: 700; color: var(--ink-900); flex-shrink: 0; min-width: 80px; }
.trade-stats { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--ink-100); }
.trade-stat-primary { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--c); }
.trade-stat-secondary { font-size: var(--text-xs); color: var(--ink-500); }
.trade-cta { font-size: var(--text-sm); font-weight: 600; color: var(--c); transition: transform 0.15s; }
.trade-cta:hover { transform: translateX(3px); }

.trades-also { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; justify-content: center; margin-top: 32px; padding: 16px 20px; background: white; border: 1px dashed var(--ink-200); border-radius: var(--r-xl); max-width: 920px; margin-left: auto; margin-right: auto; }
.trades-also-label { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-500); }
.trades-also-chip { font-size: var(--text-sm); padding: 4px 12px; background: var(--ink-50); border: 1px solid var(--ink-200); border-radius: var(--r-full); color: var(--ink-700); }
.trades-also-link { margin-left: auto; font-size: var(--text-sm); font-weight: 600; color: var(--brand-600); }
.trades-also-link:hover { color: var(--brand-700); }

/* Eyebrow color variants */
.eyebrow-violet, .eyebrow-rose, .eyebrow-green, .eyebrow-amber, .eyebrow-blue, .eyebrow-ink {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.06em;
  padding: 6px 12px; border-radius: var(--r-full); margin-bottom: 16px;
  text-transform: uppercase;
}
.eyebrow-violet { background: hsl(270, 80%, 96%); color: var(--violet-700); }
.eyebrow-rose   { background: hsl(346, 90%, 96%); color: hsl(346, 70%, 45%); }
.eyebrow-green  { background: hsl(140, 65%, 95%); color: var(--grow-700); }
.eyebrow-amber  { background: hsl(38, 92%, 95%); color: hsl(38, 80%, 38%); }
.eyebrow-blue   { background: var(--brand-50); color: var(--brand-700); }
.eyebrow-ink    { background: var(--ink-100); color: var(--ink-700); }

/* Hero italic gradient phrase */
.hero-italic-grad {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, var(--brand-600), var(--violet-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero CTAs row */
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.btn-glow-blue { box-shadow: var(--shadow-md), 0 0 32px rgba(109,40,217,0.45); }
.btn-glow-violet { box-shadow: var(--shadow-md), 0 0 32px rgba(124,58,237,0.45); }
.btn-gradient {
  background: linear-gradient(135deg, var(--brand-600), var(--violet-600));
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-gradient:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg), 0 0 32px rgba(124,58,237,0.35); }
.btn-dark { background: var(--ink-900); color: white; }
.btn-dark:hover { background: var(--ink-800); transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* Hero pills with checks */
.hero-pills li { display: inline-flex; align-items: center; gap: 6px; }
.pill-check { color: var(--grow-600); font-weight: 700; }

/* Hero cohort row */
.hero-cohort { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.cohort-avatars { display: flex; }
.cohort-avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 10px; font-weight: 700;
  border: 2px solid white;
  margin-left: -8px;
  box-shadow: var(--shadow-soft);
}
.cohort-avatars span:first-child { margin-left: 0; }
.cohort-text { font-size: var(--text-sm); color: var(--ink-600); }
.cohort-text a { color: var(--brand-600); font-weight: 600; }

/* Brand sub-line in nav */
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-sub { display: none; font-family: var(--font-mono); font-size: 9px; color: var(--ink-500); letter-spacing: 0.04em; margin-top: 1px; }
@media (min-width: 768px) { .brand-sub { display: block; } }

/* Announcement link */
.ann-link { color: white; text-decoration: underline; text-underline-offset: 3px; opacity: 0.9; font-weight: 600; margin-left: 4px; }
.ann-link:hover { opacity: 1; }
.ann-arrow { display: none; }

/* Trust pill meta (label) */
.ticker-pill-meta { background: transparent; border-color: transparent; color: var(--ink-500); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }

/* Pull quote section */
.pullquote-section { padding-top: 80px; padding-bottom: 80px; }
.pullquote-inner { text-align: center; max-width: 820px; margin: 0 auto; }
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--ink-900);
  margin: 24px 0 16px;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.pullquote-mark { color: var(--brand-500); font-size: 1.4em; line-height: 0; vertical-align: -0.2em; margin-right: 4px; }
.pullquote-attr { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink-500); margin-bottom: 28px; letter-spacing: 0.06em; }
.pullquote-body { font-size: var(--text-base); color: var(--ink-700); line-height: 1.7; max-width: 64ch; margin: 0 auto; text-wrap: pretty; }

/* Pledge: title + body */
.pledge-card { align-items: flex-start; }
.pledge-body { display: flex; flex-direction: column; gap: 4px; }
.pledge-title { font-size: var(--text-base); font-weight: 700; color: var(--ink-900); }
.pledge-text { font-size: var(--text-sm); color: var(--ink-600); line-height: 1.55; font-weight: 400; }

/* Founder section orbs */
.founder-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.founder-orb-1 { width: 320px; height: 320px; top: -80px; right: -80px; background: rgba(124, 58, 237, 0.35); }
.founder-orb-2 { width: 280px; height: 280px; bottom: -80px; left: -80px; background: rgba(37, 99, 235, 0.30); }
.founder-meta { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink-400); margin-top: 16px; letter-spacing: 0.04em; }

/* Pricing 3-column */
.price-grid-3 { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) { .price-grid-3 { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.price-grid-3 .price-card { padding: 28px 24px; }
.price-grid-3 .price-highlight {
  transform: scale(1.03);
  z-index: 2;
  background: linear-gradient(180deg, var(--ink-900), var(--ink-950));
  border: 1px solid transparent;
  background-image: linear-gradient(180deg, var(--ink-900), var(--ink-950)), linear-gradient(135deg, var(--brand-500), var(--violet-500));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.price-dashed { border-style: dashed !important; border-color: var(--ink-300) !important; background: linear-gradient(180deg, white, var(--ink-50)); }
.price-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.price-label-green { background: hsl(140, 65%, 92%); color: var(--grow-700); }
.price-label-white { background: rgba(255,255,255,0.15); color: white; }
.price-label-ink   { background: var(--ink-100); color: var(--ink-700); }
.price-desc { font-size: var(--text-sm); color: var(--ink-600); line-height: 1.55; margin-bottom: 18px; min-height: 60px; }
.price-highlight .price-desc { color: rgba(255,255,255,0.75); }
.price-feat-no { opacity: 0.55; }
.price-feat-no .price-tick { color: var(--ink-400) !important; }
.price-feat-strong { font-weight: 700; }
.price-highlight .price-feat-strong { background: linear-gradient(135deg, hsl(38, 92%, 75%), white); -webkit-background-clip: text; background-clip: text; color: transparent; }

.price-trust-row { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
@media (min-width: 768px) { .price-trust-row { grid-template-columns: repeat(3, 1fr); } }
.price-trust-card { padding: 18px 20px; border-radius: var(--r-lg); border: 1px solid; }
.price-trust-card .price-trust-h { font-size: var(--text-sm); font-weight: 700; margin-bottom: 4px; }
.price-trust-card p { font-size: var(--text-sm); line-height: 1.5; }
.price-trust-amber { background: hsl(38, 92%, 97%); border-color: hsl(38, 92%, 88%); color: hsl(38, 50%, 25%); }
.price-trust-amber .price-trust-h { color: hsl(38, 80%, 38%); }
.price-trust-green { background: hsl(140, 65%, 96%); border-color: hsl(140, 65%, 85%); color: hsl(140, 40%, 22%); }
.price-trust-green .price-trust-h { color: var(--grow-700); }
.price-trust-blue { background: var(--brand-50); border-color: var(--brand-200); color: var(--ink-800); }
.price-trust-blue .price-trust-h { color: var(--brand-700); }

/* 30-day guarantee band */
.guarantee-band { padding: 56px 16px; background: white; }
@media (min-width: 768px) { .guarantee-band { padding: 80px 32px; } }
.guarantee-inner {
  max-width: 980px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--brand-50), hsl(270, 80%, 97%));
  border: 1px solid var(--brand-200);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 768px) { .guarantee-inner { flex-direction: column; text-align: center; padding: 24px; } }
.guarantee-shield { flex-shrink: 0; color: var(--brand-600); }
.guarantee-shield svg { width: 64px; height: 64px; }
.guarantee-content { flex: 1; }
.guarantee-h { font-size: var(--text-lg); line-height: 1.5; color: var(--ink-800); font-weight: 400; }
.guarantee-h strong { color: var(--ink-900); font-weight: 700; }
.guarantee-fine { font-size: var(--text-xs); color: var(--ink-500); margin-top: 8px; }

/* Final CTA additions */
.final-eyebrow { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.final-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
.final-meta { font-family: var(--font-mono); font-size: var(--text-xs); opacity: 0.7; margin-top: 24px; }
.orb-warm { width: 240px; height: 240px; bottom: 30%; right: 10%; background: hsl(38, 92%, 70%); opacity: 0.2; }

/* Footer trust pills */
.footer-trust-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.footer-trust-pills span { font-size: 10px; padding: 3px 8px; background: var(--ink-800); border: 1px solid var(--ink-700); border-radius: var(--r-full); color: var(--ink-300); font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ═════ FOOTER ═════ */
.footer { background: var(--ink-950); color: var(--ink-400); padding: 64px 16px 24px; }
@media (min-width: 768px) { .footer { padding: 80px 32px 32px; } }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink-800);
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }
.footer-brand .brand-bold { color: white; }
.footer-brand .brand-light { color: var(--ink-400); }
.footer-tag { font-size: var(--text-sm); color: var(--ink-500); max-width: 36ch; }
.footer-h { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-300); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: var(--text-sm); }
.footer-col a, .footer-col span { color: var(--ink-400); transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  font-size: var(--text-xs);
  color: var(--ink-500);
}
.footer-italic { font-style: italic; color: var(--ink-300); }
.footer-mono { font-family: var(--font-mono); }

/* ── Brand + Runtime tokens ────────────────────────────────── */
:root {
  --brand-runtime: var(--brand-700, #6D28D9);
  --accent-runtime: var(--violet-500, #8B5CF6);
  --ink-runtime: var(--ink-900, #0E1116);
  --surface-runtime: var(--ink-50, #FBFAF6);
}
.brand-logo {
  width: 32px; height: 32px;
  background: url('assets/logo.png') center/contain no-repeat;
  flex-shrink: 0;
  border-radius: 8px;
}
.brand-logo-lg { width: 48px; height: 48px; border-radius: 10px; }
.brand-logo-sm { width: 24px; height: 24px; border-radius: 6px; }
.nav-brand .brand-mark { display: none; }   /* hide the legacy rotated-square */

/* ── Sticky CTA banner on proof-case ──────────────────────── */
.pf-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.98));
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--ink-200, #E7E5E4);
  box-shadow: 0 -8px 24px rgba(11,17,22,0.06);
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 12px 20px;
}
.pf-sticky-cta.is-on { transform: translateY(0); }
.pf-sticky-cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  justify-content: space-between; flex-wrap: wrap;
}
.pf-sticky-cta-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.pf-sticky-cta-eyebrow {
  font-family: var(--font-mono, monospace);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-700, #6D28D9);
}
.pf-sticky-cta-title {
  font-size: 15px; font-weight: 600; color: var(--ink-900, #0E1116);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.pf-sticky-cta-actions { display: flex; gap: 8px; flex-shrink: 0; }
.pf-sticky-cta button.close {
  background: none; border: none; cursor: pointer;
  width: 28px; height: 28px; border-radius: 6px;
  display: grid; place-items: center;
  color: var(--ink-500, #78716C);
  font-size: 18px; line-height: 1;
}
.pf-sticky-cta button.close:hover { background: var(--ink-100, #F5F5F4); color: var(--ink-900, #0E1116); }
.pf-sticky-cta .btn {
  font-family: inherit; font-weight: 600; font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.pf-sticky-cta .btn-primary {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-800));
  color: #FFF;
  box-shadow: 0 4px 14px rgba(109,40,217,0.40);
}

/* ── Newsletter strip on Gazette ──────────────────────────── */
.gz-newsletter-success {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  background: rgba(22,163,74,0.10); color: #15803D;
  font-size: 13px; font-weight: 600;
}


/* ── Stage 3 · runtime token aliasing (Builder theme flows everywhere) ── */
:root {
  --brand-600: var(--brand-runtime, #7C3AED);
  --container: var(--container-runtime, 1280px);
}
@media (prefers-reduced-motion: no-preference) {
  /* Subtle page-in fade */
  body { animation: pageIn .35s ease both; }
  @keyframes pageIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

  /* Card reveal on scroll (via IntersectionObserver below) */
  [data-reveal] { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s cubic-bezier(0.16,1,0.3,1); }
  [data-reveal].is-in { opacity: 1; transform: none; }
}

/* ── Mobile polish ── */
@media (max-width: 760px) {
  .nav-inner { padding: 0 12px; }
  .nav-cta .btn { padding: 0 10px; font-size: 12px; }
  .hero { padding-top: 32px; }
  .bk-modal { border-radius: 14px; }
  .pf-sticky-cta { padding: 10px 14px; }
  .pf-sticky-cta-title { font-size: 13px; line-height: 1.3; }
  .pf-sticky-cta .btn { padding: 9px 14px; font-size: 12.5px; }
}

/* ── Logo polish ── */
.brand-logo { transition: transform .25s ease; }
.nav-brand:hover .brand-logo { transform: rotate(-6deg) scale(1.04); }

/* Speed up font swap (font-display already swap, but reinforce) */
* { text-rendering: optimizeLegibility; }

/* ═════ NEW: ANTI-CHECKATRADE SECTION ═════ */
.anti-checkatrade { background: linear-gradient(135deg, #FBFAF6 0%, #F3F0EB 100%); }
.anti-checkatrade-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 32px; }
.anti-checkatrade-card { padding: 24px; background: #fff; border-radius: 14px; border: 1px solid rgba(0,0,0,0.06); transition: border-color 0.2s ease, transform 0.2s ease; }
.anti-checkatrade-card:hover { border-color: rgba(109,40,217,0.30); transform: translateY(-2px); }
.anti-checkatrade-icon { font-size: 28px; margin-bottom: 12px; display: inline-block; }
.anti-checkatrade-card h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px 0; }
.anti-checkatrade-card p { font-size: 14.5px; line-height: 1.55; color: #424242; margin: 0; }

/* ═════ NEW: FOUNDERS' COHORT RATE-LOCK BAND ═════ */
.founders-cohort-band { background: linear-gradient(135deg, var(--brand-50) 0%, var(--brand-100) 100%); padding: 56px 0; }
.founders-cohort-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.founders-cohort-h2 { font-size: clamp(28px, 4vw, 36px); font-weight: 700; margin: 16px 0 12px 0; color: var(--ink-900); }
.founders-cohort-desc { font-size: 16px; line-height: 1.6; color: #424242; margin: 0 auto 28px; max-width: 600px; }
.founders-cohort-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 28px 0; }
.founders-cohort-stats .stat-val { font-size: 26px; font-weight: 700; color: var(--brand-700); }
.founders-cohort-stats .stat-lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: #6B6B6B; margin-top: 4px; }
.founders-cohort-meta { font-size: 13px; color: #6B6B6B; margin-top: 16px; }
@media (max-width: 640px) { .founders-cohort-stats { grid-template-columns: 1fr; } }


/* ═════════════════════════════════════════════════════════
   PREMIUM TIER SHOWCASE — animated, mobile-first, GPU-accelerated
   Layer on top of existing .price-card / .price-grid-4 / .price-active
   Respects prefers-reduced-motion. Pure CSS animations.
   ═════════════════════════════════════════════════════════ */

.tier-showcase {
  position: relative;
  padding: 4px;
}

.tier-showcase__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 24px;
  flex-wrap: wrap;
  max-width: 720px;
}

.tier-showcase__pill {
  position: relative;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-600);
  background: white;
  border: 1px solid var(--ink-200);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  letter-spacing: 0.01em;
  user-select: none;
}
.tier-showcase__pill:hover {
  border-color: var(--brand-400);
  color: var(--brand-700);
  transform: translateY(-1px);
}
.tier-showcase__pill[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
  color: white;
  border-color: var(--brand-700);
  box-shadow: 0 6px 18px rgba(109,40,217,0.32);
  transform: translateY(-1px);
}
.tier-showcase__pill[aria-pressed="true"]::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  width: 8px; height: 8px;
  background: var(--brand-700);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}
.tier-showcase__pill .tier-showcase__pill-amount {
  margin-left: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.75;
  font-weight: 500;
}

/* Grid lift + smooth-glow on active card.
   Targets the existing .price-card.price-active selector. */
.tier-showcase .price-grid-4 .price-card {
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease,
    filter 0.32s ease,
    border-color 0.32s ease;
  will-change: transform, box-shadow;
}

.tier-showcase .price-grid-4 .price-card.price-active {
  transform: translateY(-6px) scale(1.025);
  z-index: 2;
  border-color: var(--brand-400);
  box-shadow:
    0 22px 44px -10px rgba(109,40,217,0.28),
    0 8px 18px -8px rgba(0,0,0,0.12),
    0 0 0 1px rgba(124,58,237,0.18);
}

.tier-showcase .price-grid-4 .price-card.price-active.price-highlight {
  box-shadow:
    0 22px 44px -10px rgba(139,92,246,0.42),
    0 8px 18px -8px rgba(0,0,0,0.28),
    0 0 0 1px rgba(167,139,250,0.32);
}

/* Aurora glow behind the active card */
.tier-showcase .price-grid-4 .price-card.price-active::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(139,92,246,0.16),
    rgba(37,99,235,0.10) 50%,
    rgba(217,70,239,0.14));
  z-index: -1;
  filter: blur(14px);
  opacity: 0;
  animation: tier-aurora-in 0.55s 0.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes tier-aurora-in {
  to { opacity: 1; }
}

/* Inactive cards on desktop — subtle de-emphasis, never lose readability */
@media (min-width: 1200px) {
  .tier-showcase .price-grid-4 .price-card:not(.price-active):not(.price-coming) {
    opacity: 0.74;
    filter: saturate(0.85);
  }
  .tier-showcase .price-grid-4 .price-card:not(.price-active):not(.price-coming):hover {
    opacity: 1;
    filter: saturate(1);
    transform: translateY(-3px);
  }
}

/* Staggered perk fade-in when the card activates */
.tier-showcase .price-grid-4 .price-card.price-active .price-features li {
  animation: tier-perk-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.tier-showcase .price-grid-4 .price-card.price-active .price-features li:nth-child(1) { animation-delay: 0.04s; }
.tier-showcase .price-grid-4 .price-card.price-active .price-features li:nth-child(2) { animation-delay: 0.08s; }
.tier-showcase .price-grid-4 .price-card.price-active .price-features li:nth-child(3) { animation-delay: 0.12s; }
.tier-showcase .price-grid-4 .price-card.price-active .price-features li:nth-child(4) { animation-delay: 0.16s; }
.tier-showcase .price-grid-4 .price-card.price-active .price-features li:nth-child(5) { animation-delay: 0.20s; }
.tier-showcase .price-grid-4 .price-card.price-active .price-features li:nth-child(6) { animation-delay: 0.24s; }
.tier-showcase .price-grid-4 .price-card.price-active .price-features li:nth-child(7) { animation-delay: 0.28s; }
.tier-showcase .price-grid-4 .price-card.price-active .price-features li:nth-child(8) { animation-delay: 0.32s; }
.tier-showcase .price-grid-4 .price-card.price-active .price-features li:nth-child(9) { animation-delay: 0.36s; }

@keyframes tier-perk-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile (<768px): single card focus, sibling cards collapsed */
@media (max-width: 767px) {
  .tier-showcase .price-grid-4 { gap: 12px; }
  .tier-showcase .price-grid-4 .price-card {
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.32s, transform 0.32s, padding 0.32s;
    max-height: 96px;
    overflow: hidden;
    padding: 18px 20px;
  }
  .tier-showcase .price-grid-4 .price-card.price-active {
    max-height: 1200px;
    transform: scale(1.0);
    padding: 26px 22px;
  }
  .tier-showcase .price-grid-4 .price-card:not(.price-active) .price-body,
  .tier-showcase .price-grid-4 .price-card:not(.price-active) .btn-block,
  .tier-showcase .price-grid-4 .price-card:not(.price-active) .price-coming-overlay {
    opacity: 0;
    pointer-events: none;
  }
  /* Collapsed cards still show name + price as a tappable header */
  .tier-showcase .price-grid-4 .price-card:not(.price-active) {
    cursor: pointer;
  }
  .tier-showcase .price-grid-4 .price-card:not(.price-active)::before {
    content: '↓ tap to expand';
    position: absolute;
    top: 18px; right: 18px;
    font-size: 11px;
    color: var(--ink-400);
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
  }
}

/* Tablet (768–1199px) — 2-column grid; collapsed inactive cards keep their shape */
@media (min-width: 768px) and (max-width: 1199px) {
  .tier-showcase .price-grid-4 .price-card:not(.price-active) {
    opacity: 0.82;
  }
}

/* Reduced motion — strip animations, keep state changes instant */
@media (prefers-reduced-motion: reduce) {
  .tier-showcase .price-grid-4 .price-card,
  .tier-showcase .price-grid-4 .price-card.price-active,
  .tier-showcase .price-grid-4 .price-card .price-features li,
  .tier-showcase .price-grid-4 .price-card.price-active::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* Hero-strip variant — compact tier strip for index/how-it-works/faq tops.
   Just the 4 tier names + price, NOT the full perk list. Pure visual anchor. */
.tier-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 920px;
  margin: 24px auto 0;
  padding: 6px;
  background: linear-gradient(180deg, white, var(--brand-50));
  border: 1px solid var(--brand-200);
  border-radius: 18px;
  box-shadow: 0 8px 24px -8px rgba(109,40,217,0.18);
}
@media (max-width: 720px) {
  .tier-strip { grid-template-columns: repeat(2, 1fr); }
}

.tier-strip__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 14px 12px;
  border-radius: 12px;
  background: white;
  border: 1px solid transparent;
  transition: all 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
}
.tier-strip__item:hover {
  border-color: var(--brand-300);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -4px rgba(109,40,217,0.18);
}
.tier-strip__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.tier-strip__price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand-700);
  font-weight: 600;
}
.tier-strip__sub {
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.tier-strip__item--anchor {
  background: linear-gradient(135deg, var(--ink-900), var(--brand-900));
  color: white;
}
.tier-strip__item--anchor .tier-strip__name { color: white; }
.tier-strip__item--anchor .tier-strip__price { color: var(--brand-300); }
.tier-strip__item--anchor .tier-strip__sub { color: rgba(255,255,255,0.7); }
.tier-strip__item--anchor:hover { box-shadow: 0 8px 22px -4px rgba(76,29,149,0.55); }

@media (prefers-reduced-motion: reduce) {
  .tier-strip__item { transition: none; transform: none !important; }
}
