/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --white: #ffffff;
  --off-white: #f9f9f7;
  --warm-gray: #f3f1ed;
  --border: rgba(0,0,0,.08);
  --text: #1a1a2e;
  --text-secondary: #555;
  --muted: #777;
  --accent: #b5522a;
  --accent-dark: #8b3a1a;
  --accent-light: #d4754a;
  --accent-glow: rgba(181,82,42,.12);
  --navy: #1a1a2e;
  --green: #16a34a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.04);
  --shadow: 0 4px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.08);
  --container: 1120px;
  --narrow: 800px;
  --ease: .25s cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1,h2,h3,h4 { line-height: 1.15; }

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.narrow { max-width: var(--narrow); }
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-center { text-align: center; }

/* Dark section with aurora background */
.section-dark {
  position: relative;
  overflow: hidden;
  background: #000;
}
.section-dark-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 80%, rgba(204,85,0,.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(0,100,180,.3) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 50% 50%, rgba(40,180,120,.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 20%, rgba(120,60,200,.2) 0%, transparent 55%),
    radial-gradient(ellipse 30% 35% at 25% 30%, rgba(204,85,0,.2) 0%, transparent 50%);
  filter: blur(40px);
}
.callout-dark {
  background: transparent;
  border: none;
  box-shadow: none;
}
.section-center .body-muted { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
.section-title,
.section-title-lg {
  font-family: 'Arial Nova', 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  text-align: center;
  background: linear-gradient(135deg, #000000 0%, #000000 12%, #0d0d20 18%, #141428 22%, #1a1a2e 28%, #cc5500 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.body-muted {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
}
.body-wide { max-width: 720px; }
.accent { color: var(--accent); }
.overline {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.caption { font-size: 14px; color: var(--muted); margin-top: 8px; }
.small-heading { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }

/* ═══════════════════════════════════════════
   BUTTONS — rounded rectangle, NOT pill
   All buttons share uniform border-radius
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary,
.btn-navy {
  background: linear-gradient(135deg, #000000 0%, #000000 12%, #0d0d20 18%, #141428 22%, #1a1a2e 28%, #cc5500 80%);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 6px 20px rgba(204,85,0,.15);
}
.btn-primary:hover,
.btn-navy:hover {
  background: #cc5500;
  box-shadow: 0 0 18px rgba(204,85,0,.45), 0 0 40px rgba(204,85,0,.25), 0 10px 28px rgba(204,85,0,.3);
  color: #fff;
}
.btn-outline {
  background: #e8e4de;
  color: #000;
  border: 2px solid transparent;
}
.btn-outline:hover {
  background: #ddd8d0;
  color: #000;
}

.btn-sm { height: 40px; padding: 0 20px; font-size: 14px; }
.btn-lg { height: 52px; padding: 0 36px; font-size: 16px; }

/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 8px; }
.brand-logo {
  height: 40px;
  width: auto;
}
.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #000000 0%, #000000 12%, #0d0d20 18%, #141428 22%, #1a1a2e 28%, #cc5500 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-name .brand-tight {
  letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 6px; }
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(0,0,0,.04); color: var(--text); }
.nav-ctas { display: flex; gap: 10px; }
.nav-ctas .btn { height: 42px; padding: 0 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); margin: 4px auto; }

.mobile-menu { padding: 16px 24px 24px; border-top: 1px solid var(--border); background: var(--white); }
.mobile-menu a { display: block; padding: 12px 0; color: var(--text-secondary); font-weight: 500; }
.mobile-ctas { display: flex; gap: 10px; margin-top: 12px; }
.mobile-trial-btn { padding-left: 32px !important; padding-right: 32px !important; }

/* ═══════════════════════════════════════════
   HERO — metallic wave background
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 72px;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #e8e4de;
  overflow: hidden;
}
.hero-bg svg.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(255,255,255,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(255,255,255,0.5) 0%, transparent 55%)
    ),
    linear-gradient(240deg,
      transparent 15%,
      rgba(255,255,255,.3) 25%,
      transparent 35%,
      rgba(190,184,175,.15) 50%,
      rgba(255,255,255,.35) 55%,
      transparent 65%
    ),
    radial-gradient(ellipse 80% 40% at 50% 15%, rgba(255,255,255,.5), transparent 70%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, #fff 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 0 12px rgba(204,85,0,.35), 0 0 30px rgba(204,85,0,.18), 0 0 50px rgba(204,85,0,.08);
  margin-bottom: 36px;
}

.hero-h1 {
  font-family: 'Arial Nova', 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 960px;
  background: radial-gradient(circle at 50% 32%, #e88a40 0%, #cc5500 10%, #a34400 20%, #1a1a2e 42%, #0d0d20 58%, #000 78%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-h1 i {
  font-style: normal;
  font-weight: 600;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 960px;
  margin-bottom: 36px;
}
.trust-row {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   AGENT SHOWCASE (hero section)
   ═══════════════════════════════════════════ */
.agent-showcase {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.agent-showcase-img {
  max-width: 620px;
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════
   PLATFORM STRIP
   ═══════════════════════════════════════════ */
.platform-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: 40px 32px;
}
.platform-text { max-width: 700px; }
.platform-line {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
}
.platform-logos-img {
  max-width: 800px;
  width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════
   PRODUCT SPLIT LAYOUT (Leads & CRM)
   ═══════════════════════════════════════════ */
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}
.product-split.reverse .product-text { order: 2; }
.product-split.reverse .product-visual { order: 1; }
.product-text .section-title { margin-bottom: 16px; }
.product-text .body-muted { max-width: none; margin-bottom: 20px; }
.product-text .btn { margin-top: 8px; }
.product-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.product-visual-bottom {
  display: flex;
  align-items: flex-end;
}

/* ═══════════════════════════════════════════
   SPLIT LAYOUT (legacy)
   ═══════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}
.split-text .section-title { text-align: center; }
.split-text .body-muted { margin-left: 0; }

/* ═══════════════════════════════════════════
   CHECKLISTS
   ═══════════════════════════════════════════ */
.check-list { margin: 16px 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6.5L5 9L9.5 3.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
.check-list.compact li { padding: 4px 0; font-size: 14px; }

/* ═══════════════════════════════════════════
   MEET THE AGENTS — centered layout
   ═══════════════════════════════════════════ */
.meet-agents {
  text-align: center;
}
.meet-agents-sub {
  margin: 0 auto 16px;
  text-align: center;
}
.skill-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.skill-chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.skill-chip:hover {
  border-color: rgba(204,85,0,.3);
  box-shadow: 0 0 10px rgba(204,85,0,.12);
}

/* Agent cards row */
.agent-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 180px);
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}
.agent-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 20px 12px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.agent-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.agent-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 30%, #cc5500 55%, #000000 100%);
}
.agent-avatar-img {
  position: relative;
  z-index: 1;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}
.agent-card-name {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.agent-play-btn {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
  margin-bottom: 6px;
}
.agent-play-btn:hover {
  background: rgba(204,85,0,.5);
  border-color: #cc5500;
}
.agent-powered {
  position: relative;
  z-index: 1;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.03em;
}
.agent-powered strong {
  color: rgba(255,255,255,.7);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   PANELS & CARDS
   ═══════════════════════════════════════════ */
.panel {
  padding: 48px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}
.callout-panel {
  padding: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fdf6f2, #fef9f6);
  border: 1px solid rgba(181,82,42,.12);
  text-align: center;
}
.callout-panel h2, .callout-panel h3 { margin-bottom: 16px; }

.final-cta-panel {
  position: relative;
  overflow: hidden;
  padding: 56px 40px;
  border-radius: var(--radius);
  background: #000;
  border: none;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.final-cta-panel::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -15%;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle, rgba(204,85,0,.45) 0%, rgba(0,100,180,.3) 30%, rgba(120,60,200,.2) 55%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
}
.final-cta-panel .section-title { -webkit-text-fill-color: unset; background: none; color: #fff; position: relative; z-index: 1; }
.final-cta-panel .body-muted { margin-bottom: 12px; color: rgba(255,255,255,.7); position: relative; z-index: 1; }
.final-cta-panel .btn { margin-top: 20px; position: relative; z-index: 1; }

/* ═══════════════════════════════════════════
   GRIDS
   ═══════════════════════════════════════════ */
.four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.center-cta { text-align: center; margin-top: 32px; }

/* Mini-cards */
.mini-card {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  border: 1px solid var(--border);
  text-align: left;
}
.mini-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.mini-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* Demo circle play buttons */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 135deg;
  inherits: false;
}
@keyframes bounce-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}
@keyframes rotate-gradient {
  0%   { --gradient-angle: 135deg; }
  100% { --gradient-angle: 495deg; }
}
.demo-circle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.demo-circle-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 16px rgba(204,85,0,.35), 0 0 36px rgba(204,85,0,.18), 0 8px 28px rgba(0,0,0,.08);
}
.demo-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(var(--gradient-angle), #000000 0%, #000000 12%, #0d0d20 18%, #141428 22%, #1a1a2e 28%, #cc5500 80%);
  box-shadow: 0 6px 24px rgba(204,85,0,.15);
  transition: box-shadow .3s ease;
  margin-bottom: 16px;
}
.demo-circle:hover {
  animation: rotate-gradient 4s linear infinite;
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(204,85,0,.45), 0 0 40px rgba(204,85,0,.25), 0 10px 20px rgba(0,0,0,.15);
}
.demo-circle .play-icon {
  margin-left: 4px;
}
.demo-label { font-size: 13px; font-weight: 600; color: #000; margin-bottom: 8px; }
.demo-circle-wrap h4 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.demo-sample { font-size: 13px; color: var(--muted); }

/* Step cards */
.step-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform var(--ease), box-shadow var(--ease);
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  border: 1px solid var(--border);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 14px;
}
.step-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--muted); }

