:root {
  --cyan: #00d4ea;
  --cyan-2: #3b8bff;
  --ink: #1c1c21;
  --paper: #ffffff;
  --muted: #5c5c66;
  --line: #ececec;
  --cream: #f7f7f8;
}

*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

body.vexa-theme {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: clip;
}
h1, h2, h3 {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 0.7rem;
}
.vexa-wrap {
  width: min(1280px, calc(100% - 3rem));
  margin-inline: auto;
}

/* Buttons */
.vexa-btn,
.vexa-theme .vexa-btn,
.vexa-theme .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.45rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #7b6cff, #3b8bff);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(90, 80, 220, 0.18);
  cursor: pointer;
}
.vexa-btn:hover { filter: brightness(1.05); }
.vexa-btn--ghost,
.vexa-theme .vexa-btn--ghost {
  background: #fff !important;
  border: 1.5px solid #d4ccff !important;
  color: #4f46c8 !important;
  box-shadow: none;
}
.vexa-btn--dark,
.vexa-theme .vexa-btn--dark {
  background: linear-gradient(90deg, #7b6cff, #3b8bff) !important;
  color: #fff !important;
}
.vexa-btn-outline,
body.vexa-theme .vexa-btn.vexa-btn-outline {
  background: transparent !important;
  border: 1px solid #d6d6d6;
  color: #111 !important;
  box-shadow: none;
}

/* Header — compact mobile first; desktop extras only from 1024px.
   LiteSpeed UCSS crawls desktop and strips max-width rules, so hiding
   socials / CTA / wordmark must be the default, not a max-width query. */
.vexa-topbar { display: none; }
.vexa-chrome {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.28rem 0.7rem;
  background: #fff;
  border-bottom: 1px solid #f0f0f2;
  color: var(--ink);
  flex-wrap: nowrap;
  overflow: hidden;
}
body.vexa-scrolled .vexa-chrome {
  background: #fff;
  color: var(--ink);
  border-bottom: none;
  box-shadow: 0 8px 24px rgba(28,28,33,0.06);
}
.vexa-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
}
.vexa-logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 6px 16px rgba(59, 139, 255, 0.22);
  background: transparent;
  object-fit: cover;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.vexa-logo:hover .vexa-logo__mark { transform: translateY(-1px); }
.vexa-logo span { display: none; }
.vexa-logo strong {
  display: block;
  font-family: Unbounded, Syne, Inter, sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.02rem;
  font-weight: 800;
  background: linear-gradient(100deg, #123a5c 0%, #3b8bff 55%, #7b6cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vexa-logo small {
  display: block;
  margin-top: 0.12rem;
  letter-spacing: 0.26em;
  font-size: 0.55rem;
  font-weight: 700;
  color: #7b6cff;
  opacity: 0.78;
}
.vexa-nav {
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.vexa-nav a { text-decoration: none; opacity: 0.92; border: 0; box-shadow: none; }
.vexa-nav a:hover,
.vexa-nav a.is-active { color: var(--cyan); opacity: 1; text-decoration: none; border: 0; }
.vexa-drop { position: relative; }
.vexa-drop__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.7rem;
  box-shadow: 0 12px 28px rgba(28,28,33,0.08);
}
body.vexa-scrolled .vexa-drop__menu { background: #fff; border-color: #eee; }
.vexa-drop:hover .vexa-drop__menu { display: grid; }
.vexa-drop__menu a { padding: 0.45rem 0.6rem; border-radius: 0.4rem; }
.vexa-chrome > .vexa-social { display: none; }
.vexa-chrome > a.vexa-btn--header { display: none !important; }
.vexa-chrome .vexa-btn--header {
  padding: 0.62rem 1.1rem;
  font-size: 0.88rem;
  white-space: nowrap;
  flex: 0 0 auto;
}
.vexa-phone {
  display: none;
  color: inherit;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}
.vexa-menu-btn {
  background: transparent;
  border: 1px solid #d8d8de;
  color: inherit;
  border-radius: 0.7rem;
  width: 2.45rem;
  height: 2.45rem;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
  margin-left: auto;
}
.vexa-menu-btn svg { width: 1.35rem; height: 1.35rem; display: block; }
.vexa-drawer > .vexa-menu-btn { margin-left: 0; align-self: flex-end; }
body.vexa-scrolled .vexa-menu-btn { border-color: #ddd; }
@media (min-width: 1024px) {
  .vexa-chrome {
    min-height: 4.4rem;
    padding: 0.55rem 1.4rem;
    gap: 1rem;
    overflow: visible;
  }
  .vexa-logo__mark { width: 44px; height: 44px; border-radius: 12px; }
  .vexa-logo span { display: block; }
  .vexa-nav { display: flex; }
  .vexa-chrome > .vexa-social { display: flex; }
  .vexa-chrome > a.vexa-btn--header { display: inline-flex !important; }
  .vexa-chrome > .vexa-menu-btn { display: none; }
}
@media (min-width: 1180px) {
  .vexa-phone { display: inline; }
}
@media (max-width: 480px) {
  .vexa-chrome { padding: 0.24rem 0.6rem; min-height: 2.95rem; }
}

.vexa-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: #fff;
  color: var(--ink);
  padding: 1rem 1.15rem 1.4rem;
  flex-direction: column;
  gap: 0.55rem;
  isolation: isolate;
}
.vexa-drawer.is-open { display: flex; }
.vexa-drawer a { color: var(--ink); text-decoration: none; font-size: 1.12rem; font-weight: 700; }
.vexa-drawer > .vexa-menu-btn { margin-bottom: 0.4rem; align-self: flex-end; }
.vexa-drawer__social {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eeeef3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.vexa-drawer .vexa-social-pop {
  top: auto;
  bottom: calc(100% + 0.5rem);
  left: 0;
  right: auto;
}

/* Hero — light, uSERP-style */
.vexa-hero-pro,
.vexa-page-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  isolation: isolate;
}
.vexa-hero-pro::before,
.vexa-page-hero::before,
.vexa-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, rgba(0, 212, 234, 0.18), transparent 68%),
    radial-gradient(ellipse 48% 40% at 88% 6%, rgba(124, 92, 255, 0.14), transparent 64%),
    radial-gradient(ellipse 42% 36% at 72% 92%, rgba(59, 139, 255, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.vexa-stat-band::before,
.vexa-founder-band::before,
.vexa-drawer::before { display: none; }
.vexa-hero-pro > .vexa-wrap,
.vexa-page-hero > .vexa-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 1.6rem;
  padding: 5.2rem 0 2.2rem;
}
.vexa-hero-copy { max-width: 46rem; }
.vexa-kicker {
  margin: 0 0 0.7rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.vexa-hero-pro h1,
.vexa-page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.15rem, 5vw, 3.55rem);
  font-weight: 800;
  margin: 0 auto 0.9rem;
  max-width: 24ch;
  overflow-wrap: break-word;
}
.vexa-mark {
  position: relative;
  display: inline;
}
.vexa-hero-pro .lead,
.vexa-page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38rem;
  margin-inline: auto;
}
.vexa-hero-cta,
.vexa-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.vexa-hl {
  background-image: linear-gradient(120deg, rgba(0, 212, 234, 0.42), rgba(124, 92, 255, 0.32));
  background-repeat: no-repeat;
  background-size: 100% 0.42em;
  background-position: 0 88%;
  padding: 0 0.06em;
}
.vexa-scribble {
  width: 42px;
  height: 42px;
  color: #ffe14a;
}
.vexa-crumbs { display: none; }
.vexa-crumbs a { color: var(--cyan); text-decoration: none; }

.vexa-hawk {
  position: relative;
  width: min(18rem, 72vw);
  aspect-ratio: 1;
  margin: 0 auto;
}
.vexa-hawk__ring {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 0;
  background: radial-gradient(circle, rgba(0,212,234,0.16) 0%, transparent 70%);
  box-shadow: none;
  filter: blur(2px);
}
.vexa-hawk__dots,
.vexa-hawk__dots--2 {
  position: absolute;
  border-radius: 50%;
  background-image: radial-gradient(#9adfff 1.15px, transparent 1.4px);
  background-size: 9px 9px;
  opacity: 0.55;
}
.vexa-hawk__dots { width: 42%; height: 42%; top: 4%; right: 2%; }
.vexa-hawk__dots--2 { width: 28%; height: 28%; left: 6%; bottom: 10%; background-image: radial-gradient(#fff 1.1px, transparent 1.35px); }
.vexa-hawk img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  transform: scaleX(-1);
}
@media (max-width: 900px) {
  .vexa-hero-pro > .vexa-wrap,
  .vexa-page-hero > .vexa-wrap { padding: 2.4rem 0 2.2rem; }
  .vexa-hawk { width: min(17rem, 70vw); }
}

body.vexa-inner .vexa-page-hero > .vexa-wrap {
  grid-template-columns: 1fr;
  padding: 3.4rem 0 2.4rem;
}
body.vexa-inner .vexa-page-hero h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); max-width: 16ch; }

