/* Agentnity — Framer-inspired dark canvas */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #000000;
  --surface: #0a0a0a;
  --surface-2: #0f0f0f;
  --text: #ffffff;
  --text-muted: #a6a6a6;
  --frosted: rgba(255,255,255,0.1);
  --frosted-2: rgba(255,255,255,0.05);
  --frosted-hover: rgba(255,255,255,0.15);
  --accent: #0099ff;
  --accent-glow: rgba(0,153,255,0.15);
  --ring: rgba(0,153,255,0.15) 0px 0px 0px 1px;
  --hairline: rgba(255,255,255,0.08);
  --display: 'Space Grotesk', -apple-system, system-ui, sans-serif;
  --body: 'Inter', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-feature-settings: "cv01","cv05","cv09","cv11","ss03","ss07";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.display { font-family: var(--display); font-weight: 500; letter-spacing: -0.05em; line-height: 0.92; }
.mono { font-family: var(--mono); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

.eyebrow { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }
.btn-white { background: #fff; color: #000; }
.btn-white:hover { background: #e8e8e8; }
.btn-frost { background: var(--frosted); color: #fff; backdrop-filter: blur(10px); }
.btn-frost:hover { background: var(--frosted-hover); }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 6px 6px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.28) inset,
    0 0 0 1px rgba(0,153,255,0.08) inset,
    0 12px 40px rgba(0,30,80,0.45),
    0 0 50px rgba(0,153,255,0.10);
  font-size: 14px;
  white-space: nowrap;
  transition: box-shadow .25s ease, transform .25s ease;
}
.nav:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.32) inset,
    0 0 0 1px rgba(0,153,255,0.14) inset,
    0 16px 50px rgba(0,30,80,0.55),
    0 0 70px rgba(0,153,255,0.18);
}
.nav-logo { display: flex; align-items: center; gap: 8px; padding-right: 10px; }
.nav-logo img { width: 28px; height: 28px; border-radius: 6px; }
.nav-logo .wordmark { font-family: var(--display); font-weight: 600; letter-spacing: -0.04em; font-size: 17px; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }
.nav-links { display: flex; gap: 2px; padding: 0 4px; }
.nav-link {
  padding: 8px 14px; color: rgba(255,255,255,0.72);
  border-radius: 100px;
  transition: color .2s, background .2s;
  white-space: nowrap;
  font-weight: 400;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.10); }
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.14);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset;
}
.nav-cta {
  background: linear-gradient(135deg, #fff, #e8f3ff);
  color: #000;
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,255,255,0.18), 0 1px 0 rgba(255,255,255,0.6) inset;
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #fff, #fff);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.28), 0 1px 0 rgba(255,255,255,0.7) inset;
}

@media (max-width: 880px) { .nav-links { display: none; } }

/* ========== HERO ========== */
.hero { position: relative; min-height: 100vh; padding: 130px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .glow {
  position: absolute; width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,255,0.18) 0%, rgba(0,153,255,0) 60%);
  filter: blur(40px);
}
.hero-bg .glow.a { top: -200px; right: -200px; }
.hero-bg .glow.b { bottom: -300px; left: -200px; background: radial-gradient(circle, rgba(0,153,255,0.1) 0%, transparent 60%); }
.gridlines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 80%);
}

.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px; border-radius: 100px;
  background: var(--frosted-2); box-shadow: var(--ring);
  margin-bottom: 28px; font-size: 12px; color: var(--text-muted);
}
.hero-eyebrow .dot { width: 22px; height: 22px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-eyebrow .dot::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--accent); animation: pulse 2s ease-in-out infinite; }
.hero-eyebrow .dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; position: relative; z-index: 1; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(2.2); opacity: 0; } }

