/* feature-page.css — shared styles for /features/<slug>.html
 * Reuses design tokens from variables.css. No new colors invented.
 * Mobile-first reflow targets: 360, 414, 768, 1024.
 */

/* ============================================================
   BRAND ICONS
   Lucide removed brand glyphs (facebook, instagram), so we inject
   inline SVG instead. Size and color are inherited from the parent
   icon container so they match lucide visually.
   ============================================================ */
.brand-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
/* Inside the various icon containers we use across feature pages,
   force the brand SVG to match the lucide sibling's box size. */
.feat-vp-icon .brand-icon            { width: 20px; height: 20px; }
.feat-uc-icon .brand-icon            { width: 22px; height: 22px; }
.feat-cap-group-icon .brand-icon     { width: 18px; height: 18px; }
.feat-cap-item-icon .brand-icon      { width: 14px; height: 14px; }
.feat-related-icon .brand-icon       { width: 20px; height: 20px; }
.feat-hub-icon .brand-icon           { width: 24px; height: 24px; }
.mock-hub-spoke .brand-icon          { width: 22px; height: 22px; }
.mock-channel-icon .brand-icon       { width: 18px; height: 18px; }
.mock-post-handle .brand-icon        { width: 14px; height: 14px; color: #e1306c; }
.badge-ico .brand-icon               { width: 14px; height: 14px; }
.badge-ico                           { display: inline-flex; align-items: center; }

/* ============================================================
   PAGE WRAPPER + BREADCRUMB
   ============================================================ */
.feat-page {
  background: var(--bg-dark);
  color: var(--text-primary);
}
/* Navbar is position: fixed (h ≈ 81px desktop, 64px mobile).
   Push main content below it so the breadcrumb is not hidden underneath. */
.feat-page main {
  padding-top: 81px;
}
@media (max-width: 768px) {
  .feat-page main {
    padding-top: 64px;
  }
}

/* Section anchors only need to clear the fixed navbar (~81px desktop / 64px mobile).
   The old top sticky rail is gone — sidebar lives on the left now. */
.feat-caps,
.feat-usecases,
.feat-how,
.feat-objections,
.feat-related,
.feat-final-cta,
.feat-valueprops,
.feat-hero,
.feat-hub-section {
  scroll-margin-top: 100px;
}
@media (max-width: 768px) {
  .feat-caps,
  .feat-usecases,
  .feat-how,
  .feat-objections,
  .feat-related,
  .feat-final-cta,
  .feat-valueprops,
  .feat-hero,
  .feat-hub-section {
    scroll-margin-top: 80px;
  }
}

/* Breadcrumb gets its own breathing room — visible band between nav and rail */
.feat-breadcrumb {
  padding: var(--space-5) 0 var(--space-4);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.feat-breadcrumb a {
  color: var(--text-secondary);
  transition: color .2s;
}
.feat-breadcrumb a:hover { color: var(--accent-green); }
.feat-breadcrumb .sep { margin: 0 0.5rem; opacity: 0.5; }

/* ============================================================
   SIDEBAR SHELL — replaces the old top sticky pill rail.
   Used by both the hub (/features/) and the 13 internal pages.
   - Desktop ≥769px: 240px sticky left sidebar + content right
   - Mobile ≤768px: sidebar hidden; "Jump to feature ▾" button opens
     a bottom-sheet picker (handled by feature-nav.js)
   ============================================================ */
.feat-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: var(--space-8);
  padding-top: var(--space-6);
}
.feat-sidebar {
  position: sticky;
  top: 100px; /* below the fixed 81px navbar */
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--glass-border) transparent;
  padding-right: 0.5rem;
}
.feat-sidebar::-webkit-scrollbar { width: 4px; }
.feat-sidebar::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 4px; }

.feat-sidebar-head {
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 0 var(--space-3) var(--space-3);
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: var(--space-3);
}
.feat-sidebar-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 2px;
}
.feat-sidebar-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.3;
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  cursor: pointer;
}
.feat-sidebar-link:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}
.feat-sidebar-link.active {
  background: var(--color-success-bg);
  color: var(--accent-green);
  border-left-color: var(--accent-green);
  font-weight: 600;
}
.feat-sidebar-icon {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: currentColor;
}
.feat-sidebar-icon i { width: 16px; height: 16px; }
.feat-sidebar-icon .brand-icon { width: 16px; height: 16px; }

/* Right content column: prevent overflow + neutralize nested .container.
   Each <section> inside still wraps content in .container, but inside the
   shell we don't want extra side padding or another max-width clamp. */
.feat-content { min-width: 0; }
.feat-content > section > .container,
.feat-content > .container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/* ============================================================
   MOBILE: sidebar hidden, jump button + bottom sheet
   ============================================================ */
.feat-jump-btn {
  display: none; /* shown on mobile */
  position: fixed;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 88;
  background: var(--bg-card);
  border: 1px solid var(--glass-border-hover);
  color: var(--text-primary);
  padding: 0.7rem 1.1rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.9rem;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(20, 23, 32, 0.92);
}
.feat-jump-btn i { width: 16px; height: 16px; transition: transform 0.2s; }
.feat-jump-btn:hover { background: var(--bg-card-hover); }

.feat-jump-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: flex-end;
  justify-content: center;
}
.feat-jump-sheet.open {
  display: flex;
  animation: feat-fade-in 0.2s ease;
}
@keyframes feat-fade-in { from { opacity: 0; } to { opacity: 1; } }
.feat-jump-sheet-inner {
  background: var(--bg-card);
  border-top: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 78vh;
  overflow-y: auto;
  padding: var(--space-5);
  animation: feat-slide-up 0.25s ease;
  padding-bottom: calc(var(--space-5) + env(safe-area-inset-bottom));
}
@keyframes feat-slide-up { from { transform: translateY(20px); opacity: 0.9; } to { transform: translateY(0); opacity: 1; } }
.feat-jump-sheet-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: var(--space-3);
}
.feat-jump-sheet-head h3 {
  font-size: 1rem; font-weight: 700; margin: 0;
}
.feat-jump-sheet-close {
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
}
.feat-jump-sheet-close i { width: 16px; height: 16px; }
.feat-jump-sheet-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 2px;
}
/* Reuse the same link styles inside the sheet */
.feat-jump-sheet .feat-sidebar-link { padding: 0.7rem 0.85rem; font-size: 0.95rem; }
.feat-jump-sheet .feat-sidebar-icon { width: 22px; height: 22px; }
.feat-jump-sheet .feat-sidebar-icon i { width: 18px; height: 18px; }
.feat-jump-sheet .feat-sidebar-icon .brand-icon { width: 18px; height: 18px; }