/* About hero — crossing-lines graphic on the left, copy on the right */
.vexa-about-hero.vexa-page-hero {
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}
body.vexa-inner .vexa-about-hero > .vexa-wrap {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: start;
  text-align: left;
  gap: 1.6rem;
  padding: 3.4rem 0 3rem;
}
@media (min-width: 900px) {
  body.vexa-inner .vexa-about-hero > .vexa-wrap {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 3rem;
    padding: 4.4rem 0 4rem;
  }
  .vexa-about-hero .vexa-lines { grid-column: 2; grid-row: 1; }
  .vexa-about-hero .vexa-about-hero__copy { grid-column: 1; grid-row: 1; }
}
.vexa-about-hero__copy {
  padding-top: 0.2rem;
  max-width: 42rem;
}
.vexa-mark {
  width: 100%;
  max-width: 34rem;
  margin: 0;
  justify-self: center;
}
.vexa-mark svg { width: 100%; height: auto; }
.vexa-mark__word {
  font-family: Syne, Inter, system-ui, sans-serif;
  font-size: 106px;
  font-weight: 800;
  letter-spacing: 10px;
  animation: vexa-mark-in 0.9s cubic-bezier(0.22, 0.68, 0.32, 1) both;
}
.vexa-mark__ghost {
  font-family: Syne, Inter, system-ui, sans-serif;
  font-size: 106px;
  font-weight: 800;
  letter-spacing: 10px;
  fill: none;
  stroke: #2b3440;
  stroke-opacity: 0.28;
  stroke-width: 1.2;
  animation: vexa-mark-float 7s ease-in-out infinite alternate;
}
.vexa-mark__tag {
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.62em;
  fill: #5c7285;
}
/* dashes travel around the orbit instead of rotating the ellipse, which would squash it */
.vexa-mark__ring { animation: vexa-mark-dash 22s linear infinite; }
.vexa-mark__ring--2 { animation-duration: 30s; animation-direction: reverse; }
@keyframes vexa-mark-dash {
  to { stroke-dashoffset: -560; }
}
@keyframes vexa-mark-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vexa-mark-float {
  to { transform: translate(-7px, -5px); }
}
@media (prefers-reduced-motion: reduce) {
  .vexa-mark__ring,
  .vexa-mark__word,
  .vexa-mark__ghost { animation: none; }
}
.vexa-about-hero h1 {
  color: var(--ink);
  margin: 0 0 0.9rem;
  max-width: 12ch;
}
.vexa-about-hero p {
  color: var(--muted);
  margin-inline: 0;
  max-width: 36rem;
}
.vexa-about-hero .vexa-actions {
  justify-content: flex-start;
}

/* Cyan trust strip */
.vexa-marquee {
  background: var(--cyan);
  color: #041018;
  overflow: hidden;
  padding: 0.85rem 0;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.vexa-marquee ul {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  margin: 0;
  padding: 0 1.2rem;
  white-space: nowrap;
  animation: vexa-slide 28s linear infinite;
}
@keyframes vexa-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.vexa-section { padding: 4.2rem 0; }
.vexa-tight { padding: 3.2rem 0; }
.vexa-kicker--dark { color: #888; }
.vexa-ink { color: inherit; }
.vexa-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.vexa-head h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); max-width: 16ch; }
.vexa-head p { max-width: 32rem; color: var(--muted); }