.hero h1 { font-family: var(--display); font-weight: 500; font-size: clamp(32px, 7.2vw, 92px); line-height: 0.95; letter-spacing: -0.04em; color: #fff; word-wrap: break-word; overflow-wrap: break-word; }
.hero h1 .strike { position: relative; display: inline-block; color: #6a6a6a; }
.hero h1 .strike::after {
  content: ''; position: absolute; left: 0; right: 0; top: 52%; height: 4px;
  background: var(--accent); border-radius: 4px;
  transform-origin: left center;
  animation: strike 1.2s 0.4s cubic-bezier(.7,0,.3,1) both;
}
@keyframes strike { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-sub { margin-top: 28px; font-size: 18px; line-height: 1.5; color: var(--text-muted); max-width: 540px; }
.hero-ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { margin-top: 48px; display: flex; gap: 36px; flex-wrap: wrap; }
.hero-meta .stat { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .stat .num { font-family: var(--display); font-size: 26px; letter-spacing: -0.04em; color: #fff; }
.hero-meta .stat .lbl { font-size: 11px; color: var(--text-muted); font-family: var(--mono); letter-spacing: 0.08em; }

/* ========== CALL CARD (fixed-size, stable conversation) ========== */
.call-card {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  padding: 22px;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  box-shadow:
    rgba(255,255,255,0.08) 0 0.5px 0 0.5px inset,
    rgba(0,153,255,0.18) 0 0 0 1px,
    rgba(0,0,0,0.5) 0 30px 80px,
    rgba(0,153,255,0.18) 0 0 80px;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.call-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.caller { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.caller .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #0099ff, #5f5fff);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600; font-size: 14px; color: #fff;
}
.caller-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.caller-info .name { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.caller-info .num { font-size: 11px; color: var(--text-muted); font-family: var(--mono); }

.call-status {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 100px;
  flex: none;
  white-space: nowrap;
  background: rgba(0,153,255,0.1);
  font-size: 10px; font-family: var(--mono); color: var(--accent);
  letter-spacing: 0.05em;
}
.call-status .live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: live 1.4s ease-out infinite; }
@keyframes live {
  0% { box-shadow: 0 0 0 0 rgba(0,153,255,0.7); }
  100% { box-shadow: 0 0 0 8px rgba(0,153,255,0); }
}

/* Waveform */
.waveform { display: flex; align-items: center; gap: 3px; height: 32px; padding: 4px 8px; border-radius: 8px; background: rgba(0,153,255,0.06); margin-bottom: 14px; }
.waveform .bar { flex: 1; background: linear-gradient(180deg, var(--accent), rgba(0,153,255,0.4)); border-radius: 2px; min-height: 4px; animation: wave 1.2s ease-in-out infinite; }
@keyframes wave { 0%, 100% { transform: scaleY(0.3); } 50% { transform: scaleY(1); } }

/* Language badge */
.lang-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 8px; border-radius: 100px; background: var(--frosted); font-size: 11px; margin-bottom: 14px; font-family: var(--mono); color: var(--text-muted); letter-spacing: 0.04em; }
.lang-badge .check { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); display: inline-flex; align-items: center; justify-content: center; }
.lang-badge .check svg { width: 8px; height: 8px; }

/* Transcript — fixed height, no rebuild */
.transcript { display: flex; flex-direction: column; gap: 8px; min-height: 180px; padding: 4px 0; }
.bubble {
  display: flex; flex-direction: column; gap: 4px;
  max-width: 86%; padding: 10px 14px; border-radius: 14px;
  font-size: 13px; line-height: 1.4;
  animation: bubbleIn .35s cubic-bezier(.7,0,.3,1);
}
.bubble .who { font-size: 9.5px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.bubble.caller-msg { align-self: flex-start; background: var(--frosted-2); }
.bubble.agent-msg { align-self: flex-end; background: rgba(0,153,255,0.12); box-shadow: rgba(0,153,255,0.25) 0 0 0 1px inset; }
.bubble.agent-msg .who { color: var(--accent); }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.action-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--hairline); }
.action-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 100px;
  background: rgba(0,153,255,0.08);
  box-shadow: rgba(0,153,255,0.2) 0 0 0 1px inset;
  font-size: 10px; font-family: var(--mono); color: var(--accent);
  opacity: 0; animation: chipIn .4s cubic-bezier(.7,0,.3,1) forwards;
}
.action-chip svg { width: 11px; height: 11px; }
.action-chip .chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(0,153,255,0.6); animation: live 1.4s ease-out infinite; }
@keyframes chipIn { from { opacity: 0; transform: translateY(6px) scale(.95); } to { opacity: 1; transform: none; } }

/* Live orb avatar */
.live-orb {
  position: relative;
  background: linear-gradient(135deg, #0099ff, #5f5fff) !important;
  overflow: visible !important;
}
.live-orb .orb-pulse, .live-orb .orb-pulse-2 {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(0,153,255,0.5);
  animation: orb-pulse 1.8s ease-out infinite;
}
.live-orb .orb-pulse-2 { animation-delay: .9s; }
@keyframes orb-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Language pills inside call card */
.lang-row { display: flex; flex-wrap: wrap; gap: 7px 8px; margin-bottom: 14px; }
.lang-pill {
  font-size: 11px; padding: 6px 12px; border-radius: 100px;
  background: var(--frosted); color: var(--text-muted);
  box-shadow: var(--hairline) 0 0 0 1px inset;
  cursor: pointer; transition: all .18s;
  font-family: var(--display);
}
.lang-pill:hover { color: #fff; background: var(--frosted-2); }
.lang-pill.on { background: rgba(0,153,255,0.15); color: var(--accent); box-shadow: rgba(0,153,255,0.4) 0 0 0 1px inset; }

/* Live input row */
.transcript { min-height: 140px; max-height: 240px; overflow-y: auto; }
.transcript::-webkit-scrollbar { width: 4px; }
.transcript::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.live-input {
  display: flex; gap: 8px; margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--hairline);
  align-items: center;
}
.live-input input {
  flex: 1;
  background: var(--frosted); color: #fff;
  border: none; outline: none;
  padding: 10px 14px;
  border-radius: 100px;
  font-size: 13px; font-family: var(--display);
  box-shadow: var(--hairline) 0 0 0 1px inset;
  transition: box-shadow .2s;
}
.live-input input:focus { box-shadow: rgba(0,153,255,0.5) 0 0 0 1px inset, rgba(0,153,255,0.15) 0 0 0 4px; }
.live-input input::placeholder { color: var(--text-muted); }
.live-input button {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #0099ff, #5f5fff);
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .15s, box-shadow .15s;
  box-shadow: rgba(0,153,255,0.4) 0 4px 14px;
}
.live-input button:hover { transform: scale(1.05); }
.live-input button:disabled { opacity: 0.5; cursor: wait; transform: none; }

.bubble.thinking { color: var(--text-muted); font-style: italic; }
.bubble.thinking .dots span { animation: dot 1.4s ease-in-out infinite; opacity: 0.3; }
.bubble.thinking .dots span:nth-child(2) { animation-delay: 0.2s; }
.bubble.thinking .dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ========== MARQUEE ========== */
.marquee-section { padding: 80px 0 60px; }
.marquee-title { text-align: center; color: var(--text-muted); font-size: 12px; margin-bottom: 32px; font-family: var(--mono); letter-spacing: 0.1em; }
.marquee { position: relative; overflow: hidden; mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 64px; animation: scroll 32s linear infinite; width: max-content; }
.logo-item { font-family: var(--display); font-weight: 500; letter-spacing: -0.03em; font-size: 22px; color: var(--text-muted); white-space: nowrap; opacity: 0.7; transition: opacity .2s, color .2s; }
.logo-item:hover { opacity: 1; color: #fff; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== SECTIONS ========== */
section { position: relative; }
.section-pad { padding: 120px 0; }
@media (max-width: 720px) { .section-pad { padding: 80px 0; } }
.section-head { margin-bottom: 60px; max-width: 760px; }
.section-head h2 { font-family: var(--display); font-weight: 500; font-size: clamp(36px, 5vw, 60px); line-height: 1.0; letter-spacing: -0.04em; color: #fff; margin-top: 16px; }
.section-head p { margin-top: 18px; color: var(--text-muted); font-size: 18px; line-height: 1.5; }

/* ========== PROBLEM ========== */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card { background: var(--surface); border-radius: 16px; padding: 28px; box-shadow: var(--ring); position: relative; overflow: hidden; }
.problem-card .num-big { font-family: var(--display); font-size: 72px; font-weight: 500; letter-spacing: -0.05em; color: var(--accent); line-height: 1; }
.problem-card .num-big .pct { font-size: 32px; vertical-align: super; margin-left: 4px; }
.problem-card h3 { margin-top: 16px; font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: #fff; }
.problem-card p { margin-top: 8px; font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ========== PIPELINE — flex with proper spacing ========== */
.pipeline-section { background: linear-gradient(180deg, transparent, rgba(0,153,255,0.04) 50%, transparent); }
.pipeline {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  padding: 24px 0;
}
.pipe-node {
  flex: 0 0 auto;
  width: 130px;
  background: var(--surface);
  border-radius: 14px;
  padding: 16px 12px;
  box-shadow: var(--ring);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}
.pipe-node .step-num { font-family: var(--mono); font-size: 10px; color: var(--text-muted); letter-spacing: 0.15em; }
.pipe-node .icon-wrap {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,153,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin: 4px 0 2px;
}
.pipe-node .icon-wrap svg { width: 20px; height: 20px; }
.pipe-node h4 { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; color: #fff; }
.pipe-node p { font-size: 11px; color: var(--text-muted); line-height: 1.3; }

.pipe-line {
  flex: 1 1 0;
  align-self: center;
  height: 2px;
  background: linear-gradient(to right, rgba(0,153,255,0.4), rgba(0,153,255,0.15));
  position: relative;
  overflow: hidden;
  margin: 0 -1px;
  z-index: 1;
}
.pipe-line::after {
  content: '';
  position: absolute;
  top: -2px; left: -30%;
  width: 30%; height: 6px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  filter: blur(3px);
  animation: flow 2.4s linear infinite;
}
@keyframes flow { from { left: -30%; } to { left: 100%; } }

@media (max-width: 1100px) {
  .pipeline { flex-direction: column; gap: 12px; align-items: center; }
  .pipe-node { width: 100%; max-width: 320px; flex-direction: row; text-align: left; gap: 12px; padding: 16px; }
  .pipe-node .icon-wrap { margin: 0; flex: none; }
  .pipe-node-text { display: flex; flex-direction: column; gap: 2px; }
  .pipe-line { width: 2px; height: 24px; flex: none; background: linear-gradient(to bottom, rgba(0,153,255,0.4), rgba(0,153,255,0.15)); }
  .pipe-line::after { display: none; }
}

/* ========== PILLARS ========== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1000px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--ring);
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: rgba(0,153,255,0.4) 0 0 0 1px, rgba(0,153,255,0.2) 0 30px 60px; }
.pillar .pillar-num { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 0.15em; }
.pillar h3 { font-family: var(--display); font-weight: 500; font-size: 28px; letter-spacing: -0.03em; line-height: 1.05; margin-top: 14px; color: #fff; }
.pillar p { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin-top: 14px; }
.pillar .pillar-vis { margin-top: auto; padding-top: 24px; }

/* PILLAR 1 — multi-call orbit */
.multi-call {
  position: relative;
  height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.phone-rings { position: absolute; width: 140px; height: 140px; border-radius: 50%; }
.phone-rings .ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(0,153,255,0.3); animation: ring 2.4s ease-out infinite; }
.phone-rings .ring:nth-child(2) { animation-delay: .8s; }
.phone-rings .ring:nth-child(3) { animation-delay: 1.6s; }
@keyframes ring { 0% { transform: scale(0.4); opacity: .8; } 100% { transform: scale(1.8); opacity: 0; } }

.phone-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,153,255,0.3), rgba(0,153,255,0.1));
  box-shadow: rgba(0,153,255,0.4) 0 0 0 1px inset, 0 0 40px rgba(0,153,255,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  animation: shake 1.6s ease-in-out infinite;
}
@keyframes shake {
  0%, 50%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
}
.phone-icon svg { width: 28px; height: 28px; color: #fff; }

.orbit-bubble {
  position: absolute;
  top: 50%; left: 50%;
  width: 50px; height: 50px;
  margin: -25px 0 0 -25px;
  border-radius: 50%;
  background: var(--surface-2);
  box-shadow: rgba(0,153,255,0.3) 0 0 0 1px, inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 13px; color: #fff;
  letter-spacing: -0.02em;
  transform: rotate(var(--a)) translateX(110px) rotate(calc(var(--a) * -1));
  animation: orbit 18s linear infinite;
}
.orbit-bubble span { display: inline-block; }
@keyframes orbit {
  from { transform: rotate(var(--a)) translateX(110px) rotate(calc(var(--a) * -1)); }
  to   { transform: rotate(calc(var(--a) + 360deg)) translateX(110px) rotate(calc((var(--a) + 360deg) * -1)); }
}

/* PILLAR 2 — calendar */
.cal-vis {
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  padding: 14px;
  box-shadow: rgba(255,255,255,0.05) 0 0 0 1px inset;
  position: relative;
}
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cal-head .month { font-size: 11px; font-family: var(--mono); color: var(--text-muted); letter-spacing: 0.1em; }
.cal-head .arrows { display: flex; gap: 4px; color: var(--text-muted); font-size: 14px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-grid .day { aspect-ratio: 1; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--text-muted); font-family: var(--mono); }
.cal-grid .day.dim { opacity: 0.3; }
.cal-grid .day.head { color: var(--text-muted); font-weight: 500; opacity: 0.5; }
.cal-grid .day.booked { background: rgba(0,153,255,0.15); color: var(--accent); box-shadow: rgba(0,153,255,0.3) 0 0 0 1px inset; }
.cal-grid .day.target { background: var(--accent); color: #fff; font-weight: 700; animation: targetPulse 1.6s ease-in-out infinite; }
@keyframes targetPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,153,255,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0,153,255,0); }
}
.slot-pop {
  position: absolute;
  bottom: -8px; right: 8px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
  box-shadow: 0 10px 30px rgba(0,153,255,0.5);
  animation: slotPop 4s ease-in-out infinite;
}
.slot-pop .slot-time { font-family: var(--mono); font-weight: 600; letter-spacing: 0.05em; }
.slot-pop .slot-with { opacity: 0.9; font-size: 10px; margin-top: 2px; }
@keyframes slotPop {
  0%, 30% { opacity: 0; transform: translateY(8px) scale(0.95); }
  40%, 90% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-4px) scale(0.95); }
}

/* PILLAR 3 — outbound */
.out-vis { display: flex; flex-direction: column; gap: 8px; }
.out-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  box-shadow: rgba(255,255,255,0.04) 0 0 0 1px inset;
  font-size: 12px;
  color: var(--text-muted);
}
.out-row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-muted); flex: none; }
.out-row.calling .dot { background: var(--accent); animation: live 1.4s ease-out infinite; }
.out-row.done .dot { background: #00d68f; }
.out-row .lbl { flex: 1; color: #fff; font-size: 12px; }
.out-row .lang { color: var(--text-muted); font-family: var(--mono); font-size: 10px; }

/* ========== LANGUAGES ========== */
.lang-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 1000px) { .lang-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .lang-grid { grid-template-columns: repeat(2, 1fr); } }
.lang-card {
  background: var(--surface); border-radius: 14px; padding: 22px 18px;
  box-shadow: var(--ring);
  display: flex; flex-direction: column; gap: 6px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative; overflow: hidden;
}
.lang-card:hover { transform: translateY(-3px); background: var(--surface-2); box-shadow: rgba(0,153,255,0.4) 0 0 0 1px, rgba(0,153,255,0.2) 0 20px 40px; }
.lang-card .script { font-family: var(--display); font-size: 28px; letter-spacing: -0.03em; color: #fff; font-weight: 500; }
.lang-card .roman { font-size: 13px; color: var(--text-muted); }
.lang-card .accent-loc { font-family: var(--mono); font-size: 9px; color: var(--text-muted); margin-top: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.lang-card .play { position: absolute; top: 18px; right: 18px; width: 28px; height: 28px; border-radius: 50%; background: var(--frosted); display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.lang-card:hover .play { background: var(--accent); transform: scale(1.1); }
.lang-card .play svg { width: 10px; height: 10px; color: #fff; }

/* ========== SOLUTIONS ========== */
.sol-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.sol-card { background: var(--surface); border-radius: 16px; padding: 24px; box-shadow: var(--ring); cursor: pointer; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; gap: 12px; min-height: 200px; }
.sol-card:hover { transform: translateY(-4px); box-shadow: rgba(0,153,255,0.4) 0 0 0 1px; }
.sol-card .sol-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(0,153,255,0.1); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.sol-card .sol-icon svg { width: 18px; height: 18px; }
.sol-card h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
.sol-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.sol-card .arr { margin-top: auto; color: var(--accent); font-size: 12px; font-family: var(--mono); }
.sol-card.feat-1, .sol-card.feat-2, .sol-card.feat-3 { grid-column: span 2; }
.sol-card.feat-4, .sol-card.feat-5 { grid-column: span 3; }
@media (max-width: 1000px) {
  .sol-card.feat-1, .sol-card.feat-2, .sol-card.feat-3, .sol-card.feat-4, .sol-card.feat-5 { grid-column: span 6; }
}

/* ========== STATS ========== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--surface); border-radius: 20px; box-shadow: var(--ring); overflow: hidden; }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-cell { padding: 36px 28px; border-right: 1px solid var(--hairline); }
.stat-cell:last-child { border-right: none; }
@media (max-width: 800px) { .stat-cell:nth-child(2n) { border-right: none; } .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); } }
.stat-cell .v { font-family: var(--display); font-size: 56px; font-weight: 500; letter-spacing: -0.05em; line-height: 1; color: #fff; }
.stat-cell .v .unit { font-size: 28px; color: var(--accent); margin-left: 4px; }
.stat-cell .l { margin-top: 12px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ========== TESTIMONIAL ========== */
.testimonial { background: var(--surface); border-radius: 24px; box-shadow: var(--ring); padding: 56px 48px; display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: center; }
@media (max-width: 800px) { .testimonial { grid-template-columns: 1fr; padding: 36px 28px; } }
.testimonial blockquote { font-family: var(--display); font-size: clamp(22px, 2.6vw, 32px); line-height: 1.25; letter-spacing: -0.02em; color: #fff; }
.testimonial cite { margin-top: 24px; display: block; font-style: normal; font-size: 13px; color: var(--text-muted); }
.testimonial-vis { background: var(--bg); border-radius: 16px; padding: 20px; box-shadow: rgba(255,255,255,0.04) 0 0 0 1px inset; }
.tv-num { font-family: var(--display); font-size: 64px; letter-spacing: -0.05em; color: var(--accent); line-height: 1; }
.tv-num .small { font-size: 28px; color: #fff; }
.tv-lbl { color: var(--text-muted); font-size: 11px; margin-top: 6px; font-family: var(--mono); letter-spacing: 0.1em; }

/* ========== BUYERS ========== */
.buyers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 1000px) { .buyers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .buyers { grid-template-columns: 1fr; } }
.buyer-card { background: var(--surface); border-radius: 14px; padding: 24px; box-shadow: var(--ring); cursor: pointer; transition: background .2s; min-height: 200px; display: flex; flex-direction: column; }
.buyer-card:hover { background: var(--surface-2); }
.buyer-card .role { font-size: 10px; font-family: var(--mono); color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
.buyer-card h4 { margin-top: 8px; font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.buyer-card p { margin-top: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.5; flex: 1; }
.buyer-card .arr { color: var(--accent); font-size: 12px; font-family: var(--mono); margin-top: 12px; }

/* ========== COMPLIANCE — 3D GLOBE ========== */
.compliance {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, rgba(0,153,255,0.06), transparent 70%);
  border-radius: 24px;
  box-shadow: var(--ring);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.compliance::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,255,0.15), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
@media (max-width: 900px) { .compliance { grid-template-columns: 1fr; padding: 32px 24px; } }
.comp-h2 { font-family: var(--display); font-weight: 500; font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.04em; line-height: 1.05; margin-top: 16px; color: #fff; }
.compliance ul { list-style: none; display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
.compliance li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-muted); line-height: 1.45; }
.compliance li::before {
  content: ''; flex: none; width: 16px; height: 16px;
  border-radius: 50%; background: rgba(0,153,255,0.15);
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='none' stroke='%230099ff' stroke-width='2' stroke-linecap='round' d='M3 6.5l2 2 4-4.5'/></svg>");
  background-repeat: no-repeat; background-position: center;
}

/* The 3D globe */
.globe-stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  perspective: 1200px;
  height: 380px;
}
.globe {
  position: relative;
  width: 320px; height: 320px;
  transform-style: preserve-3d;
  animation: globeSpin 24s linear infinite;
}
@keyframes globeSpin {
  from { transform: rotateY(0deg) rotateX(-12deg); }
  to   { transform: rotateY(360deg) rotateX(-12deg); }
}
.globe-orb {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #0a2540 0%, #04101e 50%, #000 100%);
  box-shadow:
    inset -30px -30px 80px rgba(0,0,0,0.8),
    inset 20px 20px 60px rgba(0,153,255,0.3),
    0 0 80px rgba(0,153,255,0.4),
    0 0 0 1px rgba(0,153,255,0.4);
}
/* Latitude rings */
.globe-ring {
  position: absolute;
  left: 50%; top: 50%;
  width: 320px; height: 320px;
  margin: -160px 0 0 -160px;
  border-radius: 50%;
  border: 1px solid rgba(0,153,255,0.3);
  transform-style: preserve-3d;
}
.globe-ring.r1 { transform: rotateX(70deg); }
.globe-ring.r2 { transform: rotateX(70deg) scale(0.85, 0.85); }
.globe-ring.r3 { transform: rotateX(70deg) scale(0.65, 0.65); }
/* Meridians */
.globe-meridian {
  position: absolute;
  left: 50%; top: 50%;
  width: 320px; height: 320px;
  margin: -160px 0 0 -160px;
  border-radius: 50%;
  border: 1px solid rgba(0,153,255,0.18);
}
.globe-meridian.m1 { transform: rotateY(0deg); border-left-color: rgba(0,153,255,0.4); border-right-color: rgba(0,153,255,0.4); }
.globe-meridian.m2 { transform: rotateY(60deg); }
.globe-meridian.m3 { transform: rotateY(120deg); }

/* Pins on globe — counter-rotate so they face camera */
.globe-pin {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  transform-style: preserve-3d;
}
.globe-pin .pin-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,153,255,0.2), 0 0 20px var(--accent);
  animation: pinPulse 2s ease-in-out infinite;
  flex: none;
}
.globe-pin .pin-label {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(0,0,0,0.85);
  padding: 4px 8px;
  border-radius: 100px;
  box-shadow: rgba(0,153,255,0.4) 0 0 0 1px;
  white-space: nowrap;
}
.pin-mum { top: 48%; left: 36%; animation: pinFloat1 6s ease-in-out infinite; }
.pin-hyd { top: 60%; left: 52%; animation: pinFloat2 6s ease-in-out infinite; }
@keyframes pinFloat1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes pinFloat2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,153,255,0.2), 0 0 20px var(--accent); }
  50% { box-shadow: 0 0 0 10px rgba(0,153,255,0), 0 0 30px var(--accent); }
}

.globe-arc {
  position: absolute;
  top: 30%; left: 50%;
  width: 200px; height: 100px;
  margin-left: -100px;
  border-top: 1.5px dashed var(--accent);
  border-radius: 100px 100px 0 0;
  opacity: 0.7;
  animation: arcPulse 3s ease-in-out infinite;
}
@keyframes arcPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

.globe-shadow {
  position: absolute;
  bottom: 30px; left: 50%;
  width: 240px; height: 24px;
  margin-left: -120px;
  background: radial-gradient(ellipse, rgba(0,153,255,0.5), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

/* ========== FINAL CTA ========== */
.final-cta { text-align: center; padding: 140px 0; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(0,153,255,0.18), transparent 60%); pointer-events: none; }
.final-cta h2 { font-family: var(--display); font-size: clamp(40px, 6vw, 76px); letter-spacing: -0.05em; font-weight: 500; line-height: 1; max-width: 900px; margin: 0 auto; position: relative; }
.final-cta p { margin-top: 28px; color: var(--text-muted); font-size: 18px; position: relative; }
.final-cta .ctas { margin-top: 40px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ========== FOOTER ========== */
footer { background: var(--bg); border-top: 1px solid var(--hairline); padding: 64px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-brand { display: flex; flex-direction: column; gap: 16px; }
.foot-brand-line { display: inline-flex; align-items: center; gap: 10px; }
.foot-brand p { color: var(--text-muted); font-size: 13px; line-height: 1.5; max-width: 260px; }
.foot-col h5 { font-size: 11px; font-family: var(--mono); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: #fff; font-size: 13px; }
.foot-col a:hover { color: var(--accent); }
.foot-bot { border-top: 1px solid var(--hairline); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 11px; color: var(--text-muted); font-family: var(--mono); letter-spacing: 0.05em; }

/* ========== REVEAL ========== */
.reveal { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s ease; }
.reveal.pending { opacity: 0; transform: translateY(20px); }
.reveal.in { opacity: 1; transform: none; }


/* ============================================================ */
/*  V2 SECTIONS — Hero call-card polish, Languages viewer,      */
/*  Compliance India-DC visual                                  */
/* ============================================================ */

/* ---------- HERO CALL-CARD V2 polish ---------- */
.call-card.v2 { position: relative; overflow: visible; }
.call-card-glow {
  position: absolute; inset: -40px; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 60% at 60% 30%, rgba(0,153,255,0.18), rgba(95,95,255,0.08) 45%, transparent 70%);
  filter: blur(40px);
  animation: cardGlowPulse 8s ease-in-out infinite;
}
@keyframes cardGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}
.live-orb .orb-wave {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(0,153,255,0.4);
  animation: orbWave 2.6s ease-out infinite;
}
@keyframes orbWave {
  0%   { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.6);  opacity: 0; }
}
.action-row { display: flex; gap: 8px; flex-wrap: wrap; }
.action-chip.alt {
  background: rgba(0,153,255,0.08);
  border-color: rgba(0,153,255,0.22);
  color: rgba(150,200,255,0.95);
}


/* ---------- LANGUAGES SECTION (replaces india-section) ---------- */
.lang-section { padding: 100px 0 120px; position: relative; }
.lang-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(40% 40% at 25% 30%, rgba(0,153,255,0.08), transparent 60%),
              radial-gradient(35% 35% at 80% 70%, rgba(95,95,255,0.06), transparent 60%);
}
.lang-viewer {
  position: relative;
  display: grid; grid-template-columns: 280px 1fr; gap: 24px;
  margin-top: 48px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(8px);
}
@media (max-width: 880px) {
  .lang-viewer { grid-template-columns: 1fr; padding: 16px; }
}

/* Left rail of language tabs */
.lang-rail {
  display: flex; flex-direction: column; gap: 4px;
  max-height: 560px; overflow-y: auto;
  padding-right: 4px;
}
.lang-rail::-webkit-scrollbar { width: 4px; }
.lang-rail::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 2px; }
.lang-tab {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: left;
  font-family: inherit;
}
.lang-tab .lt-native {
  font-size: 22px; font-weight: 500; color: #fff; min-width: 48px;
  font-family: var(--display);
  letter-spacing: -0.01em;
}
.lang-tab .lt-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lang-tab .lt-name { font-size: 13px; color: #fff; font-weight: 500; }
.lang-tab .lt-region { font-size: 11px; color: rgba(255,255,255,0.45); font-family: var(--mono); letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lang-tab .lt-arr { color: rgba(255,255,255,0.25); font-size: 18px; line-height: 1; transition: color .15s, transform .15s; }
.lang-tab:hover {
  background: rgba(0,153,255,0.05);
  border-color: rgba(0,153,255,0.15);
}
.lang-tab:hover .lt-arr { color: rgba(255,255,255,0.6); transform: translateX(2px); }
.lang-tab.on {
  background: linear-gradient(135deg, rgba(0,153,255,0.18), rgba(95,95,255,0.10));
  border-color: rgba(0,153,255,0.4);
  box-shadow: 0 0 0 1px rgba(0,153,255,0.2) inset, 0 8px 24px rgba(0,153,255,0.15);
}
.lang-tab.on .lt-arr { color: #0099ff; transform: translateX(2px); }

/* Right pane: conversation viewer */
.lang-pane {
  display: flex; flex-direction: column; gap: 20px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  min-height: 540px;
}
.lang-pane-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lpane-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.lpane-name {
  font-family: var(--display); font-size: 28px; font-weight: 500;
  letter-spacing: -0.02em; color: #fff; line-height: 1;
}
.lpane-region {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 6px;
}
.lpane-native {
  font-family: var(--display); font-size: 32px; font-weight: 400;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0099ff, #5f5fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Conversation rows */
.lang-conv {
  display: flex; flex-direction: column; gap: 12px;
  padding: 4px 0;
}
.conv-row {
  display: flex; gap: 12px;
  opacity: 0; transform: translateY(8px);
  animation: convFadeIn .4s ease-out forwards;
}
@keyframes convFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
.conv-row.parent { flex-direction: row; }
.conv-row.agent  { flex-direction: row-reverse; }
.conv-avatar {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  color: #fff;
  margin-top: 2px;
}
.conv-row.parent .conv-avatar { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.conv-row.agent  .conv-avatar { background: linear-gradient(135deg, #0099ff, #5f5fff); box-shadow: 0 4px 12px rgba(0,153,255,0.3); }
.conv-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
}
.conv-row.parent .conv-bubble {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-top-left-radius: 4px;
  color: rgba(255,255,255,0.92);
}
.conv-row.agent .conv-bubble {
  background: linear-gradient(135deg, rgba(0,153,255,0.14), rgba(95,95,255,0.10));
  border: 1px solid rgba(0,153,255,0.22);
  border-top-right-radius: 4px;
  color: #fff;
}
.conv-who {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.conv-row.agent .conv-who { color: rgba(150,200,255,0.7); }

/* Outcome row */
.lang-outcome {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: auto;
  padding: 12px 14px;
  background: rgba(0,200,120,0.06);
  border: 1px solid rgba(0,200,120,0.18);
  border-radius: 10px;
  color: rgba(180,240,210,0.95);
  font-size: 13px;
  line-height: 1.5;
}
.lo-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,200,120,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgb(80,220,150);
  margin-top: 1px;
}

/* Stats row */
.lang-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lstat { display: flex; flex-direction: column; gap: 4px; }
.lstat-num {
  font-family: var(--display); font-size: 18px; font-weight: 500;
  color: #fff; letter-spacing: -0.01em;
}
.lstat-lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}


/* ---------- COMPLIANCE V2 (clean India-DC layout) ---------- */
.compliance.v2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
  padding: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  position: relative; overflow: hidden;
}
.compliance.v2::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(40% 50% at 80% 20%, rgba(0,153,255,0.08), transparent 60%),
              radial-gradient(40% 50% at 20% 80%, rgba(95,95,255,0.06), transparent 60%);
}
@media (max-width: 980px) {
  .compliance.v2 { grid-template-columns: 1fr; padding: 28px 20px; gap: 40px; }
}
.comp-lede {
  color: var(--text-muted);
  margin: 16px 0 28px;
  line-height: 1.6;
  max-width: 460px;
}
.comp-list { list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 0; margin: 0; }
.comp-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: all .2s ease;
}
.comp-list li:hover { border-color: rgba(0,153,255,0.2); background: rgba(0,153,255,0.03); }
.cl-tag {
  flex-shrink: 0;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, rgba(0,153,255,0.18), rgba(95,95,255,0.12));
  border: 1px solid rgba(0,153,255,0.3);
  color: #cfe8ff;
  padding: 4px 8px; border-radius: 6px;
  align-self: flex-start;
  margin-top: 2px;
}
.comp-list li > div { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.comp-list li strong { font-size: 14px; color: #fff; font-weight: 500; }
.comp-list li span { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

/* Data centre stage */
.dc-stage {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 20px;
}
.dc-india {
  display: flex; justify-content: center; align-items: center;
  padding: 12px 0 4px;
}
.dc-india svg { width: 220px; height: 260px; max-width: 100%; }
.dc-ping {
  transform-origin: center;
  animation: dcPing 2.4s ease-out infinite;
}
.dc-ping-hyd { animation-delay: 1.2s; }
@keyframes dcPing {
  0%   { transform: scale(0.8); opacity: 0.85; }
  100% { transform: scale(2.0); opacity: 0; }
}
.dc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .dc-cards { grid-template-columns: 1fr; } }
.dc-card {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.dc-card.primary { border-color: rgba(0,153,255,0.3); box-shadow: 0 0 0 1px rgba(0,153,255,0.1) inset; }
.dc-card.secondary { border-color: rgba(95,95,255,0.2); }
.dc-head { display: flex; align-items: center; gap: 8px; }
.dc-dot { width: 8px; height: 8px; border-radius: 50%; }
.dc-dot.mum { background: #0099ff; box-shadow: 0 0 8px rgba(0,153,255,0.6); }
.dc-dot.hyd { background: #5f5fff; box-shadow: 0 0 8px rgba(95,95,255,0.5); }
.dc-title {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; color: #fff;
}
.dc-badge {
  margin-left: auto;
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 6px; border-radius: 4px;
  background: rgba(0,153,255,0.18); color: #cfe8ff;
  border: 1px solid rgba(0,153,255,0.3);
}
.dc-badge.alt { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.12); }
.dc-body { display: flex; flex-direction: column; gap: 4px; }
.dc-row {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.dc-row span:last-child { color: #fff; }
.dc-row .ok   { color: rgb(80,220,150); }
.dc-row .warm { color: rgb(255,200,100); }
.dc-bars {
  display: flex; align-items: flex-end; gap: 3px;
  height: 32px;
  margin-top: 4px;
}
.dc-bar {
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, #0099ff, rgba(0,153,255,0.3));
  border-radius: 2px;
  transition: height .4s ease;
}
.dc-bars.muted .dc-bar { background: linear-gradient(180deg, rgba(95,95,255,0.5), rgba(95,95,255,0.15)); }


/* ============================================================ */
/*  TRY VOICE PAGE V2 (try.html rebuild)                        */
/* ============================================================ */
.try-hero { padding: 80px 0 40px; }
.try-grid-section { padding: 40px 0 80px; }
.try-two-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px;
  align-items: start;
}
@media (max-width: 980px) { .try-two-grid { grid-template-columns: 1fr; } }

.try-pane {
  display: flex; flex-direction: column; gap: 24px;
  padding: 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  position: relative;
}
.try-pane-head { display: flex; flex-direction: column; gap: 10px; }
.try-step {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; color: rgba(150,200,255,0.85);
}
.try-pane-head h2 {
  font-family: var(--display); font-size: 28px; font-weight: 500;
  letter-spacing: -0.02em; color: #fff; line-height: 1.15;
  margin: 0;
}
.try-pane-head p {
  font-size: 14px; color: var(--text-muted); line-height: 1.55;
  margin: 0; max-width: 460px;
}
.try-embedded { padding: 20px; margin-top: 0; }

/* Phone card (right pane) */
.phone-card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.15));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
}
.phone-card-top {
  display: flex; justify-content: space-between; align-items: center;
}
.phone-region {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; color: rgba(150,200,255,0.9);
  padding: 6px 10px; border-radius: 20px;
  background: rgba(0,153,255,0.1);
  border: 1px solid rgba(0,153,255,0.25);
}
.phone-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #0099ff;
  box-shadow: 0 0 6px rgba(0,153,255,0.7);
  animation: phonePulse 1.6s ease-in-out infinite;
}
@keyframes phonePulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.phone-meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.phone-number-big {
  font-family: var(--display); font-size: clamp(32px, 4.4vw, 44px);
  font-weight: 500; letter-spacing: -0.02em; color: #fff;
  text-align: center; padding: 6px 0 4px;
  background: linear-gradient(135deg, #fff, #cfe8ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.phone-keypad {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  padding: 4px 0;
}
.phone-keypad .phone-key {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 12px 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  font-family: var(--display); font-size: 18px; color: #fff;
  font-weight: 500;
  cursor: default;
  transition: all .15s ease;
}
.phone-keypad .phone-key span {
  display: block;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.35);
  margin-top: 2px;
  min-height: 10px;
}
.phone-keypad .phone-key:hover {
  background: rgba(0,153,255,0.06);
  border-color: rgba(0,153,255,0.18);
}
.phone-cta-row {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 8px;
  margin-top: 4px;
}
.phone-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  border-radius: 10px; cursor: pointer;
  border: 1px solid transparent;
  transition: all .15s ease;
  text-decoration: none;
}
.phone-btn.ghost {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
.phone-btn.ghost:hover { background: rgba(255,255,255,0.08); }
.phone-btn.primary {
  background: linear-gradient(135deg, #0099ff, #5f5fff);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,153,255,0.35);
}
.phone-btn.primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,153,255,0.45); }

.phone-hints {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hint {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted);
}
.hint-num {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,153,255,0.12);
  border: 1px solid rgba(0,153,255,0.25);
  color: #cfe8ff;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
}

