/*
Theme Name: QEval
Theme URI: https://qeval.io
Author: ETSLabs
Author URI: https://etslabs.com
Description: QEval — The Performance Management Platform for the AI-era contact center. Custom WordPress theme built from the QEval brand design system.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://qeval.io/license
Text Domain: qeval
Tags: dark, custom-menu, custom-logo, full-width-template, sticky-post, one-column
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* surfaces */
  --bg-0: #000;
  --bg-1: #050510;
  --bg-2: #0a0a16;
  --bg-3: #0f0f1d;
  --bg-4: #15152a;
  --surface-1: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.05);
  --surface-3: rgba(255, 255, 255, 0.08);
  --surface-4: rgba(255, 255, 255, 0.12);

  /* borders */
  --line-1: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.1);
  --line-3: rgba(255, 255, 255, 0.16);
  --line-4: rgba(255, 255, 255, 0.24);

  /* text */
  --ink-1: #fff;
  --ink-2: rgba(255, 255, 255, 0.86);
  --ink-3: rgba(255, 255, 255, 0.66);
  --ink-4: rgba(255, 255, 255, 0.48);
  --ink-5: rgba(255, 255, 255, 0.3);

  /* brand */
  --teal: #00d4b0;
  --teal-bright: #1ce0c4;
  --teal-deep: #00a48a;
  --teal-glow: rgba(0, 212, 176, 0.42);
  --teal-soft: rgba(0, 212, 176, 0.1);
  --teal-edge: rgba(0, 212, 176, 0.28);

  /* accents */
  --blue: #4f8dff;
  --blue-soft: rgba(79, 141, 255, 0.12);
  --blue-edge: rgba(79, 141, 255, 0.3);
  --purple: #a78bfa;
  --purple-soft: rgba(167, 139, 250, 0.12);
  --amber: #fbbf24;
  --amber-soft: rgba(251, 191, 36, 0.14);
  --red: #ef5350;
  --red-soft: rgba(239, 83, 80, 0.14);
  --green: #10b981;

  /* gradients */
  --grad-brand: linear-gradient(135deg, var(--teal-bright) 0%, var(--blue) 100%);
  --grad-accent: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  --grad-text: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  --grad-surface: linear-gradient(135deg, var(--surface-2), var(--surface-1));

  /* radius */
  --r-2: 6px;
  --r-3: 8px;
  --r-4: 12px;
  --r-5: 16px;
  --r-6: 20px;
  --r-7: 24px;
  --r-pill: 999px;

  /* shadow */
  --e-1: 0 1px 2px rgba(0, 0, 0, 0.4);
  --e-2: 0 8px 28px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.25);
  --e-3: 0 32px 80px rgba(0, 0, 0, 0.65), 0 4px 16px rgba(0, 0, 0, 0.4);
  --e-glow: 0 0 64px rgba(0, 212, 176, 0.22);

  /* typography */
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-0);
}

