/* ======================================================================
   assets/css/style.css — FULL PREMIUM LANDING CSS (mobile-first)
   Matches your index.php structure (hdr/nav/drawer/hero/phoneStage/product/
   quickstart/strategies/security/proof/pricing/faq/access/footer).
   Colorful accents • smooth section blends • diverse visuals • polished UI.
   No external JS libs required. Fonts via Google Fonts @import at top.
   ====================================================================== */

/* ===================== FONTS ===================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap");

/* ===================== TOKENS ===================== */
:root {
  --bg0: #060a0b;
  --bg1: #0a1214;
  --bg2: #0e1a1d;
  --panel: #132327;
  --panel2: #0f1d20;

  --fg: #e9fbff;
  --muted: rgba(233, 251, 255, 0.74);
  --muted2: rgba(233, 251, 255, 0.58);
  --muted3: rgba(233, 251, 255, 0.44);

  --line: rgba(150, 230, 240, 0.14);
  --line2: rgba(150, 230, 240, 0.09);
  --line3: rgba(150, 230, 240, 0.06);


  /* Premium accents */
  --vio: #7c5cff;
  --cyn: #00e5ff;
  --mag: #ff5fd7;
  --amb: #ffb86b;
  --grn: #22ffb3;
  --red: #ff4d6d;

  --vio2: rgba(124, 92, 255, 0.22);
  --cyn2: rgba(0, 229, 255, 0.18);
  --mag2: rgba(255, 95, 215, 0.18);
  --amb2: rgba(255, 184, 107, 0.16);
  --grn2: rgba(34, 255, 179, 0.14);
  --red2: rgba(255, 77, 109, 0.16);

  --radius: 16px;
  --radius2: 20px;
  --radius3: 28px;
  --max: 1140px;
  --pad: 16px;

  --shadow1: 0 14px 40px rgba(0, 0, 0, 0.45);
  --shadow2: 0 34px 90px rgba(0, 0, 0, 0.75);
  --shadow3: 0 60px 150px rgba(0, 0, 0, 0.9);

  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
  --fast: cubic-bezier(0.2, 0.9, 0.35, 1);

  --ring: conic-gradient(
    from 210deg,
    rgba(0, 229, 255, 0.95),
    rgba(124, 92, 255, 0.9),
    rgba(255, 95, 215, 0.8),
    rgba(255, 184, 107, 0.72),
    rgba(34, 255, 179, 0.72),
    rgba(0, 229, 255, 0.95)
  );
}

/* ===================== RESET ===================== */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  color: var(--fg);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(950px 700px at 18% -10%, var(--vio2), transparent 60%),
    radial-gradient(900px 650px at 86% 6%, var(--cyn2), transparent 60%),
    radial-gradient(
      900px 650px at 60% 40%,
      rgba(255, 184, 107, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg1), var(--bg0));
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
::selection {
  background: rgba(0, 229, 255, 0.22);
}
html {
  scroll-behavior: smooth;
}

/* ===================== UTILITIES ===================== */
.shell {
  width: min(var(--max), 100% - (var(--pad) * 2));
  margin: 0 auto;
}
.page {
  position: relative;
}
.mono {
  font-family:
    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}
.muted {
  color: var(--muted2);
}
.fine {
  color: var(--muted3);
  font-size: 12px;
  line-height: 1.55;
}
.h1,
.h2,
.h3 {
  font-family: "Space Grotesk", Inter, system-ui;
  letter-spacing: -0.02em;
}
.h1 {
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.02;
}
.h2 {
  font-size: clamp(26px, 3.8vw, 42px);
  line-height: 1.12;
}
.h3 {
  font-size: 18px;
  line-height: 1.18;
}
.p {
  color: var(--muted);
  line-height: 1.72;
}
.sub {
  color: var(--muted);
  line-height: 1.75;
}
.ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.ul li {
  margin: 4px 0;
}
.ico {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: -4px;
}