/* Capability cards */
.cap-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform var(--ease), box-shadow var(--ease);
}
.cap-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cap-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.cap-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Love cards */
.love-grid { margin-top: 28px; }
.love-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform var(--ease), box-shadow var(--ease);
}
.love-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.love-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.love-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   HUMAN-LIKE AI SECTION
   ═══════════════════════════════════════════ */
.human-like-section { text-align: center; }
.human-like-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

/* Script card (left side) */
.script-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.script-card .script-label,
.script-card .script-text {
  align-self: stretch;
}
.script-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.script-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
  min-height: 120px;
}
.typewriter-cursor {
  display: inline;
  animation: blink-cursor .7s step-end infinite;
  color: var(--accent);
  font-weight: 300;
}
@keyframes blink-cursor {
  50% { opacity: 0; }
}

/* Feature cards grid (right side) */
.feature-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 360px;
}
.feature-card-dark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 10px;
  border-radius: 16px;
  background: #000000;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.feature-card-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}
.feature-card-video {
  width: 170%;
  max-width: none;
  height: auto;
  border-radius: 0;
  margin-bottom: -10px;
  object-fit: cover;
}
.feature-card-label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 4px 6px 2px;
  width: 100%;
}

/* ═══════════════════════════════════════════
   COMPARE
   ═══════════════════════════════════════════ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.compare-col {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: none;
}
.compare-col h4 { font-size: 18px; font-weight: 700; margin-bottom: 14px; color: #fff; }
.compare-col ul { padding-left: 20px; list-style: disc; }
.compare-col li { padding: 5px 0; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.6; }
.compare-highlight {
  background: rgba(255,255,255,.1);
  border-color: rgba(204,85,0,.3);
  box-shadow: 0 0 20px rgba(204,85,0,.12);
}
.compare-highlight h4 { color: #cc5500; }

/* ═══════════════════════════════════════════
   USE CASES
   ═══════════════════════════════════════════ */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  text-align: left;
}
.usecase-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.usecase-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.uc-icon { font-size: 28px; margin-bottom: 10px; }
.usecase-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.usecase-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════════════════
   IMPACT
   ═══════════════════════════════════════════ */
