/* ================================================================
   style.css — MergeTasks Marketing
   $100K agency grade. Every pixel intentional.
   ================================================================ */

/* ────────────────────────────────────────────
   DESIGN TOKENS
   ──────────────────────────────────────────── */
:root {
  /* Palette — 90% navy on white, accent surgical */
  --bg:            #FFFFFF;
  --bg-subtle:     #F6F9FC;
  --bg-dark:       #0A2540;
  --ink:           #0A2540;
  --ink-secondary: #425466;
  --ink-tertiary:  #8898AA;
  --ink-faint:     #C1CDD9;
  --ink-inverse:   #FFFFFF;
  --accent:        #674CFB;
  --accent-hover:  #5840E0;
  --accent-glow:   rgba(103, 76, 251, 0.08);
  --green:         #24B47E;
  --amber:         #E5993E;
  --red:           #ED6161;
  --border:        rgba(10, 37, 64, 0.08);
  --border-strong: rgba(10, 37, 64, 0.14);

  /* Type — Clash Display (high-contrast, impactful), General Sans body */
  --font-display: 'Clash Display', 'Cabinet Grotesk', -apple-system, sans-serif;
  --font-body:    'General Sans', 'Switzer', -apple-system, sans-serif;
  --font-mono:    'SF Mono', 'Cascadia Code', 'Fira Code', monospace;

  /* Shadows — barely visible, layered */
  --shadow-xs:  0 1px 2px rgba(10,37,64,0.04);
  --shadow-sm:  0 1px 3px rgba(10,37,64,0.04), 0 1px 2px rgba(10,37,64,0.06);
  --shadow-md:  0 4px 12px rgba(10,37,64,0.05), 0 1px 3px rgba(10,37,64,0.04);
  --shadow-lg:  0 8px 28px rgba(10,37,64,0.08), 0 2px 6px rgba(10,37,64,0.04);
  --shadow-xl:  0 16px 48px rgba(10,37,64,0.1), 0 4px 12px rgba(10,37,64,0.05);

  /* Radius — tight, deliberate */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;
  --r-xl: 12px;

  /* Content widths */
  --w-narrow:  720px;
  --w-default: 1080px;
  --w-wide:    1200px;

  /* Easing */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}


/* ────────────────────────────────────────────
   LAYOUT PRIMITIVES
   ──────────────────────────────────────────── */
.container {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

/* Section spacing: 160–200px on desktop, scales down */
.s-section {
  padding-top: clamp(80px, 10vw, 180px);
  padding-bottom: clamp(80px, 10vw, 180px);
}
.s-section-sm {
  padding-top: clamp(64px, 7vw, 120px);
  padding-bottom: clamp(64px, 7vw, 120px);
}


/* ────────────────────────────────────────────
   NAVIGATION — sets the tone
   ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background-color 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  width: 100%;
  display: flex;
  align-items: center;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
}
img.nav-logo-img {
  height: 24px;
  width: auto;
  max-height: 24px;
  flex-shrink: 0;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  display: inline-block;
}

/* Nav links — pushed to right edge */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}


.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-secondary);
  letter-spacing: -0.005em;
}
.nav-menu a:hover {
  color: var(--ink);
}
.nav-cta-btn {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--ink-inverse) !important;
  background: var(--accent);
  padding: 8px 20px;
  border-radius: var(--r-md);
  line-height: 1;
  margin-left: 4px;
}
.nav-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 28px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
  }
  .nav-cta-btn {
    margin-top: 8px;
    text-align: center;
    padding: 14px 20px !important;
    font-size: 15px !important;
  }
}


/* ────────────────────────────────────────────
   BUTTONS
   ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 16px 32px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink-inverse);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(103, 76, 251, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--ink-tertiary);
  background: var(--bg-subtle);
}
.btn-ghost svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}
.btn-white {
  background: #fff;
  color: var(--ink);
}
.btn-white:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-1px);
}


/* ────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: clamp(120px, 14vw, 180px);
  padding-bottom: clamp(80px, 8vw, 120px);
  overflow: hidden;
}

/* Subtle dot grid background — 3% opacity */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,37,64,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero h1 .light {
  font-weight: 400;
  color: var(--ink-tertiary);
}