body {
  background: var(--bg-0);
  color: var(--ink-1);
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

sup {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
  letter-spacing: 0;
}

::selection {
  background: var(--teal-soft);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

@keyframes float-up {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes float-in {
  0% { opacity: 0; transform: translateY(24px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes glow-rise {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

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

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes wave-bar {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   ACCESSIBILITY HELPERS
   ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal);
  color: #000;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 0 0 var(--r-3) 0;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   ANTIGRAVITY CANVAS
   ============================================================ */
#ag-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

#ag-cursor {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 176, 0.09) 0%, rgba(0, 212, 176, 0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s;
  opacity: 0;
  mix-blend-mode: screen;
}

#ag-cursor.active {
  opacity: 0.7;
}

.ag-hint {
  position: fixed;
  bottom: 18px;
  right: 20px;
  z-index: 5;
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  padding: 7px 13px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.5s;
}

.ag-hint .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 8px var(--teal-bright);
  animation: pulse-dot 2s infinite;
}

.ag-hint.faded {
  opacity: 0.3;
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.section {
  position: relative;
  padding: 70px 32px;
  z-index: 2;
}

.section.compact {
  padding: 64px 32px;
}

.section.spacious {
  padding: 128px 32px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.section-inner.wide {
  max-width: 1440px;
}

.section-inner.narrow {
  max-width: 920px;
}

/* ============================================================
   TYPOGRAPHY PRIMITIVES
   ============================================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--teal-bright);
  box-shadow: 0 0 6px var(--teal-bright);
}

.section-head {
  margin-bottom: 64px;
  max-width: 780px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .kicker {
  margin: 0 auto 18px;
}

.section-head .kicker {
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.section-head h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
}

.section-head h2 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.section-head p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-3);
  font-weight: 400;
  max-width: 680px;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CHIPS
   ============================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
}

.chip .d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 8px var(--teal-bright);
  animation: pulse-dot 2s infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 13.5px;
  border-radius: var(--r-3);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s, border-color 0.2s;
  border: 1px solid transparent;
  white-space: nowrap;
  font-family: inherit;
  cursor: pointer;
  line-height: 1;
}

.btn-p {
  background: #fff;
  color: #000;
}

.btn-p:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn-s {
  background: transparent;
  color: #fff;
  border-color: var(--line-3);
}

.btn-s:hover {
  background: var(--surface-2);
  border-color: var(--line-4);
}

.btn-teal {
  background: var(--teal-bright);
  color: #000;
}

.btn-teal:hover {
  background: #34efd1;
  box-shadow: 0 8px 26px var(--teal-glow);
}

.btn-ghost {
  color: var(--ink-3);
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 12px;
  cursor: pointer;
}

.btn-ghost:hover {
  color: var(--ink-1);
}

.btn-l {
  padding: 14px 26px;
  font-size: 14.5px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line-1);
}

.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: #fff;
}

.brand .brand-logo {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2px;
  margin-left: 18px;
}

.nav-links a {
  color: var(--ink-3);
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: var(--r-2);
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--ink-1);
  background: var(--surface-2);
}

.nav-cta {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: var(--r-2);
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-toggle span {
  width: 16px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  } 
   nav .nav-inner a.brand{order:1;}
  nav .nav-inner .nav-toggle{order:3;border:none;background:none;margin-left:6px;}
  nav .nav-inner .nav-cta{order:2;}
  .nav-toggle {
    display: flex;
  }

  .nav-cta .btn-ghost {
    display: none;
  }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--line-2);
    gap: 0;
  }

  .nav.open .nav-links a {
    padding: 13px 8px;
    font-size: 15px;
    border-bottom: 1px solid var(--line-1);
  }
}
@media (max-width: 767px){
  
  .nav-inner{padding:14px 14px;gap:0px;}
  nav .nav-inner a.brand{order:1;}
  nav .nav-inner .nav-toggle{order:3;border:none;background:none;}
  nav .nav-inner .nav-cta{order:2;}
  nav .nav-inner a.brand svg{width:80px;}
   nav .nav-inner .nav-cta a{padding:8px 15px;font-size:9px;font-weight:400;}
}
/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 72px 32px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  mask: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-a {
  position: absolute;
  top: -15%;
  left: 18%;
  width: 980px;
  height: 980px;
  background: radial-gradient(circle, rgba(0, 212, 176, 0.16) 0%, transparent 55%);
  filter: blur(70px);
  pointer-events: none;
  opacity: 0;
  animation: glow-rise 0.9s ease-out 1.5s forwards;
}

.hero-glow-b {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(79, 141, 255, 0.08) 0%, transparent 55%);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0;
  animation: glow-rise 0.9s ease-out 1.5s forwards;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 7px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  background: var(--surface-2);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 8px var(--teal-bright);
  animation: pulse-dot 2s infinite;
}

.hero-eyebrow .sep {
  color: var(--ink-5);
}

.hero-eyebrow .score {
  color: var(--teal-bright);
  font-weight: 700;
}

.hero-text {
  max-width: 1060px;
  margin: 0 auto 56px;
  text-align: center;
  animation: float-up 0.9s ease-out;
}

.hero-h1 {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
  text-wrap: balance;
}

.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
}

.hero-h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  display: inline-block;
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: clamp(26px, 7.2vw, 30px);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 760px;
  margin: 0 auto 32px;
  font-weight: 400;
}

.hero-sub strong {
  color: var(--ink-1);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   HERO MOCKUP / SCORER
   ============================================================ */
.hero-mock {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line-2);
  border-radius: var(--r-6);
  padding: 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--e-3), var(--e-glow);
  animation: float-in 1.1s ease-out 0.45s backwards;
  position: relative;
  overflow: hidden;
}

.hero-mock::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, var(--teal-bright) 30%, var(--blue) 70%, transparent 92%);
  opacity: 0.7;
}

.mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line-1);
}

.mock-title {
  display: flex;
  align-items: center;
  gap: 13px;
}

.mock-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--r-2);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #000;
  font-size: 12.5px;
  letter-spacing: -0.02em;
}

.mock-title-text .t {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-1);
  letter-spacing: -0.01em;
}

.mock-title-text .s {
  font-size: 11.5px;
  color: var(--ink-4);
  margin-top: 2px;
  font-family: var(--f-mono);
}

.mock-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  background: var(--teal-soft);
  border: 1px solid var(--teal-edge);
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--teal-bright);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mock-live .d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 6px var(--teal-bright);
  animation: pulse-dot 2s infinite;
}

.mock-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 18px;
}

@media (max-width: 880px) {
  .mock-body {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px){
  .mock-head{flex-direction:column;align-items: flex-start;gap:20px;}
  
}


/* ============================================================
   SCORER LEFT PANEL
   ============================================================ */
.scorer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.scorer-samples-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.samples-lbl {
  font-family: var(--f-mono);
  font-size: 9.5px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.scorer-samples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

@media (max-width: 600px) {
  .scorer-samples {
    grid-template-columns: repeat(2, 1fr);
  }
}

.s-btn {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 11px;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-3);
  cursor: pointer;
  transition: 0.18s;
  font-family: inherit;
  text-align: left;
}

.s-btn:hover {
  background: var(--surface-3);
  border-color: var(--line-3);
  transform: translateY(-1px);
}

.s-btn.active {
  background: linear-gradient(180deg, var(--teal-soft), rgba(79, 141, 255, 0.04));
  border-color: var(--teal-edge);
}

.s-btn .d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--teal-bright);
  margin-top: 5px;
}

.s-btn .d.warn {
  background: var(--amber);
  box-shadow: 0 0 6px var(--amber);
}

.s-btn .d.risk {
  background: #f97373;
  box-shadow: 0 0 6px #f97373;
}