/* Make sample prompt cards clickable buttons */
.try-prompts .prompt-card {
  text-align: left;
  font-family: inherit;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 8px;
  transition: all .18s ease;
}
.try-prompts .prompt-card:hover {
  background: rgba(0,153,255,0.05);
  border-color: rgba(0,153,255,0.25);
  transform: translateY(-2px);
}
.try-prompts .prompt-card span {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}


/* ============================================================ */
/*  CALL TEST · Incoming/Outgoing tabbed (try.html)             */
/* ============================================================ */
.ct-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  padding: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}
.ct-tab {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(255,255,255,0.65);
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: all .2s ease;
}
.ct-tab:hover { background: rgba(255,255,255,0.04); color: #fff; }
.ct-tab.on {
  background: linear-gradient(135deg, rgba(0,153,255,0.18), rgba(95,95,255,0.10));
  border-color: rgba(0,153,255,0.4);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 8px 20px rgba(0,153,255,0.18);
}
.ct-tab-icon {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}
.ct-tab.on .ct-tab-icon {
  background: linear-gradient(135deg, #0099ff, #5f5fff);
  color: #fff;
  border-color: transparent;
}
.ct-tab-label { display: flex; flex-direction: column; gap: 2px; min-width: 0; line-height: 1.2; }
.ct-tab-label strong { font-size: 14px; font-weight: 500; color: #fff; }
.ct-tab-label em {
  font-style: normal;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ct-tab.on .ct-tab-label em { color: rgba(180,220,255,0.85); }

.ct-panel { animation: ctFadeIn .25s ease-out; }
@keyframes ctFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* ----- OUTGOING form ----- */
.ct-out {
  display: flex; flex-direction: column; gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 24px 50px rgba(0,30,80,0.3);
}
.ct-out-eyebrow {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; color: rgba(150,200,255,0.85);
  text-transform: uppercase;
}
.ct-out-title {
  font-family: var(--display); font-size: 24px; font-weight: 500;
  letter-spacing: -0.02em; color: #fff;
  line-height: 1.2;
}
.ct-out-desc {
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.55; margin: 0 0 8px;
}
.ct-label {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 4px;
}

.ct-phone-row {
  display: grid; grid-template-columns: auto 1fr; gap: 8px;
}
.ct-cc {
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-family: var(--mono); font-size: 14px; font-weight: 500;
  color: #fff;
}
.ct-flag { font-size: 18px; }
.ct-phone-input {
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-family: var(--mono); font-size: 16px; font-weight: 500;
  letter-spacing: 0.04em;
  outline: none;
  transition: border-color .15s, background .15s;
}
.ct-phone-input::placeholder { color: rgba(255,255,255,0.3); }
.ct-phone-input:focus {
  border-color: rgba(0,153,255,0.5);
  background: rgba(0,153,255,0.06);
}

.ct-lang-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
@media (max-width: 600px) { .ct-lang-grid { grid-template-columns: repeat(3, 1fr); } }
.ct-lang-chip {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: all .15s ease;
  font-family: inherit;
}
.ct-lang-chip:hover {
  background: rgba(0,153,255,0.06);
  border-color: rgba(0,153,255,0.2);
}
.ct-lang-chip.on {
  background: linear-gradient(135deg, rgba(0,153,255,0.22), rgba(95,95,255,0.14));
  border-color: rgba(0,153,255,0.5);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 6px 16px rgba(0,153,255,0.2);
}
.ct-lc-native {
  font-family: var(--display); font-size: 14px;
  color: #fff; font-weight: 500;
}
.ct-lc-name {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ct-lang-chip.on .ct-lc-name { color: rgba(180,220,255,0.9); }

.ct-call-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #0099ff, #5f5fff);
  border: none; border-radius: 12px;
  color: #fff;
  font-family: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 12px 28px rgba(0,153,255,0.4);
  transition: all .2s ease;
  margin-top: 4px;
}
.ct-call-btn:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 16px 36px rgba(0,153,255,0.5); }
.ct-call-btn.live {
  background: linear-gradient(135deg, #ff4d4d, #ff6e3e);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 12px 28px rgba(255,77,77,0.45);
}

/* Status panel */
.ct-status {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.ct-status-led {
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.ct-status-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.ct-status-name {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.85);
}
.ct-status-detail {
  font-size: 12.5px; color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.ct-status-timer {
  font-family: var(--mono); font-size: 16px; font-weight: 600;
  color: #fff;
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
}

.ct-status.idle .ct-status-led { background: rgba(255,255,255,0.3); }
.ct-status.error {
  border-color: rgba(255,77,77,0.5);
  background: rgba(255,77,77,0.08);
  animation: ctErrorShake 0.4s ease;
}
.ct-status.error .ct-status-led { background: #ff4d4d; box-shadow: 0 0 8px rgba(255,77,77,0.7); }
.ct-status.error .ct-status-name { color: #ffb4b4; }
@keyframes ctErrorShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.ct-status.initiating { border-color: rgba(0,153,255,0.3); background: rgba(0,153,255,0.06); }
.ct-status.initiating .ct-status-led {
  background: #0099ff;
  box-shadow: 0 0 10px rgba(0,153,255,0.7);
  animation: ctLedFastPulse 0.6s ease-in-out infinite;
}
.ct-status.initiating .ct-status-name { color: #cfe8ff; }
@keyframes ctLedFastPulse {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.ct-status.ringing { border-color: rgba(255,200,100,0.45); background: rgba(255,200,100,0.06); }
.ct-status.ringing .ct-status-led {
  background: rgb(255,200,100);
  box-shadow: 0 0 10px rgba(255,200,100,0.6);
  animation: ctLedRing 0.4s ease-in-out infinite;
}
.ct-status.ringing .ct-status-name { color: #ffd99c; }
.ct-status.ringing::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 10px, rgba(255,200,100,0.04) 10px, rgba(255,200,100,0.04) 20px);
  animation: ctRingFlow 1.6s linear infinite;
  pointer-events: none;
}
@keyframes ctLedRing {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%      { transform: scale(1.3);  opacity: 0.6; }
}
@keyframes ctRingFlow {
  to { background-position: 28px 0; }
}

.ct-status.connected { border-color: rgba(80,220,150,0.4); background: rgba(80,220,150,0.07); }
.ct-status.connected .ct-status-led {
  background: rgb(80,220,150);
  box-shadow: 0 0 10px rgba(80,220,150,0.7);
  animation: ctLedFastPulse 1.6s ease-in-out infinite;
}
.ct-status.connected .ct-status-name { color: #95eebc; }

.ct-status.ended { border-color: rgba(255,255,255,0.15); }
.ct-status.ended .ct-status-led { background: rgba(255,255,255,0.4); }

.ct-disclaimer {
  display: flex; gap: 10px;
  padding: 12px 14px;
  background: rgba(0,153,255,0.04);
  border: 1px dashed rgba(0,153,255,0.2);
  border-radius: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.ct-disclaimer strong { color: #fff; font-weight: 500; }
.ct-disc-icon {
  flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,153,255,0.18);
  color: #cfe8ff;
  font-size: 12px;
  margin-top: 1px;
}


/* ============================================================ */
/*  MOBILE NAV — hamburger + glass drawer                       */
/* ============================================================ */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: all .15s ease;
  margin-left: 4px;
}
.nav-burger:hover { background: rgba(255,255,255,0.1); }
.nav-burger span {
  display: block;
  width: 16px; height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .15s;
}

.mobile-drawer {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.mobile-drawer.open { pointer-events: auto; visibility: visible; }
.md-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,8,18,0.7);
  opacity: 0;
  transition: opacity .25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mobile-drawer.open .md-backdrop { opacity: 1; }
.md-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(380px, 90vw);
  background: linear-gradient(180deg, rgba(20,24,40,0.92), rgba(8,10,20,0.95));
  border-left: 1px solid rgba(255,255,255,0.1);
  box-shadow: -16px 0 60px rgba(0,0,0,0.5);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
  padding: 20px;
  gap: 16px;
}
.mobile-drawer.open .md-panel { transform: translateX(0); }
.md-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.md-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.md-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.md-close:hover { background: rgba(255,255,255,0.12); }
.md-nav { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.md-link {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255,255,255,0.02);
  transition: all .18s ease;
}
.md-link:active { transform: scale(0.98); }
.md-link.active {
  background: linear-gradient(135deg, rgba(0,153,255,0.16), rgba(95,95,255,0.08));
  border-color: rgba(0,153,255,0.35);
}
.md-link-num {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(180,220,255,0.7);
  background: rgba(0,153,255,0.1);
  border: 1px solid rgba(0,153,255,0.25);
  padding: 4px 7px;
  border-radius: 6px;
  min-width: 28px;
  text-align: center;
}
.md-link-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.md-link-text strong {
  font-size: 15px; color: #fff; font-weight: 500;
  letter-spacing: -0.005em;
}
.md-link-text em {
  font-style: normal;
  font-size: 12px; color: rgba(255,255,255,0.5);
  font-family: var(--mono); letter-spacing: 0.02em;
}
.md-link-arr { color: rgba(255,255,255,0.3); font-size: 22px; line-height: 1; }
.md-cta-wrap {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.md-cta-primary {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 18px;
  background: linear-gradient(135deg, #fff, #e8f3ff);
  color: #000;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(0,153,255,0.18);
}
.md-cta-secondary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px;
  background: rgba(0,153,255,0.08);
  color: #cfe8ff;
  border: 1px solid rgba(0,153,255,0.25);
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .nav-burger { display: flex; }
  .nav { padding: 6px 6px 6px 14px; }
  .nav-cta { display: none; }
  .nav-logo .wordmark { font-size: 16px; }
}


/* ============================================================ */
/*  GLOBAL MOBILE TUNE                                          */
/* ============================================================ */

/* Prevent horizontal scroll across the site */
html, body { overflow-x: hidden; }

/* Disable hover effects on touch devices (cleaner mobile UX) */
@media (hover: none) {
  .stake-card:hover,
  .plan-card:hover,
  .cv3-pillar:hover,
  .ga-cell:hover,
  .lang-tab:hover,
  .ct-tab:hover,
  .ct-lang-chip:hover,
  .try-prompts .prompt-card:hover,
  .vo-orb:hover,
  .phone-mockup:hover,
  .nav:hover,
  .nav-cta:hover,
  .md-close:hover,
  .nav-burger:hover,
  .phone-btn.primary:hover,
  .vo-call-btn:hover,
  .ct-call-btn:hover,
  .cv3-badge:hover,
  .comp-list li:hover,
  .logo-cell:hover {
    transform: none;
  }
}

/* Smaller mobile tweaks for newer sections */
@media (max-width: 880px) {
  /* Hero */
  .hero-grid { gap: 32px; }
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: clamp(30px, 9vw, 56px); line-height: 1; letter-spacing: -0.03em; }
  .hero-sub { font-size: 15px; margin-top: 20px; }
  .hero-eyebrow { font-size: 11px; padding: 4px 10px; }
  .hero-eyebrow .dot { width: 16px; height: 16px; }
  .hero-eyebrow .dot::after { width: 6px; height: 6px; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-top: 24px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 14px 18px; }
  .hero-meta { gap: 12px; flex-wrap: wrap; margin-top: 32px; }
  .hero-meta .stat { flex: 1 1 30%; min-width: 90px; }
  .hero-meta .num { font-size: 22px; }
  .hero-meta .lbl { font-size: 9px; }

  /* Hero call card v2 */
  .hero-grid > * { min-width: 0; }
  .call-card { max-width: 100%; min-width: 0; }
  .call-card.v2 { padding: 16px; }
  .call-head { gap: 12px; }
  .call-head .name { font-size: 13px; line-height: 1.3; }
  .lang-row { flex-wrap: wrap; gap: 4px; }
  .lang-pill { padding: 5px 10px; font-size: 12px; }
  .transcript { max-height: 220px; }
  .action-row { flex-wrap: wrap; gap: 6px; }
  .action-chip { font-size: 10px; padding: 4px 8px; }

  /* Pipeline (7-step) */
  .pipeline { flex-direction: column; gap: 14px; }
  .pipe-line { width: 1px; height: 20px; }

  /* Stakes */
  .stake-num { font-size: 36px; }

  /* Plan */
  .plan-card { padding: 22px 18px; }
  .plan-num { font-size: 44px; }

  /* Languages viewer */
  .lang-viewer { padding: 12px; }
  .lang-rail {
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    padding: 4px 0 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .lang-tab {
    flex-shrink: 0; min-width: 180px;
    scroll-snap-align: start;
  }
  .lang-pane { padding: 16px; min-height: auto; }
  .lpane-name { font-size: 22px; }
  .lpane-native { font-size: 24px; }
  .lang-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .conv-bubble { max-width: 85%; font-size: 13px; }

  /* Try voice v2 (homepage) */
  .try-v2-card { padding: 24px 20px; }
  .voice-orb-stage { height: 200px; }
  .vo-orb { width: 100px; height: 100px; }
  .vo-ring.r1, .vo-ring.r2, .vo-ring.r3, .vo-ring.r4 { width: 100px; height: 100px; }
  .tv2-h3 { font-size: 22px; }
  .phone-mockup { width: 220px; }

  /* Compliance v3 */
  .cv3-section { padding: 80px 0 100px; }
  .cv3-h2 { font-size: 34px; }
  .cv3-status-bar { padding: 14px; gap: 12px; }
  .cv3-st-name { font-size: 15px; }
  .cv3-st-detail {
    font-size: 9px !important;
    letter-spacing: 0.04em !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.35 !important;
  }
  .cv3-india-frame { padding: 18px 12px 12px; min-height: 360px; }
  .cv3-frame-label { font-size: 7.5px; padding: 3px 6px; letter-spacing: 0.1em; }
  .cv3-pillars { gap: 12px; }
  .cv3-pillar { padding: 18px; }
  .cv3-p-title { font-size: 16px; }
  .cv3-badges-row { gap: 6px; }
  .cv3-badge { font-size: 10px; padding: 6px 10px; }

  /* Try voice page (try.html) */
  .try-two-grid > * { min-width: 0; max-width: 100%; }
  .try-pane { padding: 20px; min-width: 0; max-width: 100%; }
  .try-pane-head h2 { font-size: 22px; }
  .ct-tabs { grid-template-columns: 1fr; gap: 6px; }
  .ct-tab { padding: 12px; }
  .ct-panel, .phone-card, .ct-out { min-width: 0; max-width: 100%; }
  .ct-out { padding: 18px; }
  .ct-out-title { font-size: 20px; }
  .ct-lang-grid { grid-template-columns: repeat(3, 1fr); }
  .ct-lc-native { font-size: 13px; }

  /* Phone keypad shrink */
  .phone-keypad .phone-key { padding: 10px 0; font-size: 16px; }
  .phone-number-big { font-size: 28px; }

  /* Compliance pillars 2-up on tablet */
  .cv3-pillars { grid-template-columns: repeat(2, 1fr); }

  /* Buyer cards 1-up on phone */
  .buyers { grid-template-columns: 1fr !important; }
  .sol-grid { grid-template-columns: 1fr !important; }
  .stats { grid-template-columns: repeat(2, 1fr) !important; }

  /* Customer cards 1-up */
  .customer-grid { grid-template-columns: 1fr !important; }
  .customer-card[style*="span 2"] { grid-column: span 1 !important; }
  .customer-stats { grid-template-columns: repeat(3, 1fr) !important; }

  /* Customers page 4-up stat strip → 2-up on mobile */
  .page-hero > .container > div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  .page-hero > .container > div[style*="grid-template-columns: repeat(4"] > div div[style*="font-size: 56px"] {
    font-size: 36px !important;
  }
  .page-hero > .container > div[style*="grid-template-columns: repeat(4"] > div div[style*="font-size: 28px"] {
    font-size: 22px !important;
  }
  .page-h1 { font-size: clamp(32px, 9vw, 56px) !important; line-height: 1.05 !important; }
  .page-sub { font-size: 15px !important; }

  /* Footer 2-up; brand spans */
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bot { font-size: 9px; gap: 8px; flex-direction: column; align-items: flex-start; }

  /* Final CTA */
  .final-cta h2 { font-size: 32px; }
  .ctas { flex-direction: column; gap: 8px; }
  .ctas .btn { width: 100%; justify-content: center; }
}

/* Very small phones (≤480px) */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Hero stats — 1-up */
  .hero-meta { grid-template-columns: 1fr; }

  /* Compliance pillars 1-up */
  .cv3-pillars { grid-template-columns: 1fr; }
  .cv3-h2 { font-size: 28px; line-height: 1.1; }

  /* Status bar 2x2 with no dividers */
  .cv3-status-bar { grid-template-columns: 1fr 1fr; padding: 12px; }
  .cv3-st-divider { display: none; }
  .cv3-st-cell { padding: 6px 0; }

  /* DC monitoring cards on phone */
  .cv3-dc-card { padding: 14px; }
  .cv3-dc-bars { height: 36px; }

  /* Plan cards 1-up */
  .plan-grid { grid-template-columns: 1fr; gap: 12px; }
  .plan-arrow { display: none; }

  /* Stakes 1-up */
  .stakes-grid { grid-template-columns: 1fr; }

  /* Stats 2-up cleaner */
  .stats { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-cell { padding: 16px; }

  /* Lang pane head stack */
  .lang-pane-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .lpane-native { font-size: 28px; }

  /* Live status bar text trim */
  .cv3-st-name { font-size: 14px; }
  .cv3-st-detail { font-size: 8.5px; }

  /* Voice orb smaller */
  .vo-orb { width: 92px; height: 92px; }
  .vo-ring.r1, .vo-ring.r2, .vo-ring.r3, .vo-ring.r4 { width: 92px; height: 92px; }

  /* Phone mockup tighter */
  .phone-mockup { width: 200px; }
  .pm-actions { gap: 40px; }
  .pm-act-labels { gap: 40px; }

  /* Try lang-grid 2-up */
  .ct-lang-grid { grid-template-columns: repeat(2, 1fr); }

  /* Phone keypad tighter */
  .phone-keypad { gap: 6px; }
  .phone-keypad .phone-key { padding: 8px 0; font-size: 14px; }
  .phone-keypad .phone-key span { font-size: 8px; }
  .phone-number-big { font-size: 24px; letter-spacing: 0; }

  /* Footer 1-up on small phones */
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .foot-brand { grid-column: auto; }
}


/* ============================================================ */
/*  TRY VOICE V2 (homepage section) — animated orb + phone     */
/* ============================================================ */
.try-voice-v2 {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}
.tv2-bg-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(45% 50% at 25% 40%, rgba(0,153,255,0.12), transparent 60%),
              radial-gradient(45% 50% at 80% 70%, rgba(95,95,255,0.10), transparent 60%);
}
.try-voice-v2 .container { position: relative; z-index: 1; }

.try-v2-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 56px;
  align-items: stretch;
}
@media (max-width: 980px) { .try-v2-grid { grid-template-columns: 1fr; } }

.try-v2-card {
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  padding: 36px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.try-v2-card.browser::before,
.try-v2-card.phone::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.try-v2-card.browser::before {
  background: radial-gradient(60% 50% at 50% 30%, rgba(0,153,255,0.10), transparent 70%);
}
.try-v2-card.phone::before {
  background: radial-gradient(60% 50% at 50% 35%, rgba(95,95,255,0.10), transparent 70%);
}
.try-v2-card > * { position: relative; z-index: 1; }

.tv2-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(150,200,255,0.9);
  align-self: flex-start;
  margin-bottom: 4px;
}
.tv2-tag-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,153,255,0.25), rgba(95,95,255,0.18));
  border: 1px solid rgba(0,153,255,0.4);
  color: #fff;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0;
}
.tv2-h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500; letter-spacing: -0.02em;
  color: #fff; margin: 0;
  line-height: 1.15;
}
.tv2-p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 8px;
  max-width: 460px;
}

/* ----- ANIMATED VOICE ORB ----- */
.voice-orb-stage {
  position: relative;
  width: 100%;
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  margin: 24px 0 12px;
}
.vo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,153,255,0.4);
  pointer-events: none;
  opacity: 0;
  animation: voRing 3s ease-out infinite;
}
.vo-ring.r1 { width: 120px; height: 120px; animation-delay: 0s;   }
.vo-ring.r2 { width: 120px; height: 120px; animation-delay: 0.75s; }
.vo-ring.r3 { width: 120px; height: 120px; animation-delay: 1.5s;  }
.vo-ring.r4 { width: 120px; height: 120px; animation-delay: 2.25s; }
@keyframes voRing {
  0%   { transform: scale(0.85); opacity: 0.6; border-color: rgba(0,153,255,0.5); }
  80%  { opacity: 0; }
  100% { transform: scale(2.2);  opacity: 0; border-color: rgba(0,153,255,0); }
}

.vo-orb {
  position: relative;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0099ff 0%, #5f5fff 60%, #8a4fff 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 24px 48px rgba(0,153,255,0.5),
    0 0 80px rgba(95,95,255,0.4);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: voBreath 3s ease-in-out infinite;
}
@keyframes voBreath {
  0%, 100% { transform: scale(1);    }
  50%      { transform: scale(1.04); }
}
.vo-orb:hover {
  transform: scale(1.06);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.15) inset,
    0 32px 64px rgba(0,153,255,0.65),
    0 0 100px rgba(95,95,255,0.55);
}
.vo-orb-glow {
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,255,0.35), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  animation: voGlow 4s ease-in-out infinite;
}
@keyframes voGlow {
  0%, 100% { opacity: 0.6; transform: scale(1);   }
  50%      { opacity: 1;   transform: scale(1.1); }
}
.vo-mic { position: relative; z-index: 2; transition: opacity .2s; }