.hero-desc {
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-secondary);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Logo strip / social proof */
.hero-proof {
  margin-top: clamp(56px, 5vw, 80px);
  padding-top: 28px;
  border-top: 1px solid var(--border);
  min-width: 0;
  overflow: hidden;
}
.hero-proof-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  margin-bottom: 20px;
}
.hero-proof-logos {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  flex-wrap: wrap;
}
.proof-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(13px, 1vw, 16px);
  color: var(--ink);
  opacity: 0.2;
  letter-spacing: -0.02em;
  user-select: none;
}


/* ────────────────────────────────────────────
   DASHBOARD MOCKUP — must look like a real
   $500M SaaS product screenshot
   ──────────────────────────────────────────── */
.hero-mockup {
  position: relative;
  z-index: 1;
}
.mockup-window {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border);
  overflow: hidden;
  transition: box-shadow 400ms var(--ease-out), transform 400ms var(--ease-out);
}
.mockup-window:hover {
  box-shadow: 0 20px 60px rgba(10,37,64,0.14), 0 6px 16px rgba(10,37,64,0.06), 0 0 0 1px var(--border);
  transform: translateY(-2px);
}
.mockup-chrome {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.chrome-dot:nth-child(1) { background: #FF5F57; }
.chrome-dot:nth-child(2) { background: #FEBC2E; }
.chrome-dot:nth-child(3) { background: #28C840; }
.chrome-url {
  flex: 1;
  height: 28px;
  margin-left: 8px;
  background: #fff;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--ink-tertiary);
  letter-spacing: 0;
}
.chrome-url svg {
  width: 12px;
  height: 12px;
  margin-right: 6px;
  opacity: 0.4;
  flex-shrink: 0;
}

/* Dashboard body */
.dash {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 380px;
}

/* Sidebar */
.dash-sidebar {
  background: var(--bg-subtle);
  border-right: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
}
.dash-sidebar-logo {
  display: flex;
  align-items: center;
  padding: 0 12px;
  margin-bottom: 24px;
}
img.dash-logo-img {
  height: 16px;
  width: auto;
  max-height: 16px;
  flex-shrink: 0;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  display: inline-block;
}
.dash-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-secondary);
  letter-spacing: -0.005em;
}
.sidebar-item.active {
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}
.sidebar-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  flex-shrink: 0;
}
.sidebar-item.active svg { opacity: 0.8; }

.dash-sidebar-bottom {
  margin-top: auto;
  padding: 0 8px;
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: var(--r-sm);
}
.sidebar-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}
.sidebar-user-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
}
.sidebar-user-role {
  font-size: 10px;
  color: var(--ink-tertiary);
}

/* Main content area */
.dash-main {
  padding: 20px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-page-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.dash-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
}
.dash-live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* KPI strip */
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.dash-kpi {
  padding: 12px 14px;
  background: var(--bg-subtle);
  border-radius: var(--r-md);
}
.dash-kpi-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-tertiary);
  margin-bottom: 4px;
}
.dash-kpi-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.dash-kpi-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.dash-kpi-value.text-accent { color: var(--accent); }
.dash-kpi-change {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
}
.dash-kpi-change.neg { color: var(--red); }

/* Chart area */
.dash-chart-area {
  background: var(--bg-subtle);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.dash-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dash-chart-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.dash-chart-range {
  font-size: 10px;
  color: var(--ink-tertiary);
  font-variant-numeric: tabular-nums;
}

/* Table */
.dash-table {
  width: 100%;
  font-size: 12px;
}
.dash-table thead th {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-tertiary);
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.dash-table thead th:last-child { text-align: right; }
.dash-table tbody td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.dash-table tbody td:last-child { text-align: right; }
.t-client {
  font-weight: 500;
  color: var(--ink);
}
.t-amount {
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-family: var(--font-mono);
  font-size: 11px;
}
.t-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--r-sm);
  letter-spacing: 0.01em;
}
.t-badge.green  { color: var(--green); background: rgba(36,180,126,0.08); }
.t-badge.blue   { color: var(--accent); background: var(--accent-glow); }
.t-badge.amber  { color: var(--amber); background: rgba(229,153,62,0.08); }

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero h1 { font-size: clamp(36px, 8vw, 56px); }
  .hero-desc { max-width: 100%; }
  .dash { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .dash-kpis { grid-template-columns: 1fr 1fr; gap: 8px; }
}


