/* ── CSS Custom Properties ── */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --bg: #08070B;
  --bg-card: #12111A;
  --bg-elevated: #181722;
  --text-primary: #F0EDE8;
  --text-muted: rgba(240,237,232,0.55);
  --accent: #C45D35;
  --accent-light: #D4846A;
  --accent-glow: rgba(196,93,53,0.15);
  --accent-secondary: rgba(140,143,255,0.75);
  --green: #4ADE80;
  --border: rgba(240,237,232,0.08);
  --border-hover: rgba(240,237,232,0.15);
  --nav-height: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
  overflow-x: hidden;
}

body {
  font-family: 'Satoshi', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(240,237,232,0.1); border-radius: 3px; }

/* ── Cursor Glow ── */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,93,53,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1), top 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Progress Bar ── */
.progress-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px) saturate(100%);
  -webkit-backdrop-filter: blur(0px) saturate(100%);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav.scrolled {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(8,7,11,0.82);
  border-bottom-color: var(--border);
  height: 60px;
}
.nav.scrolled .nav-brand span {
  opacity: 0.9;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img { height: 28px; width: auto; border-radius: 6px; }
.nav-brand span {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin-left: auto;
  margin-right: 36px;
}
.nav-links li { display: flex; align-items: center; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
  position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
/* Nav dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 4px; }
.nav-chevron { width: 12px; height: 12px; transition: transform 0.2s; flex-shrink: 0; }
.nav-dropdown-wrap:hover .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  z-index: 100;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}
.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(196,93,53,0.3);
  background: var(--accent-light);
}
.nav-cta svg { width: 14px; height: 14px; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(8,7,11,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.nav-mobile-menu.open { display: flex; flex-direction: column; gap: 20px; }
.nav-mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

/* ── Section Base ── */
section { position: relative; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: calc(var(--nav-height) + 48px);
  position: relative;
  overflow: clip;
}

/* Dot grid background — text zone only */
.hero-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50vh;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-effects::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(196,93,53,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  animation: gridDotFade 4s ease-in-out infinite;
}
@keyframes gridDotFade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(196,93,53,0.12);
  top: 5%;
  left: -10%;
  animation: floatOrb1 20s ease-in-out infinite;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(140,143,255,0.08);
  top: 20%;
  right: -10%;
  animation: floatOrb2 25s ease-in-out infinite;
}
@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(60px, -40px); }
  66% { transform: translate(-30px, 50px); }
}
@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-50px, 30px); }
  66% { transform: translate(40px, -60px); }
}

.hero-text-zone {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(18,17,26,0.6);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(74,222,128,0.4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-product-name {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 16px;
  -webkit-mask-image: linear-gradient(-70deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0.35) 45%, rgba(255,255,255,1) 60%);
  mask-image: linear-gradient(-70deg, rgba(255,255,255,1) 30%, rgba(255,255,255,0.35) 45%, rgba(255,255,255,1) 60%);
  -webkit-mask-size: 300% 100%;
  mask-size: 300% 100%;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0% { -webkit-mask-position: 200% 0; mask-position: 200% 0; }
  100% { -webkit-mask-position: -100% 0; mask-position: -100% 0; }
}

.hero-subtitle {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(196,93,53,0.35);
  background: var(--accent-light);
}
.hero-cta-primary svg { width: 16px; height: 16px; }
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.hero-cta-secondary:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}
.hero-fine {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* ── Hero Screenshot ── */
.hero-screenshot-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  perspective: 2000px;
}
.hero-screenshot-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(196,93,53,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-screenshot-frame {
  position: relative;
  z-index: 1;
  background: #1a1924;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  transform: rotateX(4deg);
  transform-origin: bottom center;
  opacity: 0;
  animation: heroFrameEntrance 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
@keyframes heroFrameEntrance {
  0% {
    opacity: 0;
    transform: rotateX(8deg) translateY(100px) scale(0.88);
    filter: blur(8px);
  }
  50% {
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: rotateX(4deg) translateY(0) scale(1);
    filter: blur(0px);
  }
}
.hero-screenshot-titlebar {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #1a1924;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.hero-screenshot-dots {
  display: flex;
  gap: 8px;
}
.hero-screenshot-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.hero-screenshot-dots span:nth-child(1) { background: #FF5F57; }
.hero-screenshot-dots span:nth-child(2) { background: #FEBC2E; }
.hero-screenshot-dots span:nth-child(3) { background: #28C840; }
.hero-screenshot-titlebar-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.hero-screenshot-content {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-screenshot-content .hero-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.hero-screenshot-content .hero-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-screenshot-content .hero-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-screenshot-content .hero-screen.hero-screen-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}
/* Overlay label per screen — compact bottom-left pill */
.hero-screen-overlay {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 18px 8px 14px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-screen-overlay .overlay-title {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-screen-overlay .overlay-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.hero-screen-overlay .overlay-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
/* Screen label overlay */
.hero-screen-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}
.hero-screen-label.visible {
  opacity: 1;
}
/* Scroll progress dots */
.hero-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.hero-progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s ease;
}
.hero-progress-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}
/* Inline placeholder if no screenshot yet */
.hero-screenshot-placeholder {
  width: 100%;
  min-height: 500px;
  background: linear-gradient(180deg, #FFFCF9 0%, #f5f0eb 100%);
  display: flex;
  flex-direction: column;
  padding: 32px;
  font-family: 'Satoshi', system-ui, sans-serif;
  color: #1A1815;
}
.hero-screenshot-placeholder .mock-sidebar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 64px;
  background: #f5f0eb;
  border-right: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  gap: 24px;
}
.mock-sidebar-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(196,93,53,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.mock-sidebar-icon.active { background: rgba(196,93,53,0.15); }
.hero-screenshot-placeholder .mock-main {
  margin-left: 80px;
}
.mock-greeting {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1A1815;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-cards {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.mock-card {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 20px;
}
.mock-card-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  color: #1A1815;
}
.mock-card-status {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-card-status .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
}
.mock-card-status span { color: #6b7280; }
.mock-timeline-title {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.mock-timeline-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 13px;
  color: #374151;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.mock-timeline-item .check {
  color: #4ADE80;
  font-weight: 700;
}
.mock-timeline-item .time {
  margin-left: auto;
  color: #9ca3af;
  font-size: 12px;
}

/* Bottom gradient fade */
.hero-screenshot-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Floating integration badges */
.hero-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.hero-badges-set {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-badges-set.active {
  opacity: 1;
}
.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.hero-badge svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}
.hero-badge:nth-child(1) { animation: badgeFloat1 3s ease-in-out infinite; }
.hero-badge:nth-child(2) { animation: badgeFloat2 3.5s ease-in-out infinite; }
.hero-badge:nth-child(3) { animation: badgeFloat3 2.8s ease-in-out infinite; }

@keyframes badgeFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes badgeFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes badgeFloat3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ── Prompt Cards ── */
.prompt-cards-section {
  padding: 40px 0 40px;
  margin-top: -20px;
}
.prompt-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}
.prompt-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.prompt-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: conic-gradient(from var(--angle), transparent 70%, var(--accent) 85%, var(--accent-secondary) 95%, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: rotateBorder 4s linear infinite;
}
.prompt-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.prompt-card:hover::before { opacity: 1; }
.prompt-card:hover p { color: var(--text-primary); }
.prompt-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.prompt-card-label {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.prompt-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
/* ── Manifesto ── */
.manifesto {
  padding: 140px 0 120px;
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 48px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.manifesto .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(240,237,232,0.72);
}
.manifesto-text strong {
  color: var(--text-primary);
  font-weight: 600;
}
/* Typewriter scroll reveal */
.manifesto-text .tw-word {
  color: rgba(240,237,232,0.15);
  transition: color 0.3s ease;
}
.manifesto-text .tw-word.tw-visible {
  color: rgba(240,237,232,0.72);
}
.manifesto-text strong .tw-word.tw-visible {
  color: var(--text-primary);
}
.manifesto-aside { padding-top: 20px; }
.manifesto-tagline {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 28px);
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.4;
  margin-bottom: 32px;
}
.manifesto-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.manifesto-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.manifesto-stat-number {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.manifesto-stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Section Shared ── */
.section-label {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 80px;
}
.section-divider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

/* ── Hero Features ── */
.hero-features { padding: 120px 0; }
/* Pillars — vertical stack */
.pillars-stack {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.step {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}
.step .step-text {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 28px;
}
.step .window-frame {
  width: 100%;
}
.step-num {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: rgba(196,93,53,0.35);
  line-height: 1;
  flex-shrink: 0;
}
.step-heading {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}
.pillar-demo-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.pillar-demo-link:hover { opacity: 0.7; }

/* macOS window frame */
.window-frame {
  background: #1a1924;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.window-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(196,93,53,0.12);
}
.window-frame .video-container {
  aspect-ratio: 1042/773;
  overflow: hidden;
}
.window-frame .video-container video,
.window-frame .video-container img.poster-fallback,
.window-frame .video-container img.feature-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.window-frame .video-container img.feature-screenshot {
  animation: kenBurns 20s ease-in-out infinite alternate;
}
.step:nth-child(2) .feature-screenshot { animation-delay: -5s; }
.step:nth-child(3) .feature-screenshot { animation-delay: -10s; }
.step:nth-child(4) .feature-screenshot { animation-delay: -15s; }
@keyframes kenBurns {
  0%   { transform: scale(1)   translate(0, 0); }
  50%  { transform: scale(1.06) translate(-1%, -2%); }
  100% { transform: scale(1.03) translate(1%, -1%); }
}

/* Video container */
.video-container {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-card) 0%, #1a1924 40%, var(--bg-elevated) 100%);
}
.video-container video,
.video-container img.poster-fallback {
  width: 100%;
  display: block;
  object-fit: contain;
}
.video-container::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(8,7,11,0.35) 100%);
}
.video-container::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(196,93,53,0.03) 50%, transparent 100%);
  background-size: 100% 200%;
  animation: scanLine 4s ease-in-out infinite;
}
@keyframes scanLine {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 200%; }
}

/* ── Video Showcase Section ── */
.video-showcase { padding: 120px 0; }
/* Tighten title-to-tabs gap */
.video-showcase .section-title { margin-bottom: 32px; }

/* Segmented tab bar */
.showcase-tabs {
  display: inline-flex;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  margin: 0 auto 24px;
}
/* Center the inline-flex tabs */
.video-showcase .container { text-align: center; }
.showcase-tab {
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.showcase-tab:hover {
  color: var(--text-primary);
}
.showcase-tab.active {
  color: var(--text-primary);
  background: var(--bg-elevated);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3), 0 0 0 1px var(--border-hover);
}
/* Compact description — centered block between tabs and video */
.showcase-description {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}
.showcase-desc-num {
  display: inline-block;
  font-family: 'Clash Display', system-ui;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.showcase-desc-title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
  font-family: 'Clash Display', system-ui, sans-serif;
  line-height: 1.3;
}
.showcase-desc-text {
  display: block;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.showcase-desc-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.showcase-desc-link:hover { opacity: 0.7; }
/* Full-width video frame */
.showcase-frame {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
  background: #1a1924;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.showcase-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  z-index: -1;
  background: radial-gradient(ellipse at 50% -20%, rgba(196,93,53,0.15), transparent 70%);
  pointer-events: none;
}
.showcase-titlebar {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #1a1924;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
}
.showcase-titlebar-dots {
  display: flex;
  gap: 8px;
}
.showcase-titlebar-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.showcase-titlebar-dots span:nth-child(1) { background: #FF5F57; }
.showcase-titlebar-dots span:nth-child(2) { background: #FEBC2E; }
.showcase-titlebar-dots span:nth-child(3) { background: #28C840; }
.showcase-titlebar-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  transition: opacity 0.2s ease;
}
.showcase-video-wrap {
  position: relative;
  background: #000;
}
.showcase-video-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: #000;
}
/* Showcase navigation arrows */
.showcase-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 12px;
  right: 12px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}
.showcase-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(26,25,36,0.9);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}
.showcase-nav-btn:hover {
  background: rgba(196,93,53,0.3);
  border-color: rgba(196,93,53,0.5);
  color: #fff;
}
.showcase-nav-btn svg { width: 18px; height: 18px; }
/* Sound toggle button */
.showcase-sound-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(26,25,36,0.85);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}
.showcase-sound-btn:hover {
  background: rgba(196,93,53,0.3);
  border-color: rgba(196,93,53,0.5);
  color: #fff;
}
.showcase-sound-btn svg { width: 18px; height: 18px; }

/* ── Use Cases Section ── */
.use-cases { padding: 120px 0; }
.use-cases-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.use-cases-tab {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.use-cases-tab:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
}
.use-cases-tab.active {
  color: var(--text-primary);
  background: var(--bg-elevated);
  border-color: var(--border-hover);
  box-shadow: 0 0 20px rgba(196,93,53,0.05);
}
.use-cases-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.use-cases-panel { display: none; }
.use-cases-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.use-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.use-case-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: conic-gradient(from var(--angle), transparent 70%, var(--accent) 85%, var(--accent-secondary) 95%, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: rotateBorder 4s linear infinite;
}
.use-case-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.use-case-card:hover::before { opacity: 1; }
.use-case-card-flow {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
  margin-top: auto;
  padding: 8px 0 0;
  overflow: hidden;
  order: 4;
  flex-wrap: wrap;
}
.flow-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}
.flow-node svg { width: 22px; height: 22px; }
.flow-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 10px;
  flex-shrink: 0;
  user-select: none;
  margin: 0 1px;
}
.use-case-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  order: 1;
}
.use-case-title {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text-primary);
  order: 2;
}
.use-case-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 12px;
  order: 3;
}
.use-case-schedule {
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: rgba(240,237,232,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
  order: 5;
  margin-top: 12px;
}
.use-case-schedule svg {
  width: 12px;
  height: 12px;
  opacity: 0.4;
  stroke: var(--accent-light);
}

/* Flow arrow pulse animation */
.flow-arrow {
  animation: flowPulse 2s ease-in-out infinite;
}
.use-case-card:nth-child(2) .flow-arrow { animation-delay: 0.3s; }
.use-case-card:nth-child(3) .flow-arrow { animation-delay: 0.6s; }
.use-case-card:nth-child(4) .flow-arrow { animation-delay: 0.9s; }
.use-case-card:nth-child(5) .flow-arrow { animation-delay: 1.2s; }
.use-case-card:nth-child(6) .flow-arrow { animation-delay: 1.5s; }
@keyframes flowPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; color: var(--accent-light); }
}