/* Voice bars — only visible when calling */
.vo-bars {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 4px;
  opacity: 0;
  transition: opacity .2s;
  z-index: 2;
}
.vo-bar {
  display: block;
  width: 4px;
  height: 14px;
  background: #fff;
  border-radius: 2px;
}
.vo-orb.orb-active { animation: voBreathFast 0.6s ease-in-out infinite; }
.vo-orb.orb-active .vo-mic { opacity: 0; }
.vo-orb.orb-active .vo-bars { opacity: 1; }
.vo-orb.orb-active .vo-bar { animation: voBarBounce 0.9s ease-in-out infinite; }
.vo-orb.orb-active .vo-bar:nth-child(1) { animation-delay: 0s;    }
.vo-orb.orb-active .vo-bar:nth-child(2) { animation-delay: 0.12s; }
.vo-orb.orb-active .vo-bar:nth-child(3) { animation-delay: 0.24s; }
.vo-orb.orb-active .vo-bar:nth-child(4) { animation-delay: 0.36s; }
.vo-orb.orb-active .vo-bar:nth-child(5) { animation-delay: 0.24s; }
.vo-orb.orb-active .vo-bar:nth-child(6) { animation-delay: 0.12s; }
.vo-orb.orb-active .vo-bar:nth-child(7) { animation-delay: 0s;    }
@keyframes voBarBounce {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1.6); }
}
@keyframes voBreathFast {
  0%, 100% { transform: scale(1);    }
  50%      { transform: scale(1.07); }
}

