/* ========================================
   VOX FIELD - "Warm Tech Lumière" Design
   Warm. Premium. Unmistakable.
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --amber: #5445f4;
  --amber-light: #6B5CF7;
  --amber-dim: rgba(84,69,244,0.1);
  --amber-glow: rgba(84,69,244,0.3);
  --cyan: #0891B2;
  --cyan-dim: rgba(8,145,178,0.08);
  --bg-void: #FAFAF8;
  --bg-surface: #F2F1EE;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8F7F5;
  --text-primary: #1A1A2E;
  --text-secondary: #5A5A6E;
  --text-dim: #8A8A9A;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(84,69,244,0.3);
  --glass: rgba(250,250,248,0.75);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --max-w: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== ANIMATIONS ===== */
@keyframes waveform {
  0%   { transform: scaleY(0.3); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0.3); }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(30px, -20px) rotate(1deg); }
  50%  { transform: translate(-10px, 15px) rotate(-0.5deg); }
  75%  { transform: translate(-25px, -10px) rotate(0.5deg); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px var(--amber-dim), 0 0 60px rgba(84,69,244,0.04); }
  50%      { box-shadow: 0 0 30px var(--amber-glow), 0 0 80px rgba(84,69,244,0.08); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s var(--ease-out);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.nav-links a.btn-primary {
  color: #FFFFFF;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width 0.4s var(--ease-out);
}

.nav-links a:not(.btn):hover {
  color: var(--text-primary);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease-out);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #6B5CF7 0%, #5445f4 100%);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(84,69,244,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(84,69,244,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(0,0,0,0.12);
}

.btn-ghost:hover {
  border-color: var(--amber);
  background: var(--amber-dim);
  color: var(--amber);
}

.btn-sm {
  padding: 9px 22px;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

/* Ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-orb--amber {
  width: 600px;
  height: 600px;
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(84,69,244,0.1) 0%, transparent 70%);
  animation: drift 20s ease-in-out infinite;
}

.hero-orb--cyan {
  width: 500px;
  height: 500px;
  bottom: -15%;
  right: -5%;
  background: radial-gradient(circle, rgba(8,145,178,0.07) 0%, transparent 70%);
  animation: drift 25s ease-in-out infinite reverse;
}

.hero-orb--subtle {
  width: 300px;
  height: 300px;
  top: 40%;
  right: 20%;
  background: radial-gradient(circle, rgba(84,69,244,0.05) 0%, transparent 70%);
  animation: drift 15s ease-in-out infinite 2s;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-content {
  flex: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--amber-dim);
  border: 1px solid rgba(84,69,244,0.2);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 50%, var(--cyan) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

/* Waveform visualizer */
.hero-visual {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: scaleIn 1s var(--ease-out) 0.4s both;
}

.waveform-container {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #FFFFFF 0%, var(--bg-surface) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  box-shadow: 0 0 80px rgba(84,69,244,0.06), 0 20px 60px rgba(0,0,0,0.06), inset 0 0 60px rgba(0,0,0,0.03);
}

.waveform-container::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  padding: 1px;
  background: linear-gradient(135deg, rgba(84,69,244,0.35) 0%, transparent 50%, rgba(8,145,178,0.25) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.wave-bar {
  width: 4px;
  background: linear-gradient(180deg, var(--amber) 0%, var(--cyan) 100%);
  border-radius: 4px;
  animation: waveform 1.2s ease-in-out infinite;
  opacity: 0.8;
}

.wave-bar:nth-child(1)  { height: 30px; animation-delay: 0s; }
.wave-bar:nth-child(2)  { height: 50px; animation-delay: 0.1s; }
.wave-bar:nth-child(3)  { height: 70px; animation-delay: 0.15s; }
.wave-bar:nth-child(4)  { height: 90px; animation-delay: 0.2s; }
.wave-bar:nth-child(5)  { height: 110px; animation-delay: 0.25s; }
.wave-bar:nth-child(6)  { height: 130px; animation-delay: 0.3s; }
.wave-bar:nth-child(7)  { height: 120px; animation-delay: 0.35s; }
.wave-bar:nth-child(8)  { height: 100px; animation-delay: 0.4s; }
.wave-bar:nth-child(9)  { height: 80px; animation-delay: 0.45s; }
.wave-bar:nth-child(10) { height: 60px; animation-delay: 0.5s; }
.wave-bar:nth-child(11) { height: 90px; animation-delay: 0.55s; }
.wave-bar:nth-child(12) { height: 110px; animation-delay: 0.6s; }
.wave-bar:nth-child(13) { height: 80px; animation-delay: 0.65s; }
.wave-bar:nth-child(14) { height: 50px; animation-delay: 0.7s; }
.wave-bar:nth-child(15) { height: 30px; animation-delay: 0.75s; }

.waveform-label {
  position: absolute;
  bottom: -40px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.scroll-cue span {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--amber), transparent);
  animation: waveform 2s ease-in-out infinite;
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
  position: relative;
}

.section--alt {
  background: var(--bg-surface);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--amber);
}

.section-header {
  margin-bottom: 72px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.7;
  font-weight: 400;
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin: 0 auto;
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 32px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--cyan));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--amber-dim) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.benefit-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.benefit-card:hover::before { opacity: 1; }
.benefit-card:hover::after  { opacity: 1; }