/* Switch shell to single column on mobile + show jump button */
@media (max-width: 768px) {
  .feat-shell {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: var(--space-4);
  }
  .feat-sidebar { display: none; }
  .feat-jump-btn { display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.feat-hero {
  /* Internal page hero is now FULL-WIDTH (above the sidebar shell).
     This removes the cramped "in a container" feel users hit when the
     hero was rendered inside the right column. */
  padding: var(--space-8) 0 var(--space-12);
  position: relative;
  overflow: hidden;
}
.feat-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 1fr);
  gap: var(--space-8);
  align-items: center;
}
/* min-width: 0 on grid items prevents long unbreakable words from
   pushing the column past its fr ratio (which was making the mockup
   column collapse to 130px on broadcasting + lead-source pages). */
.feat-hero-content { min-width: 0; }
.feat-mockup       { min-width: 0; }
/* Hero badge inherits from .badge.green (brand class). */
.feat-hero-content .badge.green i,
.feat-hero-content .badge.green .brand-icon {
  width: 16px; height: 16px;
}
.feat-hero-content h1.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: var(--space-3);
}
.feat-hero-tagline {
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  /* Aligned with brand --accent-green (was --accent-mint) for site-wide consistency. */
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.feat-hero-content p.lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  max-width: 56ch;
}
.feat-hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.feat-hero-ctas .btn { display: inline-flex; align-items: center; gap: 0.5rem; }

.feat-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.12), transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   HERO MOCKUP — distinct visual per feature, all built from
   CSS + lucide icons. Mobile reflow: scale down + stack.
   ============================================================ */
.feat-mockup {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  /* No aspect-ratio: the inner mockup defines its own natural height.
     Some mocks are content-driven (mini-app form, payment receipt) and
     were being cropped; others are diagram-driven (broadcast pulses,
     hub-and-spoke) and still need a min-height to look substantial. */
}

/* shared device frame */
.feat-mockup-card {
  position: relative;
  width: 100%;
  min-height: 420px; /* enough for diagram-style mocks (broadcast/hub/calendar) */
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-5);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  display: flex;
  flex-direction: column;
}
/* Diagram-style mocks need explicit fill of the parent height */
.feat-mockup-card > .mock-broadcast,
.feat-mockup-card > .mock-hub,
.feat-mockup-card > .mock-rocket,
.feat-mockup-card > .mock-ai-stack,
.feat-mockup-card > .mock-calendar,
.feat-mockup-card > .mock-comment-stack,
.feat-mockup-card > .mock-commerce,
.feat-mockup-card > .mock-dynamic,
.feat-mockup-card > .mock-kanban,
.feat-mockup-card > .mock-mini-app,
.feat-mockup-card > .mock-payment,
.feat-mockup-card > .mock-ticket {
  flex: 1;
  min-height: 380px;
}
/* Inbox uses naturally-stacking rows — let it grow to fit */
.feat-mockup-card > .mock-inbox-row:first-child,
.feat-mockup-card > .mock-inbox-row {
  /* nothing — natural height works */
}

/* Inbox mockup: stacked chat rows */
.mock-inbox-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.025);
  margin-bottom: 0.5rem;
  border: 1px solid var(--glass-border);
}
.mock-inbox-row.active { background: rgba(37, 211, 102, 0.08); border-color: rgba(37,211,102,0.2); }
.mock-inbox-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient-neon);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.mock-inbox-meta { flex: 1; min-width: 0; }
.mock-inbox-name { font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 0.4rem; }
.mock-inbox-name .src-badge {
  font-size: 0.62rem; padding: 1px 6px; border-radius: 4px;
  background: var(--bg-lighter); color: var(--text-muted);
  font-weight: 500;
}
.mock-inbox-name .src-badge.ig { color: #e1306c; background: rgba(225, 48, 108, 0.12); }
.mock-inbox-name .src-badge.fb { color: #4267b2; background: rgba(66, 103, 178, 0.12); }
.mock-inbox-name .src-badge.rcs { color: #4285f4; background: rgba(66, 133, 244, 0.12); }
.mock-inbox-name .src-badge.wa { color: var(--accent-green); background: var(--color-success-bg); }
.mock-inbox-preview {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-inbox-time { font-size: 0.7rem; color: var(--text-tertiary); flex-shrink: 0; }
.mock-inbox-unread {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-green); color: #000;
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  /* Ambient pulse — suggests live incoming activity. */
  animation: feat-unread-ring 2.6s ease-out infinite;
}
@keyframes feat-unread-ring {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* AI dual mockup: voice waveform + text bubble */
.mock-ai-stack { display: flex; flex-direction: column; gap: var(--space-4); height: 100%; }
.mock-ai-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.mock-ai-label {
  font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.06em; font-weight: 600; margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.mock-ai-label .live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-green);
  animation: feat-pulse 1.5s infinite;
}
@keyframes feat-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}
.mock-waveform {
  display: flex; align-items: end; gap: 3px; height: 50px; margin-top: 0.5rem;
}
.mock-waveform .bar {
  flex: 1; background: var(--gradient-primary); border-radius: 2px;
  animation: feat-wave 1.2s ease-in-out infinite;
}
.mock-waveform .bar:nth-child(1) { animation-delay: 0s; }
.mock-waveform .bar:nth-child(2) { animation-delay: 0.1s; }
.mock-waveform .bar:nth-child(3) { animation-delay: 0.2s; }
.mock-waveform .bar:nth-child(4) { animation-delay: 0.3s; }
.mock-waveform .bar:nth-child(5) { animation-delay: 0.4s; }
.mock-waveform .bar:nth-child(6) { animation-delay: 0.5s; }
.mock-waveform .bar:nth-child(7) { animation-delay: 0.6s; }
.mock-waveform .bar:nth-child(8) { animation-delay: 0.5s; }
.mock-waveform .bar:nth-child(9) { animation-delay: 0.4s; }
.mock-waveform .bar:nth-child(10) { animation-delay: 0.3s; }
.mock-waveform .bar:nth-child(11) { animation-delay: 0.2s; }
.mock-waveform .bar:nth-child(12) { animation-delay: 0.1s; }
@keyframes feat-wave {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}
.mock-chat-bubble {
  background: var(--gradient-primary);
  color: #fff; padding: 0.6rem 0.85rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg);
  font-size: 0.85rem; max-width: 80%;
  margin-left: auto; margin-top: 0.4rem;
}
.mock-chat-bubble.bot {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  margin-left: 0; margin-right: auto;
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
}

/* Broadcast mockup: 1 sender → many receivers */
.mock-broadcast {
  position: relative; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.mock-broadcast-source {
  width: 80px; height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 2; position: relative;
  box-shadow: var(--shadow-glow-strong);
}
.mock-broadcast-source i { width: 38px; height: 38px; }
.mock-broadcast-pulse {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%; border: 2px solid var(--accent-green);
  animation: feat-broadcast-pulse 2s ease-out infinite;
  opacity: 0;
}
.mock-broadcast-pulse.p2 { animation-delay: 0.6s; }
.mock-broadcast-pulse.p3 { animation-delay: 1.2s; }
@keyframes feat-broadcast-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3.2); opacity: 0; }
}
.mock-broadcast-receivers {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  pointer-events: none;
}
.mock-broadcast-recv {
  width: 30px; height: 30px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  align-self: center; justify-self: center;
}
.mock-broadcast-recv i { width: 14px; height: 14px; }
.mock-broadcast-recv.delivered { color: var(--accent-green); border-color: rgba(37,211,102,0.3); }
.mock-broadcast-recv.read { background: var(--accent-green); color: #000; border-color: transparent; }

/* Calendar mockup */
.mock-calendar { display: flex; flex-direction: column; height: 100%; gap: 0.6rem; }
.mock-calendar-head {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; color: var(--text-primary);
}
.mock-calendar-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.mock-calendar-cell {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: var(--text-muted);
  background: rgba(255,255,255,0.02); border-radius: var(--radius-sm);
}
.mock-calendar-cell.dow { color: var(--text-tertiary); font-weight: 600; background: transparent; }
.mock-calendar-cell.avail { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.mock-calendar-cell.selected {
  background: var(--gradient-primary); color: #fff; font-weight: 700;
  box-shadow: var(--shadow-glow);
}
.mock-calendar-slots { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0.5rem; }
.mock-calendar-slot {
  padding: 0.4rem 0.75rem; border-radius: var(--radius-md);
  font-size: 0.72rem; background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border); color: var(--text-secondary);
}
.mock-calendar-slot.picked {
  background: var(--accent-green); color: #000; border-color: transparent; font-weight: 600;
  /* Subtle glow — suggests "your slot is reserved". */
  animation: feat-slot-glow 2.8s ease-in-out infinite;
}
@keyframes feat-slot-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  50%      { box-shadow: 0 0 12px 1px rgba(37, 211, 102, 0.45); }
}