.s-btn .lbl {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.s-btn .lbl strong {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-1);
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.s-btn .lbl small {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.s-btn.active .lbl small {
  color: var(--teal-bright);
}

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof {
  padding: 72px 32px;
  background: var(--bg-1);
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  position: relative;
  z-index: 2;
}

.proof-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}

@media (max-width: 860px) {
  .proof-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .proof-inner {
    grid-template-columns: 1fr;
  }
}

.proof-stat .n {
  font-family: var(--f-mono);
  font-size: 38px;
  font-weight: 800;
  color: var(--ink-1);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.proof-stat .n.brand {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.proof-stat .l {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.4;
}

.proof-stat .l strong {
  color: var(--ink-1);
  font-weight: 600;
}

/* ============================================================
   LOGO WALL
   ============================================================ */
.logos {
  padding: 70px 32px;
  position: relative;
  z-index: 2;
}

.logos-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.logos-label {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.logos-label strong {
  color: var(--ink-1);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
    border: 1px solid var(--line-1);
    border-radius: var(--r-5);
    overflow: hidden;
    background: var(--surface-1);
}
.lcell {
padding: 24px 14px;
    text-align: center;
    border-right: 1px solid var(--line-1);
    border-bottom: 1px solid var(--line-1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    min-height: 88px;
    transition: .25s;
}

.lcell .lt {
 font-family: var(--f-mono);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ink-2);
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.25;
}
.lcell .lv {
    font-size: 13px;
    color: var(--ink-3);
    font-weight: 500;
    letter-spacing: .02em;
}
@media (min-width: 1025px) {
.lcell:nth-child(8n) {
    border-right: none;
}
.lcell:nth-last-child(-n+8) {
    border-bottom: none;
}
}
@media (max-width: 1024px) {
  .logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 560px) {
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-stat .n{font-size:28px;}
}



/* ============================================================
   HERO COUNTERS
   ============================================================ */
.hero-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line-1);
}

@media (max-width: 680px) {
  .hero-counters {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.hcs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align:left;
}

.hcs .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.hcs .big {
  font-family: var(--f-mono);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-1);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hcs .sub {
  font-size: 11.5px;
  color: var(--ink-4);
}

/* ============================================================
   BURST / ARCHITECTURE
   ============================================================ */
.burst {
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1), var(--bg-0));
}

.burst-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.burst-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

@media (max-width: 760px) {
  .burst-stats {
    grid-template-columns: repeat(1, 1fr);
  }
}

.burst-stat {
  text-align: center;
}

.burst-stat .big {
  font-family: var(--f-mono);
  font-size: 28px;
  font-weight: 800;
  color:var(--ink-1);
  /* background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; */
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.burst-stat .lbl {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.4;
}

.burst-stat .lbl strong {
  color: var(--ink-1);
  font-weight: 600;
}

.burst-viz {
  position: relative;
  height: 560px;
  margin-bottom: 32px;
}

.burst-viz canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.burst-node {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 8px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line-3);
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.2s;
  cursor: default;
  z-index: 2;
}

.burst-node:hover {
  background: var(--surface-3);
  border-color: var(--teal-edge);
  color: var(--ink-1);
}

.burst-core {
  padding-top:102px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--bg-2) 40%, transparent 70%);
  border: 1px solid var(--teal-edge);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  z-index: 3;
  
  box-shadow: 0 0 80px rgba(0, 212, 176, 0.12);
}

.burst-core .core-t {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.burst-core .core-s {
  font-size: 10.5px;
  color: var(--ink-3);
  line-height: 1.4;
}

.burst-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.burst-legend .it {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
}

.burst-legend .sw {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.burst-tooltip {
  position: absolute;
  background: var(--bg-3);
  border: 1px solid var(--line-3);
  border-radius: var(--r-3);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--ink-1);
  pointer-events: none;
  z-index: 10;
  /* max-width: 220px; */
  line-height: 1.5;
  /* display: none; */
}
@media (max-width: 1024px){
    .burst-tooltip {display:none!important;}
}
@media (max-width: 767px){
  .burst-node{font-size:8px;}
  .burst-viz{height:460px;}
  .burst-tooltip {font-size:12px; padding: 8px 10px;display:none!important;}
}

/* ============================================================
   PLATFORM / BEHAVIOUR CARDS (bcard)
   ============================================================ */
.bcards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 1100px) {
  .bcards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .bcards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .bcards {
    grid-template-columns: 1fr;
  }
}

.bcard {
  background: var(--surface-1);
  border: 1px solid var(--line-2);
  border-radius: var(--r-5);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.25s;
}

.bcard:hover {
  background: var(--surface-2);
  border-color: var(--line-3);
  transform: translateY(-2px);
}

.bcard.full-wide {
  grid-column: 1 / -1;
}

.bcard .bk {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bcard .bt {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-1);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.bcard .bt em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
}

.bcard .bv {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ============================================================
   BV (behaviour value) SUB-COMPONENTS
   ============================================================ */
.bv-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px dashed var(--line-1);
  font-family: var(--f-mono);
  font-size: 11.5px;
}

.bv-row:last-child {
  border-bottom: none;
}

.bv-row .d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 5px var(--teal-bright);
  flex-shrink: 0;
}

.bv-row .d.warn {
  background: var(--amber);
  box-shadow: 0 0 5px var(--amber);
}

.bv-row .d.bad {
  background: var(--red);
  box-shadow: 0 0 5px var(--red);
}

.bv-row .nm {
  flex: 1;
  color: var(--ink-3);
  text-transform: lowercase;
}

.bv-row .vl {
  color: var(--teal-bright);
  font-weight: 700;
}

.bv-row .vl.warn {
  color: var(--amber);
}

.bv-row .vl.bad {
  color: var(--red);
}