.benefit-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(84,69,244,0.1);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== INDUSTRIES ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.industry-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}

.industry-card:hover::after { opacity: 1; }

.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.industry-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.industry-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

.industry-card .card-arrow {
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease-out);
}

.industry-card:hover .card-arrow { gap: 12px; }

.industries-note {
  text-align: center;
  margin-top: 48px;
  color: var(--text-secondary);
  font-size: 1rem;
}

.industries-note a {
  color: var(--amber);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.industries-note a:hover {
  border-bottom-color: var(--amber);
}

/* ===== INTEGRATIONS ===== */
.integrations-marquee {
  overflow: hidden;
  position: relative;
  margin-bottom: 48px;
}

.integrations-marquee::before,
.integrations-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.integrations-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-surface), transparent);
}

.integrations-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-surface), transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.integration-chip {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.integration-chip img {
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.integration-chip:hover {
  border-color: var(--border-hover);
}

.integration-chip:hover img {
  opacity: 1;
}

.integrations-count {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.faq-item.active {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.faq-question {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  gap: 20px;
  user-select: none;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--amber); }

.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--amber-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--amber);
  transition: transform 0.4s var(--ease-out);
}

.faq-item.active .faq-toggle {
  background: var(--amber);
}

.faq-item.active .faq-toggle svg {
  stroke: #FFFFFF;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.faq-item.active .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0 120px;
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 72px 64px;
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(84,69,244,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(8,145,178,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-image {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cta-avatar {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-card) 100%);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.cta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.cta-avatar::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  padding: 2px;
  background: linear-gradient(135deg, var(--amber), transparent, var(--cyan));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand > p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 280px;
}

.compliance-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  color: var(--text-dim);
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* ===== INDUSTRY PAGES ===== */
.industry-hero {
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.industry-hero .hero-orb--amber {
  top: -30%;
  left: 20%;
  width: 500px;
  height: 500px;
}

.industry-hero .container {
  position: relative;
  z-index: 1;
}

.industry-hero h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.industry-hero h1 .accent {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.industry-hero .hero-eyebrow {
  margin-bottom: 24px;
}

/* Industry Features */
.features-section {
  padding: 80px 0 40px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 72px;
  margin-bottom: 100px;
}

.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { flex-direction: row-reverse; }

.feature-text { flex: 1; }

.feature-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.2;
}

.feature-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.feature-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-illustration {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;

  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-illustration img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.feature-illustration::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, var(--amber-dim) 0%, transparent 60%);
  pointer-events: none;
}

/* Demo Section */
.demo-section {
  padding: 20px 0 60px;
}

.demo-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.demo-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--cyan));
}

.demo-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.demo-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #6B5CF7 0%, #4338CA 100%);
  color: #FFFFFF;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-body);
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 4px 20px rgba(84,69,244,0.25);
}

.phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(84,69,244,0.35);
}

.phone-btn svg {
  width: 20px;
  height: 20px;
}

/* ===== VIDEO PARALLAX ===== */
.video-section {
  height: 300vh;
  position: relative;
}

.video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: scale(0.55);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
  will-change: transform, border-radius;
  transform-origin: center center;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-visual { flex: none; }

  .hero h1 { font-size: 3.2rem; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-box { padding: 48px 40px; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .feature-row { gap: 48px; }

  .waveform-container {
    width: 280px;
    height: 280px;
  }

  .video-section { height: 250vh; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 90px 32px 32px;
    gap: 28px;
    transition: right 0.4s var(--ease-out);
    box-shadow: -20px 0 60px rgba(0,0,0,0.08);
    border-left: 1px solid var(--border);
    z-index: 999;
  }

  .nav-links.active { right: 0; }
  .mobile-toggle { display: flex; z-index: 1001; }

  .hero {
    padding: 130px 0 80px;
    min-height: auto;
  }

  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }

  .section { padding: 80px 0; }
  .section-header h2 { font-size: 2.1rem; }
  .section-header { margin-bottom: 48px; }

  .benefits-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
    gap: 32px;
  }

  .footer-grid { grid-template-columns: 1fr; }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 32px;
  }

  .industry-hero h1 { font-size: 2.4rem; }
  .scroll-cue { display: none; }

  .video-section { height: 220vh; }

  .waveform-container {
    width: 240px;
    height: 240px;
  }

  .wave-bar:nth-child(5)  { height: 80px; }
  .wave-bar:nth-child(6)  { height: 100px; }
  .wave-bar:nth-child(7)  { height: 90px; }
  .wave-bar:nth-child(12) { height: 80px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-content h2 { font-size: 1.7rem; }

  .video-section { height: 200vh; }

  .waveform-container {
    width: 200px;
    height: 200px;
  }

  .wave-bar { width: 3px; }
  .wave-bar:nth-child(4)  { height: 60px; }
  .wave-bar:nth-child(5)  { height: 65px; }
  .wave-bar:nth-child(6)  { height: 70px; }
  .wave-bar:nth-child(7)  { height: 65px; }
  .wave-bar:nth-child(8)  { height: 60px; }
  .wave-bar:nth-child(11) { height: 55px; }
  .wave-bar:nth-child(12) { height: 60px; }
}