.vo-status {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: 8px;
  min-height: 16px;
}

.try-lang-row.v2 {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: center;
  margin: 8px 0 16px;
}
.try-lang-row.v2 .try-lang-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  padding: 7px 12px;
  border-radius: 20px;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: all .15s ease;
}
.try-lang-row.v2 .try-lang-chip:hover {
  background: rgba(0,153,255,0.08);
  border-color: rgba(0,153,255,0.25);
  color: #fff;
}
.try-lang-row.v2 .try-lang-chip.on {
  background: linear-gradient(135deg, rgba(0,153,255,0.25), rgba(95,95,255,0.15));
  border-color: rgba(0,153,255,0.45);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,153,255,0.25);
}

.vo-call-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  align-self: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, #0099ff, #5f5fff);
  color: #fff;
  border: none; border-radius: 999px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 32px rgba(0,153,255,0.4);
  transition: all .2s ease;
}
.vo-call-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,153,255,0.55); }
.vo-call-btn.live  { background: linear-gradient(135deg, #ff4d4d, #ff7e3a); box-shadow: 0 12px 32px rgba(255,77,77,0.45); }


/* ----- iPHONE-STYLE PHONE MOCKUP ----- */
.phone-mockup-wrap {
  display: flex; justify-content: center;
  margin: 12px 0 16px;
  perspective: 1200px;
}
.phone-mockup {
  width: 240px;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform .4s cubic-bezier(0.2,0.8,0.2,1);
  animation: pmFloat 5s ease-in-out infinite;
}
.phone-mockup:hover { transform: rotateY(0) rotateX(0); }
@keyframes pmFloat {
  0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0);    }
  50%      { transform: rotateY(-4deg) rotateX(2deg) translateY(-6px); }
}
.pm-bezel {
  position: relative;
  background: linear-gradient(180deg, #1a1a25, #0a0a14);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 36px;
  padding: 12px 10px 10px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6) inset,
    0 30px 60px rgba(0,0,0,0.55),
    0 0 60px rgba(0,153,255,0.18);
}
.pm-notch {
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 18px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.pm-screen {
  position: relative;
  background: linear-gradient(180deg, #07101e 0%, #0d1830 50%, #0a0a14 100%);
  border-radius: 26px;
  padding: 30px 16px 14px;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  min-height: 380px;
  overflow: hidden;
}
.pm-screen::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 40% at 50% 30%, rgba(0,153,255,0.18), transparent 70%);
  pointer-events: none;
}
.pm-status-bar {
  position: relative;
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 8px 4px;
  font-family: var(--mono);
  font-size: 11px;
  color: #fff;
  font-weight: 600;
}
.pm-icons { display: inline-flex; align-items: center; gap: 5px; font-size: 9px; }
.pm-signal { width: 12px; height: 8px; background: #fff; border-radius: 1px; opacity: 0.85; }
.pm-wifi { font-family: var(--mono); font-size: 9px; font-weight: 700; }
.pm-batt {
  width: 18px; height: 9px;
  border: 1px solid #fff;
  border-radius: 2px;
  position: relative;
  background: linear-gradient(90deg, #fff 80%, transparent 80%);
  background-clip: padding-box;
}
.pm-batt::after {
  content: ''; position: absolute; right: -3px; top: 2px;
  width: 2px; height: 5px; background: #fff; border-radius: 0 1px 1px 0;
}
.pm-incoming-tag {
  position: relative;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(150,200,255,0.85);
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0,153,255,0.12);
  border: 1px solid rgba(0,153,255,0.3);
  margin-top: 8px;
  animation: pmTag 2s ease-in-out infinite;
}
@keyframes pmTag {
  0%, 100% { opacity: 0.9; }
  50%      { opacity: 1;   box-shadow: 0 0 12px rgba(0,153,255,0.5); }
}
.pm-avatar {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0099ff, #5f5fff);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(0,153,255,0.45);
  margin-top: 10px;
}
.pm-av-pulse {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0,153,255,0.5);
  animation: pmAvPulse 1.8s ease-out infinite;
}
.pm-av-pulse-2 { animation-delay: 0.9s; }
@keyframes pmAvPulse {
  0%   { transform: scale(0.85); opacity: 0.85; }
  100% { transform: scale(1.6);  opacity: 0; }
}
.pm-name {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-top: 6px;
}
.pm-number-display {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
}
.pm-region-line {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.pm-actions {
  display: flex; gap: 60px;
  margin-top: 16px;
}
.pm-act {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform .15s;
}
.pm-act:hover { transform: scale(1.08); }
.pm-act.red {
  background: #ff3b30;
  box-shadow: 0 8px 20px rgba(255,59,48,0.45);
}
.pm-act.green {
  background: #34c759;
  box-shadow: 0 8px 20px rgba(52,199,89,0.45);
}
.pm-act-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(52,199,89,0.6);
  animation: pmActPulse 1.4s ease-out infinite;
}
@keyframes pmActPulse {
  0%   { transform: scale(0.92); opacity: 1;   }
  100% { transform: scale(1.55); opacity: 0;   }
}
.pm-act-labels {
  display: flex; gap: 60px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: -4px;
}
.pm-act-labels span { width: 48px; text-align: center; }