/* Ticket mockup */
/* ============================================================
   E-TICKET MOCKUP — designed to look like a real business event
   pass (Apple Wallet / Eventbrite vibe). Portrait-leaning, dense
   data, perforated middle, QR + order id, "Includes" footer.
   ============================================================ */
.mock-ticket {
  background:
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.05), transparent 60%),
    linear-gradient(160deg, #1a1d26 0%, #14171f 100%);
  border-radius: var(--radius-lg);
  padding: 1rem;
  height: 100%;
  display: flex; flex-direction: column;
  gap: 0.75rem;
  position: relative;
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

/* ── Brand strip (top-most band) ── */
.mock-ticket-brand-strip {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.mock-ticket-presents {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--accent-green);
}
.mock-ticket-presents i { width: 10px; height: 10px; }
.mock-ticket-tier {
  background: var(--gradient-primary);
  color: #000;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  /* Subtle "live status" pulse — VIP feels active. */
  animation: feat-tier-pulse 3s ease-in-out infinite;
}
@keyframes feat-tier-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  50%      { box-shadow: 0 0 14px rgba(37, 211, 102, 0.45); }
}

/* ── Event title block ── */
.mock-ticket-event-block { display: flex; flex-direction: column; gap: 0.35rem; }
.mock-ticket-event {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.15rem; line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.mock-ticket-meta-row {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.mock-ticket-meta {
  display: inline-flex; align-items: center; gap: 0.25rem;
}
.mock-ticket-meta i { width: 11px; height: 11px; color: var(--accent-green); }

/* ── Speaker / host strip ── */
.mock-ticket-speaker {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.65rem;
  background: rgba(37, 211, 102, 0.05);
  border: 1px solid rgba(37, 211, 102, 0.14);
  border-radius: var(--radius-md);
}
.mock-ticket-speaker-avatar {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.7rem;
  color: #000;
}
.mock-ticket-speaker-body { flex: 1; min-width: 0; }
.mock-ticket-speaker-label {
  font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1px;
}
.mock-ticket-speaker-name {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── Perforation divider with side cutouts (real ticket feel) ── */
.mock-ticket-divider {
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
  margin: 0.2rem 0;
  position: relative;
}
.mock-ticket-divider::before, .mock-ticket-divider::after {
  content: ""; position: absolute;
  width: 12px; height: 12px;
  background: var(--bg-dark);
  border-radius: 50%;
  top: -6px;
}
.mock-ticket-divider::before { left: -22px; }
.mock-ticket-divider::after { right: -22px; }

/* ── Data row: Attendee · Seat · Doors ── */
.mock-ticket-data-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 0.5rem;
}
.mock-ticket-field-label {
  font-size: 0.58rem; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.mock-ticket-field-value {
  font-size: 0.82rem; font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── QR + order number row ── */
.mock-ticket-qr-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.4rem 0;
}
.mock-ticket-qr {
  display: block;
  width: 88px; height: 88px;
  flex-shrink: 0;
  margin: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 6px 14px -4px rgba(0, 0, 0, 0.5);
}
.mock-ticket-num { display: flex; flex-direction: column; gap: 2px; }
.mock-ticket-num-label {
  font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted);
}
.mock-ticket-num-value {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 800;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* ── Includes footer ── */
.mock-ticket-includes {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
}
.mock-ticket-include {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 99px;
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.mock-ticket-include i { width: 11px; height: 11px; color: var(--accent-green); }

/* Comment-to-DM mockup: stacked post + DM */
.mock-comment-stack { display: flex; flex-direction: column; gap: var(--space-3); height: 100%; }
.mock-post {
  background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: var(--space-3); flex: 1;
}
.mock-post-head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.mock-post-handle { font-weight: 600; font-size: 0.82rem; }
.mock-post-handle i { color: #e1306c; width: 14px; height: 14px; }
.mock-post-image {
  height: 60px; background: var(--gradient-primary);
  border-radius: var(--radius-md); margin-bottom: 0.5rem;
}
.mock-comment-row {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.03); padding: 0.4rem;
  border-radius: var(--radius-md); margin-top: 0.4rem;
}
.mock-comment-row .mock-inbox-avatar { width: 24px; height: 24px; font-size: 0.7rem; }
.mock-comment-row .text { font-size: 0.75rem; }
.mock-comment-row.bot {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37,211,102,0.18);
}
.mock-arrow {
  text-align: center; color: var(--accent-green);
  font-size: 1.5rem; line-height: 1;
}
.mock-dm {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-lg); padding: var(--space-3);
  /* Gentle "fresh DM" highlight — suggests automation just delivered it. */
  animation: feat-dm-fresh 3.4s ease-in-out infinite;
}
@keyframes feat-dm-fresh {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); border-color: rgba(37, 211, 102, 0.2); }
  50%      { box-shadow: 0 0 16px rgba(37, 211, 102, 0.18); border-color: rgba(37, 211, 102, 0.35); }
}
.mock-dm-label { font-size: 0.7rem; color: var(--accent-green); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.mock-dm-text { font-size: 0.8rem; color: var(--text-primary); }

/* Lead Hub mockup: hub-and-spoke */
.mock-hub {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.mock-hub-center {
  width: 80px; height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 3; position: relative;
  box-shadow: var(--shadow-glow);
}
.mock-hub-center i { width: 36px; height: 36px; }

/* Receive-pulse rings — three rings shrink INTO the hub, suggesting
   leads flowing in from the spokes. Inverse of broadcast pulse. */
.mock-hub-receive {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  border: 2px solid var(--accent-green);
  opacity: 0;
  z-index: 2;
  animation: feat-hub-receive 3.6s ease-in infinite;
}
.mock-hub-receive.r2 { animation-delay: 1.2s; }
.mock-hub-receive.r3 { animation-delay: 2.4s; }
@keyframes feat-hub-receive {
  0%   { transform: scale(2.6); opacity: 0; }
  35%  { opacity: 0.55; }
  100% { transform: scale(0.95); opacity: 0; }
}
.mock-hub-spokes {
  position: absolute; inset: 0;
}
.mock-hub-spoke {
  position: absolute;
  width: 48px; height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s;
}
.mock-hub-spoke i { width: 22px; height: 22px; }
.mock-hub-spoke:hover { border-color: var(--accent-green); color: var(--accent-green); transform: scale(1.05); }
.mock-hub-spoke.s1 { top: 10%; left: 50%; transform: translateX(-50%); }
.mock-hub-spoke.s2 { top: 25%; right: 5%; }
.mock-hub-spoke.s3 { bottom: 25%; right: 5%; }
.mock-hub-spoke.s4 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.mock-hub-spoke.s5 { bottom: 25%; left: 5%; }
.mock-hub-spoke.s6 { top: 25%; left: 5%; }
.mock-hub-line {
  position: absolute; top: 50%; left: 50%;
  width: 1px; height: 30%;
  background: linear-gradient(to bottom, transparent, var(--accent-green), transparent);
  transform-origin: top center;
  opacity: 0.5;
}

/* Rocket mockup: multi-channel parallel */
.mock-rocket {
  display: flex; flex-direction: column; height: 100%; justify-content: center; gap: var(--space-3);
}
.mock-channel-row {
  display: flex; align-items: center; gap: 0.5rem;
}
.mock-channel-icon {
  width: 36px; height: 36px;
  background: var(--bg-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-green); flex-shrink: 0;
}
.mock-channel-icon i { width: 18px; height: 18px; }
.mock-channel-bar {
  flex: 1; height: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 99px; overflow: hidden; position: relative;
}
.mock-channel-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: var(--gradient-primary);
  border-radius: 99px;
  animation: feat-rocket-fill 3s ease-out forwards;
}
.mock-channel-tps {
  font-size: 0.72rem; color: var(--text-muted); font-weight: 600;
  font-variant-numeric: tabular-nums; min-width: 50px; text-align: right;
}
@keyframes feat-rocket-fill {
  from { width: 0; }
  to { width: var(--fill, 70%); }
}

/* Mini App mockup: WhatsApp form */
.mock-mini-app {
  background: var(--bg-card-hover);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  height: 100%;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.mock-mini-head {
  font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.mock-mini-head i { color: var(--accent-green); }
.mock-mini-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.mock-mini-input.filled { color: var(--text-primary); }
.mock-mini-dropdown {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex; justify-content: space-between; align-items: center;
}
.mock-mini-dropdown i { width: 14px; height: 14px; }
.mock-mini-cta {
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.7rem;
  font-size: 0.85rem; font-weight: 700;
  text-align: center;
  margin-top: auto;
  /* Subtle "tap me next" cue. */
  animation: feat-mini-cta 2.8s ease-in-out infinite;
}
@keyframes feat-mini-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  50%      { box-shadow: 0 0 18px rgba(37, 211, 102, 0.45); }
}

/* Payment mockup: receipt card */
.mock-payment {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  height: 100%;
  display: flex; flex-direction: column;
}
.mock-payment-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.mock-payment-head .ok-pill {
  background: var(--color-success-bg); color: var(--accent-green);
  padding: 2px 8px; border-radius: 99px; font-weight: 700; font-size: 0.7rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
  /* Success confirmation pulse. */
  animation: feat-paid-pulse 3.2s ease-in-out infinite;
}
@keyframes feat-paid-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  50%      { box-shadow: 0 0 14px rgba(37, 211, 102, 0.5); }
}
.mock-payment-head .ok-pill i { width: 12px; height: 12px; }
.mock-payment-amount {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2rem; line-height: 1; margin-bottom: var(--space-3);
  color: var(--text-primary);
}
.mock-payment-amount .currency { font-size: 1.2rem; color: var(--text-secondary); margin-right: 4px; }
.mock-payment-line { display: flex; justify-content: space-between; font-size: 0.8rem; padding: 0.4rem 0; border-bottom: 1px dashed var(--glass-border); }
.mock-payment-line:last-child { border: none; font-weight: 700; color: var(--text-primary); }
.mock-payment-line span:first-child { color: var(--text-muted); }
.mock-payment-cta {
  background: var(--gradient-primary); color: #fff;
  padding: 0.75rem; border-radius: var(--radius-md);
  font-size: 0.85rem; font-weight: 700; text-align: center;
  margin-top: auto;
}

/* Commerce mockup */
.mock-commerce {
  display: flex; flex-direction: column; gap: var(--space-3); height: 100%;
}
.mock-product-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: var(--space-3);
  display: flex; gap: var(--space-3); align-items: center;
}
.mock-product-img {
  width: 60px; height: 60px;
  background: var(--gradient-primary); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.mock-product-img i { width: 26px; height: 26px; }
.mock-product-info { flex: 1; }
.mock-product-name { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); }
.mock-product-price { font-size: 0.75rem; color: var(--text-secondary); margin-top: 2px; }
.mock-product-add {
  width: 30px; height: 30px;
  background: var(--accent-green); color: #000;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.mock-cart-summary {
  background: var(--gradient-subtle); border: 1px solid rgba(37,211,102,0.18);
  border-radius: var(--radius-lg); padding: var(--space-3);
  display: flex; justify-content: space-between; align-items: center;
}
.mock-cart-summary .label { font-size: 0.78rem; color: var(--text-secondary); }
.mock-cart-summary .total { font-weight: 700; font-size: 1.1rem; color: var(--accent-green); }