/* ===================== SECTION BLENDS ===================== */
.sBlend {
  position: relative;
}
.sBlend::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 64px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 10, 0) 0%,
    rgba(5, 6, 10, 0.45) 55%,
    rgba(5, 6, 10, 0) 100%
  );
  opacity: 0.55;
}
.sBlend::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 74px;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    rgba(5, 6, 10, 0) 0%,
    rgba(5, 6, 10, 0.55) 55%,
    rgba(5, 6, 10, 0) 100%
  );
  opacity: 0.55;
}
.section {
  padding: 92px 0;
  position: relative;
}
.sectionAlt {
  background:
    radial-gradient(
      820px 460px at 16% 10%,
      rgba(124, 92, 255, 0.1),
      transparent 60%
    ),
    radial-gradient(
      820px 460px at 90% 18%,
      rgba(0, 229, 255, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

/* ===================== GLASS / PANELS ===================== */
.glass {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow1);
  backdrop-filter: blur(14px);
}
.card {
  border-radius: var(--radius3);
  padding: 22px;
  background:
    radial-gradient(
      120% 120% at 20% 0%,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02) 50%,
      rgba(255, 255, 255, 0.01)
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow1);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease),
    background 0.22s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow2);
  border-color: rgba(255, 255, 255, 0.14);
}
.card--flat {
  box-shadow: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.02)
  );
}
.card--flat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow1);
}

/* ===================== HEADER + NAV ===================== */
.hdr {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.42);
 
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      120% 120% at 30% 20%,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.05) 55%
    ),
    linear-gradient(135deg, rgba(124, 92, 255, 0.6), rgba(0, 229, 255, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 90px rgba(124, 92, 255, 0.18);
  font-weight: 900;
}
.brand__name {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-family: "Space Grotesk";
}
.nav--desktop {
  display: none;
  gap: 16px;
  align-items: center;
}
.nav__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.74);
  padding: 10px 10px;
  border-radius: 14px;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease),
    border-color 0.2s var(--ease);
  border: 1px solid transparent;
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.08);
}
.hdr__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  transition:
    transform 0.18s var(--ease),
    background 0.18s var(--ease),
    border-color 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    filter 0.18s var(--ease);
  will-change: transform;
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}
.btn--sm {
  padding: 10px 12px;
  border-radius: 13px;
  font-size: 13px;
}
.btn--lg {
  padding: 13px 16px;
  border-radius: 16px;
}
.btn--block {
  width: 100%;
}
.btn--primary {
  border-color: transparent;
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.95),
    rgba(0, 229, 255, 0.7)
  );
  box-shadow: 0 22px 60px rgba(124, 92, 255, 0.25);
}
.btn--primary:hover {
  filter: saturate(1.1) brightness(1.05);
  box-shadow:
    0 26px 80px rgba(0, 229, 255, 0.18),
    0 26px 80px rgba(124, 92, 255, 0.2);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Burger */
.burger {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  transition:
    transform 0.18s var(--ease),
    background 0.18s var(--ease),
    border-color 0.18s var(--ease);
}
.burger:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  margin: 2px 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
}

