/* === ROOT === */
:root {
  --bg: #ffffff;
  --bg2: #f9fafb;
  --fg: #0a0a0a;
  --muted: #6b7280;
  --muted2: #9ca3af;
  --line: #e5e7eb;
  --line2: #f3f4f6;
  --font-sans: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --font-heading: 'Inter', ui-sans-serif, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --radius: 10px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--fg);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--muted2); font-weight: 400; }
.nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav > a, .nav .dd > a {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav > a:hover, .nav .dd > a:hover { color: var(--fg); background: var(--line2); }
.caret { font-size: 9px; opacity: .5; margin-left: 2px; }
.dd { position: relative; }
.dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  padding: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: none;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  z-index: 60;
}
.dd:hover .dd-menu { display: flex; }
.dd-menu a {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.dd-menu a:hover { color: var(--fg); background: var(--line2); }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-talk {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  border: 1px solid var(--line);
  background: var(--bg);
  transition: border-color .15s, background .15s;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.btn-talk:hover { border-color: var(--muted2); background: var(--line2); }
.btn-started {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--fg);
  border: 1px solid transparent;
  transition: opacity .15s;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.btn-started:hover { opacity: .85; }

/* === HERO HOME (dark) === */
.page-home .site-header { display: none; }

.hero-home {
  position: relative;
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Background video */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-blur {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 1;
}
.hero-layer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hero nav */
.hero-nav {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 16px 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hero-nav .logo { color: #fff; font-size: 18px; }
.hero-nav .logo span { color: rgba(255,255,255,.45); }
.hero-nav .nav > a, .hero-nav .nav .dd > a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  font-weight: 500;
}
.hero-nav .nav > a:hover, .hero-nav .nav .dd > a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}
.hero-nav .dd-menu {
  background: #0d0d0d;
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.hero-nav .dd-menu a { color: rgba(255,255,255,.6); }
.hero-nav .dd-menu a:hover { color: #fff; background: rgba(255,255,255,.06); }
.hero-nav .btn-talk {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.hero-nav .btn-talk:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }
.hero-nav .btn-started {
  background: #fff;
  color: #0a0a0a;
}
.hero-nav .btn-started:hover { opacity: .9; }

/* Hero content v2 */
.hero-content-v2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 28px;
}

/* Headline */
.hero-headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 7vw, 5.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero-line {
  display: block;
}
.hero-grad {
  background: linear-gradient(90deg, #666 0%, #d0d0d0 50%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.12;
}
.hero-white {
  color: #fff;
  line-height: 1.12;
}

/* Rotating word */
.hero-rotate-wrap {
  display: inline-block;
  min-width: 3ch;
  text-align: left;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-rotate {
  display: inline-block;
  color: #27f3a9;
  transition: transform .3s ease, opacity .3s ease;
}
.hero-rotate-out {
  transform: translateY(100%);
  opacity: 0;
}
.hero-rotate-in {
  animation: rotateIn .4s ease;
}
@keyframes rotateIn {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* Sub text */
.hero-sub-v2 {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  line-height: 1.55;
  color: #ccc;
  max-width: 640px;
}

/* Human + AI row */
.hero-human-ai {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-vid-label {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero-vid-icon {
  display: inline-block;
  width: clamp(48px, 10vw, 88px);
  height: clamp(48px, 10vw, 88px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.2);
  flex-shrink: 0;
}
.hero-vid-icon video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-hero-green {
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: #000;
  border: none;
  cursor: pointer;
  outline: 1px solid #30463c;
  outline-offset: -1px;
  box-shadow: 0 6px 24px 6px rgba(39,243,169,.15);
  transition: transform .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn-hero-green:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 32px 8px rgba(39,243,169,.25);
}
.btn-hero-green:active { transform: scale(0.98); }
.btn-hero-ghost {
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: #f6f7f9;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.14); }

/* Stats bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 56px;
  background: transparent;
}
.hero-stat {
  text-align: center;
  padding: 32px 16px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.hero-stat:first-child { border-left: none; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-label {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  letter-spacing: .02em;
}

/* === AGENTS GRID (v2) === */
.agents-wrap {
  max-width: 980px;
  margin: 96px auto 0;
  padding: 0 24px;
}
.agents-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted2);
  margin: 0 0 14px;
}
.agents-heading {
  text-align: center;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 56px;
  font-family: var(--font-heading);
}
.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
}
.agent-card {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
  transition: background .15s;
  display: block;
}
.agent-card:hover { background: var(--bg2); }
.agent-card.is-hidden { display: none; }
.agents-grid .agent-card:nth-child(3n) { border-right: none; }
.icon-circle {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--bg2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  animation: breathe 4s ease-in-out infinite;
}
.icon-circle svg {
  width: 22px;
  height: 22px;
  color: var(--fg);
}
@keyframes breathe {
  0%,100% { box-shadow: 0 0 6px rgba(0,230,118,.10); }
  50% { box-shadow: 0 0 16px rgba(0,230,118,.30); }
}
.agent-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  font-family: var(--font-heading);
}
.agent-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.agents-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.agents-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  transition: border-color .2s, transform .15s;
  font-family: var(--font-sans);
}
.agents-more-btn:hover { border-color: #00E676; }
.agents-more-btn:active { transform: scale(0.98); }
.agents-chev {
  width: 14px;
  height: 14px;
  transition: transform .3s;
}
.agents-more-btn.is-open .agents-chev { transform: rotate(180deg); }

/* === CTA DARK (animated) === */
.cta-perspective {
  perspective: 1400px;
}
.cta-dark {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0a0a;
  padding: 88px 24px;
  text-align: center;
  transform-style: preserve-3d;
  will-change: transform;
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black 40%, transparent 80%);
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 640px;
  height: 640px;
  margin: -320px 0 0 -320px;
  background: radial-gradient(circle, rgba(0,230,118,.18), transparent 65%);
  opacity: 0;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin: 0 0 18px;
}
.cta-accent-line {
  width: 0;
  height: 1px;
  background: #00E676;
  margin: 0 auto 22px;
  box-shadow: 0 0 0px rgba(0,230,118,0);
}
.cta-heading-reveal {
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
  font-family: var(--font-heading);
}
.cta-line-row {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: .08em;
}
.cta-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) rotateX(-40deg);
  transform-origin: 50% 100%;
  filter: blur(6px);
  will-change: transform, opacity, filter;
}
.cta-space { width: .32em; }
.cta-body-reveal {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
}

/* === LIGHT PAGES === */
main { position: relative; }

/* Sub-page hero (light) */
.hero-sub {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px 48px;
  text-align: center;
}
/* rename sub hero class to avoid conflict with .hero-sub text */
section.hero-sub-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px 48px;
  text-align: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: ui-monospace, monospace;
}
.pill i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--fg);
}
h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--fg);
}
h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.sub-text {
  margin: 20px auto 0;
  max-width: 580px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.cta-row {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius);
  background: var(--fg);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: opacity .15s;
}
.btn-primary:hover { opacity: .82; }
.btn-outline {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--fg);
  font-size: 14px;
  font-weight: 600;
  background: var(--bg);
  transition: border-color .15s, background .15s;
}
.btn-outline:hover { border-color: var(--muted2); background: var(--line2); }