/* Dynamic experience mockup */
.mock-dynamic {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; height: 100%;
}
.mock-dyn-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: var(--space-3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 0.4rem;
  /* Cards take turns highlighting — suggests the platform generates
     all of these output types in rotation. */
  animation: feat-dyn-cycle 8s ease-in-out infinite;
}
.mock-dynamic .mock-dyn-card:nth-child(1) { animation-delay: 0s; }
.mock-dynamic .mock-dyn-card:nth-child(2) { animation-delay: 2s; }
.mock-dynamic .mock-dyn-card:nth-child(3) { animation-delay: 4s; }
.mock-dynamic .mock-dyn-card:nth-child(4) { animation-delay: 6s; }
@keyframes feat-dyn-cycle {
  0%, 22%, 100% { border-color: var(--glass-border); box-shadow: none; }
  8%, 18%       { border-color: rgba(37, 211, 102, 0.45); box-shadow: 0 0 16px rgba(37, 211, 102, 0.18); }
}
.mock-dyn-card.full { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; padding: var(--space-4); }
.mock-dyn-card i { width: 28px; height: 28px; color: var(--accent-green); }
.mock-dyn-card .label { font-size: 0.78rem; font-weight: 600; }
.mock-dyn-card .sub { font-size: 0.7rem; color: var(--text-muted); }