.tv2-cta {
  margin-top: auto;
  padding-top: 8px;
}


/* ============================================================ */
/*  COMPLIANCE V3 — cinematic ops dashboard                     */
/* ============================================================ */
.cv3-section {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
  isolation: isolate;
}
.cv3-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.cv3-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,153,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,153,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 100%);
}
.cv3-bg-glow {
  position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: 0.5;
}
.cv3-bg-glow.a { width: 560px; height: 560px; top: 6%; left: 8%; background: radial-gradient(circle, rgba(0,153,255,0.65), transparent 60%); }
.cv3-bg-glow.b { width: 500px; height: 500px; bottom: 6%; right: 8%; background: radial-gradient(circle, rgba(138,79,255,0.55), transparent 60%); }
.cv3-bg-glow.c { width: 360px; height: 360px; top: 50%; left: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255,77,170,0.28), transparent 65%); }
.cv3-bg-scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px);
  opacity: 0.5;
}

/* ---- Header ---- */
.cv3-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  position: relative;
}
.cv3-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  background: rgba(0,153,255,0.08);
  border: 1px solid rgba(0,153,255,0.3);
  border-radius: 99px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(180,220,255,0.95);
  margin-bottom: 28px;
}
.cv3-eb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(80,220,150,0.95);
  box-shadow: 0 0 10px rgba(80,220,150,0.7);
  animation: cv3LedPulse 1.6s ease-in-out infinite;
}
.cv3-h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500; letter-spacing: -0.03em;
  color: #fff; line-height: 1.05;
  margin: 0 0 24px;
}
.cv3-h2-accent {
  background: linear-gradient(135deg, #0099ff, #5f5fff 50%, #8a4fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cv3-lede {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

/* ---- Live status bar (glassmorphism ops console) ---- */
.cv3-status-bar {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin: 0 auto 56px;
  padding: 18px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 0 0 1px rgba(0,153,255,0.05) inset,
    0 32px 80px rgba(0,30,80,0.4),
    0 0 60px rgba(0,153,255,0.08);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  position: relative;
  overflow: hidden;
}
.cv3-status-bar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,153,255,0.6), transparent);
}
@media (max-width: 880px) {
  .cv3-status-bar { grid-template-columns: 1fr 1fr; gap: 16px; padding: 16px; }
  .cv3-st-divider { display: none; }
}
.cv3-st-cell {
  display: flex; align-items: center; gap: 12px;
  min-width: 0;
}
.cv3-st-divider {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
}
.cv3-st-led {
  width: 10px; height: 10px; border-radius: 50%;
  flex-shrink: 0;
}
.cv3-st-led.active {
  background: rgb(80,220,150);
  box-shadow: 0 0 10px rgba(80,220,150,0.7);
  animation: cv3LedPulse 1.6s ease-in-out infinite;
}
.cv3-st-led.warm {
  background: rgb(255,200,100);
  box-shadow: 0 0 8px rgba(255,200,100,0.6);
  animation: cv3LedPulse 2s ease-in-out infinite;
}
@keyframes cv3LedPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
.cv3-st-icon {
  display: inline-flex;
  filter: drop-shadow(0 0 6px rgba(150,255,180,0.6));
}
.cv3-st-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cv3-st-name {
  font-family: var(--display); font-size: 17px; font-weight: 500;
  color: #fff; letter-spacing: -0.01em; line-height: 1;
}
.cv3-st-unit { font-size: 13px; opacity: 0.7; margin-left: 2px; }
.cv3-st-detail {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cv3-mono { font-family: var(--mono); }

/* ---- Main visual: India + DC stack ---- */
.cv3-vis-grid {
  display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 24px;
  margin-bottom: 64px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .cv3-vis-grid { grid-template-columns: 1fr; }
}

.cv3-india-frame {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 28px;
  overflow: hidden;
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.16) inset,
    0 0 0 1px rgba(0,153,255,0.06) inset,
    0 32px 80px rgba(0,30,80,0.35);
}
.cv3-india-frame::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0,153,255,0.08), transparent 70%);
  pointer-events: none;
}
.cv3-frame-tl, .cv3-frame-tr, .cv3-frame-bl, .cv3-frame-br {
  position: absolute; width: 14px; height: 14px;
  border-color: rgba(0,153,255,0.5);
  border-style: solid; border-width: 0;
}
.cv3-frame-tl { top: 12px; left: 12px; border-top-width: 2px; border-left-width: 2px; }
.cv3-frame-tr { top: 12px; right: 12px; border-top-width: 2px; border-right-width: 2px; }
.cv3-frame-bl { bottom: 12px; left: 12px; border-bottom-width: 2px; border-left-width: 2px; }
.cv3-frame-br { bottom: 12px; right: 12px; border-bottom-width: 2px; border-right-width: 2px; }
.cv3-frame-label {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.16em;
  color: rgba(150,200,255,0.85);
  background: rgba(0,30,60,0.85);
  padding: 4px 12px;
  border: 1px solid rgba(0,153,255,0.25);
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}
.cv3-india-svg {
  width: 100%; max-width: 440px; height: auto;
  position: relative; z-index: 1;
}