.bv-rtaa {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.bv-rtaa-cue {
  padding: 9px 11px;
  border-radius: var(--r-3);
  font-size: 11.5px;
  color: var(--ink-1);
  line-height: 1.4;
  font-style: italic;
}

.bv-rtaa-cue .cl {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 3px;
}

.bv-rtaa-cue.compliance {
  background: var(--teal-soft);
  border: 1px solid var(--teal-edge);
}

.bv-rtaa-cue.compliance .cl {
  color: var(--teal-bright);
}

.bv-rtaa-cue.risk {
  background: var(--amber-soft);
  border: 1px solid rgba(251, 191, 36, 0.32);
}

.bv-rtaa-cue.risk .cl {
  color: var(--amber);
}

.bv-rtaa-cue.nba {
  background: var(--blue-soft);
  border: 1px solid var(--blue-edge);
}

.bv-rtaa-cue.nba .cl {
  color: var(--blue);
}

.bv-coach {
  flex: 1;
  display: flex;
  align-items: center;
}

.bv-coach-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--teal-edge);
  border-radius: var(--r-3);
  padding: 12px 14px;
  width: 100%;
  font-size: 12px;
  color: var(--ink-1);
  line-height: 1.5;
  font-style: italic;
  position: relative;
}

.bv-coach-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--teal-bright);
  border-radius: 2px;
}

.bv-coach-card .ct {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 10.5px;
  color: var(--teal-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.bv-coach-card strong {
  color: var(--teal-bright);
  font-style: normal;
  font-weight: 700;
}

.bv-counter {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 11.5px;
}

.bv-counter-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px dashed var(--line-1);
}

.bv-counter-row:last-child {
  border-bottom: none;
}

.bv-counter-row .lb {
  color: var(--ink-3);
}

.bv-counter-row .vl {
  color: var(--teal-bright);
  font-weight: 700;
}

.bv-wave {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 0;
  gap: 3px;
}

.bv-wave .bar {
  flex: 1;
  background: var(--grad-brand);
  border-radius: 2px 2px 0 0;
  animation: wave-bar 1.4s ease-in-out infinite;
  transform-origin: bottom;
  min-height: 8px;
}

.bv-wave .bar:nth-child(odd) {
  animation-delay: 0.2s;
}

.bv-wave .bar:nth-child(3n) {
  animation-delay: 0.4s;
}

.bv-wave .bar.warn {
  background: linear-gradient(180deg, var(--amber), #d97706);
}

.bv-vision {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: center;
}

.bv-vision-lbl {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.bv-vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.bv-vision-cell {
  padding: 5px 4px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line-1);
  border-radius: var(--r-2);
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  text-align: center;
  font-weight: 600;
}

.bv-vision-cell.flag {
  background: var(--red-soft);
  border-color: rgba(239, 83, 80, 0.32);
  color: var(--red);
}

.bv-survey {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
}

.bv-survey-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
}

.bv-survey-row .qlbl {
  color: var(--ink-3);
  flex: 0 0 130px;
  font-family: var(--f-mono);
  font-size: 10px;
}

.bv-survey-row .qbar {
  flex: 1;
  height: 6px;
  background: var(--surface-3);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.bv-survey-row .qfill {
  height: 100%;
  background: var(--grad-brand);
  border-radius: var(--r-pill);
  box-shadow: 0 0 6px var(--teal-glow);
}

.bv-survey-row .qval {
  font-family: var(--f-mono);
  color: var(--teal-bright);
  font-weight: 700;
  flex: 0 0 40px;
  text-align: right;
  font-size: 11px;
}

.bv-pred {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.bv-pred-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 11px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line-1);
  border-radius: var(--r-2);
  font-family: var(--f-mono);
  font-size: 11px;
}

.bv-pred-row .l {
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 9.5px;
}

.bv-pred-row .v {
  color: var(--teal-bright);
  font-weight: 700;
}

.bv-pred-row .v.risk {
  color: var(--amber);
}

.bv-game {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.bv-game-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line-1);
  border-radius: var(--r-2);
  font-family: var(--f-mono);
  font-size: 11px;
}

.bv-game-row .rk {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--surface-3);
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 700;
}

.bv-game-row.gold .rk {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #000;
}

.bv-game-row .nm {
  flex: 1;
  color: var(--ink-2);
}

.bv-game-row .pts {
  color: var(--teal-bright);
  font-weight: 700;
}

.bv-crm {
  flex: 1;
  display: flex;
  align-items: center;
}

.bv-crm-block {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-1);
  border-radius: var(--r-3);
  padding: 11px 13px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  line-height: 1.7;
  width: 100%;
}

.bv-crm-block .ic {
  color: var(--teal-bright);
  font-weight: 700;
}

.bv-crm-block .hi {
  color: var(--ink-1);
}

.bv-crm-block .ok {
  color: var(--teal-bright);
  font-weight: 700;
}

.bv-conn {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  align-content: center;
}

.bv-conn-cell {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-1);
  border-radius: var(--r-2);
  padding: 8px 6px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bv-conn-cell.more {
  background: var(--teal-soft);
  color: var(--teal-bright);
  border-color: var(--teal-edge);
}

/* ============================================================
   RTAA COMMAND CENTER
   ============================================================ */
.rtaa {
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1), var(--bg-0));
}

.rtaa-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 320px;
  gap: 14px;
  align-items: stretch;
}