/* ────────────────────────────────────────────
   THE PROBLEM — stats woven into narrative
   ──────────────────────────────────────────── */
.problem-lead {
  max-width: 600px;
  margin-bottom: clamp(64px, 6vw, 100px);
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.section-eyebrow-light {
  color: rgba(255,255,255,0.35);
}
.h2 {
  font-size: clamp(36px, 3.6vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.06;
}
.lead-body {
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-secondary);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 5vw, 72px) clamp(48px, 5vw, 80px);
}
.pain-item {
  display: flex;
  gap: clamp(20px, 2vw, 32px);
  align-items: flex-start;
}
.pain-stat {
  font-family: var(--font-display);
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--ink);
  flex-shrink: 0;
  min-width: 100px;
  font-variant-numeric: tabular-nums;
}
.pain-stat .unit {
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink-tertiary);
}
.pain-body h3 {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pain-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-secondary);
  max-width: 36ch;
}

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; gap: 48px; }
  .pain-item { flex-direction: column; gap: 8px; }
  .pain-stat { min-width: auto; font-size: clamp(40px, 10vw, 56px); }
}


/* ────────────────────────────────────────────
   PLATFORM — asymmetric narrative pairs
   ──────────────────────────────────────────── */
.platform-header {
  max-width: 520px;
  margin-bottom: clamp(48px, 4vw, 72px);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
  padding: clamp(56px, 6vw, 96px) 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-of-type { border-bottom: none; }
.feature-row.flip { direction: rtl; }
.feature-row.flip > * { direction: ltr; }

.feature-copy { max-width: 440px; }
.feature-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-copy h3 {
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.feature-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-secondary);
}
.feature-copy p + p { margin-top: 12px; }

/* Feature mockups */
.feature-card {
  background: var(--bg-subtle);
  border-radius: var(--r-xl);
  padding: clamp(20px, 2.5vw, 32px);
  border: 1px solid var(--border);
}
.feature-card {
  transition: box-shadow 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Webstore mockup */
.ws-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.ws-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ws-brand-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, #4A5568, #2D3748);
}
.ws-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.ws-cart-count {
  font-size: 11px;
  color: var(--ink-tertiary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.ws-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.ws-product {
  background: #fff;
  border-radius: var(--r-md);
  padding: 10px;
  border: 1px solid var(--border);
}
.ws-swatch {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  margin-bottom: 8px;
}
.ws-product-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.ws-product-price {
  font-size: 10px;
  color: var(--ink-tertiary);
  font-variant-numeric: tabular-nums;
}
.ws-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ws-deploy-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.ws-powered {
  font-size: 10px;
  color: var(--ink-faint);
}

/* Proposal mockup */
.prop-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.prop-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.prop-subtitle {
  font-size: 11px;
  color: var(--ink-tertiary);
  margin-top: 2px;
}
.prop-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  background: rgba(36,180,126,0.08);
  padding: 3px 10px;
  border-radius: var(--r-sm);
}
.prop-table {
  width: 100%;
  font-size: 12px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.prop-table thead th {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-tertiary);
  padding: 8px 12px;
  text-align: left;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.prop-table thead th:nth-child(2),
.prop-table thead th:nth-child(3) { text-align: right; }
.prop-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.prop-table tbody tr:last-child td { border-bottom: none; }
.prop-table tbody td:nth-child(2),
.prop-table tbody td:nth-child(3) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.prop-table tbody td:nth-child(1) {
  font-weight: 500;
  color: var(--ink);
}
.prop-table tbody td:nth-child(2) { color: var(--ink-secondary); }
.prop-table tbody td:nth-child(3) {
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
}
.prop-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prop-total-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.prop-total-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

/* Analytics mockup */
.analytics-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.a-kpi {
  background: #fff;
  border-radius: var(--r-md);
  padding: 12px 14px;
  border: 1px solid var(--border);
}
.a-kpi-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-tertiary);
  margin-bottom: 4px;
}
.a-kpi-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.a-kpi-delta {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  margin-top: 2px;
}
.a-chart {
  background: #fff;
  border-radius: var(--r-md);
  padding: 14px 16px;
  border: 1px solid var(--border);
}
.a-chart-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: clamp(40px, 5vw, 64px) 0;
  }
  .feature-row.flip { direction: ltr; }
  .feature-copy { max-width: 100%; }
  .ws-products { grid-template-columns: repeat(2, 1fr); }
}