/* Section label */
.section-label {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted2);
}

/* === CONTENT PANELS === */
.panel {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.window {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.04);
}
.window-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}
.window-bar i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
  display: block;
}
.window-body {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.stat {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  background: var(--bg);
}
.stat .k {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.stat .k em {
  font-style: normal;
  color: #16a34a;
  font-size: 12px;
  margin-left: 4px;
}
.stat .l {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted2);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: ui-monospace, monospace;
}

/* === FEATURES GRID === */
.features {
  max-width: 1080px;
  margin: 96px auto 0;
  padding: 0 24px;
}
.features-head {
  text-align: center;
  margin-bottom: 48px;
}
.features-head h2 { margin-top: 12px; }
.grid3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.grid3.two { grid-template-columns: repeat(2,1fr); }
.cell {
  background: var(--bg);
  padding: 28px 24px;
  display: block;
  position: relative;
  transition: background .15s;
}
.cell:hover { background: var(--bg2); }
.cell .ic { font-size: 20px; margin-bottom: 14px; }
.cell h3 { margin-bottom: 8px; }
.cell p { font-size: 14px; color: var(--muted); line-height: 1.65; }
/* illustrated cells */
.cell-illus { padding: 0 0 24px; }
.cell-svg-wrap {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  line-height: 0;
}
.cell-illus-svg { width: 100%; height: auto; display: block; }
.cell-illus h3 { padding: 0 24px; margin-bottom: 8px; }
.cell-illus p  { padding: 0 24px; font-size: 14px; color: var(--muted); line-height: 1.65; }
.cell-bullets {
  list-style: none;
  margin: 12px 0 0;
  padding: 0 24px;
}
.cell-bullets li {
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0 4px 18px;
  position: relative;
  opacity: 0.85;
}
.cell-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00E676;
  opacity: 0.7;
}
.cell-illus .more { padding: 0 24px; }