/* Animated city pulse */
.cv3-city {
  transform-origin: center;
  transform-box: fill-box;
  animation: cv3CityPulse 2.4s ease-in-out infinite;
}
@keyframes cv3CityPulse {
  0%, 100% { opacity: 0.5; r: 2; }
  50%      { opacity: 1;   r: 3.2; }
}

/* Animated data-flow lines (dash flowing toward DC) */
.cv3-flow {
  animation: cv3FlowDash 2.4s linear infinite;
}
.cv3-flow.f1 { animation-delay: 0s;    }
.cv3-flow.f2 { animation-delay: 0.4s;  }
.cv3-flow.f3 { animation-delay: 0.8s;  }
.cv3-flow.f4 { animation-delay: 1.2s;  }
.cv3-flow.f5 { animation-delay: 1.6s;  }
.cv3-flow.f6 { animation-delay: 2.0s;  }
@keyframes cv3FlowDash {
  to { stroke-dashoffset: -40; }
}

/* DC outward rings */
.cv3-dc-ring {
  transform-origin: center;
  transform-box: fill-box;
  animation: cv3DcRing 2.4s ease-out infinite;
}
.cv3-dc-ring.r1 { animation-delay: 0s;   }
.cv3-dc-ring.r2 { animation-delay: 0.7s; }
.cv3-dc-ring.r3 { animation-delay: 1.4s; }
@keyframes cv3DcRing {
  0%   { opacity: 0.9; transform: scale(0.5); }
  100% { opacity: 0;   transform: scale(2);   }
}