/* Drawer + Backdrop (FIXED stacking) */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  z-index: 400;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.backdrop.is-open {
  opacity: 1;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  z-index: 500;
  background:
    radial-gradient(
      120% 90% at 20% 0%,
      rgba(124, 92, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      90% 90% at 90% 16%,
      rgba(0, 229, 255, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(10, 12, 22, 0.92), rgba(5, 6, 10, 0.96));
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow3);
  transform: translateX(104%);
  transition: transform 0.38s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  flex-direction: column;
  padding: 18px 18px 20px;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer__close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  transition:
    transform 0.18s var(--ease),
    background 0.18s var(--ease),
    border-color 0.18s var(--ease);
}
.drawer__close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}
.drawer__meta {
  margin: 14px 0 8px;
}
.drawer__text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0 14px;
}
.drawer__link {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
  transition:
    transform 0.18s var(--ease),
    background 0.18s var(--ease),
    border-color 0.18s var(--ease);
}
.drawer__link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.drawer__cta {
  margin-top: auto;
  display: grid;
  gap: 10px;
}
.drawer__fine {
  color: var(--muted3);
  font-size: 12px;
  line-height: 1.6;
}

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
}
.pill--live {
  border-color: rgba(34, 255, 179, 0.18);
  background: rgba(34, 255, 179, 0.06);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot--live {
  background: var(--grn);
  box-shadow: 0 0 0 4px rgba(34, 255, 179, 0.14);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: -10% -10%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(800px) rotateX(55deg) translateY(-10%);
  transform-origin: 50% 0%;
  opacity: 0.35;
}
.hero__blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.45;
}
.hero__blob--a {
  left: -220px;
  top: -220px;
  background: rgba(124, 92, 255, 0.55);
}
.hero__blob--b {
  right: -240px;
  bottom: -220px;
  background: rgba(0, 229, 255, 0.42);
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.hero__inner {
  padding: 26px 0 74px;
  position: relative;
  display: grid;
  gap: 22px;
}
.hero__left {
  display: grid;
  gap: 14px;
}
.kicker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.kicker__chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}
.kicker__chip--soft {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.78);
}
.lead {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}
.grad {
  background: linear-gradient(
    90deg,
    rgba(124, 92, 255, 1),
    rgba(0, 229, 255, 1),
    rgba(255, 95, 215, 0.9)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* KPI row */
.kpiRow {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.kpi {
  border-radius: 20px;
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.kpi__k {
  font-size: 12px;
  color: var(--muted3);
}
.kpi__v {
  font-weight: 800;
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.kpi__m {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 4px;
  line-height: 1.55;
}

/* Trust row */
.trustRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.trust {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

/* ===================== PHONE MOCKUP (hero right) ===================== */
.hero__right {
  display: block;
}
.phoneStage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 10px 0 0;
}
.phone {
  width: min(420px, 100%);
  border-radius: 44px;
  padding: 14px;
  background:
    radial-gradient(
      140% 140% at 20% 10%,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02) 55%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow2);
  position: relative;
}
.phone__top {
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.phone__pill {
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}
.phone__cam {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.phone__screen {
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(
      120% 90% at 20% 0%,
      rgba(124, 92, 255, 0.14),
      transparent 60%
    ),
    radial-gradient(
      120% 90% at 90% 10%,
      rgba(0, 229, 255, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(8, 10, 16, 0.98), rgba(6, 7, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.pHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px 10px;
}
.pHead__left {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pLogo {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.9),
    rgba(0, 229, 255, 0.7)
  );
  box-shadow: 0 14px 40px rgba(124, 92, 255, 0.25);
  font-weight: 900;
}
.pTitle {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.pSub {
  font-size: 12px;
  color: var(--muted3);
  margin-top: 1px;
}
.pBadge {
  font-size: 11px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34, 255, 179, 0.1);
  border: 1px solid rgba(34, 255, 179, 0.22);
  color: rgba(255, 255, 255, 0.9);
}
.pCards {
  padding: 0 12px 14px;
  display: grid;
  gap: 10px;
}
.pCard {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  padding: 12px;
}
.pCard__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.pCard__name {
  font-weight: 850;
  letter-spacing: -0.01em;
}
.pPill {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.pPill--ok {
  background: rgba(34, 255, 179, 0.1);
  border-color: rgba(34, 255, 179, 0.2);
}
.pPill--gold {
  background: rgba(255, 184, 107, 0.1);
  border-color: rgba(255, 184, 107, 0.18);
}
.pCard__row {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
}
.pK {
  color: var(--muted3);
}
.pV {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}
.pV--up {
  color: rgba(34, 255, 179, 0.95);
}
.pV--dn {
  color: rgba(255, 77, 109, 0.95);
}
.pBar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 10px;
}
.pBar__fill {
  display: block;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(124, 92, 255, 1),
    rgba(0, 229, 255, 1)
  );
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25) inset;
}
.pHint {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.45;
}
.pMiniGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.pMini {
  border-radius: 14px;
  padding: 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 2px;
}
.pChart {
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      120% 120% at 10% 0%,
      rgba(255, 95, 215, 0.14),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
}
.pChart__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.pChart__t {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}
.pChart__m {
  font-size: 11px;
  color: var(--muted3);
}
.pChart__foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--muted2);
  font-size: 12px;
}
.pDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.12);
}
.pFeed {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.pFeed__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.84);
}
.pFeed__row:first-child {
  border-top: none;
}
.pTag {
  font-size: 10px;
  font-weight: 900;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.pTag--ok {
  background: rgba(34, 255, 179, 0.1);
  border-color: rgba(34, 255, 179, 0.18);
}
.pTag--warn {
  background: rgba(255, 184, 107, 0.1);
  border-color: rgba(255, 184, 107, 0.18);
}
.pTime {
  color: var(--muted3);
}
.pFeed__row--ok {
  background: linear-gradient(90deg, rgba(34, 255, 179, 0.06), transparent);
}
.pFeed__row--warn {
  background: linear-gradient(90deg, rgba(255, 184, 107, 0.06), transparent);
}

/* Line chart only for first mockup */
.lineChart {
  height: 88px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}
.lineChart canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.lineChart::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 140% at 20% 0%,
      rgba(124, 92, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      120% 140% at 90% 20%,
      rgba(0, 229, 255, 0.14),
      transparent 60%
    );
  pointer-events: none;
  opacity: 0.8;
}

/* Floating cards */
.floatCards {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: min(420px, 100%);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 18px;
  pointer-events: none;
}
.fCard {
  flex: 1;
  border-radius: 18px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}
.fCard__k {
  font-size: 11px;
  color: var(--muted3);
}
.fCard__v {
  font-weight: 900;
  margin-top: 2px;
}
.fCard__m {
  font-size: 11px;
  color: var(--muted2);
  margin-top: 2px;
}

/* ===================== SECTION HEAD ===================== */
.secHead {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.kicker__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ring);
  box-shadow: 0 0 0 5px rgba(124, 92, 255, 0.1);
  display: inline-block;
  margin-right: 8px;
}
.secHead .kicker {
  gap: 10px;
}
.section-kicker {
  font-size: 12px;
  color: var(--muted3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===================== GRIDS ===================== */
.grid {
  display: grid;
  gap: 12px;
}
.grid--cards {
  grid-template-columns: 1fr;
  gap: 12px;
}
.grid--two {
  grid-template-columns: 1fr;
  gap: 12px;
}
.grid--three {
  grid-template-columns: 1fr;
  gap: 12px;
}

/* ===================== PRODUCT WIDE CALL ===================== */
.wideCall {
  margin-top: 14px;
  border-radius: var(--radius3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      140% 120% at 16% 0%,
      rgba(255, 95, 215, 0.14),
      transparent 60%
    ),
    radial-gradient(
      140% 120% at 90% 0%,
      rgba(0, 229, 255, 0.12),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
  padding: 18px;
  display: grid;
  gap: 12px;
}
.wideCall__t {
  font-family: "Space Grotesk";
  letter-spacing: -0.02em;
}
.wideCall__left {
  display: grid;
  gap: 8px;
}
.wideCall__right {
  display: grid;
  gap: 10px;
}
.miniStats {
  display: grid;
  gap: 8px;
}
.miniStat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.miniStat__k {
  font-size: 12px;
  color: var(--muted3);
}
.miniStat__v {
  font-weight: 850;
  color: rgba(255, 255, 255, 0.9);
}

/* ===================== QUICKSTART CODE BOX ===================== */
.codeBox {
  border-radius: var(--radius3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      140% 120% at 18% 0%,
      rgba(124, 92, 255, 0.16),
      transparent 60%
    ),
    radial-gradient(
      140% 120% at 90% 20%,
      rgba(0, 229, 255, 0.12),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
  box-shadow: var(--shadow1);
  overflow: hidden;
}
.codeBox__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}
.dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dots span:nth-child(1) {
  background: rgba(255, 77, 109, 0.95);
}
.dots span:nth-child(2) {
  background: rgba(255, 184, 107, 0.95);
}
.dots span:nth-child(3) {
  background: rgba(34, 255, 179, 0.95);
}
.tabs {
  display: flex;
  gap: 8px;
}
.tab {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  transition:
    background 0.18s var(--ease),
    border-color 0.18s var(--ease),
    transform 0.18s var(--ease);
}
.tab:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}
.tab.is-active {
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.38),
    rgba(0, 229, 255, 0.2)
  );
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}
.copy {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
  transition:
    transform 0.18s var(--ease),
    background 0.18s var(--ease),
    border-color 0.18s var(--ease);
}
.copy:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.code {
  margin: 0;
  padding: 14px 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.14);
  overflow: auto;
}
.codeBox__foot {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}
.bDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.12);
}
.bDot.b2 {
  background: rgba(0, 229, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.12);
}
.bDot.b3 {
  background: rgba(255, 95, 215, 0.95);
  box-shadow: 0 0 0 4px rgba(255, 95, 215, 0.12);
}
.bDot.b4 {
  background: rgba(255, 184, 107, 0.95);
  box-shadow: 0 0 0 4px rgba(255, 184, 107, 0.12);
}