/* Kanban mockup */
.mock-kanban {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; height: 100%;
}
.mock-kanban-col {
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-md); padding: 0.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.mock-kanban-head {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-muted);
  display: flex; justify-content: space-between; align-items: center;
}
.mock-kanban-head .count {
  background: var(--bg-card); border-radius: 99px; padding: 1px 6px;
  font-size: 0.65rem; font-weight: 700; color: var(--text-secondary);
}
.mock-kanban-card {
  background: var(--bg-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding: 0.5rem;
  font-size: 0.7rem;
}
.mock-kanban-card .name { font-weight: 600; color: var(--text-primary); }
.mock-kanban-card .meta { font-size: 0.62rem; color: var(--text-muted); margin-top: 2px; }
.mock-kanban-card.won {
  border-color: rgba(37,211,102,0.3);
  background: rgba(37,211,102,0.05);
  /* Subtle settle — suggests deals just landed in the Won column. */
  animation: feat-kanban-won 3.4s ease-in-out infinite;
}
@keyframes feat-kanban-won {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  50%      { transform: translateY(-1px); box-shadow: 0 4px 14px -4px rgba(37, 211, 102, 0.35); }
}

/* ============================================================
   VALUE PROPS (3 mini stat cards under hero)
   ============================================================ */
.feat-valueprops {
  padding: var(--space-6) 0;
}
.feat-valueprops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.feat-vp-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: left;
  transition: all 0.2s;
}
.feat-vp-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}
.feat-vp-icon {
  width: 40px; height: 40px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-green);
  margin-bottom: var(--space-3);
}
.feat-vp-icon i { width: 20px; height: 20px; }
.feat-vp-value {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.6rem; color: var(--text-primary);
  margin-bottom: 4px;
}
.feat-vp-label {
  font-size: 0.85rem; color: var(--text-secondary);
  line-height: 1.4;
}

/* ============================================================
   USE CASES — 3 cards
   ============================================================ */
.feat-usecases {
  padding: var(--space-12) 0;
}
.feat-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; margin-bottom: var(--space-3);
  text-align: center;
}
.feat-section-sub {
  font-size: 1rem; color: var(--text-secondary);
  text-align: center; max-width: 60ch; margin: 0 auto var(--space-8);
}
.feat-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.feat-uc-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  transition: all 0.25s;
}
.feat-uc-card:hover {
  border-color: var(--glass-border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}
.feat-uc-icon {
  width: 44px; height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: var(--space-4);
}
.feat-uc-icon i { width: 22px; height: 22px; }
.feat-uc-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem;
  color: var(--text-primary); line-height: 1.3;
}
.feat-uc-card p {
  font-size: 0.9rem; color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================================
   HOW IT WORKS — vertical timeline
   No background tint (was creating a visible box inside the right
   column). Steps are connected by a green line that fades into the
   next step — the timeline IS the visual.
   ============================================================ */
.feat-how {
  padding: var(--space-12) 0;
}
.feat-how-timeline {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
  max-width: 720px;
  position: relative;
}
.feat-how-step {
  position: relative;
  display: flex;
  gap: 1.25rem;
  padding-bottom: var(--space-6);
}
.feat-how-step:last-child { padding-bottom: 0; }

/* Connector line — runs from below the marker of step N to the marker of N+1 */
.feat-how-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 40px;            /* below the 36px marker + 4px gap */
  left: 17px;           /* center of the 36px marker */
  bottom: -8px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(37, 211, 102, 0.55), rgba(37, 211, 102, 0.08));
  border-radius: 2px;
}

/* Step marker (small green pill with number) */
.feat-how-marker {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  color: #000;
  box-shadow: 0 6px 18px -6px rgba(37, 211, 102, 0.5);
  position: relative; z-index: 1;
}
.feat-how-num { font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }

.feat-how-body {
  flex: 1; min-width: 0;
  padding-top: 0.35rem;
}
.feat-how-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.feat-how-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .feat-how-step { gap: 1rem; padding-bottom: var(--space-5); }
  .feat-how-step:not(:last-child)::before { left: 15px; }
  .feat-how-marker { width: 32px; height: 32px; font-size: 0.78rem; }
  .feat-how-body h4 { font-size: 1rem; }
  .feat-how-body p { font-size: 0.9rem; }
}

/* ============================================================
   EYEBROW — small uppercase label above section titles for rhythm
   ============================================================ */
.feat-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent-green);
  padding: 0.25rem 0.7rem;
  background: var(--color-success-bg);
  border-radius: 99px;
  border: 1px solid rgba(37, 211, 102, 0.18);
  margin-bottom: var(--space-3);
}
.feat-section-title--left { text-align: left; }
.feat-section-sub--left { text-align: left; margin-left: 0; }

/* ============================================================
   CAPABILITIES — Capability Matrix (grouped, icon-rich)
   ============================================================ */
.feat-caps {
  padding: var(--space-12) 0;
  position: relative;
  background:
    radial-gradient(circle at 90% 0%, rgba(37, 211, 102, 0.04), transparent 40%),
    var(--bg-dark);
}
.feat-cap-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.feat-cap-group {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.feat-cap-group:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}
.feat-cap-group::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-primary);
  opacity: 0; transition: opacity 0.25s;
}
.feat-cap-group:hover::before { opacity: 1; }