@media (max-width: 1080px) {
  .rtaa-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .rtaa-signals {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .rtaa-grid {
    grid-template-columns: 1fr;
  }

  .rtaa-signals {
    grid-column: auto;
  }
}

.rtaa-panel {
  background: var(--surface-1);
  border: 1px solid var(--line-2);
  border-radius: var(--r-5);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 480px;
}

.rtaa-phead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.rtaa-phead-l {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.rtaa-phead-l .lbl {
  font-family: var(--f-mono);
  font-size: 9.5px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.rtaa-phead-l .ttl {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-1);
  letter-spacing: -0.01em;
}

.rtaa-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--teal-soft);
  border: 1px solid var(--teal-edge);
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 9.5px;
  color: var(--teal-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.rtaa-pill .d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 5px var(--teal-bright);
  animation: pulse-dot 2s infinite;
}

.rtaa-timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rtaa-time {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

.rtaa-progress {
  height: 3px;
  background: var(--surface-3);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.rtaa-progress span {
  display: block;
  height: 100%;
  background: var(--grad-brand);
  border-radius: var(--r-pill);
  transition: width 0.4s linear;
  box-shadow: 0 0 8px var(--teal-glow);
}

.rtaa-tx {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  max-height: 320px;
}

.rtaa-tx-line {
  display: flex;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.45;
}

.rtaa-tx-line .spkr {
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  padding-top: 1px;
  min-width: 44px;
}

.rtaa-tx-line.agent .spkr {
  color: var(--teal-bright);
}

.rtaa-tx-line.cust .spkr {
  color: var(--ink-3);
}

.rtaa-tx-line .txt {
  color: var(--ink-2);
}

.rtaa-center {
  background: var(--surface-1);
  border: 1px solid var(--teal-edge);
  border-radius: var(--r-5);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rtaa-cue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px;
  background: var(--teal-soft);
  border: 1px solid var(--teal-edge);
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--teal-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  align-self: flex-start;
}

.rtaa-cue .d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 5px var(--teal-bright);
  animation: pulse-dot 2s infinite;
}

.rtaa-cue-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-1);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.rtaa-cue-copy {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.6;
}

.rtaa-script {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--teal-edge);
  border-radius: var(--r-4);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rtaa-script .lbl {
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-bright);
}

.rtaa-script p {
  font-size: 13.5px;
  color: var(--ink-1);
  font-style: italic;
  line-height: 1.5;
}

.rtaa-decision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rtaa-decision .lbl {
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-4);
  display: block;
  margin-bottom: 4px;
}

.rtaa-decision strong {
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 600;
  line-height: 1.4;
  display: block;
}

.rtaa-next {
  padding: 12px 14px;
  background: var(--blue-soft);
  border: 1px solid var(--blue-edge);
  border-radius: var(--r-3);
}

.rtaa-next .lbl {
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
}

.rtaa-next strong {
  font-size: 13px;
  color: var(--ink-1);
  font-weight: 600;
  line-height: 1.4;
  display: block;
}

.rtaa-signals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface-1);
  border: 1px solid var(--line-2);
  border-radius: var(--r-5);
  padding: 20px;
}

.rtaa-meter {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rtaa-meter-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-3);
}

.rtaa-meter-row strong {
  color: var(--teal-bright);
  font-family: var(--f-mono);
  font-weight: 700;
}

.rtaa-meter-bar {
  height: 4px;
  background: var(--surface-3);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.rtaa-meter-bar span {
  display: block;
  height: 100%;
  background: var(--grad-brand);
  border-radius: var(--r-pill);
  transition: width 0.6s ease;
}

.rtaa-tabs-lbl {
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  margin-top: 6px;
}

.rtaa-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rtaa-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  background: transparent;
  border: 1px solid var(--line-1);
  border-radius: var(--r-3);
  cursor: pointer;
  transition: 0.18s;
  text-align: left;
  width: 100%;
}

.rtaa-tab:hover {
  background: var(--surface-2);
  border-color: var(--line-3);
}

.rtaa-tab.active {
  background: var(--teal-soft);
  border-color: var(--teal-edge);
}

.rtaa-tab .tm {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-4);
  min-width: 32px;
}

.rtaa-tab.active .tm {
  color: var(--teal-bright);
}

.rtaa-tab .body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.rtaa-tab .n {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.2;
}

.rtaa-tab.active .n {
  color: var(--ink-1);
}

.rtaa-tab .s {
  font-size: 10.5px;
  color: var(--ink-4);
  font-family: var(--f-mono);
}

.rtaa-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line-1);
}

@media (max-width: 680px) {
  .rtaa-results {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rtaa-result {
  /* text-align: center; */
}

.rtaa-result .n {
  font-family: var(--f-mono);
  font-size: 26px;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 5px;
}

.rtaa-result .l {
  font-size: 12px;
  color: var(--ink-3);
}

.rtaa-footnote {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--ink-4);
  /* text-align: center; */
  line-height: 1.55;
}

/* ============================================================
   SIX LAYERS
   ============================================================ */
.layers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 860px) {
  .layers-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.layers-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.l-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface-1);
  border: 1px solid var(--line-2);
  border-radius: var(--r-4);
  transition: 0.2s;
  cursor: default;
}

.l-row:hover {
  background: var(--surface-2);
  border-color: var(--line-3);
}

.l-row.l1 {
  opacity: 0.55;
}

.l-row .sw {
  width: 4px;
  height: 32px;
  border-radius: 2px;
  flex-shrink: 0;
}

.l-row .num {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 800;
  color: var(--ink-4);
  min-width: 24px;
  letter-spacing: 0.06em;
}

.l-row .body {
  flex: 1;
}

.l-row .nm {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-1);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.l-row .ds {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
}

.l-row .pct {
  font-family: var(--f-mono);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-2);
  letter-spacing: -0.02em;
}

.value-map {
  background: var(--surface-1);
  border: 1px solid var(--line-2);
  border-radius: var(--r-5);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--ink-3);
}

.vm-top strong {
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink-4);
}

.vm-bar {
  height: 6px;
  background: var(--surface-3);
  border-radius: var(--r-pill);
  overflow: hidden;
  display: flex;
}

.vm-bar .seen {
  width: 13%;
  background: #6b7280;
  border-radius: var(--r-pill) 0 0 var(--r-pill);
}