/* screenshot cards — cal.com style */
.sc-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sc-card-text {
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
}
.sc-card-text h3 { margin-bottom: 8px; }
.sc-card-text p  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.sc-card-text .cell-bullets { padding: 0; }
.sc-card-text .more { padding: 0; }
.sc-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.sc-card-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform .4s ease;
}
.sc-card:hover .sc-card-img img { transform: translateY(-4px); }

/* FAQ */
.faq-section {
  max-width: 1080px;
  margin: 96px auto 0;
  padding: 0 24px;
}
.faq-header {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.faq-header h2 { margin: 10px 0 16px; }
.faq-header p  { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.faq-header-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.faq-grid-narrow { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }

/* Dark FAQ (dfaq) */
.dfaq {
  background: #050505;
  margin-top: 96px;
  padding: 88px 24px;
  color: #fff;
}
.dfaq-inner { max-width: 1080px; margin: 0 auto; }
.dfaq-head {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 56px;
}
@media(min-width:1024px){
  .dfaq-head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 40px; }
}
.dfaq .section-label { margin-bottom: 16px; }
.dfaq-heading {
  margin: 18px 0 0;
  font-size: clamp(30px, 4.5vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #fff;
  font-family: var(--font-heading);
}
.dfaq-side {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.dfaq-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media(min-width:1024px){
  .dfaq-body { grid-template-columns: 280px 1fr; gap: 48px; }
}
.dfaq-left { display: flex; flex-direction: column; gap: 16px; }
@media(min-width:1024px){
  .dfaq-left { position: sticky; top: 90px; align-self: start; }
}
.dfaq-cats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
}
@media(max-width:1023px){
  .dfaq-cats { position: static; flex-direction: row; flex-wrap: wrap; }
  .dfaq-cats .dfaq-cat { flex: 1 1 auto; }
}
.dfaq-cat {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  color: rgba(255,255,255,0.6);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: color .15s, background .15s;
}
.dfaq-cat:hover { color: #fff; }
.dfaq-cat.is-active {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.10);
  color: #fff;
}
.dfaq-contact {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  padding: 26px;
}
.dfaq-contact h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; color: #fff; font-family: var(--font-heading); }
.dfaq-contact p { margin: 0; font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.6); }
.dfaq-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: #00E676;
}
.dfaq-contact a:hover { color: #fff; }
.dfaq-list { position: relative; border-radius: 20px; padding: 10px; border: 1px solid rgba(255,255,255,0.08); }
.dfaq-group { display: none; flex-direction: column; gap: 10px; }
.dfaq-group.is-active { display: flex; }
.dfaq-item {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  padding: 0 24px;
  transition: background .2s;
}
.dfaq-item.open { background: rgba(255,255,255,0.11); }
.dfaq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  color: #fff;
}
.dfaq-chev {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  transition: transform .2s;
}
.dfaq-item.open .dfaq-chev { transform: rotate(180deg); border-color: rgba(0,230,118,0.5); color: #00E676; }
.dfaq-a {
  height: 0;
  overflow: hidden;
  transition: height .25s ease;
}
.dfaq-a p {
  margin: 0;
  padding: 0 40px 24px 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}
/* cursor spotlight ring (1px gradient border following the mouse) */
.spot { position: relative; }
.spot-ring {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(260px circle at var(--sx,-400px) var(--sy,-400px), rgba(255,255,255,0.35), rgba(255,255,255,0) 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

/* Logo marquee */
.logos-section { overflow: hidden; }
.logos-label {
  text-align: center;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted2);
  margin: 0;
}
.logos-sub {
  max-width: 560px;
  margin: 14px auto 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.logo-marquee {
  margin-top: 24px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-item { flex: 0 0 auto; }
.logo-item img {
  width: 110px; height: 110px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter .2s, opacity .2s;
}
.logo-item img:hover { filter: grayscale(0); opacity: 1; }
@media(max-width:768px){
  .logo-track { gap: 32px; }
  .logo-item img { width: 80px; height: 80px; }
}

/* Pillar pages */
.pillar-prose { max-width: 760px; margin-left: auto; margin-right: auto; }
.pillar-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin: 28px 0;
  display: block;
}
.pillar-prose h2 {
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.02em;
  margin: 36px 0 14px;
}
.pillar-prose h2:first-child { margin-top: 0; }
.pillar-prose p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}
.pillar-prose a { color: var(--fg); font-weight: 600; text-decoration: underline; text-decoration-color: #00E676; text-underline-offset: 3px; }
.pillar-prose strong { color: var(--fg); }
.pillar-steps .step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid #00E676;
  color: #00E676;
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
@media(max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-col + .faq-col { margin-top: 8px; }
}
.faq-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #00E676;
  margin: 0 0 4px;
  padding-top: 8px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  color: var(--fg);
  transition: color .15s;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .22s ease;
}
.faq-item[open] > summary::after { transform: rotate(45deg); color: #00E676; }
.faq-item[open] > summary { color: #00E676; }
.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  padding-bottom: 20px;
  margin: 0;
}

/* sc-card separation */
.sc-card-grid {
  gap: 24px !important;
  background: transparent !important;
  border: none !important;
  overflow: visible !important;
}
.sc-card { border-radius: 16px; border: 1px solid var(--line); }
.cell .more {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  opacity: 0;
  transition: opacity .15s;
}
.cell:hover .more { opacity: 1; }

/* Outcomes (3-col on teaser pages) */
.outcomes .cell h3 { font-size: 17px; }
.hint {
  text-align: center;
  margin-top: 20px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted2);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* === HUMAN LAYER === */
.human {
  max-width: 860px;
  margin: 96px auto 0;
  padding: 64px 40px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.human::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .45;
}
.human > * { position: relative; z-index: 1; }
.human h2 { margin-top: 12px; line-height: 1.15; }
.human p {
  margin: 16px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* === CTA FINAL CARD (matching screenshot) === */
.cta-wrap {
  max-width: 1080px;
  margin: 96px auto 0;
  padding: 0 24px;
}
.cta-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  padding: 80px 40px;
  text-align: center;
  background: var(--bg);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .55;
}
/* crosshair corners */
.cta-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 0% 0%, transparent 20px, rgba(255,255,255,0) 20px),
    radial-gradient(circle at 100% 0%, transparent 20px, rgba(255,255,255,0) 20px),
    radial-gradient(circle at 0% 100%, transparent 20px, rgba(255,255,255,0) 20px),
    radial-gradient(circle at 100% 100%, transparent 20px, rgba(255,255,255,0) 20px);
  pointer-events: none;
}
.cta-card .cross {
  position: absolute;
  width: 16px;
  height: 16px;
  color: var(--muted2);
}
.cta-card .cross::before, .cta-card .cross::after {
  content: "";
  position: absolute;
  background: var(--line);
}
.cta-card .cross::before { width: 1px; height: 100%; left: 50%; top: 0; }
.cta-card .cross::after  { width: 100%; height: 1px; top: 50%; left: 0; }
.cta-card .cross.tl { top: -1px; left: -1px; }
.cta-card .cross.tr { top: -1px; right: -1px; }
.cta-card .cross.bl { bottom: -1px; left: -1px; }
.cta-card .cross.br { bottom: -1px; right: -1px; }
.cta-card-inner {
  position: relative;
  z-index: 1;
}
.cta-card h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.cta-card p {
  margin: 16px auto 0;
  max-width: 480px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.cta-card .cta-btns {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: var(--radius);
  background: var(--fg);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: opacity .15s;
}
.btn-cta-dark:hover { opacity: .82; }
.btn-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--fg);
  font-size: 14px;
  font-weight: 600;
  transition: border-color .15s, background .15s;
}
.btn-cta-light:hover { border-color: var(--muted2); background: var(--line2); }