.feat-cap-group-head {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--glass-border);
}
.feat-cap-group-icon {
  width: 36px; height: 36px;
  background: var(--gradient-subtle);
  border: 1px solid rgba(37, 211, 102, 0.18);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-green);
  flex-shrink: 0;
}
.feat-cap-group-icon i { width: 18px; height: 18px; }
.feat-cap-group h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.feat-cap-group-items {
  display: flex; flex-direction: column; gap: 0.2rem;
}
.feat-cap-item {
  display: flex; align-items: start; gap: 0.7rem;
  padding: 0.55rem 0;
}
.feat-cap-item + .feat-cap-item {
  border-top: 1px dashed rgba(255, 255, 255, 0.04);
}
.feat-cap-item-icon {
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-green);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.feat-cap-item-icon i { width: 14px; height: 14px; }
.feat-cap-item:hover .feat-cap-item-icon {
  background: var(--color-success-bg);
  color: var(--accent-green);
}
.feat-cap-item-body { flex: 1; min-width: 0; }
.feat-cap-item-label {
  font-size: 0.92rem; font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}
.feat-cap-item-detail {
  font-size: 0.78rem; color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* Integrations — clean divider + compact chips */
.feat-integrations {
  margin-top: var(--space-12);
  text-align: center;
}
.feat-integrations-divider {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.feat-integrations-divider::before,
.feat-integrations-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  max-width: 200px;
}
.feat-integrations-divider span {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 0 1rem;
}
.feat-integration-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.45rem;
  max-width: 920px; margin: 0 auto;
}
.feat-integration-chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 99px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  font-size: 0.78rem; color: var(--text-secondary);
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.feat-integration-chip i {
  width: 11px; height: 11px;
  color: var(--accent-green);
}
.feat-integration-chip:hover {
  border-color: rgba(37, 211, 102, 0.3);
  color: var(--text-primary);
}

/* ============================================================
   OBJECTIONS / FAQ block
   ============================================================ */
.feat-objections {
  padding: var(--space-12) 0;
  background:
    radial-gradient(circle at 80% 70%, rgba(37, 211, 102, 0.04), transparent 50%),
    var(--bg-dark);
}
/* ============================================================
   OBJECTIONS — interactive accordion ("Decision Log")
   Asymmetric two-column on desktop (intro on left, list on right);
   stacks on mobile. Each row is a native <details>/<summary>.
   Active row gets a left accent bar; answer renders inside a
   WhatsApp-style reply bubble for on-brand visual.
   ============================================================ */
.feat-objections-shell {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.feat-objections-head {
  position: sticky;
  top: 160px; /* sits below the sticky switcher rail */
}
.feat-objections-meta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: var(--space-4);
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 99px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.feat-objections-count {
  color: var(--accent-green); font-weight: 700;
}
.feat-objections-divider { opacity: 0.5; }

/* Accordion list */
.feat-obj-accordion {
  display: flex; flex-direction: column;
  gap: 0.75rem;
}
.feat-obj-row {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
  position: relative;
}
.feat-obj-row::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.25s;
}
.feat-obj-row[open] {
  background: var(--bg-card-hover);
  border-color: rgba(37, 211, 102, 0.22);
}
.feat-obj-row[open]::before {
  opacity: 1;
}

/* Summary (clickable head) */
.feat-obj-row-head {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s;
}
.feat-obj-row-head::-webkit-details-marker { display: none; }
.feat-obj-row-head:hover { background: rgba(255, 255, 255, 0.02); }

.feat-obj-num {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 800;
  color: var(--text-muted);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  width: 28px;
  transition: color 0.2s;
}
.feat-obj-row[open] .feat-obj-num { color: var(--accent-green); }

.feat-obj-q {
  flex: 1;
  font-size: 1rem; font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0;
}

/* +/− toggle indicator */
.feat-obj-toggle {
  position: relative;
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.feat-obj-row[open] .feat-obj-toggle {
  background: var(--accent-green);
  border-color: transparent;
  transform: rotate(180deg);
}
.feat-obj-toggle-plus,
.feat-obj-toggle-minus {
  position: absolute;
  background: var(--text-secondary);
  transition: background 0.25s, transform 0.25s, opacity 0.25s;
}
.feat-obj-toggle-plus  { width: 10px; height: 2px; }
.feat-obj-toggle-minus { width: 2px; height: 10px; }
.feat-obj-row[open] .feat-obj-toggle-plus,
.feat-obj-row[open] .feat-obj-toggle-minus { background: #000; }
.feat-obj-row[open] .feat-obj-toggle-minus { opacity: 0; transform: scaleY(0); }

/* Body (answer + tl;dr) */
.feat-obj-body {
  padding: 0 var(--space-5) var(--space-5) calc(var(--space-5) + 28px + var(--space-4));
}
.feat-obj-a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  /* WhatsApp-style reply bubble — incoming-message tail */
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 4px;
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-3);
  position: relative;
}
.feat-obj-tldr {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0.8rem 0.5rem 0.5rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 99px;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
  max-width: 100%;
}
.feat-obj-tldr-label {
  font-size: 0.62rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #000;
  background: var(--accent-green);
  padding: 3px 8px;
  border-radius: 99px;
  flex-shrink: 0;
}
.feat-obj-tldr-text { line-height: 1.4; }

/* Foot — soft escape hatch to chat */
.feat-objections-foot {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px dashed var(--glass-border);
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.feat-objections-foot-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--accent-green);
  font-weight: 700;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 99px;
  border: 1px solid rgba(37, 211, 102, 0.25);
  background: rgba(37, 211, 102, 0.06);
  transition: background 0.2s, border-color 0.2s;
}
.feat-objections-foot-link:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.5);
}
.feat-objections-foot-link i { width: 14px; height: 14px; }
.feat-objections-foot-link .brand-icon { width: 14px; height: 14px; }

/* ============================================================
   RELATED FEATURES rail
   ============================================================ */