/* Flow node hover glow */
.use-case-card:hover .flow-node {
  filter: brightness(1.2);
  transition: filter 0.3s ease;
}

/* ── Works-With Bar (replaces full Integrations section) ── */
.works-with {
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}
.works-with-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.works-with-track {
  display: flex;
  width: fit-content;
  animation: marquee 30s linear infinite;
}
.works-with-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.works-with-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
  flex-shrink: 0;
}
.works-with-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.works-with-item:hover { opacity: 1; }
.works-with-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ── Bento Grid (Apple-style asymmetric) ── */
.bento { padding: 120px 0; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 20px;
}
.bento-card.bento-wide { grid-column: span 2; }
.bento-card.bento-tall { grid-row: span 2; }
.bento-card.bento-full { grid-column: span 3; }
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1px;
  background: conic-gradient(from var(--angle), transparent 60%, var(--accent) 80%, var(--accent-secondary) 90%, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: rotateBorder 4s linear infinite;
}
@keyframes rotateBorder {
  to { --angle: 360deg; }
}
.bento-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.bento-card:hover::before { opacity: 1; }
.bento-card-title {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bento-card-title span.icon { font-size: 20px; }
.bento-card-screenshot {
  width: 100%;
  background: var(--bg-elevated);
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 16/10;
}
.bento-card-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card:hover .bento-card-screenshot img {
  transform: scale(1.04);
}
/* Placeholder for screenshots not yet captured */
.bento-card-screenshot .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  opacity: 0.4;
}
.bento-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}
/* Language bento image */
.bento-lang-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Browser cursor float */
@keyframes cursorFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-6px, -4px); }
  50% { transform: translate(3px, -8px); }
  75% { transform: translate(-3px, 2px); }
}
.bento-card .browser-cursor {
  animation: cursorFloat 4s ease-in-out infinite;
}
/* Privacy lock breathing */
@keyframes lockBreathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.bento-card-privacy .privacy-icon {
  animation: lockBreathe 3s ease-in-out infinite;
}
/* Privacy card — typographic treatment instead of screenshot */
.bento-card-privacy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bento-card-privacy .privacy-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  opacity: 0.2;
  color: var(--accent);
}
.bento-card-privacy .privacy-lines {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 16px;
}

/* ── Social Proof ── */
.social-proof {
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.social-proof-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.social-proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.social-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.social-proof-item:hover { opacity: 0.75; }
.social-proof-item svg { flex-shrink: 0; height: 18px; width: auto; }
.social-proof-item span { font-size: 15px; line-height: 1; }
.logo-yc svg { height: 20px; width: 20px; }
.logo-yc span { font-family: 'Clash Display', system-ui, sans-serif; font-weight: 600; letter-spacing: -0.01em; }
.logo-hbs svg { height: 20px; width: auto; }
.logo-hbs span { font-family: 'Satoshi', system-ui, sans-serif; font-weight: 500; letter-spacing: 0.03em; }
.logo-mckinsey span { font-family: 'Satoshi', system-ui, sans-serif; font-weight: 500; letter-spacing: 0.02em; }
.logo-pear span { font-family: 'Clash Display', system-ui, sans-serif; font-weight: 600; letter-spacing: -0.01em; }
.social-proof-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.3;
  flex-shrink: 0;
}

/* ── CTA ── */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(196,93,53,0.10) 0%, rgba(140,143,255,0.03) 40%, transparent 60%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -40px;
  right: -40px;
  opacity: 0.02;
  background: url('../assets/skylarq-logo-white.png') center/contain no-repeat;
  pointer-events: none;
  transform: rotate(15deg);
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 18px 48px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  letter-spacing: 0.01em;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(196,93,53,0.35);
  background: var(--accent-light);
}
.cta-button svg { width: 16px; height: 16px; }
.cta-fine {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Scroll Reveals (Apple-style) ── */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.90);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children — Apple cascade */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.07s; }
.stagger > *:nth-child(3) { transition-delay: 0.14s; }
.stagger > *:nth-child(4) { transition-delay: 0.21s; }
.stagger > *:nth-child(5) { transition-delay: 0.28s; }
.stagger > *:nth-child(6) { transition-delay: 0.35s; }

/* Word-by-word hero reveal */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-word.visible {
  opacity: 1;
  transform: none;
}

/* Headline clip reveal */
.headline-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.headline-reveal.visible {
  clip-path: inset(0 0 0 0);
}