/* Founder accordion */
.vexa-playbook { display: grid; gap: 1.6rem; }
@media (min-width: 900px) { .vexa-playbook { grid-template-columns: 0.95fr 1.05fr; align-items: start; } }
.vexa-acc { border-top: 1px solid #e7e7e7; }
.vexa-acc details { border-bottom: 1px solid #e7e7e7; }
.vexa-acc summary {
  display: grid;
  grid-template-columns: 3.4rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}
.vexa-acc summary::-webkit-details-marker { display: none; }
.vexa-acc summary img,
.vexa-acc .vexa-ico {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 12%;
  background: #111;
}
.vexa-acc .vexa-ico {
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 1.3rem;
}
.vexa-acc .plus {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--cyan);
  color: #041018;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.vexa-acc details[open] .plus { background: #111; color: #fff; }
.vexa-acc details p {
  margin: 0 0 1.1rem 4.4rem;
  color: var(--muted);
  max-width: 36rem;
}

/* Team */
.vexa-team-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) { .vexa-team-grid { grid-template-columns: repeat(3, 1fr); } }
.vexa-team-card {
  overflow: hidden;
  border-radius: 1.1rem;
  background: #eaf5fb;
  border: 1px solid #d8ecf6;
  color: var(--ink);
}
.vexa-team-card img {
  width: 100%; height: 22rem;
  object-fit: cover; object-position: center 10%;
  background: #eaf5fb;
}
.vexa-team-card div { padding: 1rem 1.1rem 1.2rem; }
.vexa-team-card h3 { margin: 0 0 0.2rem; font-size: 1.2rem; }
.vexa-team-card p { margin: 0 0 0.7rem; color: #5c7285; font-size: 0.9rem; }
.vexa-team-card a { color: #0e6b7a; font-weight: 700; text-decoration: none; }

/* About: who we are + what we provide */
.vexa-who__grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 940px) {
  .vexa-who__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 3rem; }
}
.vexa-who__copy h2 { margin: 0 0 1rem; font-size: clamp(1.7rem, 3.2vw, 2.4rem); max-width: 24ch; }
.vexa-who__copy p { margin: 0 0 0.9rem; color: var(--muted); max-width: 46rem; }
.vexa-who__copy .vexa-actions { margin-top: 0.6rem; justify-content: flex-start; }
.vexa-who__facts {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 560px) { .vexa-who__facts { grid-template-columns: 1fr 1fr; } }
.vexa-who__facts li {
  padding: 1.15rem 1.2rem;
  border-radius: 1.1rem;
  background: #eaf5fb;
  border: 1px solid #d8ecf6;
}
.vexa-who__facts b {
  display: block;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  color: #123a5c;
}
.vexa-who__facts span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: #5c7285;
}
.vexa-provide { background: var(--cream); }
.vexa-why__grid { display: grid; gap: 1rem; }
@media (min-width: 720px) { .vexa-why__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .vexa-why__grid { grid-template-columns: repeat(3, 1fr); } }
.vexa-why__card {
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 1.3rem;
  background: #fff;
  border: 1px solid #d8ecf6;
  box-shadow: 0 10px 24px rgba(18, 58, 92, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.vexa-why__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(18, 58, 92, 0.1);
}
.vexa-why__num {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}
.vexa-why__card h3 { margin: 0 0 0.45rem; font-size: 1.1rem; }
.vexa-why__card p { margin: 0; color: #5c7285; font-size: 0.95rem; line-height: 1.55; }
.vexa-team-title {
  display: inline-block;
  margin: 0;
  font-family: Syne, Inter, system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Services */
.vexa-svc-board { background: #f6f5fb; }
.vexa-svc3 { display: grid; gap: 1.45rem; }
@media (min-width: 860px) { .vexa-svc3 { grid-template-columns: 1fr 1fr; } }
.vexa-svc {
  overflow: hidden;
  border-radius: 1.4rem;
  background: #fff;
  border: 1px solid #ddd6ee;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(40, 32, 80, 0.08);
}
.vexa-svc__shot {
  margin: 0.85rem 0.85rem 0;
  padding: 0.72rem 0.62rem 0.58rem;
  background: linear-gradient(180deg, #f7f5fd 0%, #efeaf8 100%);
  border: 1px solid #d4cce6;
  border-radius: 1.05rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.vexa-svc__shot::before {
  content: "";
  display: block;
  width: 2.35rem;
  height: 0.42rem;
  margin: 0 0 0.55rem 0.12rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 5px 50%, #ff7a7a 3.4px, transparent 3.7px),
    radial-gradient(circle at 16px 50%, #ffd166 3.4px, transparent 3.7px),
    radial-gradient(circle at 27px 50%, #62d48a 3.4px, transparent 3.7px);
}
.vexa-svc__shot img,
.vexa-svc img {
  width: 100%;
  height: 12.4rem;
  object-fit: cover;
  object-position: top center;
  border-radius: 0.58rem;
  border: 1px solid #cfc6e4;
  box-shadow: 0 10px 22px rgba(40, 30, 80, 0.1);
  background: #fff;
}
.vexa-svc__body,
.vexa-svc div {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}
.vexa-svc h2,
.vexa-svc h3 {
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1c1c21;
  margin: 0;
}
.vexa-svc p {
  margin: 0;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.62;
  color: #5c5c66;
}
.vexa-svc p span {
  display: block;
  margin-bottom: 0.28rem;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #5b54c8;
}
.vexa-svc a {
  margin-top: auto;
  padding-top: 0.15rem;
  color: #4f46c8;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-decoration: none;
}
.vexa-svc a:hover { color: #3b8bff; }

.vexa-svc-hawk { background: #fff; }
.vexa-svc-hawk__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.4rem;
}
.vexa-svc-hawk__head h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  max-width: 18ch;
  margin: 0 auto 0.85rem;
  letter-spacing: -0.04em;
}
.vexa-svc-hawk__head p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
}
.vexa-und {
  position: relative;
  display: inline-block;
}
.vexa-und::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12em;
  height: 0.38em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M1 8c18-5 36 5 54 0S92 2 119 7' fill='none' stroke='%2300d4ea' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  pointer-events: none;
}
.vexa-svc-hawk__grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 700px) { .vexa-svc-hawk__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .vexa-svc-hawk__grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.vexa-svc-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.45rem 1.35rem 1.55rem;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 1.4rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 28px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vexa-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.07);
}
.vexa-svc-card h3 {
  margin: 0;
  font-size: 1.2rem;
}
.vexa-svc-card p {
  margin: 0;
  color: #5b5b5b;
  font-size: 0.98rem;
  line-height: 1.55;
}
.vexa-svc-ico {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #8be9ff 0%, #7a6cff 100%);
  color: #111;
  flex: 0 0 auto;
}
.vexa-svc-ico svg { width: 1.35rem; height: 1.35rem; }

/* Stats */
.vexa-stat-band {
  background: #f7fbff;
  color: var(--ink);
  padding: 3.2rem 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid #e8f4f8;
  border-bottom: 1px solid #e8f4f8;
}
.vexa-stat-band > *,
.vexa-founder-band > *,
.vexa-site-footer > *,
.vexa-drawer > * {
  position: relative;
  z-index: 1;
}
.vexa-stat-band .vexa-wrap {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 800px) { .vexa-stat-band .vexa-wrap { grid-template-columns: repeat(4, 1fr); } }
.vexa-stat-band b {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cyan);
  letter-spacing: -0.04em;
}
.vexa-stat-band span { color: var(--muted); }

/* FAQ */
.vexa-qa { display: grid; gap: 0.7rem; }
@media (min-width: 900px) { .vexa-qa { grid-template-columns: 1fr 1fr; } }
.vexa-qa details {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.05rem 1.15rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(28, 28, 33, 0.045);
}
.vexa-faq-list {
  max-width: 70rem;
  margin: 0 auto;
}
.vexa-qa summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.vexa-qa summary::-webkit-details-marker { display: none; }
.vexa-qa summary::after { content: "+"; color: var(--cyan); }
.vexa-qa details[open] summary::after { content: "–"; }
.vexa-qa p { margin: 0.7rem 0 0; color: var(--muted); }

/* Dark CTA / contact */
.vexa-cta-pro,
.vexa-dark-band {
  background: #f7fbff;
  color: var(--ink);
  padding: 3.4rem 0;
}
.vexa-cta-pro h2,
.vexa-dark-band h2 { color: var(--ink); }
.vexa-cta-pro p,
.vexa-dark-band p { color: var(--muted); }
.vexa-form { display: grid; gap: 0.7rem; }
.vexa-form label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; }
body.vexa-theme .vexa-form input,
body.vexa-theme .vexa-form select,
body.vexa-theme .vexa-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #ddd;
  border-radius: 0.7rem;
  background: #fff;
  color: #111;
}
.vexa-contact-grid { display: grid; gap: 1.4rem; }
@media (min-width: 960px) { .vexa-contact-grid { grid-template-columns: 1.1fr 0.9fr; } }
.vexa-contact-card {
  padding: 1.4rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
}
.vexa-contact-people { display: grid; gap: 0.6rem; margin-top: 0.8rem; }
.vexa-enquiries {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.vexa-enquiries .vexa-kicker { margin-bottom: 0.45rem; }
.vexa-enquiries ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.vexa-enquiries a {
  color: #3b8bff;
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}
.vexa-enquiries a:hover { text-decoration: underline; }
.vexa-teammate {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fff;
}
.vexa-teammate:hover { border-color: var(--cyan); }

/* Pricing packages — Shumaila style */
.vexa-price-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 860px) { .vexa-price-grid { grid-template-columns: repeat(3, 1fr); } }
.vexa-price {
  padding: 1.4rem 1.3rem 1.5rem;
  border-radius: 1.2rem;
  background: #10141c;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.vexa-price h3 { margin: 0; }
.vexa-price p { margin: 0; color: rgba(255,255,255,0.65); }
.vexa-price strong { color: var(--cyan); font-size: 1.7rem; letter-spacing: -0.03em; }
.vexa-price ul { margin: 0.4rem 0 0.8rem; padding: 0 0 0 1.1rem; color: rgba(255,255,255,0.78); }
.vexa-price .vexa-btn { margin-top: auto; }
.vexa-price.is-feat {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 18px 40px rgba(0,212,234,0.18);
  position: relative;
}
.vexa-price.is-feat::before {
  content: "Popular";
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: var(--cyan);
  color: #041018;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
}

body.vexa-pricing {
  background: #fff;
  color: var(--ink);
}
body.vexa-pricing .vexa-section { color: #111; }
body.vexa-pricing .vexa-head p,
body.vexa-pricing .vexa-qa p { color: var(--muted); }
body.vexa-pricing .vexa-qa details {
  background: #fff;
  border-color: var(--line);
}
body.vexa-pricing .vexa-qa summary { color: #111; }

/* Sheet */
.vexa-sheet-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}
.vexa-sheet-tabs button {
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 0.82rem;
}
.vexa-sheet-tabs button.is-on,
.vexa-sheet-tabs button:hover {
  background: var(--cyan);
  color: #041018;
  border-color: var(--cyan);
}
.vexa-sheet-tools {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 800px) { .vexa-sheet-tools { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.vexa-sheet-tools label,
.vexa-sheet-meta { font-size: 0.75rem; letter-spacing: 0.04em; color: #555; }
.vexa-sheet-tools input,
.vexa-sheet-tools select {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.55rem;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
}
.vexa-sheet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin: 0.5rem 0 0.8rem;
}
.vexa-site-table-wrap {
  overflow: auto;
  border-radius: 1rem;
  border: 1px solid #e8e8e8;
  background: #fff;
}
.vexa-site-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.vexa-site-table th {
  text-align: left;
  background: #f4f6f7;
  color: #111;
  padding: 0.75rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vexa-site-table td {
  padding: 0.85rem 0.85rem;
  border-top: 1px solid #eee;
  background: #fff;
  color: #222;
  vertical-align: middle;
}
.vexa-site-table .domain { font-weight: 800; }
.vexa-site-table .price { color: var(--cyan); font-weight: 800; white-space: nowrap; }
.vexa-site-table a { color: inherit; font-weight: 800; text-decoration: none; }
.vexa-pager { display: flex; gap: 0.6rem; align-items: center; margin-top: 0.9rem; }
.vexa-pager button {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  cursor: pointer;
}

/* Case / mini */
.vexa-mini-cases { display: grid; gap: 1rem; }
@media (min-width: 860px) { .vexa-mini-cases { grid-template-columns: repeat(3, 1fr); } }
.vexa-mini-case, .vexa-cs, .vexa-work-card, .vexa-blog-card, .vexa-card {
  overflow: hidden;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
}
.vexa-mini-case img, .vexa-cs img { width: 100%; height: 9.5rem; object-fit: cover; }
.vexa-mini-case div, .vexa-cs div { padding: 1rem 1.1rem 1.2rem; }
.vexa-check { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.vexa-check li { padding-left: 1.4rem; position: relative; }
.vexa-check li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35rem;
  width: 0.7rem; height: 0.7rem;
  border-radius: 50%;
  background: var(--cyan);
}
.vexa-steps { list-style: none; padding: 0; display: grid; gap: 1rem; }
@media (min-width: 800px) { .vexa-steps { grid-template-columns: repeat(4, 1fr); } }
.vexa-steps span { display: block; color: var(--cyan); font-weight: 800; margin-bottom: 0.4rem; }

.vexa-people { display: grid; gap: 1rem; }
@media (min-width: 800px) { .vexa-people { grid-template-columns: 1fr 1fr 1fr; } }
.vexa-person {
  overflow: hidden;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
}
.vexa-person img { width: 100%; height: 16rem; object-fit: cover; object-position: center 10%; }
.vexa-person div { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; }
.vexa-role { color: var(--cyan) !important; font-weight: 700; font-size: 0.88rem; }
.vexa-team-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.vexa-team-links a { color: #111; font-weight: 700; text-decoration: none; }
.vexa-founder-band .vexa-team-links a { color: var(--cyan); }
.vexa-founder-band {
  background: #f7fbff;
  color: var(--ink);
  padding: 5.5rem 0 3.2rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.vexa-founder-band .vexa-wrap {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}
@media (min-width: 860px) { .vexa-founder-band .vexa-wrap { grid-template-columns: 16rem 1fr; } }
.vexa-founder-band img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 1.1rem;
}
.vexa-split { display: grid; gap: 1.4rem; }
@media (min-width: 900px) { .vexa-split { grid-template-columns: 1.1fr 0.9fr; align-items: center; } }
.vexa-stat-cards { display: grid; gap: 0.7rem; margin-top: 1rem; }
@media (min-width: 600px) { .vexa-stat-cards { grid-template-columns: repeat(3, 1fr); } }
.vexa-stat-cards div { padding: 0.9rem; border: 1px solid var(--line); border-radius: 0.9rem; }
.vexa-stat-cards b { display: block; font-size: 1.4rem; color: var(--cyan); }

/* Footer */
.vexa-site-footer {
  background: #fff;
  color: var(--muted);
  padding: 2.6rem 0 1.2rem;
  border-top: 1px solid #ececf0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.vexa-foot-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: none;
}
.vexa-foot-cta h2 { color: var(--ink); margin: 0; font-size: clamp(1.3rem, 2vw, 1.7rem); }
.vexa-foot-cta p { display: none; }
.vexa-foot-cta .vexa-kicker, .vexa-foot-cta .vexa-eyebrow { color: var(--cyan); margin: 0 0 0.25rem; }
.vexa-foot-cta__act { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.vexa-foot-main { display: grid; gap: 1.6rem; padding-bottom: 1.4rem; }
@media (min-width: 860px) { .vexa-foot-main { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.vexa-foot-logo { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--ink); margin-bottom: 0.7rem; }
.vexa-foot-logo .vexa-logo__mark { width: 44px; height: 44px; border-radius: 12px; box-shadow: 0 6px 16px rgba(59, 139, 255, 0.18); background: transparent; object-fit: cover; }
.vexa-foot-logo strong {
  font-family: Unbounded, Syne, Inter, sans-serif;
  display: block;
  font-family: Syne, Inter, sans-serif;
  letter-spacing: 0.14em;
  background: linear-gradient(100deg, #123a5c 0%, #3b8bff 55%, #7b6cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vexa-foot-logo small { display: block; font-size: 0.55rem; letter-spacing: 0.22em; color: #7b6cff; opacity: 0.78; }
.vexa-foot-col h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c1c21;
  font-weight: 800;
  margin: 0 0 0.75rem;
}
.vexa-foot-col ul, .vexa-foot-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.vexa-foot-col a, .vexa-site-footer a { text-decoration: none; }
.vexa-foot-col a:hover, .vexa-site-footer a:hover { color: var(--cyan); }
.vexa-foot-wa { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.7rem; }
.vexa-foot-wa a { color: var(--cyan); font-weight: 700; font-size: 0.85rem; }
.vexa-foot-strip { display: none; }
.vexa-foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid #ececf0;
  font-size: 0.78rem;
  color: #8a8a94;
}
.vexa-foot-bottom nav { display: flex; gap: 1rem; }
.vexa-foot-bottom a[href*="shumailaasghar.com"] {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Widgets — WhatsApp only */
.vexa-dock { position: fixed; right: 1rem; bottom: 1rem; z-index: 200; display: grid; gap: 0.45rem; }
.vexa-fab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem 0.55rem 0.65rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
  color: #041018;
  font-weight: 800;
  cursor: pointer;
}
.vexa-pop {
  display: none;
  position: fixed; right: 1rem; bottom: 5.2rem; z-index: 201;
  width: min(22rem, calc(100vw - 1.6rem));
  background: #fff; color: #111; border-radius: 1.1rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  overflow: hidden;
}
.vexa-pop[data-open="true"] { display: block; }
.vexa-pop__head {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  padding: 0.8rem 1rem; background: #050505; color: #fff;
}
.vexa-pop__head span { display: block; font-size: 0.75rem; opacity: 0.7; font-weight: 400; }
.vexa-pop__close {
  background: transparent; border: 0; color: #fff; font-size: 1.4rem; cursor: pointer; line-height: 1;
}
.vexa-pop__body { padding: 0.85rem 1rem 1rem; }
.vexa-wa-list { display: grid; gap: 0.5rem; }
.vexa-wa-list a {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.45rem; border-radius: 0.8rem; text-decoration: none; color: #111;
  border: 1px solid #eee;
}
.vexa-wa-list img {
  width: 2.6rem; height: 2.6rem; border-radius: 50%; object-fit: cover; object-position: center 18%;
}
.vexa-wa-list small { display: block; color: #666; font-weight: 500; }
.vexa-pop__note { margin: 0.8rem 0 0; font-size: 0.78rem; color: #666; }

.vexa-bento { display: grid; gap: 1rem; }
@media (min-width: 900px) {
  .vexa-bento { grid-template-columns: 1.15fr 1fr; }
  .vexa-tile--lead { grid-row: span 2; }
}
.vexa-tile {
  overflow: hidden; border-radius: 1.15rem; background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.vexa-tile img { width: 100%; height: 11rem; object-fit: cover; }
.vexa-tile div { padding: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.vexa-tile__no { color: var(--cyan); font-weight: 800; letter-spacing: 0.16em; font-size: 0.78rem; }
.vexa-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; list-style: none; margin: 1.1rem 0 0; padding: 0; }
.vexa-pills { justify-content: center; }
.vexa-pills li {
  padding: 0.4rem 0.8rem;
  border: 1px solid #e8e8ee;
  background: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #4a4a52;
}
.vexa-edu, .vexa-crit { display: grid; gap: 1rem; }
@media (min-width: 800px) { .vexa-edu, .vexa-crit { grid-template-columns: 1fr 1fr; } }
.vexa-edu article, .vexa-crit article {
  padding: 1.1rem; border: 1px solid var(--line); border-radius: 1rem; background: #fff;
}
.vexa-badge { display: none; }
.vexa-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--cyan);
  margin: 0 0 0.45rem;
}

/* Header social icons */
.vexa-social { position: relative; display: flex; align-items: center; gap: 0.4rem; }
.vexa-ico-btn {
  width: 2.35rem; height: 2.35rem; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid #e4e4ea;
  background: transparent; color: var(--ink); cursor: pointer; padding: 0;
}
.vexa-chrome [data-social="wa"] { color: #25D366; border-color: #b6ebc8; }
.vexa-chrome [data-social="fb"] { color: #1877F2; border-color: #b7d0f8; }
.vexa-chrome [data-social="in"] { color: #0A66C2; border-color: #b3d0ea; }
body.vexa-scrolled .vexa-ico-btn { border-color: #ddd; }
body.vexa-scrolled .vexa-chrome [data-social="wa"] { color: #25D366; }
body.vexa-scrolled .vexa-chrome [data-social="fb"] { color: #1877F2; }
body.vexa-scrolled .vexa-chrome [data-social="in"] { color: #0A66C2; }
.vexa-site-footer .vexa-foot-social { display: none !important; }
.vexa-ico-btn svg { width: 1.05rem; height: 1.05rem; display: block; }
.vexa-social-pop {
  display: none;
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  width: min(18rem, calc(100vw - 2rem));
  background: #fff;
  color: #111;
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  padding: 0.55rem;
  z-index: 90;
}
.vexa-social-pop.is-open { display: grid; gap: 0.4rem; }
.vexa-social-pop a {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.45rem 0.5rem; border-radius: 0.75rem; text-decoration: none; color: #111;
}
.vexa-social-pop a:hover { background: #f4f4f4; }
.vexa-social-pop img {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; object-fit: cover; object-position: center 18%;
}
.vexa-social-pop small { display: block; color: #666; font-weight: 500; }

/* StudioHawk-style team slider */
.vexa-meet {
  background: #fff;
  color: #111;
  padding: 4.4rem 0;
}
.vexa-meet h2 { color: #111; font-size: clamp(1.8rem, 3.4vw, 2.8rem); max-width: 12ch; }
.vexa-meet p { color: var(--muted); max-width: 32rem; }
.vexa-meet__grid { display: grid; gap: 2rem; }
@media (min-width: 960px) {
  .vexa-meet__grid { grid-template-columns: 0.85fr 1.15fr; align-items: center; }
}
.vexa-slider { display: flex; align-items: center; gap: 0.45rem; }
.vexa-slider__btn {
  flex: 0 0 auto;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 0; background: var(--cyan); color: #041018;
  font-size: 1.2rem; font-weight: 800; cursor: pointer;
}
.vexa-slider__track {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 0.55rem; flex: 1; min-height: 24rem; overflow: hidden;
}
.vexa-slide {
  position: relative;
  flex: 0 0 27%;
  border-radius: 1.15rem;
  overflow: hidden;
  opacity: 0.5;
  transform: scale(0.86) translateY(0.6rem);
  transition: transform 0.25s ease, opacity 0.25s ease, flex-basis 0.25s ease;
  background: #eee;
}
.vexa-slide.is-focus {
  flex-basis: 42%;
  opacity: 1;
  transform: scale(1.06) translateY(0);
  z-index: 2;
}
.vexa-slide img {
  width: 100%; height: 24rem; object-fit: cover; object-position: center 18%;
}
.vexa-slide.is-focus img { height: 27rem; object-position: center 16%; }
.vexa-slide figcaption {
  position: absolute; left: 0.55rem; right: 0.55rem; bottom: 0.55rem;
  background: #fff; color: #111; border-radius: 1rem;
  padding: 0.55rem 0.7rem 0.6rem; font-size: 0.78rem; font-weight: 800;
  border: 0; box-shadow: none;
  text-align: center;
}
.vexa-slide figcaption small { display: block; font-weight: 600; color: #5b5b5b; margin-bottom: 0.35rem; }
/* narrow screens: side slides turn into unreadable slivers, so show one card at a time */
@media (max-width: 760px) {
  .vexa-slider { gap: 0.4rem; }
  .vexa-slider__track { min-height: 0; gap: 0; }
  .vexa-slide { display: none; }
  .vexa-slide.is-focus {
    display: block;
    flex: 0 0 100%;
    max-width: 22rem;
    margin: 0 auto;
    opacity: 1;
    transform: none;
  }
  .vexa-slide.is-focus img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-position: center 20%;
  }
}

/* Long service articles */
.vexa-article { max-width: 46rem; }
.vexa-article h2 { margin: 2.2rem 0 0.7rem; font-size: 1.55rem; }
.vexa-article p, .vexa-article li { color: #3d3d3d; font-size: 1.05rem; line-height: 1.7; }
.vexa-article ul, .vexa-article ol { padding-left: 1.2rem; }

/* Blog index + posts */
.vexa-blog-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 760px) {
  .vexa-blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1080px) {
  .vexa-blog-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.vexa-blog-feature {
  display: grid;
  gap: 1.2rem;
  margin: 0 0 1.6rem;
  padding: 1.5rem 1.5rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(28, 28, 33, 0.04);
}
@media (min-width: 860px) {
  .vexa-blog-feature {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding: 1.8rem 2rem;
  }
}
.vexa-blog-feature__kicker {
  margin: 0 0 0.45rem;
  color: #7b6cff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.vexa-blog-feature h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  max-width: 18ch;
}
.vexa-blog-feature p { margin: 0 0 1rem; color: var(--muted); max-width: 42rem; }
.vexa-blog-feature__meta { margin: 0; font-size: 0.82rem; color: #7a7a84; font-weight: 600; }
.vexa-blog-empty {
  margin: 0;
  padding: 1.4rem 1.5rem;
  border: 1px dashed var(--line);
  border-radius: 1rem;
  color: var(--muted);
}
.vexa-blog-feature img,
.vexa-blog-card img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  border-radius: 0.9rem;
}
.vexa-blog-card img { height: 8.5rem; margin: 0 0 0.85rem; }
.vexa-pager a,
.vexa-pager span {
  display: inline-flex;
  min-width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  text-decoration: none;
  font-weight: 700;
  color: inherit;
}
.vexa-pager .current { background: #3b8bff; color: #fff; }
.vexa-blog-card {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.25rem 1.3rem;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
a.vexa-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(59, 139, 255, 0.1);
}
.vexa-blog-card__tag {
  margin: 0 0 0.5rem;
  color: #7b6cff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.vexa-blog-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.vexa-blog-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}
.vexa-blog-card span {
  font-size: 0.86rem;
  font-weight: 800;
  color: #3b8bff;
}
.vexa-post { max-width: 46rem; margin-inline: auto; }
.vexa-post__meta {
  margin: 0 0 1.4rem;
  color: #7a7a84;
  font-size: 0.88rem;
  font-weight: 600;
}
.vexa-post__hero {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 0 0 1.6rem;
}
.vexa-post h2, .vexa-post__body h2 { margin: 2.1rem 0 0.65rem; font-size: 1.45rem; }
.vexa-post h3, .vexa-post__body h3 { margin: 1.6rem 0 0.5rem; font-size: 1.2rem; }
.vexa-post p, .vexa-post li { color: #3d3d3d; font-size: 1.05rem; line-height: 1.7; }
.vexa-post ul, .vexa-post ol { padding-left: 1.2rem; }
.vexa-post__body a { color: #3b8bff; }
.vexa-post__body img,
.vexa-post__body .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}
.vexa-post__body .wp-block-quote {
  margin: 1.4rem 0;
  padding: 0.2rem 0 0.2rem 1rem;
  border-left: 3px solid #3b8bff;
  color: var(--muted);
}
.vexa-post__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.2rem;
}
.vexa-post__more {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.vexa-post__more h2 { margin: 0 0 0.85rem; font-size: 1.15rem; }
.vexa-post__more ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.vexa-post__more a { font-weight: 700; text-decoration: none; color: #3b8bff; }
.vexa-hero-art-inline {
  width: min(100%, 36rem); border-radius: 1.2rem; margin: 0 0 1.6rem;
  height: 14rem; object-fit: cover;
}

/* Pricing page */
body.vexa-pricing {
  background: #fff;
  color: var(--ink);
}
body.vexa-pricing .vexa-head p { color: var(--muted); }

.vexa-price-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff;
  padding: 3.6rem 0 3.2rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.vexa-price-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, rgba(0, 212, 234, 0.18), transparent 68%),
    radial-gradient(ellipse 48% 40% at 88% 6%, rgba(124, 92, 255, 0.14), transparent 64%),
    radial-gradient(ellipse 42% 36% at 72% 92%, rgba(59, 139, 255, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.vexa-price-hero {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 960px) {
  .vexa-price-hero { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
}
.vexa-price-intro h1 {
  color: var(--ink);
  font-size: clamp(2.05rem, 4.4vw, 3.35rem);
  max-width: 16ch;
  margin: 0 0 0.85rem;
}
.vexa-price-hero__copy > p {
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.06rem;
  margin: 0;
}
.vexa-price-hero__copy .vexa-actions { justify-content: flex-start; }
.vexa-price-hero__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.vexa-price-hero__facts li {
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #e2ecf3;
  box-shadow: 0 10px 28px rgba(16, 44, 62, 0.05);
}
.vexa-price-hero__facts b {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: #123a5c;
}
.vexa-price-hero__facts span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: #5c7285;
}

.vexa-price-how { background: var(--cream); }
.vexa-price-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 860px) {
  .vexa-price-steps { grid-template-columns: repeat(4, 1fr); }
}
.vexa-price-steps li {
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
}
.vexa-price-steps b {
  display: block;
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.55rem;
}
.vexa-price-steps h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.vexa-price-steps p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.vexa-sites-cat { background: #fff; }
.vexa-sheet-board {
  padding: 1.4rem 1.2rem 1.35rem;
  border-radius: 1.4rem;
  background: #fff;
  border: 1px solid #e2ecf3;
  box-shadow: 0 18px 44px rgba(16, 44, 62, 0.07);
}
@media (min-width: 800px) {
  .vexa-sheet-board { padding: 1.7rem 1.6rem 1.55rem; }
}
.vexa-sheet-board__head { margin-bottom: 1.25rem; }
.vexa-sheet-board__head h2 { margin: 0 0 0.4rem; }
.vexa-sheet-board__head p { margin: 0; color: var(--muted); max-width: 40rem; }

.vexa-sheet-embed {
  border: 1px solid #c5d4dc;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px #eef4f7;
}
.vexa-sheet-embed__chrome {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.65rem 0.85rem;
  background: #0f3d48;
  color: #fff;
}
.vexa-sheet-embed__file {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
}
.vexa-sheet-embed__file span {
  width: 1.15rem; height: 1.15rem; border-radius: 0.2rem;
  background: linear-gradient(180deg, #21a366, #107c41);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}
.vexa-sheet-embed__find {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b7d4dc;
}
.vexa-sheet-embed__find input {
  min-width: min(18rem, 70vw);
  padding: 0.45rem 0.7rem;
  border: 0;
  border-radius: 0.45rem;
  background: #fff;
  color: var(--ink);
}
.vexa-sheet-embed__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.8rem;
  align-items: end;
  padding: 0.7rem 0.85rem;
  background: #f4f8fa;
  border-bottom: 1px solid #dce8ee;
}
.vexa-sheet-embed__tools label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5c7285;
  margin-bottom: 0.2rem;
}
.vexa-sheet-embed__tools select,
.vexa-sheet-embed__tools input {
  min-width: 8.5rem;
  padding: 0.42rem 0.5rem;
  border: 1px solid #cfdce3;
  border-radius: 0.4rem;
  background: #fff;
}
.vexa-sheet-embed__reset {
  padding: 0.48rem 0.85rem;
  border: 1px solid #cfdce3;
  border-radius: 0.4rem;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}
.vexa-sheet-embed__meta {
  margin: 0 0 0 auto;
  font-size: 0.78rem;
  color: #5c7285;
}
.vexa-sheet-embed__grid {
  overflow: auto;
  height: min(78vh, 56rem);
  background: #fff;
}
.vexa-sheet-embed__table {
  width: max(100%, 78rem);
  border-collapse: collapse;
  font-size: 0.82rem;
}
.vexa-sheet-embed__table th {
  position: sticky;
  top: 0;
  z-index: 1;
  text-align: left;
  background: #107c41;
  color: #fff;
  padding: 0.55rem 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
}
.vexa-sheet-embed__table td {
  padding: 0.48rem 0.6rem;
  border-bottom: 1px solid #e6eef2;
  border-right: 1px solid #f0f4f6;
  color: #1d3238;
  white-space: nowrap;
  max-width: 16rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vexa-sheet-embed__table tbody tr.even td { background: #f6fbf8; }
.vexa-sheet-embed__table tbody tr:hover td { background: #e8f6ee; }
.vexa-sheet-embed__table tbody tr.vs-pad td {
  padding: 0;
  border: 0;
  line-height: 0;
  background: transparent;
}
.vexa-sheet-embed__table .num {
  width: 2.4rem;
  color: #6a7f8d;
  background: #f3f6f7;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.vexa-sheet-embed__table th.num { background: #0d6a38; color: #d7f0e2; }
.vexa-sheet-embed__table .domain { font-weight: 800; color: #0f3d48; }
.vexa-sheet-embed__table .price { font-weight: 800; color: #0b6b3a; }
.vexa-sheet-embed__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.25rem 0.4rem 0.35rem;
  background: #eef3f5;
  border-top: 1px solid #d5e0e6;
}
.vexa-sheet-embed__tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0;
  max-width: 100%;
}
.vexa-sheet-embed__tabs button {
  flex: 0 0 auto;
  padding: 0.42rem 0.75rem;
  border: 1px solid transparent;
  border-bottom: 0;
  background: transparent;
  color: #3d5460;
  font-size: 0.78rem;
  cursor: pointer;
  border-radius: 0.45rem 0.45rem 0 0;
}
.vexa-sheet-embed__tabs button.is-on {
  background: #fff;
  border-color: #c5d4dc;
  color: #107c41;
  font-weight: 800;
}
.vexa-sheet-embed .vexa-pager { margin: 0; }
.vexa-sheet-embed .vexa-order-btn {
  background: #107c41;
  color: #fff !important;
  padding: 0.28rem 0.65rem;
  font-size: 0.74rem;
}

.vexa-plans {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .vexa-plans { grid-template-columns: repeat(6, 1fr); }
  .vexa-plan { grid-column: span 2; }
  .vexa-plan--slim { grid-column: span 3; }
}
.vexa-plan {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.4rem 1.3rem 1.4rem;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid #e2ecf3;
}
.vexa-plan.is-feat {
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--cyan), #7b6cff) border-box;
  border: 2px solid transparent;
  box-shadow: 0 16px 40px rgba(59, 139, 255, 0.12);
}
.vexa-plan__tag {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #12909f;
}
.vexa-plan.is-feat .vexa-plan__tag { color: #7b6cff; }
.vexa-plan h3 { margin: 0; color: var(--ink); font-size: 1.28rem; }
.vexa-plan__price { margin: 0; color: #4d5a6b; font-size: 0.92rem; }
.vexa-plan ul { margin: 0.2rem 0 0.4rem; color: #55666c; padding-left: 1.1rem; }
.vexa-plan .vexa-btn,
.vexa-plan .vexa-btn--ghost { margin-top: auto; width: 100%; }

.vexa-price-mixes { background: var(--cream); }
.vexa-price-help { background: #fff; padding-top: 0; }
.vexa-price-help__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
  padding: 1.6rem 1.5rem;
  border-radius: 1.3rem;
  background:
    radial-gradient(ellipse 50% 80% at 0% 0%, rgba(0, 212, 234, 0.16), transparent 60%),
    radial-gradient(ellipse 40% 70% at 100% 20%, rgba(123, 108, 255, 0.12), transparent 62%),
    #f7fbfd;
  border: 1px solid #e2ecf3;
}
.vexa-price-help__box h2 { margin: 0 0 0.4rem; }
.vexa-price-help__box p { margin: 0; color: var(--muted); max-width: 36rem; }
.vexa-ledger {
  background: #111;
  color: #fff;
  border-radius: 1.4rem;
  padding: 1.4rem 1.2rem 1.3rem;
  box-shadow: 0 24px 50px rgba(0,0,0,0.12);
}
.vexa-ledger__bar {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  margin-bottom: 1rem;
}
.vexa-ledger__bar p { color: rgba(255,255,255,0.7); max-width: 28rem; }
.vexa-ledger .vexa-sheet-tabs button { color: #fff; }

.vexa-teammate img,
.vexa-avatar-letter {
  width: 3.4rem; height: 3.4rem; border-radius: 50%; object-fit: cover; object-position: center 18%;
  flex: 0 0 auto;
}
.vexa-avatar-letter {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #00d4ea, #3b8bff 48%, #7b6cff);
  color: #fff;
  font-family: Unbounded, Syne, Inter, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.vexa-teammate strong { display: block; color: var(--ink); font-size: 1rem; }
.vexa-teammate__copy { flex: 1; min-width: 0; color: var(--muted); font-size: 0.92rem; }
.vexa-teammate .vexa-mini-social__row {
  display: flex;
  flex-direction: row;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  margin-top: 0;
  justify-content: flex-end;
  gap: 0.4rem;
}
.vexa-teammate .vexa-mini-social__row a {
  width: 2.15rem;
  height: 2.15rem;
}
@media (max-width: 640px) {
  .vexa-teammate { flex-wrap: wrap; }
  .vexa-teammate .vexa-mini-social__row {
    width: 100%;
    justify-content: flex-start;
    margin-top: 0.35rem;
    padding-left: 4.2rem;
  }
}

/* Footer polish */
.vexa-site-footer {
  background: #fff;
}
.vexa-cta-pro { overflow: hidden; }
.vexa-foot-cta {
  background: #f7fbff;
  border: 1px solid #d8eef4;
  border-radius: 1.2rem;
  padding: 1.2rem 1.3rem;
}
.vexa-foot-cta h2 { max-width: 16ch; }
.vexa-ico-row { display: flex; gap: 0.55rem; margin-top: 0.9rem; }
.vexa-ico-row a, .vexa-ico-row button {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0,212,234,0.12);
  color: var(--cyan);
  border: 1px solid rgba(0,212,234,0.35);
  cursor: pointer;
  padding: 0;
}
.vexa-ico-row svg { width: 1.1rem; height: 1.1rem; }
.vexa-phone { display: none !important; }
.vexa-foot-social .vexa-social-pop {
  top: auto;
  bottom: calc(100% + 0.55rem);
  left: 0;
  right: auto;
}
.vexa-social-pop[hidden] { display: none !important; }

.vexa-mini-social { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; margin-top: 0.45rem; }
.vexa-mini-social__row { display: flex; gap: 0.4rem; justify-content: center; }
.vexa-mini-social__row a {
  width: 1.85rem; height: 1.85rem; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: #111; text-decoration: none;
  border: 1px solid #e4e4ea;
}
.vexa-mini-social__row a[aria-label="WhatsApp"] { color: #25D366; }
.vexa-mini-social__row a[aria-label="Facebook"] { color: #1877F2; }
.vexa-mini-social__row a[aria-label="LinkedIn"] { color: #0A66C2; }
.vexa-mini-social__row a[aria-label="Email"] { color: #EA4335; }
.vexa-mini-social__row a svg { width: 0.9rem; height: 0.9rem; }
.vexa-mini-social__meta {
  margin: 0; font-size: 0.72rem; font-weight: 600; color: #5b5b5b; line-height: 1.35; text-align: center;
}
.vexa-slide figcaption .vexa-mini-social__meta { color: #5b5b5b; }
.vexa-slide figcaption .vexa-mini-social__row a { background: #fff; }

.vexa-collage {
  position: relative;
  height: min(28rem, 70vw);
  margin: 0 auto;
}
.vexa-collage__ring {
  position: absolute;
  inset: 12% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,234,0.18), transparent 70%);
}
.vexa-collage img {
  position: absolute;
  object-fit: cover;
  border: 4px solid #050505;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.vexa-collage__main {
  width: 58%; height: 78%;
  left: 21%; top: 8%;
  border-radius: 50%;
  object-position: center 10%;
  z-index: 2;
}
.vexa-collage__a {
  width: 28%; height: 38%;
  left: 4%; bottom: 6%;
  border-radius: 50%;
  object-position: center 18%;
  z-index: 3;
}
.vexa-collage__b {
  width: 26%; height: 36%;
  right: 2%; bottom: 10%;
  border-radius: 50%;
  object-position: center 18%;
  z-index: 3;
}

.vexa-founder-band .vexa-wrap {
  display: grid;
  gap: 1.4rem;
  justify-items: center;
  text-align: center;
  max-width: 40rem;
}
.vexa-founder-band figure { margin: 0; }
.vexa-founder-band img {
  width: 15.5rem; height: 15.5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  margin-inline: auto;
}
@media (min-width: 860px) {
  .vexa-founder-band .vexa-wrap { grid-template-columns: 1fr; }
}

.vexa-svc-hero > .vexa-wrap {
  display: grid;
  gap: 1.6rem;
  align-items: center;
  padding: 3rem 0 2.8rem;
}
@media (min-width: 900px) {
  .vexa-svc-hero > .vexa-wrap { grid-template-columns: 1.05fr 0.95fr; }
  body.vexa-inner .vexa-svc-hero > .vexa-wrap {
    grid-template-columns: 1.05fr 0.95fr;
    text-align: left;
    justify-items: stretch;
    align-items: center;
  }
  body.vexa-inner .vexa-svc-hero h1,
  body.vexa-inner .vexa-svc-hero p { margin-inline: 0; max-width: none; }
}
.vexa-svc-hero figure {
  margin: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  min-height: 16rem;
  background: #0a1c22;
}
.vexa-svc-hero figure img {
  width: 100%; height: 18rem; object-fit: cover;
}

.vexa-svc-hero figure.vexa-svc-it {
  position: relative;
  background: #f4f8ff;
  min-height: 0;
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid #e4eef8;
  box-shadow: 0 18px 40px rgba(16, 44, 62, 0.1);
}
.vexa-svc-hero figure.vexa-svc-it img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  object-position: center;
}

/* Screenshot proof slider (one shot at a time) */
.vexa-svc-hero figure.vexa-proof {
  width: min(100%, 48rem);
  margin-inline: auto;
  background: #fff;
  border: 1px solid #dbe7ef;
  border-radius: 1.2rem;
  padding: 0.55rem 0.55rem 0.2rem;
  box-shadow: 0 18px 40px rgba(16, 44, 62, 0.1);
  min-height: 0;
}
.vexa-proof__win {
  position: relative;
  aspect-ratio: 1024 / 587;
  overflow: hidden;
  border-radius: 0.85rem;
  border: 1px solid #e8eef3;
  background: #fff;
}
.vexa-svc-hero figure.vexa-proof img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.vexa-svc-hero figure.vexa-proof img.is-on {
  opacity: 1;
  transform: scale(1);
}
.vexa-proof__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.55rem 0 0.15rem;
}
.vexa-proof__btn {
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  border: 0; cursor: pointer;
  background: var(--cyan); color: #041018;
  font-size: 1rem; font-weight: 800; line-height: 1;
}
.vexa-proof__btn:hover { background: var(--cyan-2); color: #fff; }
.vexa-proof__dots { display: flex; gap: 0.35rem; }
.vexa-proof__dots button {
  width: 0.5rem; height: 0.5rem; padding: 0;
  border: 0; border-radius: 50%; cursor: pointer;
  background: #cbdae3;
}
.vexa-proof__dots button.is-on { background: var(--cyan); width: 1.15rem; border-radius: 999px; }
.vexa-proof figcaption {
  padding: 0.15rem 0.35rem 0.5rem;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #5c7285;
  text-align: center;
}

.vexa-strategy {
  background: #f6f5fb;
  color: #111;
  text-align: center;
  padding: 4.6rem 0 4.2rem;
}
.vexa-strategy h2 { color: #2a2158; font-size: clamp(1.55rem, 3vw, 2.15rem); max-width: 22ch; margin-inline: auto; }
.vexa-faq-block {
  text-align: left;
  max-width: 52rem;
  margin: 0 auto;
}
.vexa-faq-block + .vexa-faq-block { margin-top: 2.8rem; }
.vexa-faq-block > h2 {
  text-align: center;
  margin: 0 auto 1.35rem;
  color: #2a2158;
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
}
.vexa-faq-block .vexa-qa { grid-template-columns: 1fr; }
.vexa-faq-block .vexa-qa details {
  background: #fff;
  border: 1px solid #eceaf6;
  border-radius: 1.05rem;
  padding: 1.05rem 1.2rem;
  box-shadow: 0 10px 28px rgba(70, 55, 140, 0.05);
}
.vexa-faq-block .vexa-qa summary { color: #2a2158; font-size: 1.02rem; }
.vexa-faq-block .vexa-qa summary::after { color: #7b6cff; }
.vexa-faq-block .vexa-qa p { color: #5c5870; line-height: 1.65; }
.vexa-strategy__gold {
  color: #111 !important;
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  margin: 2.4rem 0 1.4rem;
}
.vexa-strategy .lead { max-width: 40rem; margin: 0.8rem auto 0; color: var(--muted); }
.vexa-months { display: grid; gap: 1rem; text-align: left; margin-top: 0.4rem; }
@media (min-width: 800px) { .vexa-months { grid-template-columns: 1fr 1fr 1fr; } }
.vexa-months article {
  background: rgba(255,255,255,0.04);
  border-radius: 1.1rem;
  padding: 1.2rem 1.15rem;
}
.vexa-months h3 { color: var(--cyan); margin: 0 0 0.6rem; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }
.vexa-months ul { margin: 0; padding-left: 1.1rem; color: rgba(255,255,255,0.75); }

.vexa-faq-hawk { display: grid; gap: 2rem; align-items: center; text-align: left; }
@media (min-width: 900px) { .vexa-faq-hawk { grid-template-columns: 0.9fr 1.1fr; } }
.vexa-faq-hawk__art { position: relative; min-height: 16rem; }
.vexa-faq-hawk__art img {
  width: min(22rem, 100%);
  mix-blend-mode: multiply;
  transform: none;
  margin-inline: auto;
}
.vexa-faq-hawk .vexa-qa { grid-template-columns: 1fr; }
.vexa-faq-hawk h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); max-width: 14ch; color: inherit; }
.vexa-strategy .vexa-faq-hawk h2 { color: #111; }
.vexa-strategy .vexa-qa details { background: #fff; border-color: var(--line); }
.vexa-strategy .vexa-qa summary { color: #111; }
.vexa-strategy .vexa-qa p { color: var(--muted); }
.vexa-values { display: grid; gap: 1rem; }
@media (min-width: 800px) { .vexa-values { grid-template-columns: 1fr 1fr 1fr; } }
.vexa-values article {
  padding: 1.3rem 1.2rem;
  border-radius: 1.15rem;
  background: #111;
  color: #fff;
}
.vexa-founder-band .vexa-mini-social__meta { color: rgba(255,255,255,0.7); }
.vexa-team-card .vexa-mini-social__meta { color: #6a7f8d; }
.vexa-founder-band .vexa-mini-social__row a,
.vexa-team-card .vexa-mini-social__row a {
  background: #fff;
  color: #050505;
}

.vexa-sheet-search { margin-bottom: 1rem; }
.vexa-sheet-search label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d6168;
  margin-bottom: 0.35rem;
}
.vexa-sheet-search input {
  width: 100%;
  padding: 0.9rem 1.05rem;
  border: 1px solid #c8e8ef;
  border-radius: 999px;
  background: #fff;
  color: #163038;
  box-shadow: 0 6px 18px rgba(0, 140, 160, 0.06);
}
.vexa-site-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: #7a8c91;
  margin-top: 0.15rem;
}
.vexa-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: var(--cyan);
  color: #041018 !important;
  font-size: 0.78rem;
  font-weight: 800 !important;
  text-decoration: none;
  white-space: nowrap;
}
.vexa-order-btn:hover { filter: brightness(1.05); }
.vexa-sites-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: #5d6d72;
}

.vexa-hawk { display: none !important; }
.vexa-hero-stage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.8rem;
}
.vexa-hero-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: min(22rem, 100%);
  max-width: 24rem;
  padding: 0.7rem 0.95rem;
  border-radius: 1.15rem;
  text-decoration: none;
  text-align: left;
  color: #fff;
  background: linear-gradient(135deg, #8b7cff 0%, #6aa8ff 100%);
  box-shadow: 0 18px 40px rgba(90, 80, 220, 0.22);
}
.vexa-hero-card img {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  flex: 0 0 auto;
  border: 2px solid rgba(255,255,255,0.55);
}
.vexa-hero-card b { display: block; font-size: 0.92rem; letter-spacing: -0.02em; }
.vexa-hero-card small { display: block; opacity: 0.88; font-size: 0.78rem; font-weight: 500; }

.vexa-trust {
  padding: 2.2rem 0 3.2rem;
  text-align: center;
}
.vexa-trust p {
  margin: 0 auto 1.1rem;
  font-weight: 800;
  font-size: 1.15rem;
  max-width: 36rem;
  color: var(--ink);
}
.vexa-trust__marks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #7a7a86;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.vexa-lb { background: #f6f5fb; }
.vexa-lb__welcome {
  text-align: center;
  margin: 0 auto 0.55rem;
  font-family: Fraunces, "Times New Roman", serif;
  font-style: italic;
  font-optical-sizing: auto;
  font-weight: 650;
  font-size: clamp(2.05rem, 5vw, 3.35rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  background: linear-gradient(105deg, #1c1c21 10%, #3b8bff 52%, #7b6cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vexa-lb__title {
  text-align: center;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  margin: 0 auto 1.6rem;
  color: #2a2158;
}
.vexa-lb-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.2rem 1.2rem 1.6rem;
  box-shadow: 0 18px 50px rgba(70, 55, 140, 0.08);
}
.vexa-lb-tabs {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}
@media (min-width: 800px) { .vexa-lb-tabs { grid-template-columns: 1fr 1fr 1fr; } }
.vexa-lb-tabs button {
  border: 1px solid #eceaf4;
  background: #fff;
  color: #3a3360;
  border-radius: 0.95rem;
  padding: 0.85rem 0.9rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(28, 28, 33, 0.04);
}
.vexa-lb-tabs button.is-on {
  border-color: #b7a8ff;
  box-shadow: 0 0 0 2px rgba(123, 108, 255, 0.18);
  color: #4c3fd4;
}
.vexa-lb-pane {
  display: none !important;
  gap: 1.6rem;
  align-items: center;
}
.vexa-lb-pane.is-on { display: grid !important; }
@media (min-width: 900px) { .vexa-lb-pane.is-on { grid-template-columns: 1fr 1fr; } }
.vexa-lb-pane h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: #2a2158;
  max-width: 18ch;
}
.vexa-lb-pane p { color: var(--muted); margin: 0; max-width: 36rem; }
.vexa-lb-chart {
  margin: 0;
  background: #fbfaff;
  border: 1px solid #eeeaf8;
  border-radius: 1.1rem;
  padding: 0.55rem;
  overflow: hidden;
}
.vexa-lb-chart img {
  width: 100%;
  height: auto;
  border-radius: 0.85rem;
  display: block;
  object-fit: contain;
  max-height: 24rem;
  object-position: center;
  background: #fff;
}
.vexa-metrics {
  background: #fff;
  padding: 1.05rem 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
}
.vexa-metrics__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 0.8rem;
  width: 100%;
}
@media (min-width: 700px) {
  .vexa-metrics__row { grid-template-columns: 1.15fr 1fr 1fr 1.1fr; }
}
.vexa-metrics__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}
.vexa-metrics__donut {
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
}
.vexa-metrics__item span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b6b78;
  letter-spacing: 0.01em;
}
.vexa-metrics__item b {
  display: block;
  font-size: 1.85rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #111;
  font-weight: 800;
}
.vexa-metrics__item b.is-muted { color: #c5c5cd; }
.vexa-metrics__item small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: #8a8a96;
}
.vexa-spark p {
  margin: 0 0 0.2rem;
  text-align: right;
  font-size: 0.72rem;
  font-weight: 700;
  color: #9a96ab;
}
.vexa-spark svg {
  width: 100%;
  height: auto;
  display: block;
}

.vexa-how__grid {
  display: grid;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: how;
}
@media (min-width: 900px) { .vexa-how__grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.vexa-how__grid li {
  counter-increment: how;
  padding: 1.3rem 1.15rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: #fff;
}
.vexa-how__grid li::before {
  content: counter(how, decimal-leading-zero);
  display: block;
  color: #7b6cff;
  font-weight: 800;
  margin-bottom: 0.45rem;
}
.vexa-how__grid h3 { font-size: 1.08rem; margin: 0 0 0.4rem; }
.vexa-how__grid p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* "What changed" band — pill + split heading on the left, 2x2 stat grid on the right */
.vexa-changed {
  position: relative;
  overflow: hidden;
  padding: 4.6rem 0 5.2rem;
  /* same soft cyan/violet wash the hero and footer use, over the site cream */
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, rgba(0, 212, 234, 0.18), transparent 68%),
    radial-gradient(ellipse 48% 40% at 88% 6%, rgba(124, 92, 255, 0.14), transparent 64%),
    radial-gradient(ellipse 42% 36% at 72% 92%, rgba(59, 139, 255, 0.12), transparent 70%),
    var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vexa-changed__curve {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 62%;
  pointer-events: none;
}
.vexa-changed__grid {
  position: relative;
  display: grid;
  gap: 2.4rem;
  align-items: start;
}
@media (min-width: 960px) {
  .vexa-changed__grid { grid-template-columns: 1.05fr 0.95fr; gap: 3.2rem; }
}
.vexa-changed__pill {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: 0.34rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.vexa-changed h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.3vw, 2.6rem);
  color: var(--ink);
  max-width: 24ch;
}
.vexa-changed h2 span { color: #8996ad; }
.vexa-changed__link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #10707f;
  text-decoration: none;
  border-bottom: 1px solid var(--cyan);
  padding-bottom: 0.15rem;
}
.vexa-changed__link:hover { color: var(--cyan-2); border-bottom-color: var(--cyan-2); }
.vexa-changed__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.8rem;
  margin: 0;
}
.vexa-changed__stat {
  padding-left: 1.1rem;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--cyan), var(--cyan-2)) 1;
}
.vexa-changed__stat dt {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #123a5c;
  line-height: 1.1;
}
.vexa-changed__stat dd {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: #4d5a6b;
}
.vexa-changed__stat p {
  margin: 0.3rem 0 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #12909f;
}
@media (max-width: 520px) {
  .vexa-changed__stats { grid-template-columns: 1fr; gap: 1.4rem; }
}

.vexa-proof { padding: 4.2rem 0; background: #fff; }
.vexa-proof__grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .vexa-proof__grid { grid-template-columns: 1.05fr 0.95fr; } }
.vexa-proof h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); max-width: 16ch; }
.vexa-proof ul { margin: 1rem 0 1.4rem; padding: 0; list-style: none; display: grid; gap: 0.65rem; }
.vexa-proof li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--muted);
}
.vexa-proof li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7b6cff;
  font-weight: 800;
}
.vexa-proof blockquote {
  margin: 0;
  padding: 1.6rem 1.5rem;
  border-radius: 1.3rem;
  background: linear-gradient(160deg, #f3f0ff, #eef7ff);
  border: 1px solid #e4def8;
}
.vexa-proof blockquote p {
  margin: 0 0 1.1rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.4;
}
.vexa-proof blockquote footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.vexa-proof blockquote img {
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  object-fit: cover; object-position: center 18%;
}
.vexa-proof blockquote b { display: block; }
.vexa-proof blockquote small { color: var(--muted); font-weight: 500; }