.vm-bar .unlocked {
  flex: 1;
  background: var(--grad-brand);
  /* opacity: 0.4; */
}

.vm-flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vm-k {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.vm-seg {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.vm-seg span {
  min-width: 80px;
  color: var(--ink-3);
  font-size: 11.5px;
}

.vm-seg-track {
  flex: 1;
  height: 5px;
  background: var(--surface-3);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.vm-seg-track i {
  display: block;
  height: 100%;
  width: var(--w);
  background: var(--c);
  border-radius: var(--r-pill);
  font-style: normal;
}

.vm-seg strong {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-2);
  min-width: 30px;
  text-align: right;
}

.vm-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-1);
}

.vm-callout div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vm-callout b {
  font-family: var(--f-mono);
  font-size: 24px;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}

.vm-callout span {
  font-size: 11.5px;
  color: var(--ink-3);
}

.vm-caption {
  font-size: 11.5px;
  color: var(--ink-4);
  line-height: 1.55;
  border-top: 1px solid var(--line-1);
  padding-top: 14px;
}

/* ============================================================
   ROI CALCULATOR
   ============================================================ */
.roi-shell {
  background: var(--surface-1);
  border: 1px solid var(--line-2);
  border-radius: var(--r-6);
  overflow: hidden;
}

.roi-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-1);
  background: var(--surface-2);
}


.preset{
      padding: 7px 13px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--r-2);
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--ink-3);
    font-weight: 600;
    cursor: pointer;
    transition: .18s;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.preset:hover {
  border-color: var(--line-3);
  color: var(--ink-1);
}

.preset.active {
  background: var(--grad-brand);
    color: #000;
    font-weight: 700;
}

.roi-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

@media (max-width: 960px) {
  .roi-body {
    grid-template-columns: 1fr;
  }
}

.roi-inputs {
  padding: 24px;
  border-right: 1px solid var(--line-1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 960px) {
  .roi-inputs {
    border-right: none;
    border-bottom: 1px solid var(--line-1);
  }
}

.roi-input-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.roi-input-row label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--f-mono);
}

.roi-input-row label span {
  color: var(--teal-bright);
  font-weight: 700;
}

.roi-input-row input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--surface-3);
  border-radius: var(--r-pill);
  outline: none;
}

.roi-input-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-bright);
  cursor: pointer;
  box-shadow: 0 0 8px var(--teal-glow);
}

.roi-input-row input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-bright);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 8px var(--teal-glow);
}

.roi-output {
  padding: 24px;
  border-right: 1px solid var(--line-1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 960px) {
  .roi-output {
    border-right: none;
    border-bottom: 1px solid var(--line-1);
  }
}

.roi-headline {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.roi-headline .lbl {
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-4);
}

.roi-headline .val {
  font-family: var(--f-mono);
  font-size: 40px;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
}

.roi-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.roi-mini {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  background: var(--surface-2);
  border: 1px solid var(--line-1);
  border-radius: var(--r-3);
}

.roi-mini .lbl {
  font-family: var(--f-mono);
  font-size: 9.5px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.roi-mini .val {
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink-1);
  letter-spacing: -0.02em;
}

.roi-mix {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.roi-mix-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-3);
  padding: 5px 0;
  border-bottom: 1px dashed var(--line-1);
}

.roi-mix-row:last-child {
  border-bottom: none;
  font-weight: 700;
  color: var(--ink-1);
  padding-top: 10px;
  border-top: 1px solid var(--line-2);
  margin-top: 4px;
}

.roi-mix-row span:last-child {
  font-family: var(--f-mono);
  color: var(--teal-bright);
  font-weight: 700;
}

/* ============================================================
   MATRIX / COMPARE TABLE
   ============================================================ */
.matrix-wrap {
  background: var(--surface-1);
  border: 1px solid var(--line-2);
  border-radius: var(--r-5);
  overflow-x: auto;
}

.matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.matrix th {
  padding: 18px 22px;
  text-align: left;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--surface-2);
  border-bottom: 1px solid var(--line-2);
}

.matrix th.qcol {
  color: var(--teal-bright);
  background: linear-gradient(180deg, var(--teal-soft), rgba(0, 212, 176, 0.04));
  text-align: center;
  border-bottom-color: var(--teal-edge);
}

.matrix th.others {
  color: var(--ink-3);
  text-align: center;
}

.matrix td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line-1);
  vertical-align: middle;
  color: var(--ink-2);
}

.matrix tr:last-child td {
  border-bottom: none;
}

.matrix td.cap {
  font-weight: 600;
  color: var(--ink-1);
  font-size: 13.5px;
  width: 36%;
}

.matrix td.qcell {
  background: linear-gradient(180deg, rgba(0, 212, 176, 0.05), transparent);
  text-align: center;
  color: var(--ink-1);
  font-weight: 600;
  border-left: 1px solid var(--teal-edge);
  border-right: 1px solid var(--teal-edge);
  font-size: 13px;
}

.matrix td.qcell .vp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.matrix td.qcell .check {
  color: var(--teal-bright);
  font-weight: 800;
}

.matrix td.ocell {
  text-align: center;
  color: var(--ink-3);
  font-size: 12.5px;
  font-family: var(--f-mono);
  width: 32%;
}

.matrix td.ocell .dash {
  color: var(--ink-4);
}

.matrix tr:hover td.cap {
  color: var(--teal-bright);
}

.matrix-footnote {
  padding: 14px 22px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--line-2);
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ============================================================
   RECOGNITION
   ============================================================ */
.section.recog {
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1), var(--bg-0));
}

.recog-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 960px) {
  .recog-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.icmi-crest {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  border-image: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24) 1;
}