/* === TALK TO SALES PAGE === */
.tts-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px 96px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
.tts-left h1 { font-size: clamp(32px, 4vw, 48px); }
.tts-left p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 420px;
}
.tts-trust {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tts-trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.tts-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.tts-trust-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.tts-trust-item p { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; max-width: none; }
.tts-form-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  background: var(--bg);
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 4px 24px rgba(0,0,0,.06);
}
.tts-form-card h2 { font-size: 22px; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  outline: none;
  transition: border-color .15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--fg); }
.form-group textarea { resize: vertical; min-height: 100px; }
/* Restore the dropdown chevron that `appearance:none` removes. */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
/* align-items:end keeps side-by-side inputs on one line even when one label wraps */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}
.form-row .form-group { margin-bottom: 0; }
.form-submit {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius);
  background: var(--fg);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: opacity .15s;
  margin-top: 4px;
}
.form-submit:hover { opacity: .82; }
.form-note {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--muted2);
}

/* === GET STARTED WIZARD === */
.wiz-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.wiz-head { text-align: center; margin-bottom: 28px; }
.wiz-progress {
  height: 4px;
  background: var(--line2);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 24px;
}
.wiz-progress-bar {
  height: 100%;
  width: 0;
  background: var(--fg);
  border-radius: 99px;
  transition: width .35s cubic-bezier(.2,.7,.2,1);
}
.wiz-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  background: var(--bg);
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 4px 24px rgba(0,0,0,.06);
}
.wiz-step:not([hidden]) { animation: wizIn .3s cubic-bezier(.2,.7,.2,1) both; }
@keyframes wizIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.wiz-step h2 { font-size: 22px; margin-bottom: 6px; }
.wiz-sub { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.wiz-step .form-group:first-of-type { margin-top: 18px; }
.btn-scan {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius);
  background: var(--fg);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: opacity .15s;
}
.btn-scan:hover { opacity: .85; }
.btn-scan:disabled { opacity: .5; cursor: wait; }
.wiz-scan-status { margin-top: 12px; font-size: 13px; color: var(--muted); min-height: 18px; }
.wiz-scan-status.ok { color: #15803d; }
.wiz-scan-status.warn { color: #b45309; }
.wiz-radio-row { display: flex; flex-direction: column; gap: 8px; }
.wiz-radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.wiz-radio {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 40px 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  background: var(--bg);
}
.wiz-radio:hover { border-color: var(--muted2); color: var(--fg); }
.wiz-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
/* custom indicator dot replaces the inconsistent native control —
   absolutely positioned so flex/line-height can never collapse it */
.wiz-radio { padding-left: 42px; }
.wiz-radio::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--muted2);
  border-radius: 50%;
  transition: border-color .15s, box-shadow .15s;
}
.wiz-radio:has(input[type="checkbox"])::before { border-radius: 5px; }
.wiz-radio:has(input:checked)::before {
  border-color: var(--fg);
  box-shadow: inset 0 0 0 4.5px var(--fg);
}
.wiz-radio:has(input:checked) {
  border-color: var(--fg);
  background: var(--bg2);
  color: var(--fg);
  font-weight: 600;
}
.wiz-radio:has(input:checked)::after {
  content: "✓";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}
.wiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line2);
}
.wiz-nav .btn-outline:disabled { opacity: .4; cursor: default; }
.wiz-count {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted2);
}
.wiz-error { margin-top: 14px; font-size: 13px; color: #b91c1c; text-align: center; }
.wiz-skip {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 10px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.wiz-skip:hover { color: var(--fg); }
.offer-input + .offer-input, #offersList .offer-input:not(:first-child) { margin-top: 8px; }
.wiz-add {
  margin-top: 10px;
  padding: 8px 14px;
  background: none;
  border: 1px dashed var(--muted2);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.wiz-add:hover { color: var(--fg); border-color: var(--fg); }
.wiz-success { text-align: center; padding: 24px 0; }
.wiz-success h2 { margin-top: 12px; }
.wiz-success .wiz-sub { max-width: 380px; margin: 10px auto 0; }
@media (max-width: 768px) {
  .wiz-card { padding: 24px 20px; }
}

/* === FOOTER === */
footer {
  max-width: 1280px;
  margin: 96px auto 0;
  padding: 28px 40px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted2);
  font-size: 13px;
}
footer .logo { font-size: 15px; color: var(--fg); }
footer .tagline {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted2);
}

/* === MOBILE MENU === */
.burger {
  display: none;
  position: relative;
  z-index: 60;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color .2s;
  flex-shrink: 0;
}
.burger:hover { border-color: var(--muted2); }
.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s;
}
.mm-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mm-open .burger span:nth-child(2) { opacity: 0; }
.mm-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mm {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mm-open .mm { display: block; animation: mmFade .2s ease both; }
.mm-open { overflow: hidden; }
@keyframes mmFade { from{opacity:0} to{opacity:1} }
.mm-nav {
  position: relative;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 88px 32px 48px;
  gap: 2px;
}
.mm-link {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  padding: 10px 0;
  opacity: 0;
  transform: translateY(10px);
}
.mm-open .mm-link, .mm-open .mm-group, .mm-open .mm-cta {
  animation: mmUp .4s cubic-bezier(.2,.7,.2,1) both;
  animation-delay: calc(.04s + var(--i) * .04s);
}
@keyframes mmUp { to { opacity:1; transform:none; } }
.mm-child {
  font-size: 17px;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 0 7px 16px;
  border-left: 2px solid var(--line);
}
.mm-group {
  margin-top: 20px;
  padding-bottom: 8px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted2);
  opacity: 0;
  transform: translateY(10px);
}
.mm-cta {
  margin-top: auto;
  opacity: 0;
  transform: translateY(10px);
  padding-top: 8px;
}
.mm-cta .btn-primary { display: block; text-align: center; padding: 14px; font-size: 15px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-stats { gap: 0; }
}
@media (max-width: 900px) {
  .tts-wrap { grid-template-columns: 1fr; gap: 48px; }
  .tts-left p { max-width: 100%; }
}
@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  .nav, .header-actions { display: none; }
  .burger { display: flex; }
  .hero-nav { padding: 16px 20px; }
  .hero-nav .nav, .hero-nav .header-actions { display: none; }
  .hero-nav .burger { display: flex; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); }
  .hero-nav .burger span { background: #fff; }
  .hero-nav .btn-talk, .hero-nav .btn-started { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); padding-bottom: 32px; }
  .hero-stat { padding: 20px 12px; }
  .hero-stat:nth-child(3) { border-left: none; }
  .hero-human-ai { gap: 8px; }
  .hero-cta { gap: 10px; flex-wrap: nowrap; width: 100%; max-width: 420px; }
  .btn-hero-green, .btn-hero-ghost { flex: 1; padding: 13px 14px; font-size: 14px; text-align: center; }
  .agents-wrap { margin-top: 64px; }
  .agents-heading { margin-bottom: 40px; }
  .agents-grid { grid-template-columns: repeat(2, 1fr); border-radius: 14px; }
  .agent-card { padding: 22px 18px; }
  .agents-grid .agent-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .agents-grid .agent-card:nth-child(2n) { border-right: none; }
  .cta-perspective { perspective: none; }
  .cta-dark { padding: 56px 22px; }
  .window-body { grid-template-columns: repeat(2,1fr); }
  .grid3, .grid3.two { grid-template-columns: 1fr; }
  .features { margin-top: 64px; }
  .cta-card { padding: 56px 24px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 24px 20px 32px; }
  .human { padding: 48px 24px; }
  .features-head h2, h1 { letter-spacing: -0.025em; }
}

/* Pillar hero (cal.com enterprise style) */
.pillar-hero {
  padding: 88px 24px 64px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.pillar-hero-inner { max-width: 1280px; margin: 0 auto; }
.pillar-hero-h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 24px 0 0;
}
.pillar-hero-sub {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  color: var(--muted);
}
.pillar-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.pillar-hero-cta .btn-started,
.pillar-hero-cta .btn-talk { padding: 12px 26px; font-size: 15px; border-radius: 12px; }
.pillar-hero .logos-section { margin-top: 64px; }

/* Wide page container (pillar pages) — matches the 1280px header */
.panel-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Editorial prose rows: heading left, body right */
.pillar-prose { max-width: none; }
.prose-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 64px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.prose-row:last-of-type { border-bottom: none; }
@media (min-width: 900px) {
  .prose-row { grid-template-columns: 380px 1fr; }
}
.prose-row h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.prose-row .prose-body p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}
.prose-row .prose-body p:last-child { margin-bottom: 0; }
.pillar-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  margin-top: 48px;
}

/* Process steps: 4-up row (no empty gray cells) */
.grid3.pillar-steps { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991px) { .grid3.pillar-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid3.pillar-steps { grid-template-columns: 1fr; } }