.feat-related {
  padding: var(--space-12) 0;
}
.feat-related-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.feat-related-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.feat-related-card:hover {
  border-color: rgba(37, 211, 102, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(37, 211, 102, 0.18);
}
.feat-related-card-top {
  display: flex; justify-content: space-between; align-items: start;
  margin-bottom: var(--space-3);
}
.feat-related-icon {
  width: 40px; height: 40px;
  background: var(--gradient-subtle);
  border: 1px solid rgba(37, 211, 102, 0.18);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-green);
}
.feat-related-icon i { width: 20px; height: 20px; }
.feat-related-eyebrow {
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.25rem 0.55rem;
  border-radius: 99px;
  border: 1px solid var(--glass-border);
}
.feat-related-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.35rem;
  color: var(--text-primary);
  line-height: 1.3;
}
.feat-related-card .tag {
  font-size: 0.85rem; color: var(--accent-green); font-weight: 500;
  margin-bottom: var(--space-4);
}
/* Mini mockup preview — shrunken version of the destination's hero visual */
.feat-related-mock {
  position: relative;
  height: 140px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-card-hover) 100%);
  border: 1px solid var(--glass-border);
  padding: 0.6rem;
  overflow: hidden;
  margin-bottom: var(--space-4);
  /* Scale the inner mockup down so it reads as a "preview" not full content */
  --mock-scale: 0.55;
}
.feat-related-mock > * {
  transform: scale(var(--mock-scale));
  transform-origin: top left;
  width: calc(100% / var(--mock-scale));
  height: calc(100% / var(--mock-scale));
  pointer-events: none;
}
/* Disable all ambient animations inside the related-features preview
   tiles so they don't compete with the main hero mockup. */
.feat-related-mock .mock-broadcast-pulse,
.feat-related-mock .mock-channel-fill,
.feat-related-mock .live-dot,
.feat-related-mock .mock-waveform .bar,
.feat-related-mock .mock-inbox-unread,
.feat-related-mock .mock-calendar-slot.picked,
.feat-related-mock .mock-ticket-tier,
.feat-related-mock .mock-dm,
.feat-related-mock .mock-hub-receive,
.feat-related-mock .mock-mini-cta,
.feat-related-mock .mock-payment-head .ok-pill,
.feat-related-mock .mock-dyn-card,
.feat-related-mock .mock-kanban-card.won { animation: none !important; }
/* Fade out the bottom edge of the mock to suggest more content below */
.feat-related-mock::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--bg-card));
  pointer-events: none;
}
.feat-related-card .arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; color: var(--accent-green); font-weight: 700;
  margin-top: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feat-related-card .arrow i {
  width: 14px; height: 14px;
  transition: transform 0.2s;
}
.feat-related-card:hover .arrow i {
  transform: translateX(4px);
}

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.feat-final-cta {
  padding: var(--space-12) 0 var(--space-16);
}
.feat-final-banner {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.16), rgba(16, 185, 129, 0.06));
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  position: relative; overflow: hidden;
}
.feat-final-banner::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.18), transparent 70%);
  top: -150px; right: -150px;
  pointer-events: none;
}
.feat-final-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: var(--space-3);
  position: relative; z-index: 1;
}
.feat-final-banner p {
  font-size: 1rem; color: var(--text-secondary);
  max-width: 60ch; margin: 0 auto var(--space-6);
  position: relative; z-index: 1;
}
.feat-final-ctas {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.feat-final-ctas .btn { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ============================================================
   FEATURES HUB PAGE — long-scroll layout
   Hub hero now uses brand .page-hero + .section-header.center +
   .badge.green + .section-title + .section-subtitle (matches
   /use-cases exactly — no custom hero classes).
   Below the hero, the sidebar shell takes over. Each feature is
   a vertical section in the right column.
   ============================================================ */

/* Each feature row inside the hub right column */
.feat-hub-section {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--glass-border);
}
.feat-hub-section:last-of-type { border-bottom: none; }

.feat-hub-section-head {
  display: flex; align-items: flex-start; gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.feat-hub-section-icon {
  width: 56px; height: 56px;
  background: var(--gradient-subtle);
  border: 1px solid rgba(37, 211, 102, 0.18);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-green);
  flex-shrink: 0;
}
.feat-hub-section-icon i { width: 26px; height: 26px; }
.feat-hub-section-icon .brand-icon { width: 26px; height: 26px; }
.feat-hub-section-titles { flex: 1; min-width: 0; }
.feat-hub-section-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent-green);
  background: var(--color-success-bg);
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  border: 1px solid rgba(37, 211, 102, 0.18);
  margin-bottom: var(--space-2);
}
.feat-hub-section h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}
/* Title is clickable — opens the deep-dive feature page */
.feat-hub-section-title-link {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(to right, var(--accent-green), var(--accent-green));
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.25s ease, color 0.2s;
}
.feat-hub-section-title-link:hover {
  color: var(--accent-green);
  background-size: 100% 2px;
}
/* Icon block also links to the deep-dive page */
a.feat-hub-section-icon {
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s;
}
a.feat-hub-section-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 211, 102, 0.4);
}
.feat-hub-section-tagline {
  font-size: 1.05rem; font-weight: 600;
  /* Was --accent-mint — switched to brand --accent-green for site-wide
     consistency (mint is used in cookie banner + guides only; green
     is the dominant marketing accent). */
  color: var(--accent-green);
  margin-bottom: var(--space-3);
}
.feat-hub-section-hook {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 64ch;
  margin-bottom: var(--space-5);
}

/* Two-column layout inside each row: bullets+CTAs left, use-cases right */
.feat-hub-section-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: var(--space-6);
  align-items: start;
}
.feat-hub-left {
  display: flex; flex-direction: column;
  gap: var(--space-5);
}