/* ────────────────────────────────────────────
   EXTRA FEATURES — compact, no icons
   ──────────────────────────────────────────── */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 3vw, 56px);
  padding-top: clamp(48px, 5vw, 80px);
  border-top: 1px solid var(--border);
}
.extra h4 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.extra p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-secondary);
  max-width: 34ch;
}

@media (max-width: 768px) {
  .extras-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .extra p { max-width: none; }
}


/* ────────────────────────────────────────────
   RESULTS — The ONE dark section
   ──────────────────────────────────────────── */
.dark-section {
  background: var(--bg-dark);
  color: var(--ink-inverse);
}
.results-lead {
  max-width: 520px;
  margin-bottom: clamp(64px, 6vw, 100px);
}
.results-lead .h2 { color: #fff; }
.results-lead p {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.result-col {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.result-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 5.5vw, 96px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.result-num .accent { color: var(--accent); }
.result-desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .results-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; gap: 40px; }
}


/* ────────────────────────────────────────────
   PHASE 2 — Progress tracker
   ──────────────────────────────────────────── */
.phase2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
}
.phase2-copy .h2 { margin-bottom: 20px; }
.phase2-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-secondary);
  margin-bottom: 32px;
  max-width: 440px;
}

.phase2-card {
  background: var(--bg-subtle);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--border);
}
.phase2-count {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.phase2-count-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.phase2-count-num .accent { color: var(--accent); }
.phase2-count-label {
  font-size: 14px;
  color: var(--ink-secondary);
}
.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(10,37,64,0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
}
.progress-bar {
  height: 100%;
  border-radius: 3px;
  background: var(--accent);
  width: 0%;
  transition: width 1.4s var(--ease-spring);
}
.phase2-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-tertiary);
}

@media (max-width: 768px) {
  .phase2-grid { grid-template-columns: 1fr; gap: 40px; }
}


/* ────────────────────────────────────────────
   DEMO FORM
   ──────────────────────────────────────────── */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}
.demo-copy .h2 { margin-bottom: 20px; }
.demo-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-secondary);
  max-width: 440px;
}
.demo-form-card {
  background: var(--bg-subtle);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-faint);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea {
  resize: vertical;
  min-height: 72px;
}

@media (max-width: 768px) {
  .demo-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}


/* ────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: var(--ink-tertiary);
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: var(--ink-tertiary);
}
.footer-links a:hover { color: var(--ink); }


/* ────────────────────────────────────────────
   STORY BRIDGE — transition text between sections
   ──────────────────────────────────────────── */
.story-bridge {
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--border);
}
.bridge-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: var(--ink-tertiary);
  max-width: 640px;
  font-style: italic;
}


/* ────────────────────────────────────────────
   COST CALLOUT — dramatic summary after pain grid
   ──────────────────────────────────────────── */
.cost-callout {
  margin-top: clamp(56px, 5vw, 88px);
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 48px);
  background: var(--bg-subtle);
  border-radius: var(--r-xl);
  border-left: 3px solid var(--accent);
}
.cost-callout-text {
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.6;
  color: var(--ink-secondary);
  max-width: 640px;
}
.cost-callout-text strong {
  color: var(--ink);
  font-weight: 600;
}