/* ===================== STRATEGIES / MODE TABS ===================== */
.modeTabs {
  display: grid;
  gap: 12px;
}
.modeTabs__bar {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 2px 2px 6px;
  scrollbar-width: none;
}
.modeTabs__bar::-webkit-scrollbar {
  display: none;
}
.mTab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  transition:
    transform 0.18s var(--ease),
    background 0.18s var(--ease),
    border-color 0.18s var(--ease),
    filter 0.18s var(--ease);
}
.mTab:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.mTab.is-active {
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.4),
    rgba(0, 229, 255, 0.18)
  );
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  filter: saturate(1.1);
}
.modeTabs__body {
  display: grid;
  gap: 12px;
}
.modePane {
  display: none;
}
.modePane.is-active {
  display: block;
}
.paneGrid {
  display: grid;
  gap: 12px;
}

/* Ticket visual (varies by mode) */
.ticket {
  border-radius: 22px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      140% 140% at 18% 0%,
      rgba(0, 229, 255, 0.12),
      transparent 60%
    ),
    radial-gradient(
      140% 140% at 90% 0%,
      rgba(255, 95, 215, 0.14),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
}
.ticket__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ticket__row:first-child {
  border-top: none;
}
.tK {
  font-size: 12px;
  color: var(--muted3);
}
.tV {
  font-weight: 850;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}
