/* ============================================
   CRE8 YOUR SUCCESS — Brand Variables & Shared Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=JetBrains+Mono:wght@400;600&display=swap');

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

:root {
  --orange:       #FF6600;
  --orange-dark:  #E55A00;
  --orange-light: rgba(255,102,0,0.12);
  --blue:         #0066FF;
  --blue-dark:    #0052CC;
  --blue-light:   rgba(0,102,255,0.12);
  --black:        #0A0A0A;
  --black-mid:    #111111;
  --black-2:      #161616;
  --black-elev:   #1a1a1a;
  --logo-bg:      #1B212B;
  --black-border: rgba(255,255,255,0.08);
  --black-border-strong: rgba(255,255,255,0.14);
  --white:        #FFFFFF;
  --gray-50:      #F9FAFB;
  --gray-100:     #F3F4F6;
  --gray-200:     #E5E7EB;
  --gray-400:     #9CA3AF;
  --gray-500:     #6B7280;
  --gray-600:     #4B5563;
  --gray-800:     #1F2937;
  --font-heading: 'Orbitron', 'Segoe UI', sans-serif;
  --font-body:    'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,0.72);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

::selection { background: var(--orange); color: var(--white); }

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 2rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--black-border);
}
.nav-left { display: flex; align-items: center; gap: 48px; }
.nav-right { display: flex; align-items: center; gap: 10px; }

/* Wordmark */
.nav-wordmark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 900;
  text-decoration: none; white-space: nowrap;
  letter-spacing: 1.2px;
  color: var(--white);
}
.nav-wordmark .cre8    { color: var(--orange); }
.nav-wordmark .your    { color: var(--white); }
.nav-wordmark .success { color: var(--blue); }

/* Logo mark (simple stylized version of the c8 infinity) */
.logo-mark {
  width: 30px; height: 30px;
  display: inline-block; flex: none;
}

.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 8px;
  color: rgba(255,255,255,0.58); font-size: 13.5px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: color .2s, background .2s;
  font-family: var(--font-body);
}
.nav-item > a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-item.has-dropdown > a::after {
  content: ''; width: 8px; height: 5px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: .5; transition: transform .2s;
}
.nav-item.has-dropdown:hover > a::after { transform: rotate(180deg); opacity: .9; }

.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); padding-top: 10px; min-width: 220px;
}
.nav-dropdown-inner {
  background: #151515;
  border: 1px solid var(--black-border-strong);
  border-radius: 14px; padding: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,102,0,.03);
}
.nav-item.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown-inner a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 10px 14px; border-radius: 9px;
  color: rgba(255,255,255,.72); font-size: 13.5px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-inner a:hover { background: rgba(255,255,255,.06); color: var(--white); }
.nav-dropdown-inner .divider { height: 1px; background: var(--black-border); margin: 6px 0; }
.nav-dropdown-inner .nav-dd-item {
  display: block;
  padding: 10px 14px; border-radius: 9px;
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,.78);
  letter-spacing: .2px;
}

.badge-live {
  font-size: 9.5px; font-weight: 800; background: var(--orange-light);
  color: var(--orange); border: 1px solid rgba(255,102,0,.3);
  padding: 2px 8px; border-radius: 100px; letter-spacing: .6px;
}
.badge-soon {
  font-size: 9.5px; font-weight: 700; background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.35); padding: 2px 8px; border-radius: 100px;
  letter-spacing: .3px;
}

.nav-cta {
  background: var(--orange); color: var(--white);
  padding: 10px 20px; border-radius: 8px;
  font-size: 13.5px; font-weight: 700; font-family: var(--font-body);
  text-decoration: none; white-space: nowrap; transition: background .2s, transform .2s;
  letter-spacing: .2px;
}
.nav-cta:hover { background: var(--orange-dark); }

@media (max-width: 880px) { .nav-menu { display: none; } nav.site-nav { padding: 0 1.25rem; } }

/* ── LAYOUT ── */
.section { padding: 120px 2rem; position: relative; }
.section-dark  { background: var(--black-mid); }
.section-darker{ background: var(--black); }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 1040px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 22px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--orange);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.2vw, 52px); font-weight: 900;
  letter-spacing: -0.5px; color: var(--white);
  line-height: 1.08;
}
.section-sub {
  font-size: 17px; color: rgba(255,255,255,.5);
  max-width: 620px; line-height: 1.7; margin-top: 18px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 15px 30px; border-radius: 10px;
  font-size: 14.5px; font-weight: 800; font-family: var(--font-body);
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none; cursor: pointer; letter-spacing: .3px;
  box-shadow: 0 12px 40px -10px rgba(255,102,0,.5);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 14px 44px -8px rgba(255,102,0,.7); }