/* ────────────────────────────────────────────
   RESULT LABELS — small descriptor under number
   ──────────────────────────────────────────── */
.result-label {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}


/* ────────────────────────────────────────────
   DEMO TRUST SIGNALS — checkmark list
   ──────────────────────────────────────────── */
.demo-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.demo-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-secondary);
}
.demo-trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green);
}


/* ────────────────────────────────────────────
   FLOATING CTA BAR — always visible after hero
   ──────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 400ms ease;
}
.floating-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.floating-cta-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(10, 37, 64, 0.92);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  padding: 12px 12px 12px 24px;
  border-radius: 52px;
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.2), 0 2px 8px rgba(10, 37, 64, 0.1);
  border: 1px solid rgba(255,255,255,0.08);
}
.floating-cta-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.floating-cta-count {
  color: #fff;
  font-weight: 600;
}
.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 48px;
}

@media (max-width: 580px) {
  .floating-cta-inner {
    padding: 10px 10px 10px 18px;
    gap: 10px;
  }
  .floating-cta-text { font-size: 12px; }
  .btn-sm { padding: 8px 18px; font-size: 13px; }
}


/* ────────────────────────────────────────────
   SCROLL REVEALS — subtle, earned
   ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children slightly */
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 240ms; }


/* ================================================================
   ANIMATION LAYER — Stripe/Apple/Wise quality motion
   Everything below is additive. No layout or color changes.
   ================================================================ */


/* ────────────────────────────────────────────
   AMBIENT GRADIENT MESH — barely perceptible
   atmospheric glow in the hero background
   ──────────────────────────────────────────── */
.hero-gradient-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
  /* Very subtle — 3-5% opacity is the target */
}

/* Blob 1: cool violet — upper left */
.mesh-blob-1 {
  width: clamp(400px, 50vw, 700px);
  height: clamp(400px, 50vw, 700px);
  top: -15%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(103, 76, 251, 0.055) 0%,
    rgba(103, 76, 251, 0.02) 50%,
    transparent 70%
  );
  animation: mesh-drift-1 38s ease-in-out infinite;
}

/* Blob 2: warm indigo — center right */
.mesh-blob-2 {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  top: 10%;
  right: -5%;
  background: radial-gradient(
    circle,
    rgba(80, 60, 200, 0.04) 0%,
    rgba(100, 80, 220, 0.015) 50%,
    transparent 70%
  );
  animation: mesh-drift-2 45s ease-in-out infinite;
}

/* Blob 3: warm teal hint — lower left */
.mesh-blob-3 {
  width: clamp(200px, 28vw, 420px);
  height: clamp(200px, 28vw, 420px);
  bottom: 5%;
  left: 20%;
  background: radial-gradient(
    circle,
    rgba(60, 100, 200, 0.03) 0%,
    rgba(40, 80, 180, 0.01) 50%,
    transparent 70%
  );
  animation: mesh-drift-3 52s ease-in-out infinite;
}