/* DC monitoring cards (right column) */
.cv3-dc-stack {
  display: flex; flex-direction: column; gap: 16px;
}
.cv3-dc-card {
  position: relative;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  flex: 1;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 24px 50px rgba(0,30,80,0.3);
}
.cv3-dc-card.primary {
  border-color: rgba(0,153,255,0.4);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 0 0 1px rgba(0,153,255,0.1) inset,
    0 24px 60px rgba(0,153,255,0.18);
}
.cv3-dc-card.secondary {
  border-color: rgba(138,79,255,0.32);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 0 0 1px rgba(138,79,255,0.08) inset,
    0 24px 50px rgba(95,40,200,0.18);
}
.cv3-dc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
}
.cv3-dc-card.primary::before { background: linear-gradient(90deg, transparent, rgba(0,153,255,0.6), transparent); }
.cv3-dc-card.secondary::before { background: linear-gradient(90deg, transparent, rgba(95,95,255,0.5), transparent); }
.cv3-dc-card-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cv3-dc-led { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cv3-dc-led.mum { background: #0099ff; box-shadow: 0 0 10px rgba(0,153,255,0.7); animation: cv3LedPulse 1.6s ease-in-out infinite; }
.cv3-dc-led.hyd { background: #5f5fff; box-shadow: 0 0 8px rgba(95,95,255,0.6); animation: cv3LedPulse 2s ease-in-out infinite; }
.cv3-dc-card-title {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; color: #fff;
}
.cv3-dc-badge {
  margin-left: auto;
  font-family: var(--mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 8px; border-radius: 5px;
  background: rgba(0,153,255,0.18); color: #cfe8ff;
  border: 1px solid rgba(0,153,255,0.35);
}
.cv3-dc-badge.alt {
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.14);
}
.cv3-dc-rows { display: flex; flex-direction: column; gap: 6px; }
.cv3-dc-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px;
}
.cv3-dc-row span:first-child { color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
.cv3-dc-row span:last-child { color: #fff; letter-spacing: 0.04em; }
.cv3-ok   { color: rgb(80,220,150) !important; }
.cv3-warm { color: rgb(255,200,100) !important; }
.cv3-dc-bars {
  display: flex; align-items: flex-end; gap: 3px;
  height: 44px;
  padding: 6px 0;
}
.cv3-dc-bar {
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, #0099ff, rgba(0,153,255,0.25));
  border-radius: 2px;
  transition: height .4s ease;
  animation: cv3BarBreathe 3.2s ease-in-out infinite;
}
.cv3-dc-bar:nth-child(1)  { animation-delay: 0s;    }
.cv3-dc-bar:nth-child(2)  { animation-delay: 0.15s; }
.cv3-dc-bar:nth-child(3)  { animation-delay: 0.30s; }
.cv3-dc-bar:nth-child(4)  { animation-delay: 0.45s; }
.cv3-dc-bar:nth-child(5)  { animation-delay: 0.60s; }
.cv3-dc-bar:nth-child(6)  { animation-delay: 0.75s; }
.cv3-dc-bar:nth-child(7)  { animation-delay: 0.90s; }
.cv3-dc-bar:nth-child(8)  { animation-delay: 1.05s; }
.cv3-dc-bar:nth-child(9)  { animation-delay: 1.20s; }
.cv3-dc-bar:nth-child(10) { animation-delay: 1.35s; }
.cv3-dc-bar:nth-child(11) { animation-delay: 1.50s; }
.cv3-dc-bar:nth-child(12) { animation-delay: 1.65s; }
.cv3-dc-bars.muted .cv3-dc-bar { background: linear-gradient(180deg, rgba(95,95,255,0.55), rgba(95,95,255,0.12)); }
@keyframes cv3BarBreathe {
  0%, 100% { transform: scaleY(0.85); }
  50%      { transform: scaleY(1.05); }
}
.cv3-dc-foot {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  border-top: 1px dashed rgba(255,255,255,0.06);
  padding-top: 8px;
}

/* ---- Compliance pillar cards ---- */
.cv3-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 1080px) { .cv3-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .cv3-pillars { grid-template-columns: 1fr; } }

.cv3-pillar {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all .25s ease;
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 16px 40px rgba(0,30,80,0.25);
}
.cv3-pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,153,255,0.5), transparent);
  opacity: 0.6;
  transition: opacity .25s;
}
.cv3-pillar:hover {
  border-color: rgba(0,153,255,0.35);
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(0,153,255,0.15);
}
.cv3-pillar:hover::before { opacity: 1; }
.cv3-p-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.cv3-p-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,153,255,0.2), rgba(95,95,255,0.12));
  border: 1px solid rgba(0,153,255,0.3);
  color: #cfe8ff;
}
.cv3-p-icon svg { width: 22px; height: 22px; }
.cv3-p-icon.data { color: #7ed1ff; }
.cv3-p-icon.law  { color: #b29eff; }
.cv3-p-icon.edu  { color: #82e3b0; }
.cv3-p-icon.sec  { color: #ffb87a; }
.cv3-p-icon.law { background: linear-gradient(135deg, rgba(95,95,255,0.2), rgba(178,158,255,0.12)); border-color: rgba(178,158,255,0.3); }
.cv3-p-icon.edu { background: linear-gradient(135deg, rgba(80,220,150,0.18), rgba(130,227,176,0.12)); border-color: rgba(130,227,176,0.3); }
.cv3-p-icon.sec { background: linear-gradient(135deg, rgba(255,140,80,0.18), rgba(255,184,122,0.12)); border-color: rgba(255,184,122,0.3); }
.cv3-p-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 8px; border-radius: 5px;
}
.cv3-p-title {
  font-family: var(--display);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.015em; color: #fff;
  margin: 0; line-height: 1.25;
}
.cv3-p-body {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.6;
  margin: 0;
}
.cv3-p-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.08);
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.06em;
  color: rgba(180,220,255,0.7);
  display: flex; align-items: center; gap: 6px;
}
.cv3-p-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(80,220,150,0.18);
  color: rgb(80,220,150);
  font-size: 10px; font-weight: 700;
}

/* ---- Verification badges row ---- */
.cv3-badges {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cv3-badges-label {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.cv3-badges-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
}
.cv3-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 99px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.92);
  transition: all .2s ease;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset;
}
.cv3-badge:hover {
  background: rgba(0,153,255,0.08);
  border-color: rgba(0,153,255,0.3);
  color: #fff;
}
.cv3-badge.soon {
  color: rgba(255,255,255,0.55);
  border-style: dashed;
  border-color: rgba(255,255,255,0.15);
}
.cv3-bg-tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(80,220,150,0.2);
  color: rgb(80,220,150);
  font-size: 9px; font-weight: 700;
}
.cv3-bg-soon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,200,100,0.15);
  color: rgb(255,200,100);
  font-size: 11px; font-weight: 700;
}