/* Capability bullets — top 3 from the feature */
.feat-hub-bullets {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.feat-hub-bullet {
  display: flex; align-items: start; gap: 0.7rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}
.feat-hub-bullet-icon {
  width: 30px; height: 30px;
  background: rgba(37, 211, 102, 0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-green);
  flex-shrink: 0;
}
.feat-hub-bullet-icon i { width: 14px; height: 14px; }
.feat-hub-bullet-icon .brand-icon { width: 14px; height: 14px; }
.feat-hub-bullet-body { flex: 1; min-width: 0; }
.feat-hub-bullet-label {
  font-size: 0.92rem; font-weight: 600;
  color: var(--text-primary); line-height: 1.35;
}
.feat-hub-bullet-detail {
  font-size: 0.78rem; color: var(--text-muted);
  margin-top: 2px;
}

/* Use-case mini cards (3 stacked) */
.feat-hub-uses {
  display: flex; flex-direction: column;
  gap: 0.75rem;
}
.feat-hub-use {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  position: relative;
}
.feat-hub-use::before {
  content: "";
  position: absolute;
  top: var(--space-4); left: 0;
  width: 3px; height: 18px;
  background: var(--gradient-primary);
  border-radius: 0 2px 2px 0;
}
.feat-hub-use-title {
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  padding-left: 0.6rem;
}
.feat-hub-use-text {
  font-size: 0.85rem; color: var(--text-secondary);
  line-height: 1.55;
  padding-left: 0.6rem;
}

/* Section action row — lives INSIDE the left column under the bullets.
   Uses generic copy ("Read full feature") so the button width is
   identical across all 13 features — no more variable-length CTAs.
   Brand .btn .btn-primary + .btn-ghost for site-wide consistency. */
.feat-hub-section-actions {
  display: flex; align-items: center; gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: var(--space-2);
}
.feat-hub-section-actions .btn i { width: 16px; height: 16px; transition: transform 0.2s; }
.feat-hub-section-actions .btn:hover i { transform: translateX(3px); }
.feat-hub-section-actions .btn-ghost:hover i { transform: translate(2px, -2px); }

@media (max-width: 768px) {
  .feat-hub-section { padding: var(--space-6) 0; }
  .feat-hub-section-head { gap: var(--space-3); }
  .feat-hub-section-icon { width: 44px; height: 44px; }
  .feat-hub-section-icon i, .feat-hub-section-icon .brand-icon { width: 22px; height: 22px; }
  .feat-hub-section-body {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* ============================================================
   RESPONSIVE — mobile reflow targets
   ============================================================ */

/* Tablet (≤900px) */
@media (max-width: 900px) {
  .feat-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .feat-mockup {
    margin: 0 auto;
    max-width: 380px;
  }
  .feat-valueprops-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }
  .feat-usecase-grid,
  .feat-obj-grid,
  .feat-related-rail,
  .feat-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* .feat-how-grid removed (now vertical timeline — works at any width) */
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
  .feat-switcher {
    top: 56px;
  }
  .feat-switcher-pill { font-size: 0.78rem; padding: 0.35rem 0.7rem; }

  .feat-hero {
    padding: var(--space-6) 0 var(--space-6);
  }
  .feat-hero-content h1 {
    font-size: 1.85rem;
  }
  .feat-hero-tagline {
    font-size: 1.05rem;
  }
  .feat-hero-content p.lead {
    font-size: 0.95rem;
  }
  .feat-hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .feat-hero-ctas .btn {
    width: 100%; justify-content: center;
  }

  .feat-mockup {
    max-width: 100%;
    aspect-ratio: 1;
  }
  .feat-mockup-card {
    padding: var(--space-4);
  }

  /* Value props stack vertically on mobile */
  .feat-valueprops-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  .feat-vp-card {
    padding: var(--space-4);
    display: flex; align-items: center; gap: var(--space-4);
    text-align: left;
  }
  .feat-vp-icon {
    margin-bottom: 0; flex-shrink: 0;
  }
  .feat-vp-value { font-size: 1.3rem; margin-bottom: 2px; }

  /* Use cases, how, obj, related, hub all stack to 1 col */
  .feat-usecase-grid,
  .feat-obj-grid,
  .feat-related-rail,
  .feat-hub-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  /* .feat-how-step::before removed (timeline pattern handles its own connector) */

  .feat-cap-groups {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .feat-cap-group { padding: var(--space-4); }
  .feat-cap-group h3 { font-size: 0.95rem; }
  .feat-cap-item-label { font-size: 0.88rem; }
  .feat-cap-item-detail { font-size: 0.74rem; }

  /* Objections accordion — stacks; head + list become a single column */
  .feat-objections-shell {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .feat-objections-head { position: static; }
  .feat-obj-row-head    { padding: var(--space-3) var(--space-4); gap: var(--space-3); }
  .feat-obj-num         { font-size: 0.95rem; width: 24px; }
  .feat-obj-q           { font-size: 0.95rem; }
  .feat-obj-body        { padding: 0 var(--space-4) var(--space-4) calc(var(--space-4) + 24px + var(--space-3)); }
  .feat-obj-a           { font-size: 0.9rem; padding: var(--space-3); }
  .feat-obj-tldr        { font-size: 0.8rem; padding: 0.4rem 0.7rem 0.4rem 0.4rem; }
  .feat-obj-tldr-label  { font-size: 0.6rem; padding: 2px 6px; }

  .feat-related-card { padding: var(--space-4); }
  .feat-related-mock { height: 110px; --mock-scale: 0.5; }
  .feat-related-card h3 { font-size: 1rem; }
  .feat-related-card .arrow { font-size: 0.82rem; }

  .feat-section-title--left,
  .feat-section-sub--left { text-align: center; margin-left: auto; margin-right: auto; }

  .feat-section-title { font-size: 1.6rem; }

  .feat-final-banner {
    padding: var(--space-6) var(--space-4);
  }
  .feat-final-ctas {
    flex-direction: column;
  }
  .feat-final-ctas .btn {
    width: 100%; justify-content: center;
  }

  /* Mockup adjustments on small screens */
  .mock-broadcast-source { width: 64px; height: 64px; }
  .mock-broadcast-source i { width: 30px; height: 30px; }
  .mock-broadcast-pulse { width: 64px; height: 64px; }
  .mock-broadcast-recv { width: 26px; height: 26px; }
  .mock-broadcast-recv i { width: 12px; height: 12px; }

  .mock-hub-center { width: 64px; height: 64px; }
  .mock-hub-center i { width: 28px; height: 28px; }
  .mock-hub-spoke { width: 40px; height: 40px; }
  .mock-hub-spoke i { width: 18px; height: 18px; }

  .mock-ticket { padding: 0.85rem; gap: 0.6rem; }
  .mock-ticket-event { font-size: 1rem; }
  .mock-ticket-qr { width: 78px; height: 78px; }
  .mock-ticket-num-value { font-size: 0.85rem; }
  .mock-ticket-data-row { gap: 0.35rem; }
  .mock-ticket-field-value { font-size: 0.75rem; }
  .mock-ticket-include { font-size: 0.65rem; padding: 0.2rem 0.45rem; }

  .mock-payment-amount { font-size: 1.6rem; }
  .mock-payment-amount .currency { font-size: 1rem; }

  .mock-kanban {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
  }
  .mock-kanban-card { padding: 0.35rem; font-size: 0.62rem; }
  .mock-kanban-head { font-size: 0.55rem; }
  .mock-kanban-head .count { font-size: 0.55rem; padding: 1px 4px; }
}

/* Tiny phones (≤380px) */
@media (max-width: 380px) {
  .feat-hero-content h1 { font-size: 1.6rem; }
  .feat-section-title { font-size: 1.4rem; }
  .feat-mockup-card { padding: var(--space-3); }
}

/* Reduced motion: disable animations */
@media (prefers-reduced-motion: reduce) {
  .mock-broadcast-pulse,
  .mock-waveform .bar,
  .mock-channel-fill,
  .mock-ai-label .live-dot,
  .mock-inbox-unread,
  .mock-calendar-slot.picked,
  .mock-ticket-tier,
  .mock-dm,
  .mock-hub-receive,
  .mock-mini-cta,
  .mock-payment-head .ok-pill,
  .mock-dyn-card,
  .mock-kanban-card.won {
    animation: none !important;
  }
}