/* Hero product scroll-linked shrink */
.hero-frame-wrap {
  transition: transform 0.05s linear, opacity 0.05s linear;
  will-change: transform, opacity;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-brand img { height: 24px; }
  .nav-brand span { font-size: 15px; }
  .nav-brand { gap: 8px; }
  .nav-mobile-menu { padding: 24px; }
  .prompt-cards { grid-template-columns: 1fr; }
  .step .step-text { flex-direction: column; gap: 8px; }
  .pillars-stack { gap: 48px; }
  .manifesto .container { grid-template-columns: 1fr; gap: 40px; }
  .nav-cta { padding: 8px 16px; font-size: 13px; white-space: nowrap; }
  .hero-screenshot-wrapper { padding: 0 24px; overflow: hidden; }
  .hero-screenshot-glow { width: 100%; max-width: 100%; }
  .hero-screenshot-frame { transform: none; border-radius: 12px; overflow: hidden; max-width: 100%; }
  .hero-screenshot-frame::after { height: 30%; }
  .hero-screenshot-content { height: auto; aspect-ratio: 16/10; overflow: hidden; }
  /* Disable slide animation on tablet — fade only to prevent overflow */
  .hero-screenshot-content .hero-screen { max-width: 100%; overflow: hidden; transform: none; }
  .hero-screenshot-content .hero-screen.hero-screen-active { transform: none; }
  .hero-screenshot-content .hero-screen video,
  .hero-screenshot-content .hero-screen img { object-fit: contain; max-width: 100%; }
  .hero-screen-overlay { max-width: 100%; overflow: hidden; transform: none; left: 50%; right: auto; width: calc(100% - 32px); max-width: 400px; }
  .orb { display: none; }
  .hero-badges { display: none; }
  .hero-cta-row { flex-direction: column; gap: 12px; }
  .use-cases-panel.active { grid-template-columns: repeat(2, 1fr); }
  .showcase-tabs { padding: 3px; border-radius: 10px; }
  .showcase-tab { padding: 8px 14px; font-size: 12px; }
  .showcase-description { flex-direction: column; gap: 4px; }
  .showcase-desc-title::after { display: none; }
  .showcase-frame { border-radius: 10px; }
  .showcase-nav { left: 8px; right: 8px; }
  .showcase-nav-btn { width: 32px; height: 32px; }
  .showcase-nav-btn svg { width: 14px; height: 14px; }
  .use-cases-tabs { gap: 6px; }
  .use-cases-tab { padding: 8px 18px; font-size: 13px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.bento-wide,
  .bento-card.bento-tall,
  .bento-card.bento-full { grid-column: span 1; grid-row: span 1; }
  .bento-card.bento-tall .bento-card-screenshot { aspect-ratio: 16/10 !important; flex: none; }
  .bento-lang-img { object-fit: cover; object-position: left top; }
  .works-with-row { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .social-proof-logos { gap: 16px; }
  .social-proof-dot { display: none; }
  .byok-card { flex-direction: column; text-align: center; padding: 24px; }
  @keyframes heroFrameEntrance {
    from { opacity: 0; transform: translateY(40px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .nav { padding: 0 16px; }
  .nav-brand img { height: 20px; }
  .nav-brand span { font-size: 13px; }
  .nav-brand-assistant { display: none; }
  .nav-cta { padding: 6px 12px; font-size: 11px; }
  .nav-cta svg { width: 11px; height: 11px; }
  .hero-title { font-size: 56px; }
  .hero-subtitle { font-size: 16px; }
  .section-title { font-size: 28px; }
  .section-label { font-size: 11px; }
  .social-proof { padding: 48px 0; }
  .social-proof-label { font-size: 11px; margin-bottom: 28px; }
  .social-proof-logos { flex-direction: column; gap: 20px; align-items: center; }
  .social-proof-item { justify-content: center; }
  .social-proof-item span { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-screenshot-wrapper { padding: 0 16px; }
  .hero-screenshot-content { aspect-ratio: 16/10; }
  .bento-lang-img { position: relative !important; left: 0 !important; width: 100% !important; height: 100% !important; border-radius: 6px; }
  .manifesto-text p { font-size: 16px; }
  .manifesto-stat-number { font-size: 28px; }
  .showcase-tabs { overflow-x: auto; flex-wrap: nowrap; padding: 3px; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; border-radius: 10px; }
  .showcase-tabs::-webkit-scrollbar { display: none; }
  .showcase-tab { flex-shrink: 0; padding: 7px 12px; font-size: 11px; }
  .showcase-description { gap: 2px; }
  .showcase-desc-link { margin-left: 0; }
  .showcase-titlebar-text { font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: calc(100% - 80px); }
  .use-cases-panel.active { grid-template-columns: 1fr; }
  .use-cases-tabs { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .use-cases-tab { flex-shrink: 0; }
  .cta-title { font-size: 32px; }
}

/* ── Feature Hub Strip (Homepage) ── */
.feature-hub {
  padding: 100px 0 80px;
}
.feature-hub-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.feature-hub-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-hub-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: conic-gradient(from var(--angle), transparent 70%, var(--accent) 85%, var(--accent-secondary) 95%, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: rotateBorder 4s linear infinite;
}
.feature-hub-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.feature-hub-card:hover::before { opacity: 1; }
.feature-hub-num {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: rgba(196,93,53,0.25);
  line-height: 1;
  margin-bottom: 12px;
}
.feature-hub-name {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.feature-hub-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
}
.feature-hub-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}
.feature-hub-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-hub-card:hover .feature-hub-thumb img {
  transform: scale(1.05);
}
.feature-hub-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.feature-hub-card:hover .feature-hub-link {
  gap: 8px;
}

@media (max-width: 900px) {
  .feature-hub-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .feature-hub-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ── Feature Pages ── */
.feature-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  position: relative;
}
.feature-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-hero-num {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: rgba(196,93,53,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.feature-hero-title {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.feature-hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}
.feature-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.feature-hero-visual {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.feature-hero-visual img,
.feature-hero-visual video {
  width: 100%;
  display: block;
}

.feature-problem {
  padding: 100px 0;
  text-align: center;
}
.feature-problem-text {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 24px;
}
.feature-problem-text strong {
  color: var(--text-primary);
  font-weight: 600;
}
.feature-problem-stat {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
}

.feature-steps {
  padding: 100px 0;
}
.feature-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.feature-step-card {
  background: linear-gradient(180deg, rgba(196,93,53,0.06) 0%, var(--bg-card) 40%);
  border: 1px solid var(--border);
  border-top: 2px solid rgba(196,93,53,0.35);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.feature-step-num {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: rgba(196,93,53,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.feature-step-title {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}
.feature-step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.feature-step-visual {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}
.feature-step-visual img {
  width: 100%;
  display: block;
}

.feature-capabilities {
  padding: 100px 0;
}
.feature-caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-cap-card {
  background: transparent;
  border: none;
  border-left: 2px solid rgba(196,93,53,0.3);
  border-radius: 0;
  padding: 20px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.feature-cap-card:hover {
  border-left-color: var(--accent);
  transform: translateY(-2px);
  background: rgba(196,93,53,0.03);
}
.feature-cap-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.feature-cap-title {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}
.feature-cap-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

.feature-demo {
  padding: 100px 0;
}

.feature-demo-callout {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
  margin: -8px auto 32px;
  font-style: italic;
}

.feature-demo-video {
  width: 100%;
  border-radius: 12px;
  background: #000;
  display: block;
}

.feature-use-cases {
  padding: 100px 0;
}
.feature-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.feature-use-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-use-case-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.feature-use-case-card h3 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 12px 0 8px;
}
.feature-use-case-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 12px;
}

.feature-integrations {
  padding: 60px 0;
  text-align: center;
}
.feature-integrations-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.feature-integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 72px;
}
.feature-integration-item svg {
  width: 32px;
  height: 32px;
  fill: var(--text-muted);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.feature-integration-item:hover svg {
  opacity: 1;
}
.feature-integration-item span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.feature-explore {
  padding: 80px 0;
  text-align: center;
}
.feature-explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.feature-explore-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-explore-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.feature-explore-num {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.feature-explore-card h3 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.feature-explore-card p {
  font-size: 13px;
  color: var(--text-muted);
}
.feature-explore-home {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.feature-explore-home:hover { opacity: 0.7; }

@media (max-width: 900px) {
  .feature-hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-steps-grid {
    grid-template-columns: 1fr;
  }
  .feature-caps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .feature-caps-grid {
    grid-template-columns: 1fr;
  }
  .feature-use-cases-grid {
    grid-template-columns: 1fr;
  }
  .feature-explore-grid {
    grid-template-columns: 1fr;
  }
  .feature-hero-num { font-size: 48px; }
}

/* ── Feature Timeline Nav (integrated into main nav on feature pages) ── */
.nav-timeline {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
  counter-reset: tl-step;
}

.nav-tl-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(240,237,232,0.28);
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
  flex-shrink: 0;
  counter-increment: tl-step;
}

/* Numbered circle node */
.nav-tl-node {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(240,237,232,0.12);
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: rgba(240,237,232,0.2);
  line-height: 1;
}
.nav-tl-node::after {
  content: counter(tl-step);
}

/* Passed items (before active) */
.nav-tl-item.passed {
  color: rgba(196,125,90,0.55);
}
.nav-tl-item.passed .nav-tl-node {
  border-color: rgba(196,125,90,0.35);
  background: rgba(196,125,90,0.08);
  color: rgba(196,125,90,0.65);
}

/* Active item */
.nav-tl-item.active {
  color: var(--accent);
  font-weight: 600;
}
.nav-tl-item.active .nav-tl-node {
  width: 26px;
  height: 26px;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-size: 11px;
  animation: tl-pulse 2.5s ease-in-out infinite;
}

@keyframes tl-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(196,125,90,0.4); }
  50% { box-shadow: 0 0 18px rgba(196,125,90,0.6), 0 0 6px rgba(196,125,90,0.3); }
}

/* Connecting lines between items */
.nav-tl-line {
  flex: 1;
  height: 2px;
  background: rgba(240,237,232,0.06);
  margin: 0 4px;
  min-width: 12px;
  border-radius: 1px;
  transition: background 0.3s ease;
}
.nav-tl-line.passed {
  background: rgba(196,125,90,0.25);
}

/* Hover */
.nav-tl-item:hover {
  color: rgba(240,237,232,0.65);
}
.nav-tl-item:hover .nav-tl-node {
  border-color: rgba(240,237,232,0.25);
  color: rgba(240,237,232,0.4);
}
.nav-tl-item.active:hover {
  color: var(--accent);
}
.nav-tl-item.active:hover .nav-tl-node {
  border-color: var(--accent);
  color: #fff;
}
.nav-tl-item.passed:hover {
  color: rgba(196,125,90,0.8);
}
.nav-tl-item.passed:hover .nav-tl-node {
  border-color: rgba(196,125,90,0.5);
  color: rgba(196,125,90,0.85);
}

/* Mobile: hide timeline, show in hamburger instead */
@media (max-width: 900px) {
  .nav-timeline { display: none; }
}

/* Mobile feature links in hamburger */
.nav-mobile-feature {
  font-size: 15px !important;
  color: rgba(240,237,232,0.45) !important;
}
.nav-mobile-feature.active {
  color: var(--accent) !important;
  font-weight: 600;
}
.nav-mobile-divider {
  height: 1px;
  background: rgba(240,237,232,0.08);
  margin: 4px 0;
}

/* ── Stacked Logo ── */
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-text .brand-name {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-brand-text .brand-sub {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.nav.scrolled .nav-brand-text .brand-name { font-size: 16px; }
.nav.scrolled .nav-brand-text .brand-sub { font-size: 11px; }
@media (max-width: 480px) {
  .nav-brand-text .brand-name { font-size: 16px; }
  .nav-brand-text .brand-sub { font-size: 11px; }
  .nav-brand { gap: 8px; }
}

/* ── Feature Deep Dive Sections ── */
.feature-deep-dive {
  padding: 100px 0;
}
.feature-deep-dive .section-label { margin-bottom: 16px; }
.feature-deep-dive .section-title { margin-bottom: 24px; }
.feature-deep-dive-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 48px;
}

/* Skill grid (8-skill showcase, test scenarios, output chain) */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.skill-grid-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.skill-grid-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.skill-grid-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
  background: rgba(196,93,53,0.08);
}
.skill-grid-item h4 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}
.skill-grid-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Output chain (meetings output, agent workflow) */
.output-chain {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-top: 32px;
  flex-wrap: wrap;
}
.output-chain-step {
  flex: 1;
  min-width: 160px;
  position: relative;
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
}
.output-chain-step:first-child { border-radius: 14px 0 0 14px; }
.output-chain-step:last-child { border-radius: 0 14px 14px 0; }
.output-chain-step:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--accent);
}
.output-chain-icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.output-chain-step h4 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}
.output-chain-step p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Intelligence callout (leads anti-detection, voice wake word) */
.intelligence-callout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.intelligence-card {
  background: linear-gradient(135deg, rgba(196,93,53,0.06) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.intelligence-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.intelligence-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.intelligence-card h4 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 8px;
}
.intelligence-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.intelligence-card .callout-stat {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* Anatomy section (flow diagram) */
.anatomy-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.anatomy-node {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  min-width: 120px;
}
.anatomy-node-icon {
  font-size: 24px;
  margin-bottom: 6px;
}
.anatomy-node h4 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 2px;
}
.anatomy-node p {
  font-size: 11px;
  color: var(--text-muted);
}
.anatomy-arrow {
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Responsive for new sections */
@media (max-width: 900px) {
  .skill-grid { grid-template-columns: repeat(2, 1fr); }
  .intelligence-callout { grid-template-columns: 1fr; }
  .output-chain { flex-direction: column; }
  .output-chain-step { border-radius: 14px !important; }
  .output-chain-step:not(:last-child)::after { display: none; }
  .anatomy-flow { flex-direction: column; }
  .anatomy-arrow { transform: rotate(90deg); }
}
@media (max-width: 600px) {
  .skill-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   FEATURE PAGES v2 — Interactive Components (2026-03-09)
   ══════════════════════════════════════════════════════════════ */

/* ── Before/After Comparison ── */
.ba-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.ba-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.ba-panel.ba-before {
  opacity: 0.6;
}
.ba-panel.ba-after {
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(74,222,128,0.05);
}
.ba-panel h4 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
}
.ba-panel.ba-after h4 { color: var(--green); }
.ba-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ba-panel li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.ba-panel.ba-before li::before { content: '✗'; position: absolute; left: 0; color: rgba(240,237,232,0.25); }
.ba-panel.ba-after li::before { content: '✓'; position: absolute; left: 0; color: var(--green); }

/* ── Chat Demo / Message Bubbles ── */
.chat-demo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.msg-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.msg-row.outbound { flex-direction: row-reverse; }
.msg-bubble {
  padding: 12px 16px;
  border-radius: 16px 16px 16px 4px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 80%;
  background: var(--bg-elevated);
  color: var(--text-primary);
}
.msg-row.outbound .msg-bubble {
  border-radius: 16px 16px 4px 16px;
  background: var(--accent);
  color: #fff;
}
.msg-time {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}
.msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.typing-dots {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border-radius: 16px 16px 16px 4px;
  width: fit-content;
}
.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingBounce 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

/* ── Tile Selector (Moments, Sources, Scenarios) ── */
.tile-selector {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tile-btn {
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tile-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}
.tile-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}
.tile-btn .tile-icon { font-size: 18px; }

/* ── Scenario / Content Panels ── */
.scenario-panels { position: relative; margin-top: 24px; }
.scenario-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}
.scenario-panel.active { display: block; }

/* ── Expandable / Accordion Cards ── */
.expand-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.expand-card:hover { border-color: var(--border-hover); }
.expand-card.active { border-color: var(--accent); }
.expand-card-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.expand-card-icon { font-size: 24px; flex-shrink: 0; }
.expand-card-header h4 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  flex: 1;
}
.expand-card-stat {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 13px;
  color: var(--accent);
  white-space: nowrap;
}
.expand-card-chevron {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}
.expand-card.active .expand-card-chevron { transform: rotate(180deg); }
.expand-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.expand-card.active .expand-card-body {
  max-height: 600px;
}
.expand-card-content {
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ── Pipeline Funnel ── */
.pipeline-funnel {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  position: relative;
}
.funnel-stage {
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.funnel-stage:first-child { border-radius: 16px 16px 0 0; }
.funnel-stage:last-child { border-radius: 0 0 16px 16px; }
.funnel-stage:hover { background: var(--bg-elevated); }
.funnel-stage.active {
  border-color: var(--accent);
  background: var(--accent-glow);
}
.funnel-stage-label {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
}
.funnel-stage-num {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.funnel-detail {
  display: none;
  padding: 20px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-top: none;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  animation: fadeIn 0.3s ease;
}
.funnel-detail.active { display: block; }

/* ── Progress Steps (Agent Build Flow) ── */
.progress-steps {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
}
.progress-step {
  flex: 1;
  padding: 14px 10px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  font-size: 13px;
  color: var(--text-muted);
}
.progress-step:first-child { border-radius: 12px 0 0 12px; }
.progress-step:last-child { border-radius: 0 12px 12px 0; }
.progress-step:hover { color: var(--text-primary); }
.progress-step.active {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
}
.progress-step.completed {
  background: rgba(74,222,128,0.05);
  border-color: rgba(74,222,128,0.2);
  color: var(--green);
}
.progress-step-num {
  display: block;
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}

/* ── Voice Ripple ── */
.voice-ripple-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.voice-ripple-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: voiceRipple 2s ease-out infinite;
}
.voice-ripple-ring:nth-child(2) { animation-delay: 0.5s; }
.voice-ripple-ring:nth-child(3) { animation-delay: 1s; }
.voice-ripple-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

/* ── Recording Pill ── */
.recording-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 20px;
  font-size: 13px;
  color: #ef4444;
  font-weight: 500;
}
.recording-pill .audio-bars {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 16px;
}
.recording-pill .audio-bar {
  width: 3px;
  background: #ef4444;
  border-radius: 2px;
  animation: audioWave 0.8s ease-in-out infinite;
}
.recording-pill .audio-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.recording-pill .audio-bar:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.recording-pill .audio-bar:nth-child(3) { height: 10px; animation-delay: 0.2s; }
.recording-pill .audio-bar:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.recording-pill .audio-bar:nth-child(5) { height: 6px; animation-delay: 0.4s; }

/* ── Meeting Toast ── */
.meeting-toast {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 360px;
  animation: toastSlide 0.5s ease-out;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.meeting-toast-icon { font-size: 20px; flex-shrink: 0; }
.meeting-toast-text { font-size: 13px; line-height: 1.4; }
.meeting-toast-text strong { color: var(--text-primary); }

/* ── Output Preview (clickable chain items) ── */
.output-chain-step.clickable {
  cursor: pointer;
  transition: all 0.2s ease;
}
.output-chain-step.clickable:hover {
  background: var(--bg-elevated);
  border-color: var(--border-hover);
}
.output-chain-step.clickable.active {
  border-color: var(--accent);
  background: var(--accent-glow);
}
.output-preview {
  margin-top: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  animation: fadeIn 0.3s ease;
  display: none;
}
.output-preview.active { display: block; }
.output-preview pre {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 13px;
  white-space: pre-wrap;
  color: var(--text-primary);
  background: var(--bg-card);
  padding: 16px;
  border-radius: 10px;
  margin-top: 8px;
  border: 1px solid var(--border);
}

/* ── Skill Output Card (WhatsApp-style) ── */
.skill-output-card {
  background: #0B141A;
  border: 1px solid #1F2C34;
  border-radius: 16px;
  overflow: hidden;
  max-width: 420px;
}
.skill-output-card-header {
  background: #1F2C34;
  padding: 12px 16px;
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #25D366;
  display: flex;
  align-items: center;
  gap: 8px;
}
.skill-output-card-body {
  padding: 16px;
  font-family: 'SF Mono', 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #E9EDEF;
  white-space: pre-line;
}

/* ── Source Tiles (Briefing data sources) ── */
.source-tiles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.source-tile {
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}
.source-tile:hover { border-color: var(--border-hover); }
.source-tile.active {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
}
.source-tile-icon { font-size: 20px; }

/* ── Prep Brief Card ── */
.prep-brief-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transform: rotate(-0.5deg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.prep-brief-header {
  background: var(--accent-glow);
  padding: 14px 20px;
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
}
.prep-brief-body {
  padding: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
}
.prep-brief-body dt {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 10px;
}
.prep-brief-body dt:first-of-type { margin-top: 0; }
.prep-brief-body dd { margin-left: 0; }

/* ── Voice Compare (3-way) ── */
.voice-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.voice-compare-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}
.voice-compare-col.dimmed { opacity: 0.55; }
.voice-compare-col.highlight {
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(74,222,128,0.05);
  opacity: 1;
}
.voice-compare-col h4 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
  text-align: center;
}
.voice-compare-step {
  padding: 8px 12px;
  background: var(--bg-elevated);
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  line-height: 1.4;
}
.voice-compare-step.visible {
  opacity: 1;
  transform: translateY(0);
}
.voice-compare-step.dead-end { border-left: 3px solid #ef4444; }
.voice-compare-step.partial { border-left: 3px solid #f59e0b; }
.voice-compare-step.success { border-left: 3px solid var(--green); }

/* ── Command Marquee ── */
.commands-marquee {
  overflow: hidden;
  position: relative;
  padding: 16px 0;
}
.commands-marquee-track {
  display: flex;
  gap: 12px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}
.commands-marquee:hover .commands-marquee-track {
  animation-play-state: paused;
}
.command-pill {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Action Marquee (Meetings post-call) ── */
.action-marquee {
  overflow: hidden;
  padding: 12px 0;
  margin-bottom: 24px;
}
.action-marquee-track {
  display: flex;
  gap: 12px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.action-pill {
  padding: 8px 18px;
  background: var(--accent-glow);
  border: 1px solid rgba(196,93,53,0.2);
  border-radius: 20px;
  font-size: 13px;
  color: var(--accent-light);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Platform Connections ── */
.platform-connections {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.platform-connection {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.platform-connection a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.platform-connection a:hover { text-decoration: underline; }
.platform-connection-arrow {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 16px;
}

/* ── Pipeline Ticker ── */
.pipeline-ticker {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  max-height: 280px;
  overflow: hidden;
  position: relative;
}
.pipeline-ticker::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--bg-card));
  pointer-events: none;
}
.ticker-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.ticker-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.5s infinite;
}
.ticker-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  animation: fadeIn 0.4s ease;
}
.ticker-time {
  color: var(--text-muted);
  font-family: 'SF Mono', monospace;
  font-size: 12px;
  flex-shrink: 0;
}
.ticker-status {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 500;
  flex-shrink: 0;
}
.ticker-status.pending { background: rgba(245,158,11,0.15); color: #f59e0b; }
.ticker-status.accepted { background: rgba(74,222,128,0.15); color: var(--green); }
.ticker-status.sent { background: rgba(140,143,255,0.15); color: var(--accent-secondary); }

/* ── Stat Equation (Meetings time calc) ── */
.stat-equation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.stat-equation-block {
  text-align: center;
}
.stat-equation-num {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.stat-equation-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-equation-op {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 28px;
  color: var(--accent);
}

/* ── Week Grid (Skills schedule) ── */
.week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 24px;
}
.week-day {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.week-day:hover { border-color: var(--border-hover); }
.week-day.active {
  border-color: var(--accent);
  background: var(--accent-glow);
}
.week-day-label {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
}
.week-day-count {
  font-size: 11px;
  color: var(--text-muted);
}
.week-schedule {
  margin-top: 20px;
}
.week-schedule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.week-schedule-time {
  font-family: 'SF Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
  width: 60px;
}
.week-schedule-status {
  font-size: 11px;
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(74,222,128,0.15);
  color: var(--green);
}

/* ── Speed Stat Badge ── */
.speed-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--accent-glow);
  border: 1px solid rgba(196,93,53,0.2);
  border-radius: 20px;
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 16px;
}

/* ── Feature Deep Dive (two-column interactive) ── */
.feature-deep-dive {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin-top: 32px;
}

/* ── Prospect Cards (Leads hero) ── */
.prospect-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.prospect-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.prospect-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.prospect-info p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Big Stat (centered, with label) ── */
.big-stat-block {
  text-align: center;
  padding: 40px 0;
}
.big-stat-num {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.big-stat-label {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 8px;
}
.big-stat-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Action Card Grid (Meetings post-call) ── */
.action-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* ── Template Card Grid ── */
.template-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.template-card {
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.template-card:hover { border-color: var(--border-hover); }
.template-card.active {
  border-color: var(--accent);
  background: var(--accent-glow);
}
.template-card-icon { font-size: 24px; margin-bottom: 8px; }
.template-card h4 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}
.template-card p { font-size: 12px; color: var(--text-muted); }

/* ── Featured Skill Cards ── */
.featured-skills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.featured-skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.featured-skill-card:hover { border-color: var(--border-hover); }
.featured-skill-card.active { border-color: var(--accent); }
.featured-skill-card .skill-icon { font-size: 28px; margin-bottom: 12px; }
.featured-skill-card h4 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 6px;
}
.featured-skill-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.featured-skill-card .skill-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  flex-wrap: wrap;
}
.skill-badge {
  padding: 3px 10px;
  background: var(--bg-elevated);
  border-radius: 10px;
  color: var(--text-muted);
}
.skill-badge.saves { color: var(--green); background: rgba(74,222,128,0.1); }
.featured-skill-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  margin-top: 0;
}
.featured-skill-card.active .featured-skill-detail {
  max-height: 400px;
  margin-top: 16px;
}
.featured-skill-detail p {
  font-size: 13px;
  font-style: italic;
  color: var(--accent-light);
}

/* ── Browse All Skills (compact) ── */
.browse-skills-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  border: 1px dashed var(--border);
  border-radius: 12px;
  transition: all 0.2s ease;
}
.browse-skills-toggle:hover { border-color: var(--border-hover); color: var(--text-primary); }
.browse-skills-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.browse-skills-grid.visible { max-height: 300px; }
.browse-skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.browse-skill-card .skill-icon { font-size: 20px; margin-bottom: 6px; }
.browse-skill-card h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.browse-skill-card p { font-size: 11px; color: var(--text-muted); }

/* ── Keyframe Animations ── */
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}
@keyframes voiceRipple {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}
@keyframes audioWave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}
@keyframes toastSlide {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive: Feature Pages v2 ── */
@media (max-width: 900px) {
  .ba-split { grid-template-columns: 1fr; } .ba-split::before { display: none; }
  .voice-compare { grid-template-columns: 1fr; }
  .featured-skills { grid-template-columns: 1fr; }
  .feature-deep-dive { grid-template-columns: 1fr; }
  .action-card-grid { grid-template-columns: repeat(2, 1fr); }
  .week-grid { grid-template-columns: repeat(4, 1fr); }
  .browse-skills-grid { grid-template-columns: repeat(3, 1fr); }
  .template-grid { grid-template-columns: 1fr; }
  .stat-equation { gap: 12px; }
  .stat-equation-num { font-size: 32px; }
}
@media (max-width: 600px) {
  .tile-selector { flex-direction: column; }
  .week-grid { grid-template-columns: repeat(4, 1fr); }
  .action-card-grid { grid-template-columns: 1fr; }
  .browse-skills-grid { grid-template-columns: repeat(2, 1fr); }
  .progress-steps { flex-direction: column; }
  .progress-step { border-radius: 12px !important; }
  .big-stat-num { font-size: 40px; }
  .chat-demo { max-width: 100%; }
  .stat-equation { flex-direction: column; }
  .briefing-layout { grid-template-columns: 1fr; }
}

/* ── Skills page: extracted inline styles ── */

/* S3 — Skill explainer */
.skill-explainer { max-width: 680px; }
.skill-explainer .section-title { text-align: center; }
.skill-explainer-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.skill-explainer-item { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--text-muted); }
.skill-explainer-icon { font-size: 22px; flex-shrink: 0; }
.skill-explainer-tagline { text-align: center; margin-top: 28px; font-size: 16px; color: var(--accent); font-weight: 600; }

/* S5 — Briefing layout (source tiles + output) */
.briefing-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; margin-top: 32px; }
@media (max-width: 900px) { .briefing-layout { grid-template-columns: 1fr; } }

/* S6 — Studio step captions */
.studio-step-caption { text-align: center; margin-top: 16px; font-size: 14px; color: var(--text-muted); max-width: 560px; margin-left: auto; margin-right: auto; }

/* S7 — Checklist (green check items) */
.check-list { display: flex; flex-direction: column; gap: 10px; margin: 20px auto 28px; max-width: 520px; }
.check-list-item { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; margin: 0; }
.check-list-icon { color: var(--green); flex-shrink: 0; }

/* Screenshot badge overlay */
.screenshot-badge { position: absolute; bottom: 16px; left: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(11,10,15,0.85); border-radius: 10px; font-size: 13px; backdrop-filter: blur(8px); }
.screenshot-badge--green { color: #4ade80; border: 1px solid rgba(74,222,128,0.3); }
.screenshot-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse-dot 1.5s infinite; }

/* S6 — Studio action bar */
.studio-actions { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 20px; }
.studio-run-btn { padding: 10px 24px; background: var(--accent); color: #fff; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: default; }
.studio-schedule-badge { padding: 10px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; font-size: 13px; color: var(--text-muted); }

/* Meetings page: stat equation result highlight */
.stat-equation-result { text-align: center; font-family: 'Clash Display', system-ui, sans-serif; font-size: 20px; font-weight: 600; color: var(--green); margin-top: 12px; }

/* Meetings page: output chain section display override */
.output-chain-section { display: block; }

/* Leads page: extracted inline styles */
.prospect-stagger { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.expand-cards-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }

/* Voice page: hero speech bubble + status */
.voice-speech-bubble { display: inline-block; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 14px 24px; font-size: 15px; color: var(--text-primary); max-width: 420px; }
.voice-status-line { margin-top: 12px; font-size: 13px; color: var(--text-muted); }
.voice-progress-bar { display: inline-block; width: 80px; height: 3px; background: var(--border); border-radius: 2px; vertical-align: middle; margin-left: 8px; position: relative; overflow: hidden; }
.voice-progress-fill { position: absolute; left: 0; top: 0; height: 100%; width: 60%; background: var(--accent); border-radius: 2px; animation: fadeIn 1.5s ease infinite; }

/* Agents page: Go Live panel */
.go-live-panel { text-align: center; padding: 40px 0; }
.go-live-toggle { display: inline-flex; align-items: center; gap: 16px; padding: 16px 32px; background: var(--bg-card); border: 2px solid var(--accent); border-radius: 40px; margin-bottom: 20px; }
.go-live-draft { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.go-live-arrow { font-size: 24px; color: var(--accent); }
.go-live-active { font-size: 16px; font-weight: 700; color: var(--green); font-family: 'Clash Display', system-ui, sans-serif; }
.go-live-title { font-size: 15px; color: var(--text-primary); margin-bottom: 8px; font-weight: 600; }
.go-live-desc { font-size: 14px; color: var(--text-muted); max-width: 400px; margin: 0 auto; }

/* ── Hero video: fill frame, crop inner chrome ── */
.showcase-video-wrap video[autoplay] {
  object-fit: cover;
}
/* Voice hero: zoom into app area (full desktop recording) */
.showcase-video-wrap video.hero-video-zoom {
  transform: scale(1.15);
  transform-origin: 50% 50%;
}

/* ── Skills Studio: interactive build steps ── */
.studio-steps {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.studio-step-tab {
  flex: 1;
  padding: 14px 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  text-align: center;
}
.studio-step-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}
.studio-step-tab.active {
  color: var(--accent);
}
.studio-step-tab.active::after {
  background: var(--accent);
}
.studio-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 11px;
  margin-right: 8px;
  font-weight: 600;
}
.studio-step-tab.active .studio-step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.studio-step-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}
.studio-step-panel.active {
  display: block;
}
.studio-step-desc {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Voice: command execution chain ── */
.voice-command-chain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.voice-command-result {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.voice-command-result strong {
  color: var(--text-primary);
  font-weight: 600;
}
@media (max-width: 900px) {
  .voice-command-chain { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .studio-steps { flex-wrap: wrap; }
  .studio-step-tab { flex-basis: 100%; }
}

/* ── Skill cards: bordered treatment for 8-skill grid ── */
.skill-cards .feature-cap-card {
  border-left: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
}
.skill-cards .feature-cap-card:hover {
  border-color: rgba(196,93,53,0.35);
  background: rgba(196,93,53,0.04);
  transform: translateY(-2px);
}
.skill-cards .feature-cap-card h3 {
  font-size: 16px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.skill-cards .skill-flow {
  margin-top: auto;
}

/* ── Skill flow: numbered step list with connecting line ── */
.skill-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  position: relative;
}
.skill-flow li {
  position: relative;
  padding-left: 26px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
.skill-flow li + li {
  margin-top: 6px;
}
/* Step number dot */
.skill-flow li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(196,93,53,0.1);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
/* Connecting line between steps */
.skill-flow li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 8.5px;
  top: 22px;
  height: calc(100% - 8px);
  width: 1px;
  background: rgba(196,93,53,0.15);
}
/* Result step: highlighted */
.skill-flow li.result {
  color: var(--accent-light);
  font-weight: 500;
}
.skill-flow li.result::before {
  background: var(--accent);
  color: #fff;
}

/* ── Skills: 4-col → 2-col on tablets ── */
@media (max-width: 1100px) {
  .feature-caps-grid[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── Agent template cards (S3 "deploy today") ── */
.template-cards .feature-cap-card {
  border-left: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  padding: 24px;
  position: relative;
}
.template-cards .feature-cap-card:hover {
  border-color: var(--accent);
  background: rgba(196,93,53,0.05);
}
.template-cards {
  counter-reset: tmpl;
}
.template-cards .feature-cap-card::before {
  counter-increment: tmpl;
  content: counter(tmpl, decimal-leading-zero);
  display: block;
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  opacity: 0.6;
}

/* ── Voice command chain: microphone + flow ── */
.voice-command-trigger::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  vertical-align: -1px;
  background: var(--accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 0-2 2v4a2 2 0 0 0 4 0V3a2 2 0 0 0-2-2z'/%3E%3Cpath d='M4.5 7a.5.5 0 0 0-1 0 4.5 4.5 0 0 0 4 4.473V13H6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1H8.5v-1.527A4.5 4.5 0 0 0 12.5 7a.5.5 0 0 0-1 0 3.5 3.5 0 1 1-7 0z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 0-2 2v4a2 2 0 0 0 4 0V3a2 2 0 0 0-2-2z'/%3E%3Cpath d='M4.5 7a.5.5 0 0 0-1 0 4.5 4.5 0 0 0 4 4.473V13H6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1H8.5v-1.527A4.5 4.5 0 0 0 12.5 7a.5.5 0 0 0-1 0 3.5 3.5 0 1 1-7 0z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.voice-command-item {
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.voice-command-item:hover {
  border-color: rgba(196,93,53,0.4);
  transform: translateY(-2px);
}
.voice-command-trigger {
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ── Meetings: trust/privacy card accent ── */
.trust-card.feature-cap-card {
  border-left-color: var(--green);
}
.trust-card.feature-cap-card:hover {
  border-left-color: var(--green);
  background: rgba(74,222,128,0.03);
}
.trust-card h3 {
  color: var(--green);
}

/* ═══════════════════════════════════════════════════
   INTERACTIVE FEATURE PAGE COMPONENTS (v2)
   ═══════════════════════════════════════════════════ */

/* ── Generic tab switcher (reused across pages) ── */
.tab-switcher {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-card);
  padding: 4px;
}
.tab-switcher-btn {
  flex: 1;
  padding: 10px 20px;
  background: none;
  border: none;
  border-radius: 7px;
  color: var(--text-muted);
  font-size: 13px;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  white-space: nowrap;
  text-align: center;
}
.tab-switcher-btn:hover { color: var(--text-primary); }
.tab-switcher-btn.active {
  color: var(--accent);
  background: rgba(196,93,53,0.1);
  font-weight: 600;
}
.tab-panel { display: none; animation: fadeIn 0.3s ease; }
.tab-panel.active { display: block; }

/* ── Clickable tile selector (horizontal) ── */
.tile-row {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
}
.tile-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 7px;
  background: none;
  color: var(--text-muted);
  font-size: 13px;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.tile-btn:hover { color: var(--text-primary); }
.tile-btn.active {
  background: rgba(196,93,53,0.12);
  color: var(--accent);
  font-weight: 600;
}

/* ── Content preview panel (expandable below tiles) ── */
.preview-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  overflow: hidden;
}
.preview-panel pre {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 20px 24px;
  font-size: 13px;
  line-height: 1.65;
  overflow-x: auto;
  white-space: pre-wrap;
  color: var(--text-secondary);
  font-family: 'SF Mono', 'Fira Code', monospace;
  margin: 0;
}

/* ── Chat demo mockup ── */
.chat-demo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  max-width: 100%;
}
.chat-demo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.chat-demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.msg-row {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}
.msg-row.inbound { justify-content: flex-start; }
.msg-row.outbound { justify-content: flex-end; flex-direction: row; }

/* Sequential chat animation */
.chat-demo .msg-row {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.chat-demo.chat-animate .msg-row {
  opacity: 1;
  transform: translateY(0);
}
.chat-demo.chat-animate .msg-row:nth-child(1) { transition-delay: 0.2s; }
.chat-demo.chat-animate .msg-row:nth-child(2) { transition-delay: 0.9s; }
.chat-demo.chat-animate .msg-row:nth-child(3) { transition-delay: 1.6s; }
.chat-demo.chat-animate .msg-row:nth-child(4) { transition-delay: 2.3s; }
.chat-demo.chat-animate .msg-row:nth-child(5) { transition-delay: 3.0s; }
.chat-demo.chat-animate .msg-row:nth-child(6) { transition-delay: 3.7s; }
.msg-bubble {
  max-width: 75%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
}
.msg-row.inbound .msg-bubble {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-primary);
  border-top-left-radius: 4px;
}
.msg-row.outbound .msg-bubble {
  background: rgba(196,93,53,0.1);
  border: 1px solid rgba(196,93,53,0.2);
  color: var(--text-primary);
  border-top-right-radius: 4px;
}
.msg-name {
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.msg-row.inbound .msg-name { color: var(--text-muted); }
.msg-row.outbound .msg-name { color: var(--accent); }
.msg-time {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 6px;
  opacity: 0.5;
}

/* ── Typing dots animation ── */
.typing-dots {
  display: inline-flex;
  gap: 4px;
  padding: 8px 14px;
}
.typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ── Accordion cards (expand/collapse) ── */
.accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.accordion-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.3s;
  cursor: pointer;
}
.accordion-card:hover { border-color: rgba(196,93,53,0.35); }
.accordion-card.open { border-color: var(--accent); }
.accordion-head {
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-head h3 {
  font-size: 15px;
  color: var(--text-primary);
  margin: 0;
  font-family: 'Clash Display', system-ui, sans-serif;
}
.accordion-head .acc-stat {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}
.accordion-head .acc-arrow {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.3s;
  margin-left: 12px;
}
.accordion-card.open .acc-arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}
.accordion-card.open .accordion-body {
  max-height: 500px;
  padding: 0 22px 20px;
}
.accordion-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Pipeline ticker (leads) — animated ── */
.pipeline-ticker {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 24px;
  overflow: hidden;
  position: relative;
}
.pipeline-ticker::after {
  content: '';
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--bg-card));
  pointer-events: none;
}
.ticker-scroll {
  max-height: 222px;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  will-change: transform;
}
.ticker-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  height: 37px;
  box-sizing: border-box;
}
.ticker-time {
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  width: 44px;
  flex-shrink: 0;
  font-size: 12px;
}
.ticker-action { color: var(--text-secondary); flex: 1; font-size: 13px; }
.ticker-action strong { color: var(--text-primary); font-weight: 600; }
.ticker-status {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ticker-status.pending { background: rgba(234,179,8,0.12); color: #eab308; }
.ticker-status.accepted { background: rgba(74,222,128,0.12); color: var(--green); }
.ticker-status.replied { background: rgba(96,165,250,0.12); color: #60a5fa; }
.ticker-live {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ticker-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
}
.ticker-footer {
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  z-index: 2;
  background: var(--bg-card);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ── Auto-flow steps (leads — what Skylarq does) ── */
.auto-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
/* Connecting line behind the step numbers */
.auto-flow::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.auto-flow-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.auto-flow-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}
.auto-flow-step.highlight .auto-flow-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.auto-flow-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(196,112,63,0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.auto-flow-step.highlight .auto-flow-icon {
  background: rgba(196,112,63,0.15);
}
.auto-flow-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.auto-flow-step p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}
.auto-flow-step.highlight h4 {
  color: var(--accent);
  font-size: 18px;
}
@media (max-width: 900px) {
  .auto-flow {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .auto-flow::before { display: none; }
}
@media (max-width: 600px) {
  .auto-flow {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Funnel visualization (leads) — visual narrowing ── */
.funnel-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px auto;
  max-width: 640px;
}
.funnel-row {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  align-items: center;
  width: 100%;
  gap: 14px;
  cursor: pointer;
  padding: 6px 0;
  transition: all 0.2s;
}
.funnel-row:hover .funnel-row-bar,
.funnel-row.active .funnel-row-bar {
  box-shadow: 0 0 16px rgba(196,125,90,0.3);
}
.funnel-row.active .funnel-row-label { color: var(--text-primary); }
.funnel-row-num {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
  flex-shrink: 0;
}
.funnel-row-bar {
  height: 28px;
  width: var(--bar-w);
  background: linear-gradient(90deg, var(--accent), rgba(196,125,90,0.25));
  border-radius: 6px;
  transition: box-shadow 0.2s;
  min-width: 24px;
}
.funnel-row-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}
.funnel-row-stat {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}
.funnel-row-arrow {
  width: 1px;
  height: 8px;
  background: var(--border);
  margin: 0 0 0 110px;
}
.funnel-detail {
  max-width: 640px;
  margin: 16px auto 0;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  transition: border-color 0.2s;
}

/* ── Output chain (meetings) ── */
.output-chain {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
}
.output-chain-btn {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  background: none;
  border: none;
  border-radius: 7px;
  color: var(--text-muted);
  font-size: 13px;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  white-space: nowrap;
}
.output-chain-btn:hover { color: var(--text-primary); }
.output-chain-btn.active {
  background: rgba(196,93,53,0.12);
  color: var(--accent);
  font-weight: 600;
}

/* ── ROI equation row (meetings) ── */
.roi-equation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 20px auto;
  padding: 20px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 520px;
}
.roi-item {
  text-align: center;
}
.roi-num {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.roi-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.roi-op {
  font-size: 24px;
  color: var(--accent);
  font-weight: 300;
}
.roi-highlight .roi-num {
  color: var(--accent);
  font-size: 40px;
}

/* ── Voice comparison columns ── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.compare-col {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  background: var(--bg-card);
  position: relative;
  min-height: 240px;
}
.compare-col.dimmed { opacity: 0.5; }
.compare-col.highlight {
  border-color: var(--accent);
  background: rgba(196,93,53,0.04);
  opacity: 1;
}
.compare-col-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  font-family: 'Clash Display', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare-col.dimmed .compare-col-title { color: var(--text-muted); }
.compare-col.highlight .compare-col-title { color: var(--accent); }
.compare-step {
  font-size: 13px;
  padding: 5px 0 5px 22px;
  color: var(--text-muted);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
  position: relative;
  counter-increment: cstep;
}
.compare-col { counter-reset: cstep; }
.compare-step::before {
  content: counter(cstep);
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.compare-col.highlight .compare-step::before {
  background: rgba(196,93,53,0.15);
  color: var(--accent);
}
.compare-step.visible {
  opacity: 1;
  transform: translateY(0);
}
.compare-step.dead-end { color: #ef4444; font-weight: 600; }
.compare-step.half-done { color: #eab308; font-weight: 600; }
.compare-step.success { color: var(--green); font-weight: 600; }

/* ── Moment selector (voice) ── */
.moment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.moment-tile {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.moment-tile:hover { border-color: rgba(196,93,53,0.4); }
.moment-tile.active {
  border-color: var(--accent);
  background: rgba(196,93,53,0.08);
}
.moment-icon { font-size: 24px; margin-bottom: 6px; }
.moment-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.moment-tile.active .moment-label { color: var(--accent); }

/* ── Scrolling command marquee ── */
.marquee-wrap {
  overflow: clip;
  position: relative;
  margin: 32px 0;
  contain: paint;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-primary), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--bg-primary), transparent); }
.marquee-track {
  display: flex;
  gap: 12px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-pill {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-card);
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.marquee-pill::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  vertical-align: -1px;
  background: var(--accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 0-2 2v4a2 2 0 0 0 4 0V3a2 2 0 0 0-2-2z'/%3E%3Cpath d='M4.5 7a.5.5 0 0 0-1 0 4.5 4.5 0 0 0 4 4.473V13H6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1H8.5v-1.527A4.5 4.5 0 0 0 12.5 7a.5.5 0 0 0-1 0 3.5 3.5 0 1 1-7 0z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 0-2 2v4a2 2 0 0 0 4 0V3a2 2 0 0 0-2-2z'/%3E%3Cpath d='M4.5 7a.5.5 0 0 0-1 0 4.5 4.5 0 0 0 4 4.473V13H6a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1H8.5v-1.527A4.5 4.5 0 0 0 12.5 7a.5.5 0 0 0-1 0 3.5 3.5 0 1 1-7 0z'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.5;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Platform connections ── */
.platform-connections {
  padding: 40px 0;
}
.platform-connections .conn-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.platform-connections .conn-line strong {
  color: var(--accent);
}
.platform-connections .conn-line a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.conn-arrow {
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

/* ── Before/After split ── */
.ba-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin: 24px 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.ba-split::before {
  content: '';
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  background: var(--border);
}
.ba-panel {
  padding: 18px 22px;
}
.ba-panel.ba-before { opacity: 0.5; }
.ba-panel.ba-after { background: rgba(74,222,128,0.03); }
.ba-panel h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}
.ba-before h4 { color: var(--text-muted); }
.ba-after h4 { color: var(--green); }
.ba-panel ul { list-style: none; padding: 0; margin: 0; }
.ba-panel li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0 5px 18px;
  line-height: 1.5;
  position: relative;
}
.ba-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
}
.ba-after li { color: var(--text-secondary); }
.ba-after li::before { background: var(--green); }

/* ── Meeting output panels (rich formatting per type) ── */
.output-panels { position: relative; }
.output-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

/* Transcript */
.transcript-block { padding: 20px 24px; }
.transcript-line {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.transcript-line:last-child { border-bottom: none; }
.transcript-ts {
  flex-shrink: 0;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  opacity: 0.5;
  padding-top: 2px;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.transcript-content { flex: 1; }
.transcript-speaker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}
.transcript-speaker.speaker-a { color: #60a5fa; }
.transcript-speaker.speaker-b { color: var(--accent); }
.transcript-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* AI Summary */
.summary-block { padding: 0; }
.summary-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}
.summary-header h4 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px;
}
.summary-meta {
  font-size: 12px;
  color: var(--text-muted);
}
.summary-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.summary-section {
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}
.summary-section:last-child { border-right: none; }
.summary-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.summary-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.summary-section li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 3px 0;
  line-height: 1.5;
  position: relative;
  padding-left: 12px;
}
.summary-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* Action Items */
.actions-block { padding: 8px 0; }
.action-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.action-item:last-child { border-bottom: none; }
.action-check {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
}
.action-content { flex: 1; }
.action-task {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
}
.action-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}
.action-meta strong { color: var(--text-secondary); }

/* Follow-Up Email */
.email-block { padding: 0; }
.email-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.email-field {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 2px 0;
}
.email-label {
  color: var(--text-muted);
  font-weight: 600;
  margin-right: 6px;
  font-size: 12px;
}
.email-body {
  padding: 20px 24px;
}
.email-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 12px;
}
.email-body p:last-child { margin-bottom: 0; }
.email-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 8px;
}
.email-body li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 2px 0 2px 14px;
  position: relative;
}
.email-body li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}
.email-body li strong { color: var(--accent); }
.email-sign {
  color: var(--text-muted) !important;
  font-style: italic;
}

/* Attendees */
.attendees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.attendee-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  position: relative;
}
.attendee-card:last-child { border-right: none; }
.attendee-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(196,93,53,0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.attendee-info { flex: 1; min-width: 0; }
.attendee-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.attendee-role {
  font-size: 12px;
  color: var(--text-muted);
}
.attendee-email {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.6;
  overflow: hidden;
  text-overflow: ellipsis;
}
.attendee-badge {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: absolute;
  top: 12px;
  right: 12px;
}
.attendee-badge.present { background: rgba(74,222,128,0.12); color: var(--green); }
.attendee-badge.mentioned { background: rgba(234,179,8,0.12); color: #eab308; }

@media (max-width: 900px) {
  .summary-sections { grid-template-columns: 1fr; }
  .summary-section { border-right: none; border-bottom: 1px solid var(--border); }
  .summary-section:last-child { border-bottom: none; }
  .attendees-grid { grid-template-columns: 1fr; }
  .attendee-card { border-right: none; border-bottom: 1px solid var(--border); }
  .attendee-card:last-child { border-bottom: none; }
}

/* ── Section subtitle ── */
.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: -16px auto 40px;
  font-size: 15px;
  color: var(--text-muted);
}

/* ── Responsive: all new components ── */
@media (max-width: 900px) {
  .accordion-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .moment-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-split { grid-template-columns: 1fr; } .ba-split::before { display: none; }
  .roi-equation { gap: 16px; }
  .roi-num { font-size: 28px; }
  .roi-highlight .roi-num { font-size: 36px; }
  .output-chain { gap: 0; }
}
@media (max-width: 600px) {
  .tile-row { flex-direction: column; }
  .moment-grid { grid-template-columns: 1fr; }
  .output-chain-btn { font-size: 11px; padding: 10px 8px; }
  .tab-switcher-btn { padding: 10px 14px; font-size: 13px; }

  /* Fix: Agents tab-switcher overflow on mobile */
  .tab-switcher { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .tab-switcher::-webkit-scrollbar { display: none; }
  .tab-switcher-btn { flex: 0 0 auto; padding: 10px 12px; font-size: 12px; }

  /* Fix: Leads pipeline ticker row overlap on mobile */
  .ticker-row { height: auto; min-height: 37px; flex-wrap: wrap; gap: 6px; padding: 8px 0; }
  .ticker-action { font-size: 12px; min-width: 0; }
  .ticker-time { width: 38px; font-size: 11px; }
  .ticker-status { font-size: 9px; padding: 2px 8px; }
}

/* Fix: Voice hero video scale overflow on tablet/mobile */
@media (max-width: 900px) {
  .showcase-video-wrap { overflow: hidden; }
  .showcase-video-wrap video.hero-video-zoom { transform: scale(1.05); }
  /* Fix: Voice marquee section overflow containment */
  .feature-capabilities { overflow: hidden; }
  .marquee-wrap { max-width: 100%; }
}
@media (max-width: 600px) {
  .showcase-video-wrap video.hero-video-zoom { transform: none; }
}

/* ── Trust Bar ── */
.trust-bar {
  text-align: center;
  padding: 20px 0 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .trust-bar-inner { gap: 10px; }
  .trust-item { font-size: 11px; }
}

/* ── Email Capture ── */
.email-capture {
  margin-top: 32px;
  text-align: center;
}
.email-capture-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.email-capture-form {
  display: flex;
  gap: 8px;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
}
.email-capture-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.email-capture-input::placeholder { color: rgba(255,255,255,0.3); }
.email-capture-input:focus { border-color: var(--accent); }
.email-capture-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.email-capture-btn:hover { background: var(--accent-hover, #b06a48); }
.email-capture-btn:disabled { opacity: 0.6; cursor: default; }
.email-capture-success {
  font-size: 14px;
  color: var(--accent);
  margin-top: 8px;
}
@media (max-width: 600px) {
  .email-capture-form { flex-direction: column; }
  .email-capture-btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   BLOG STYLES
   ══════════════════════════════════════════════════════════════ */

/* ── Blog Listing ── */
.blog-hero { padding: 140px 0 60px; text-align: center; }
.blog-hero h1 { font-family: 'Clash Display', sans-serif; font-size: clamp(36px, 5vw, 56px); font-weight: 700; margin-bottom: 16px; }
.blog-hero p { color: var(--text-muted); font-size: 18px; max-width: 540px; margin: 0 auto; }
.blog-search-wrap {
  position: relative;
  max-width: 420px;
  margin: 28px auto 0;
}
.blog-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}
.blog-search {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 20px 14px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.blog-search::placeholder { color: var(--text-muted); }
.blog-search:focus {
  border-color: rgba(196,93,53,0.4);
  box-shadow: 0 0 20px rgba(196,93,53,0.1);
}
.blog-no-result {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  padding: 40px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.blog-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.blog-card h2 { font-family: 'Clash Display', sans-serif; font-size: 24px; font-weight: 600; line-height: 1.3; margin-bottom: 12px; }
.blog-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; flex: 1; }
.blog-card-meta { margin-top: 20px; font-size: 13px; color: var(--text-muted); display: flex; gap: 16px; align-items: center; }

/* ── Article Layout ── */
.article-header {
  padding: 140px 24px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.article-breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.article-breadcrumb a { color: var(--accent); text-decoration: none; }
.article-breadcrumb a:hover { text-decoration: underline; }
.article-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.article-header h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.article-meta {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.article-meta a { color: var(--accent); text-decoration: none; }
.article-meta a:hover { text-decoration: underline; }

/* ── Article Body ── */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
  font-size: 17px;
  line-height: 1.8;
}
.article-body h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin: 56px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.article-body h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin: 40px 0 16px;
}
.article-body p { margin-bottom: 20px; color: var(--text-primary); }
.article-body a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.article-body a:hover { border-bottom-color: var(--accent); }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--text-primary); font-weight: 600; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg-card);
  border-radius: 0 12px 12px 0;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Table of Contents ── */
.article-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 0 0 40px;
}
.article-toc h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  border: none;
  padding: 0;
}
.article-toc ol { margin: 0; padding-left: 20px; }
.article-toc li { margin-bottom: 6px; font-size: 15px; }
.article-toc a { color: var(--text-muted); text-decoration: none; border: none; }
.article-toc a:hover { color: var(--accent); }

/* ── Comparison Table ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 15px;
}
.comparison-table th {
  text-align: left;
  padding: 14px 16px;
  background: var(--bg-card);
  border-bottom: 2px solid var(--accent);
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.comparison-table tr:hover td { background: rgba(196,93,53,0.04); }
.comparison-table .check { color: var(--green); }
.comparison-table .cross { color: var(--text-muted); opacity: 0.5; }

/* ── FAQ Section ── */
.faq-section { margin: 56px 0; padding-top: 32px; border-top: 1px solid var(--border); }
.faq-section h2 { border: none; padding: 0; margin: 0 0 28px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.faq-item:hover {
  border-color: rgba(196,93,53,0.35);
  border-left-color: var(--accent-light);
  box-shadow: 0 4px 24px rgba(196,93,53,0.1);
  transform: translateY(-1px);
}
.faq-item.open {
  border-color: rgba(196,93,53,0.3);
  border-left-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card), rgba(196,93,53,0.04));
}
.faq-q {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Clash Display', sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  user-select: none;
  color: var(--text);
  background: transparent;
  gap: 16px;
  letter-spacing: -0.01em;
}
.faq-q::after {
  content: '+';
  font-family: 'Satoshi', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
  margin-left: auto;
}
.faq-item:hover .faq-q::after { color: var(--accent-light); }
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--accent-light); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 24px 24px; }