@keyframes mesh-drift-1 {
  0%   { transform: translate(0px, 0px) scale(1); }
  25%  { transform: translate(30px, -20px) scale(1.04); }
  50%  { transform: translate(-20px, 30px) scale(0.97); }
  75%  { transform: translate(15px, 15px) scale(1.02); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes mesh-drift-2 {
  0%   { transform: translate(0px, 0px) scale(1); }
  30%  { transform: translate(-25px, 20px) scale(1.06); }
  60%  { transform: translate(20px, -30px) scale(0.95); }
  80%  { transform: translate(-10px, 10px) scale(1.03); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes mesh-drift-3 {
  0%   { transform: translate(0px, 0px) scale(1); }
  35%  { transform: translate(20px, -15px) scale(1.05); }
  65%  { transform: translate(-15px, 25px) scale(0.98); }
  100% { transform: translate(0px, 0px) scale(1); }
}


/* ────────────────────────────────────────────
   MARQUEE LOGO STRIP
   ──────────────────────────────────────────── */
.logo-marquee-outer {
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
  /* Fade edges for a premium look */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  width: max-content;
  will-change: transform;
}

.logo-marquee-track .proof-logo {
  /* Remove flex-wrap — marquee is continuous */
  flex-shrink: 0;
}


/* ────────────────────────────────────────────
   NAV LINK UNDERLINE SLIDE
   ──────────────────────────────────────────── */
.nav-link {
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
  transform: scaleX(1);
}


/* ────────────────────────────────────────────
   CTA BUTTONS — scale + shadow bloom + ripple
   ──────────────────────────────────────────── */
.btn {
  transition:
    background 180ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 6px 20px rgba(103, 76, 251, 0.32), 0 2px 6px rgba(103, 76, 251, 0.18);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(103, 76, 251, 0.2);
  transition-duration: 80ms;
}

.btn-ghost:hover {
  transform: translateY(-1px);
}

.btn-ghost:active {
  transform: translateY(0);
  transition-duration: 80ms;
}

/* Nav CTA button */
.nav-cta-btn {
  transition:
    background 180ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-cta-btn:hover {
  transform: translateY(-1px) scale(1.015) !important;
  box-shadow: 0 4px 12px rgba(103, 76, 251, 0.28) !important;
}

.nav-cta-btn:active {
  transform: translateY(0) scale(0.98) !important;
  transition-duration: 80ms !important;
}

/* Ripple keyframe for click feedback */
@keyframes btn-ripple-anim {
  to {
    transform: scale(1);
    opacity: 0;
  }
}


/* ────────────────────────────────────────────
   LIVE BADGE in dashboard — breathing pulse
   ──────────────────────────────────────────── */
.dash-live-badge::before {
  animation: live-pulse 2.2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(36, 180, 126, 0.4);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
    box-shadow: 0 0 0 4px rgba(36, 180, 126, 0);
  }
}


/* ────────────────────────────────────────────
   FEATURE CARDS — tilt setup + shine sweep
   ──────────────────────────────────────────── */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

/* Shine sweep on hover */
.tilt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%) rotate(15deg);
  transition: transform 0s;
  pointer-events: none;
}

.tilt-card:hover::after {
  transform: translateX(200%) rotate(15deg);
  transition: transform 0.6s ease-out;
}

/* Keep existing feature-card hover but enhance */
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: none; /* GSAP handles tilt; remove CSS translateY conflict */
}


/* ────────────────────────────────────────────
   HERO MOCKUP — enhanced hover shadow
   ──────────────────────────────────────────── */
.mockup-window {
  transition: box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-window:hover {
  box-shadow:
    0 24px 72px rgba(10, 37, 64, 0.16),
    0 8px 20px rgba(10, 37, 64, 0.08),
    0 0 0 1px var(--border);
  transform: none; /* GSAP handles this */
}


/* ────────────────────────────────────────────
   DARK SECTION ENTRY — scale reveal atmosphere
   ──────────────────────────────────────────── */
.dark-section {
  position: relative;
  overflow: hidden;
}

/* Subtle inner glow that animates in */
.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 100%,
    rgba(103, 76, 251, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Result numbers: subtle border-top line draws in on entry */
.result-col {
  position: relative;
}

.result-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Triggered by GSAP adding opacity — we use a separate observer trick:
   when the result-col becomes visible (opacity != 0), animate the line */
.result-col.gsap-visible::before {
  width: 100%;
}


/* ────────────────────────────────────────────
   FORM INPUTS — field glow + label color
   ──────────────────────────────────────────── */
.form-group input,
.form-group textarea,
.form-group select {
  transition:
    border-color 200ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 200ms cubic-bezier(0.16, 1, 0.3, 1),
    background 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(103, 76, 251, 0.12), 0 1px 4px rgba(103, 76, 251, 0.08);
  background: #fefefe;
}

.form-group label {
  transition: color 200ms cubic-bezier(0.16, 1, 0.3, 1);
}


/* ────────────────────────────────────────────
   PROGRESS BAR — shimmer effect when filling
   ──────────────────────────────────────────── */
.progress-bar {
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  animation: progress-shimmer 2.4s 0.8s ease-in-out infinite;
}

@keyframes progress-shimmer {
  0%   { left: -60%; }
  100% { left: 140%; }
}


/* ────────────────────────────────────────────
   SCROLL REVEAL — GSAP overrides the CSS
   transition system. Keep CSS classes for
   no-JS fallback only.
   ──────────────────────────────────────────── */

/* Override: GSAP sets clip-path programmatically.
   Remove the CSS transition that would conflict. */
.reveal {
  /* GSAP controls opacity and clip-path now */
  opacity: 0;
  transition: none;
}

/* Fallback for no-JS / reduced motion: show everything */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  .mesh-blob {
    animation: none !important;
  }
  .hero-eyebrow-dot {
    animation: none !important;
  }
  .dash-live-badge::before {
    animation: none !important;
  }
  .progress-bar::after {
    animation: none !important;
  }
  .logo-marquee-track {
    animation: none !important;
  }
}


/* ────────────────────────────────────────────
   FOOTER LINKS — underline hover
   ──────────────────────────────────────────── */
.footer-links a {
  position: relative;
  transition: color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink-tertiary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}


/* ────────────────────────────────────────────
   SIDEBAR ITEMS — micro hover in mockup
   ──────────────────────────────────────────── */
.sidebar-item {
  transition: background 150ms ease, color 150ms ease;
  cursor: default;
}

.sidebar-item:not(.active):hover {
  background: rgba(10, 37, 64, 0.04);
  color: var(--ink);
}


/* ────────────────────────────────────────────
   PHASE 2 CARD — entrance glow
   ──────────────────────────────────────────── */
.phase2-card {
  position: relative;
  overflow: hidden;
}

.phase2-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 76, 251, 0.06) 0%, transparent 70%);
  pointer-events: none;
}