.btn-primary .arrow {
  width: 14px; height: 14px; display: inline-block;
  transition: transform .2s;
}
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  background: transparent; color: rgba(255,255,255,.88);
  padding: 15px 28px; border-radius: 10px;
  font-size: 14.5px; font-weight: 700; font-family: var(--font-body);
  text-decoration: none; border: 1px solid rgba(255,255,255,.16);
  display: inline-flex; align-items: center; gap: 10px;
  transition: border-color .2s, color .2s, background .2s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.03); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  padding: 140px 2rem 80px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--black);
  z-index: 0;
}
.hero-bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.42;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(255,102,0,.22) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(0,102,255,.25) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.78) 100%);
  z-index: 1;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 1440px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: center;
}
.hero-content .hero-text { max-width: 560px; }

/* Hero video showcase (right column) */
.hero-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-width: 880px;
  justify-self: end;
}
.hero-video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #060810;
  border: 1px solid rgba(255,102,0,.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 30px 80px rgba(0,0,0,.55),
    0 0 60px rgba(255,102,0,.12);
}
.hero-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-hud {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: center;
  pointer-events: none;
  z-index: 2;
}
.hero-video-glow {
  position: absolute; inset: -20px; z-index: -1;
  background: radial-gradient(60% 50% at 50% 50%, rgba(255,102,0,.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-video-wrap { justify-self: stretch; max-width: 100%; aspect-ratio: 16 / 10; }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 6px 6px 14px; border-radius: 100px;
  background: rgba(255,255,255,.04); border: 1px solid var(--black-border-strong);
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.7); margin-bottom: 28px;
}
.hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); animation: pulse 1.6s ease-in-out infinite; }
.hero-tag .pill { background: rgba(0,102,255,.15); color: var(--blue); padding: 3px 9px; border-radius: 100px; font-size: 10.5px; font-weight: 700; letter-spacing: .4px; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6.5vw, 84px); font-weight: 900;
  color: var(--white); line-height: 0.98; letter-spacing: -2px;
}
.hero-title .accent-o { color: var(--orange); }
.hero-title .accent-b { color: var(--blue); }
.hero-title .stroke {
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.4);
}

.hero-sub {
  margin-top: 26px; font-size: 18px; line-height: 1.65;
  color: rgba(255,255,255,.6); max-width: 540px;
}

.hero-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 560px;
  padding-top: 26px; border-top: 1px solid var(--black-border);
}
.hero-stat-num {
  font-family: var(--font-heading); font-size: 28px; font-weight: 900;
  color: var(--white); line-height: 1;
}
.hero-stat-num .unit { color: var(--orange); }
.hero-stat-label {
  margin-top: 8px; font-size: 11px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(255,255,255,.38);
}

/* Hero right: video frame */
.hero-visual {
  position: relative; aspect-ratio: 16 / 11;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--black-border-strong);
  background: var(--black-2);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.02);
}
.hero-visual video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,.55) 100%);
  pointer-events: none;
}

/* HUD overlay on video */
.hud {
  position: absolute; inset: 0; z-index: 3;
  padding: 18px; pointer-events: none;
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10.5px;
  color: rgba(255,255,255,.75);
}
.hud-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.hud-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 10px; border-radius: 100px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 600; letter-spacing: .4px;
}
.hud-chip .live-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; animation: pulse 1.4s ease-in-out infinite; }
.hud-waveform {
  display: flex; gap: 2px; align-items: flex-end; height: 18px;
}
.hud-waveform span {
  width: 2px; background: var(--orange); border-radius: 2px;
  animation: wave 1.1s ease-in-out infinite;
}
.hud-waveform span:nth-child(1) { height: 40%; animation-delay: 0s; }
.hud-waveform span:nth-child(2) { height: 70%; animation-delay: .1s; }
.hud-waveform span:nth-child(3) { height: 100%; animation-delay: .2s; background: var(--blue); }
.hud-waveform span:nth-child(4) { height: 60%; animation-delay: .3s; }
.hud-waveform span:nth-child(5) { height: 85%; animation-delay: .4s; background: var(--blue); }
.hud-waveform span:nth-child(6) { height: 45%; animation-delay: .5s; }
.hud-waveform span:nth-child(7) { height: 75%; animation-delay: .6s; }
@keyframes wave { 0%, 100% { transform: scaleY(.5); } 50% { transform: scaleY(1); } }