.section-impact {
  background: linear-gradient(to right, #cc5500 0%, #000000 100%);
}
.impact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: left;
}
.impact-left .section-title { text-align: center; -webkit-text-fill-color: unset; background: none; color: #fff; }
.impact-left .body-muted { margin-left: 0; color: rgba(255,255,255,.75); }
.impact-left .check-list li { color: rgba(255,255,255,.8); }
.impact-left .check-list li::before { background-color: #fff; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-num { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 8px; line-height: 1.4; }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.section-faq-dark {
  position: relative;
  overflow: hidden;
  background: #000;
}
.section-faq-bg {
  filter: blur(60px);
  opacity: .8;
}
.faq {
  margin-top: 28px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  margin-bottom: 10px;
  box-shadow: none;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  transition: transform var(--ease);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 24px 20px;
  color: rgba(255,255,255,.6);
  font-size: 15px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FOOTER — enhanced 4-column layout
   ═══════════════════════════════════════════ */
.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}
.footer-grid-full {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand-col .brand { margin-bottom: 12px; }
.footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 14px; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--ease);
}
.footer-legal a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .four-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid-full { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-ctas { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 80px 0 56px; }
  .hero-h1 { font-size: clamp(32px, 7vw, 48px); }
  .agent-showcase-img { max-width: 480px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .product-split { grid-template-columns: 1fr; gap: 32px; }
  .product-split.reverse .product-text { order: 1; }
  .product-split.reverse .product-visual { order: 2; }
  .product-text .section-title { text-align: center !important; }
  .agent-cards-row { grid-template-columns: repeat(3, 1fr); }
  .platform-strip { padding: 32px 20px; }
  .compare { grid-template-columns: 1fr; }
  .three-grid { grid-template-columns: 1fr; }
  .usecase-grid { grid-template-columns: 1fr 1fr; }
  .impact-panel { grid-template-columns: 1fr; }
  .impact-left { text-align: center; }
  .impact-left .section-title { text-align: center; }
  .impact-left .body-muted { margin: 0 auto; }
  .human-like-grid { grid-template-columns: 1fr; }
  .feature-cards-grid { grid-template-columns: 1fr 1fr; }
  .panel { padding: 32px 24px; }
  .callout-panel { padding: 32px 24px; }
}
@media (max-width: 768px) {
  .demo-arrow { display: none !important; }
}
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .four-grid { grid-template-columns: 1fr; }
  .agent-cards-row { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .usecase-grid { grid-template-columns: 1fr; }
  .trust-row { flex-direction: column; gap: 12px; align-items: center; }
  .agent-showcase-img { max-width: 360px; }
  .feature-cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid-full { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand-col { display: flex; flex-direction: column; align-items: center; }
  .footer-brand-col .footer-desc { max-width: 100%; }
  .footer-col { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .feature-card-dark { min-height: 180px; }
  .feature-card-label { position: relative; z-index: 1; padding: 4px 0; }
}