.tV--up {
  color: rgba(34, 255, 179, 0.95);
}
.tV--dn {
  color: rgba(255, 77, 109, 0.95);
}
.ticket__bar {
  margin-top: 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}
.tBar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 26%;
}
.tBar--sl {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 77, 109, 0.85),
    rgba(255, 77, 109, 0.25)
  );
}
.tBar--entry {
  left: 26%;
  background: linear-gradient(
    90deg,
    rgba(124, 92, 255, 0.75),
    rgba(0, 229, 255, 0.35)
  );
}
.tBar--tp {
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(34, 255, 179, 0.35),
    rgba(34, 255, 179, 0.85)
  );
}
.ticket__meta {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.55;
}

/* Replace other charts with varied visuals */
.sparkCard,
.termCard {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  padding: 14px;
}
.sparkCard__top,
.termCard__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.sparkCard__t,
.termCard__t {
  font-weight: 900;
  font-size: 12px;
}
.sparkCard__m,
.termCard__m {
  font-size: 11px;
  color: var(--muted3);
}
.sparkCard__foot,
.termFoot {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted2);
  font-size: 12px;
  margin-top: 10px;
}

/* Diverse visualization: ring + bar + matrix + pills */

.ringLabel {
  display: grid;
  gap: 6px;
}
.ringLabel b {
  font-family: "Space Grotesk";
  letter-spacing: -0.02em;
}
.ringLabel span {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.55;
}

.metricBars {
  display: grid;
  gap: 10px;
}
.mBar {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}
.mBar__top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}
.mBar__track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 10px;
}
.mBar__fill {
  height: 100%;
  width: 60%;
  display: block;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(124, 92, 255, 1),
    rgba(0, 229, 255, 1)
  );
}
.mBar__fill.is2 {
  width: 78%;
  background: linear-gradient(
    90deg,
    rgba(255, 95, 215, 1),
    rgba(255, 184, 107, 0.9)
  );
}
.mBar__fill.is3 {
  width: 46%;
  background: linear-gradient(
    90deg,
    rgba(34, 255, 179, 1),
    rgba(0, 229, 255, 0.8)
  );
}
.mBar__meta {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.55;
}

.pillGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill2 {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.84);
}
.pill2.v {
  background: rgba(124, 92, 255, 0.1);
  border-color: rgba(124, 92, 255, 0.2);
}
.pill2.c {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.2);
}
.pill2.m {
  background: rgba(255, 95, 215, 0.1);
  border-color: rgba(255, 95, 215, 0.2);
}
.pill2.a {
  background: rgba(255, 184, 107, 0.1);
  border-color: rgba(255, 184, 107, 0.2);
}
.pill2.g {
  background: rgba(34, 255, 179, 0.1);
  border-color: rgba(34, 255, 179, 0.2);
}

/* Feed used in Signal pane */
.feed {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.feed__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.84);
}
.feed__row:first-child {
  border-top: none;
}
.feed__tag {
  font-size: 10px;
  font-weight: 900;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.feed__tag--ok {
  background: rgba(34, 255, 179, 0.1);
  border-color: rgba(34, 255, 179, 0.18);
}
.feed__tag--warn {
  background: rgba(255, 184, 107, 0.1);
  border-color: rgba(255, 184, 107, 0.18);
}
.feed__t {
  color: var(--muted3);
}
.feed__row--ok {
  background: linear-gradient(90deg, rgba(34, 255, 179, 0.06), transparent);
}
.feed__row--warn {
  background: linear-gradient(90deg, rgba(255, 184, 107, 0.06), transparent);
}

/* ===================== SECURITY TABLE ===================== */
.matrixWrap {
  margin-top: 14px;
  border-radius: var(--radius3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  overflow: hidden;
}
.matrix {
  width: 100%;
  border-collapse: collapse;
}
.matrix th,
.matrix td {
  padding: 12px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.84);
}
.matrix thead th {
  border-top: none;
  font-size: 12px;
  color: var(--muted3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.12);
}
.matrix tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ===================== TELEMETRY / PROOF ===================== */
.seoBlock {
  margin-top: 14px;
  border-radius: var(--radius3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      120% 120% at 16% 0%,
      rgba(255, 184, 107, 0.14),
      transparent 60%
    ),
    radial-gradient(
      120% 120% at 90% 0%,
      rgba(124, 92, 255, 0.12),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
  padding: 18px;
}

/* ===================== PRICING ===================== */
.pricing {
  display: grid;
  gap: 12px;
}
.price {
  border-radius: var(--radius3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  padding: 18px;
  box-shadow: var(--shadow1);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease),
    filter 0.22s var(--ease);
  position: relative;
  overflow: hidden;
}
.price:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow2);
  border-color: rgba(255, 255, 255, 0.14);
}
.price__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.price__name {
  font-family: "Space Grotesk";
  font-weight: 900;
  letter-spacing: -0.02em;
}
.price__tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.price__desc {
  margin-top: 8px;
}
.price__cta {
  margin-top: 14px;
}
.price--hot {
  background:
    radial-gradient(
      140% 140% at 20% 0%,
      rgba(124, 92, 255, 0.22),
      transparent 60%
    ),
    radial-gradient(
      140% 140% at 90% 0%,
      rgba(0, 229, 255, 0.14),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
  border-color: rgba(255, 255, 255, 0.14);
}
.price__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 95, 215, 0.1);
  border: 1px solid rgba(255, 95, 215, 0.18);
}

/* ===================== FAQ ===================== */
.faq {
  display: grid;
  gap: 10px;
}
.faq__q {
  width: 100%;
  text-align: left;
  border-radius: var(--radius3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  padding: 14px 14px;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow1);
  transition:
    transform 0.18s var(--ease),
    background 0.18s var(--ease),
    border-color 0.18s var(--ease);
}
.faq__q:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}
.faq__t {
  font-weight: 900;
  letter-spacing: -0.01em;
}
.faq__plus {
  float: right;
  color: var(--muted2);
  font-weight: 900;
}
.faq__a {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  display: none;
}
.faq__q.is-open .faq__a {
  display: block;
}
.faq__q.is-open .faq__plus {
  transform: rotate(45deg);
  display: inline-block;
}