/* ────────────────────────────────────────────
   HERO DOT GRID — subtle drift animation
   ──────────────────────────────────────────── */
.hero::before {
  animation: dot-grid-drift 60s linear infinite;
}

@keyframes dot-grid-drift {
  0%   { background-position: 0px 0px; }
  100% { background-position: 24px 24px; }
}


/* ────────────────────────────────────────────
   SECTION DIVIDERS — gradient fade line
   ──────────────────────────────────────────── */
.feature-row {
  /* Upgrade the bottom border to a gradient fade */
  border-bottom: none;
  position: relative;
}

/* Feature row dividers are drawn via GSAP .section-line-draw elements */


/* ────────────────────────────────────────────
   PAIN STATS — subtle scale on scroll entry
   Applied via JS; CSS provides the base
   ──────────────────────────────────────────── */
.pain-stat {
  will-change: transform;
}


/* ────────────────────────────────────────────
   RESULT NUMBERS — landing punch (scale)
   GSAP drives this; CSS just sets will-change
   ──────────────────────────────────────────── */
[data-count] {
  display: inline-block;
  will-change: transform;
}


/* ────────────────────────────────────────────
   SCROLL PROGRESS BAR — accent line at top
   ──────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 200;
  pointer-events: none;
}


/* ────────────────────────────────────────────
   SECTION LINE DRAW — dividers between features
   ──────────────────────────────────────────── */
.section-line-draw {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: var(--border);
  transform-origin: left center;
  /* scaleX(0) is set by GSAP, animates to 1 */
}


/* ────────────────────────────────────────────
   BRIDGE WORDS — word-by-word scroll reveal
   ──────────────────────────────────────────── */
.bridge-word {
  display: inline;
  will-change: opacity;
  /* Starts at 0.08 opacity via GSAP, fades to 1 */
}


/* ────────────────────────────────────────────
   LEGAL PAGES — Privacy, Terms
   ──────────────────────────────────────────── */
.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.legal-content h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 8px;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-secondary);
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-secondary);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover {
  color: var(--accent-hover);
}
.legal-content strong {
  color: var(--ink);
  font-weight: 600;
}