.hud-bottom {
  background: rgba(10,10,10,.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
}
.hud-bottom .caller {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 900;
  font-size: 12px; color: var(--white);
  flex: none;
}
.hud-bottom .caller-info { flex: 1; min-width: 0; }
.hud-bottom .caller-info .name { color: var(--white); font-size: 12px; font-weight: 700; font-family: var(--font-body); }
.hud-bottom .caller-info .meta { color: rgba(255,255,255,.5); font-size: 10px; margin-top: 2px; }
.hud-bottom .timer { font-size: 11px; color: var(--orange); font-weight: 700; }

/* Floating data chips around hero visual */
.float-chip {
  position: absolute; z-index: 4;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(20,20,20,.92); backdrop-filter: blur(10px);
  border: 1px solid var(--black-border-strong);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.85);
  animation: float 6s ease-in-out infinite;
}
.float-chip .icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 900;
  flex: none;
}
.float-chip .icon.orange { background: var(--orange-light); color: var(--orange); }
.float-chip .icon.blue   { background: var(--blue-light); color: var(--blue); }
.float-chip .val { color: var(--white); font-weight: 800; }
.float-chip.top    { top: -24px; left: -28px; animation-delay: 0s; }
.float-chip.bottom { bottom: -20px; right: -34px; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .float-chip.top { top: -16px; left: 8px; }
  .float-chip.bottom { bottom: -16px; right: 8px; }
}

/* ── BRAND BAR ── */
.brand-bar {
  background: var(--black); border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 22px 2rem; overflow: hidden;
  display: flex; justify-content: center;
}
.marquee { display: flex; gap: 56px; align-items: center; white-space: nowrap; animation: marquee 38s linear infinite; }
.marquee > * { flex: none; font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.24); }
.marquee .dot { color: var(--orange); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HOW IT WORKS ── */
.how-grid {
  margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative;
}
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } }

.how-card {
  position: relative;
  background: var(--black-mid);
  border: 1px solid var(--black-border);
  border-radius: 18px; padding: 36px 30px 32px;
  transition: border-color .25s, transform .25s;
}
.how-card:hover { border-color: rgba(255,102,0,.35); transform: translateY(-3px); }
.how-step {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-heading); font-size: 48px; font-weight: 900;
  line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.1);
}
.how-card:nth-child(1) .how-step { -webkit-text-stroke: 1px rgba(255,102,0,.35); }
.how-card:nth-child(2) .how-step { -webkit-text-stroke: 1px rgba(0,102,255,.35); }
.how-card:nth-child(3) .how-step { -webkit-text-stroke: 1px rgba(255,255,255,.2); }

.how-glyph {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--black-border-strong);
  position: relative; overflow: hidden;
}
.how-glyph svg { width: 28px; height: 28px; }
.how-card h3 {
  font-family: var(--font-heading); font-size: 19px; font-weight: 900;
  color: var(--white); letter-spacing: -.3px; margin-bottom: 12px;
}
.how-card p { font-size: 14.5px; color: rgba(255,255,255,.55); line-height: 1.65; }

.how-card .how-meta {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px dashed var(--black-border);
  font-family: var(--font-mono); font-size: 10.5px;
  color: rgba(255,255,255,.35); letter-spacing: .4px;
  display: flex; justify-content: space-between;
}
.how-card .how-meta strong { color: rgba(255,255,255,.85); font-weight: 700; }

/* ── FEATURES ── */
.feat-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}
.feat {
  background: var(--black-mid);
  border: 1px solid var(--black-border);
  border-radius: 18px;
  padding: 28px 28px 26px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.feat:hover { border-color: rgba(255,255,255,.2); }
.feat h3 {
  font-family: var(--font-heading); font-size: 17px; font-weight: 900;
  color: var(--white); letter-spacing: -.2px; margin-bottom: 10px;
}
.feat p { font-size: 13.5px; color: rgba(255,255,255,.52); line-height: 1.6; }
.feat .tag {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,.38); letter-spacing: 1px;
  text-transform: uppercase;
}
.feat .tag.live { color: var(--orange); }
.feat .tag.new  { color: var(--blue); }