/* ===================== CTA / ACCESS ===================== */
.cta {
  padding: 92px 0;
}
.ctaCard {
  border-radius: var(--radius3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      140% 140% at 12% 0%,
      rgba(255, 95, 215, 0.18),
      transparent 60%
    ),
    radial-gradient(
      140% 140% at 92% 0%,
      rgba(0, 229, 255, 0.14),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
  box-shadow: var(--shadow2);
  padding: 18px;
  display: grid;
  gap: 12px;
}
.ctaPoints {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.ctaPoint {
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
}
.ctaPoint__ic {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(124, 92, 255, 0.55),
    rgba(0, 229, 255, 0.22)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 900;
}
.form {
  display: grid;
  gap: 10px;
}
.lbl {
  font-size: 12px;
  color: var(--muted3);
}
.inp {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 12px;
  color: rgba(255, 255, 255, 0.92);
  outline: none;
  transition:
    border-color 0.18s var(--ease),
    background 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}
.inp:focus {
  border-color: rgba(0, 229, 255, 0.28);
  box-shadow: 0 0 0 5px rgba(0, 229, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.inp--area {
  resize: vertical;
  min-height: 110px;
}

/* ===================== FOOTER ===================== */
.ftr {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}
.ftr__inner {
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted2);
  font-size: 13px;
}
.ftr__links {
  display: flex;
  gap: 12px;
}
.ftr__links a {
  color: var(--muted2);
}
.ftr__links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ===================== REVEAL ANIMATIONS ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ===================== FOCUS / REDUCED MOTION ===================== */
:focus-visible {
  outline: 2px solid rgba(0, 229, 255, 0.55);
  outline-offset: 3px;
  border-radius: 12px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ===================== DESKTOP ENHANCEMENTS ===================== */
@media (min-width: 980px) {
  .nav--desktop {
    display: flex;
  }
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 22px;
    padding: 42px 0 86px;
  }
  .kpiRow {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
  .wideCall {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
  .paneGrid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
  .pricing {
    grid-template-columns: repeat(3, 1fr);
  }
  .ctaCard {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

/* ===================== MOBILE FIRST FIXES ===================== */
@media (max-width: 420px) {
  .btn--lg {
    width: 100%;
  }
  .hero__cta {
    display: grid;
  }
  .floatCards {
    display: none;
  }
  .phone {
    border-radius: 40px;
  }
  .phone__screen {
    border-radius: 30px;
  }
}

/* ===================== SAFE OVERFLOW ===================== */
.code {
  max-width: 100%;
}
.code::-webkit-scrollbar {
  height: 10px;
}
.code::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}
.code::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

/* 1) Burger: visible only on mobile/tablet */
.burger {
  display: inline-flex;
}
.nav--desktop {
  display: none;
}

@media (min-width: 960px) {
  .burger {
    display: none !important;
  }
  .nav--desktop {
    display: flex !important;
  }
}

/* ensure header actions spacing stays correct */
@media (min-width: 960px) {
  .hdr__actions {
    gap: 14px;
  }
}


/* hit-area + alignment */
.burger {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.burger:hover {
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.burger:active {
  transform: translateY(0) scale(0.98);
}

.burger:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(120, 120, 255, 0.18),
    0 18px 44px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* subtle gradient ring */
.burger::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06),
    rgba(120, 120, 255, 0.18)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* lines */
.burger span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  transform-origin: center;
  transition:
    transform 0.22s ease,
    opacity 0.18s ease,
    width 0.22s ease;
}

/* top/middle/bottom */
.burger span:nth-child(1) {
  transform: translateY(-6px);
}
.burger span:nth-child(2) {
  transform: translateY(0);
  width: 16px;
  opacity: 0.9;
}
.burger span:nth-child(3) {
  transform: translateY(6px);
  width: 14px;
  opacity: 0.85;
}

/* "active" state when drawer open: add/remove .is-open via JS (already in main.js patch below) */
.burger.is-open span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
  width: 18px;
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateY(0) scale(0.9);
}
.burger.is-open span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
  width: 18px;
  opacity: 1;
}

/* optional: slightly brighter on very dark backgrounds */
@media (prefers-contrast: more) {
  .burger {
    background: rgba(255, 255, 255, 0.1);
  }
  .burger span {
    background: rgba(255, 255, 255, 0.98);
  }
}