.icmi-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 30px;
}

.icmi-tag {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: #fbbf24;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}

.icmi-mid {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink-1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  padding: 8px 14px;
  border-top: 1px solid rgba(251, 191, 36, 0.5);
  border-bottom: 1px solid rgba(251, 191, 36, 0.5);
  margin: 6px 0;
}

.icmi-year {
  font-family: var(--f-mono);
  font-size: 30px;
  font-weight: 800;
  color: #fbbf24;
  letter-spacing: 0.04em;
  line-height: 1;
}

.icmi-caption {
  margin-top: 14px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.recog-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.recog-quote {
  padding: 22px 26px;
  background: var(--surface-1);
  border: 1px solid var(--line-2);
  border-radius: var(--r-5);
  border-left: 3px solid #fbbf24;
  position: relative;
}

.recog-quote .q {
  font-size: 16.5px;
  color: var(--ink-1);
  line-height: 1.55;
  font-style: italic;
  font-weight: 400;
}

.recog-quote .a {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.recog-scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 680px) {
  .recog-scores {
    grid-template-columns: 1fr;
  }
}

.recog-score {
  padding: 18px 20px;
  background: var(--surface-1);
  border: 1px solid var(--line-2);
  border-radius: var(--r-4);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.recog-score .big {
  font-family: var(--f-mono);
  font-size: 20px;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}

.recog-score .l {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-1);
}

.recog-score .note {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.4;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 960px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    text-align:center;
  }
  .trust-grid .tbadge-i{margin-left:auto;margin-right:auto;}
}

.tbadge {
  padding: 20px 18px;
  background: var(--surface-1);
  border: 1px solid var(--line-2);
  border-radius: var(--r-4);
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: 0.25s;
}

.tbadge:hover {
  background: var(--surface-2);
  border-color: var(--line-3);
  transform: translateY(-2px);
}

.tbadge-i {
  width: fit-content;
  padding: 10px;
  border-radius: var(--r-3);
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--ink-1);
  letter-spacing: -0.01em;
  border: 1px solid var(--line-3);
  margin-bottom:10px;
}
.tbadge-i img{height:40px;width:auto;}
.tbadge.green .tbadge-i {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(16, 185, 129, 0.05));
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.32);
}

.tbadge.purple .tbadge-i {
  background: linear-gradient(135deg, var(--purple-soft), rgba(167, 139, 250, 0.05));
  color: var(--purple);
  border-color: rgba(167, 139, 250, 0.32);
}

.tbadge .n {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-1);
  letter-spacing: -0.01em;
}

.tbadge .d {
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.4;
}

/* ============================================================
   COMMITMENTS
   ============================================================ */
.commits {
  padding: 64px 32px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  position: relative;
  z-index: 2;
}

.commits-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.commits-head {
  text-align: center;
  margin-bottom: 32px;
}

.commits-head .kicker {
  margin: 0 auto 14px;
}

.commits-head h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.commits-head h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
}

.commits-head h2 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.commits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  padding: 32px 0;
}

@media (max-width: 760px) {
  .commits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    border: none;
    padding: 0;
  }
}

.commit {
  padding: 0 28px;
  border-right: 1px solid var(--line-1);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.commit:last-child {
  border-right: none;
}



.commit .big {
  font-family: var(--f-mono);
  font-size: 42px;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
}

.commit .l {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-1);
}

.commit .d {
  font-size: 12px;
  color: var(--ink-3);
}
@media (max-width: 1024px) {
   .commit .big{font-size:32px;}
}


@media (max-width: 760px) {
  .commit {
    border-right: none;
    padding: 0;
  }
  .commit .big{
    font-size:28px;
  }
}
/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 880px;
  margin: 0 auto;
}

.q {
background: var(--surface-1);
    border: 1px solid var(--line-2);
    border-radius: var(--r-4);
    overflow: hidden;
    transition: .25s;
}

.q:hover {
  border-color: var(--line-3);
}

.q[open] {
  background: var(--surface-2);
  border-color: var(--teal-edge);
}

.q summary {
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-1);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  letter-spacing: -0.005em;
}

.q summary::-webkit-details-marker {
  display: none;
}

.q summary::after {
  content: "+";
  font-family: var(--f-mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-3);
  transition: 0.25s;
  flex-shrink: 0;
  line-height: 1;
}

.q[open] summary::after {
  transform: rotate(45deg);
  color: var(--teal-bright);
}

.q p {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
}

.q p strong {
  color: var(--ink-1);
  font-weight: 600;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  padding: 70px 32px;
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1));
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.final::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 212, 176, 0.1) 0%, transparent 55%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
}

.final-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.final-inner .kicker {
  margin: 0 auto 18px;
  justify-content: center;
}

.final-inner h2 {
  /* font-size: clamp(36px, 5vw, 56px); */
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.final-inner h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
}

.final-inner h2 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.final-inner p {
  font-size: 18px;
  color: var(--ink-3);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 32px;
}

.final-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 70px 32px 28px;
  background: var(--bg-1);
  border-top: 1px solid var(--line-1);
  position: relative;
  z-index: 2;
}

.foot-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

@media (max-width: 960px) {
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

.foot-col h4 {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.foot-col a {
  font-size: 14px;
  color:#cfd2dc;
  transition: 0.2s;
}

.foot-col a:hover {
  color: var(--ink-1);
}

.foot-brand .brand {
  margin-bottom: 14px;
}

.foot-brand p {
  font-size: 14px;
  color: #9E9E9E;
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 240px;
}
.foot-brand .qm{
   color: #00897B;
    font-weight: 600;
    font-size: 13px;
    margin-top: 18px;
    letter-spacing: .5px;
}
.foot-co {
  font-family: var(--f-mono);
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.04em;
  margin-top: 16px;
  font-size: 12px;
  color: #9E9E9E;
} 
.foot-co strong{
    color: #ffffff;
    font-weight: 700;
}

.foot-co::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 6px var(--teal-bright);
}

.foot-contact {
  display: flex;
  justify-content:space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--line-4);
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-3);
}