.feat.lg   { grid-column: span 12; grid-row: span 1; }
.feat.md   { grid-column: span 5; }
.feat.sm   { grid-column: span 3; }
.feat.sm2  { grid-column: span 3; }
.feat.sm3  { grid-column: span 3; }
.feat.sm4  { grid-column: span 3; }
.feat.half { grid-column: span 6; }
.feat.wide { grid-column: span 12; }

@media (max-width: 1100px) {
  .feat.sm, .feat.sm2, .feat.sm3, .feat.sm4 { grid-column: span 6; }
}
@media (max-width: 960px) {
  .feat.lg, .feat.md, .feat.sm, .feat.sm2, .feat.sm3, .feat.sm4, .feat.half, .feat.wide { grid-column: span 12; grid-row: auto; }
}

/* Feature visuals */
.viz-voice {
  margin-top: auto; padding-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
}

/* Voice Agent card 2-col layout (text + conversation | video) */
.voice-card-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px;
  align-items: stretch; height: 100%;
}
@media (max-width: 880px) { .voice-card-grid { grid-template-columns: 1fr; } }
.voice-card-left { display: flex; flex-direction: column; }
.voice-card-video {
  position: relative; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--black-border-strong);
  background: #000; min-height: 280px;
}
.voice-card-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.voice-card-video::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 25%, transparent 70%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.voice-card-video-hud {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10.5px;
  z-index: 2; pointer-events: none;
}
.voice-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--black-border);
}
.voice-row.active { border-color: rgba(255,102,0,.4); background: rgba(255,102,0,.04); }
.voice-row .av {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-heading); font-size: 10px; font-weight: 900;
  color: var(--white); flex: none;
}
.voice-row .av.user  { background: #333; }
.voice-row .av.agent { background: linear-gradient(135deg, var(--orange), var(--blue)); }
.voice-row .txt {
  font-size: 12.5px; color: rgba(255,255,255,.78); line-height: 1.5; flex: 1;
}
.voice-row .txt .typing {
  display: inline-flex; gap: 3px; align-items: center;
  margin-left: 4px;
}
.voice-row .txt .typing span {
  width: 4px; height: 4px; background: var(--orange); border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
.voice-row .txt .typing span:nth-child(2) { animation-delay: .15s; }
.voice-row .txt .typing span:nth-child(3) { animation-delay: .3s; }
@keyframes blink { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
.voice-row .wave {
  display: flex; gap: 2px; align-items: center; height: 14px; flex: none;
}
.voice-row .wave span { width: 2px; background: var(--orange); border-radius: 2px; animation: wave 1s ease-in-out infinite; }
.voice-row .wave span:nth-child(2) { animation-delay: .1s; }
.voice-row .wave span:nth-child(3) { animation-delay: .2s; background: var(--blue); }
.voice-row .wave span:nth-child(4) { animation-delay: .3s; }
.voice-row .wave span:nth-child(5) { animation-delay: .4s; background: var(--blue); }

.viz-funnel {
  margin-top: auto; padding-top: 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.funnel-bar {
  position: relative; height: 32px; border-radius: 6px;
  background: rgba(255,255,255,.03);
  overflow: hidden;
  display: flex; align-items: center; padding: 0 12px;
  font-family: var(--font-mono); font-size: 10.5px;
  color: rgba(255,255,255,.72); font-weight: 600;
  justify-content: space-between;
  border: 1px solid var(--black-border);
}
.funnel-bar::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(0,102,255,.18), rgba(0,102,255,.08));
  border-right: 1px solid rgba(0,102,255,.4);
}
.funnel-bar.a::before { width: 100%; }
.funnel-bar.b::before { width: 68%; }
.funnel-bar.c::before { width: 41%; background: linear-gradient(90deg, rgba(255,102,0,.22), rgba(255,102,0,.1)); border-right-color: rgba(255,102,0,.5); }
.funnel-bar.d::before { width: 22%; background: linear-gradient(90deg, rgba(255,102,0,.3), rgba(255,102,0,.15)); border-right-color: var(--orange); }
.funnel-bar span { position: relative; z-index: 1; }
.funnel-bar .v { color: var(--white); font-weight: 800; }

.viz-stack {
  margin-top: auto; padding-top: 20px;
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px;
}
.stack-cell {
  height: 56px; border-radius: 8px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--black-border);
  display: grid; place-items: center;
  font-family: var(--font-heading); font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,.5); letter-spacing: .4px;
}
@media (max-width: 760px) {
  .viz-stack { grid-template-columns: repeat(4, 1fr); }
}
.stack-cell:nth-child(3n) { color: var(--orange); border-color: rgba(255,102,0,.25); }
.stack-cell:nth-child(4n) { color: var(--blue); border-color: rgba(0,102,255,.25); }