/* ── Author Card ── */
.author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin: 48px 0;
}
.author-card-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}
.author-card-info h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  margin: 0 0 4px;
  padding: 0;
  border: none;
}
.author-card-info h3 a { color: var(--accent) !important; text-decoration: none; border: none !important; }
.author-card-info h3 a:hover { text-decoration: underline; }
.author-card-info .author-role { font-size: 14px; color: var(--accent); margin-bottom: 10px; }
.author-card-info p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.7; }
.author-card-info p a { color: var(--accent) !important; border: none !important; }
.author-card-info p a:hover { text-decoration: underline; }
.author-card-info p strong { color: var(--text); }

/* ── Author Page ── */
.author-hero {
  padding: 140px 24px 60px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.author-hero-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  margin-bottom: 24px;
}
.author-hero h1 { font-family: 'Clash Display', sans-serif; font-size: 40px; font-weight: 700; margin-bottom: 8px; }
.author-hero .author-role { color: var(--accent); font-size: 18px; margin-bottom: 24px; }
.author-bio {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}
.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.author-cred {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
}
.author-links { display: flex; gap: 16px; justify-content: center; margin-bottom: 60px; }
.author-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.author-links a:hover { color: var(--accent); }

/* ── CTA Banner (blog) ── */
.blog-cta {
  background: linear-gradient(135deg, var(--bg-card), rgba(196,93,53,0.08));
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 56px 0;
}
.blog-cta h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 24px;
  margin: 0 0 12px;
  padding: 0;
  border: none;
}
.blog-cta p { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  border-bottom: none !important;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(196,93,53,0.2);
}
.blog-cta-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196,93,53,0.35);
}
.blog-cta-btn svg { width: 16px; height: 16px; stroke: #fff; }

/* ── Answer Capsules (AI-extractable summaries) ── */
.article-summary {
  border-left: 3px solid var(--accent);
  background: linear-gradient(135deg, rgba(196,93,53,0.06) 0%, rgba(196,93,53,0.02) 100%);
  padding: 16px 20px;
  margin: 8px 0 24px;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
}

/* ── From the Blog (feature pages) ── */
.from-blog {
  padding: 48px 0;
}
.from-blog .section-label {
  margin-bottom: 24px;
}
.from-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.from-blog-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.from-blog-card:visited {
  color: inherit;
  text-decoration: none;
}
.from-blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,93,53,0.1);
}
.from-blog-card .card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.from-blog-card h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 8px;
  border: none;
  padding: 0;
}
.from-blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .from-blog-grid { grid-template-columns: 1fr; }
}

/* ── Blog Responsive ── */
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; padding: 0 16px 60px; }
  .article-body { font-size: 16px; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
}