.foot-contact-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.foot-contact-label {
      font-family: var(--f-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color:#FFFFFF;
  font-weight: 600;
}

.foot-social {
  display: flex;
  gap: 14px;
}

.foot-social a {
  color: var(--ink-3);
  transition: 0.2s;
}

.foot-social a:hover {
  color: var(--ink-1);
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-4);
  font-family: var(--f-sans);
  font-size: 13px;
  color: var(--ink-3);
}

.foot-bot .legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.foot-bot .legal a:hover {
  color: var(--ink-2);
}

/* ============================================================
   WORDPRESS CORE OVERRIDES
   ============================================================ */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 24px;
}

.alignright {
  float: right;
  margin-left: 24px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Gutenberg: remove default block padding */
.wp-site-blocks,
.entry-content > * {
  margin-top: 0;
  margin-bottom: 0;
}

/**gap section**/
.gap-h2{
  font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 18px;
    color:var(--ink-1);
margin-bottom: 18px;
}
.gap-h2 .gap-loss{
      background: linear-gradient(135deg, var(--red), #dc2626);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.gap-left p.para-one{
  font-size: 17px;
    color: var(--ink-3);
    line-height: 1.65;
    font-weight: 400;
}
@media (max-width: 920px){
   .section-head{margin-bottom:25px !important;}
}
.ag-hint{display:none;}


/**extra css swagatika**/
.pt-0{padding-top:0px!important;}
@media (max-width: 1200px){
 .page-hero-glow{width:70%;}
}

@media (max-width: 1024px) {}
@media (max-width: 767px) {
  .hero{padding:72px 20px 50px 20px;}
  .proof{padding:50px 20px;}
  .logos{padding:50px 20px;}
  .burst{padding:50px 20px;}
  .burst-stats{margin-bottom:30px;}
  .section{padding:50px 20px;}
  .bv-conn{display:flex!important;flex-wrap:wrap!important;}
  .rtaa-decision{grid-template-columns:  1fr;}
  .bcase-out-head{flex-direction:column;}
  #personas .section-head.center{text-align:left;}
  .persona-proofs .v.brand{font-size:16px;}
  .hero-eyebrow{gap:5px;font-size:10.5px;padding:12px 20px;}
  .hero-eyebrow .dot{margin-right:7px;}
  .burst-core{width:120px;height:120px;}
  .burst-core .core-t{font-size:7px;}
  .burst-core .core-s{font-size:8.5px;}
  .burst-core .core-s{padding:5px 10px;}
  .burst-core .core-mark{width:60px;height:60px;}
  .burst-node{gap:3px;padding:5px 10px;}
  .burst-node.empathy{left:18%!important;}
  .burst-node.brand{left:80%!important;}
  .gap-total .big{font-size:28px;}
  .bcase-cta{flex-wrap:wrap;gap:3px;font-size:12px;}
  .matrix td.cap{font-weight:400;font-size:12px;}
  .matrix td{padding:12px;}
  .matrix td.qcell{font-weight:400;font-size:12px;}
  .matrix td.ocell{font-weight:400;font-size:12px;}
  .matrix th{padding:12px;}
  .personas-section .section-head.center{text-align:left!important;}
  .sim{padding:32px 20px;}
  .commits{padding:50px 20px;}
.final{padding:50px 20px;}
.section.compact{padding:50px 20px;}
footer{padding:50px 20px;}
.kicker{color:var(--ink-1);}
}
@media (max-width: 500px) {
.hero-h1 .accent{display:block;}
.bv-wave .bar{min-height:70px;}
.bcase-metrics{grid-template-columns: repeat(1, 1fr);}
.bcase-roi{width:100%;align-items:flex-start;}
.bcase-metrics strong{font-size:16px;}
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Tour Page */

.page-template-template-tour .section-head{max-width:900px; margin-bottom: 48px;}
 
.page-template-template-tour .final-inner p{    
    font-size: 16px;
    color: var(--ink-2);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 28px;
}
.page-template-template-tour .section-head p{
    font-size: 16px;
    color: var(--ink-2);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 28px;
    max-width:730px;
}

/* Tour Page */

.custom-logo-link .custom-logo{height:35px;width:auto;}

 @media (max-width: 680px) {
    .custom-logo-link .custom-logo{height:30px;width:auto;}
  }
/**footer new changes**/
.foot-contact-links{display:flex;gap:10px;color:#ffffff;align-items:center;}
.foot-contact-links a{color:#00897B;text-decoration:none;}
.foot-contact-group a{color:#00897B;text-decoration:none;}
.foot-contact-group p{gap:5px;display:flex;align-items:center;color:#cfd2dc;font-size:14px;}
.foot-contact-group span{color:#cfd2dc;font-size:14px;}
.foot-social a{color:#cfd2dc;}
.nav-links ul.sub-menu{min-width:230px!important;}
.foot-contact-links span.dot{height:2px;width:2px;background:#cfd2dc;border-radius:50%;color:transparent;}
.foot-contact-group p span.dot{height:2px;width:2px;background:#cfd2dc;border-radius:50%;color:transparent;}
.foot-contact-label{color:#ffffff!important;font-size:12px!important;letter-spacing:0.5px;}

   