.viz-metric {
  display: flex; flex-direction: column; gap: 6px; margin-top: auto;
}
.viz-metric .big {
  font-family: var(--font-heading); font-size: 48px; font-weight: 900;
  color: var(--white); letter-spacing: -2px; line-height: 1;
}
.viz-metric .big .unit { color: var(--orange); font-size: 28px; }
.viz-metric .trend {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: #22c55e;
}

.viz-chart {
  margin-top: auto; padding-top: 20px;
  height: 110px; position: relative;
}
.viz-chart svg { width: 100%; height: 100%; display: block; }

/* Integrations row */
.integrations {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 20px;
}
.integ {
  padding: 8px 14px; border-radius: 100px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--black-border);
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.65); letter-spacing: .3px;
  display: inline-flex; align-items: center; gap: 7px;
}
.integ .d { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); }
.integ .d.on { background: var(--orange); box-shadow: 0 0 8px var(--orange); }

/* ── CTA BAND ── */
.cta-band {
  position: relative; overflow: hidden;
  padding: 100px 2rem;
  background: var(--black);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,102,0,.22) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 50%, rgba(0,102,255,.22) 0%, transparent 60%);
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.cta-inner {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto; text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-heading); font-size: clamp(30px, 5vw, 58px);
  font-weight: 900; color: var(--white); line-height: 1.05;
  letter-spacing: -1px;
}
.cta-inner h2 .accent { color: var(--orange); }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,.58); margin-top: 18px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-inner .cta-btns { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer.site-footer {
  background: var(--black); border-top: 1px solid var(--black-border); padding: 72px 2rem 40px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }

.footer-brand .footer-logo {
  font-family: var(--font-heading); font-size: 16px; font-weight: 900;
  letter-spacing: 1.4px; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand .footer-logo .cre8    { color: var(--orange); }
.footer-brand .footer-logo .your    { color: var(--white); }
.footer-brand .footer-logo .success { color: var(--blue); }
.footer-tagline {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 20px;
}
.footer-tagline .dot { color: var(--orange); margin: 0 8px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.38); line-height: 1.6; max-width: 320px; }

.footer-col h4 { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,.55); text-decoration: none; font-weight: 500; transition: color .15s; }
.footer-col a:hover { color: var(--orange); }
.footer-col li > span { font-size: 13.5px; color: rgba(255,255,255,.55); font-weight: 500; }

.footer-bottom {
  max-width: 1200px; margin: 56px auto 0; padding-top: 28px;
  border-top: 1px solid var(--black-border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,.3);
}
.footer-bottom .socials { display: flex; gap: 8px; }
.footer-bottom .socials a {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--black-border);
  display: grid; place-items: center;
  color: rgba(255,255,255,.5); transition: color .15s, border-color .15s;
}
.footer-bottom .socials a:hover { color: var(--orange); border-color: rgba(255,102,0,.4); }

/* ── INDUSTRIES SERVED ── */
.ind-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 880px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
.ind-pill {
  background: var(--black-mid);
  border: 1px solid var(--black-border);
  border-radius: 12px; padding: 18px 22px;
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700; letter-spacing: .3px;
  color: rgba(255,255,255,.78);
  text-align: center;
  transition: border-color .2s, color .2s, background .2s;
  cursor: default;
  user-select: none;
}
.ind-pill:hover { border-color: rgba(255,102,0,.3); color: var(--white); background: #161616; }

/* mobile section padding */
@media (max-width: 640px) {
  .section { padding: 80px 1.25rem; }
  .hero { padding: 120px 1.25rem 60px; }
  .cta-band { padding: 80px 1.25rem; }
  footer.site-footer { padding: 60px 1.25rem 32px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-stat-num { font-size: 22px; }
}
