/* ===== Base ===== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #060a14;
  min-height: 100vh;
  overflow-x: hidden;
}

body:not(.page-active) {
  overflow: hidden;
  height: 100vh;
}

/* =============================================
   SPLIT HERO
   ============================================= */

#split-hero {
  position: fixed;
  inset: 0;
  display: flex;
  z-index: 50;
  transition: opacity 0.4s ease;
}

.split-side {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

a.split-side {
  text-decoration: none;
  color: inherit;
}

.split-side:focus-visible {
  outline: 2px solid white;
  outline-offset: -2px;
}

/* Backgrounds */
.split-bg {
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease;
}

.vo-bg {
  background:
    radial-gradient(800px 500px at 30% 30%, rgba(124, 58, 237, 0.3), transparent 60%),
    radial-gradient(600px 400px at 70% 70%, rgba(6, 182, 212, 0.15), transparent 55%);
}

.lv-bg {
  background:
    radial-gradient(800px 500px at 70% 30%, rgba(16, 185, 129, 0.3), transparent 60%),
    radial-gradient(600px 400px at 30% 70%, rgba(245, 158, 11, 0.12), transparent 55%);
}

.split-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}

.split-watermark {
  position: absolute;
  font-size: clamp(180px, 25vw, 320px);
  font-weight: 900;
  letter-spacing: -0.06em;
  opacity: 0.03;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

/* Parent brand mark (top-center) */
.split-parent {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.split-parent-card {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 1.15rem 0.6rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Animated gradient VO mark */
.split-parent-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #7c3aed 0%, #06b6d4 50%, #10b981 100%);
  background-size: 180% 180%;
  animation: parentMarkGradient 8s ease infinite;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(124, 58, 237, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.split-parent-mark .mark-logo {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

@keyframes parentMarkGradient {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.split-parent-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}

.split-parent-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.split-parent-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

/* Subtle branches hinting at the two products below */
.split-parent-branches {
  position: relative;
  width: 160px;
  height: 12px;
  pointer-events: none;
}

.split-parent-branches .branch {
  position: absolute;
  top: 0;
  width: 1px;
  height: 12px;
  opacity: 0.5;
}

.split-parent-branches .branch-left {
  left: calc(50% - 1px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(124, 58, 237, 0) 100%
  );
  transform-origin: top center;
  transform: rotate(-28deg) translateY(1px);
}

.split-parent-branches .branch-right {
  left: calc(50% - 1px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(16, 185, 129, 0) 100%
  );
  transform-origin: top center;
  transform: rotate(28deg) translateY(1px);
}

@media (max-width: 520px) {
  .split-parent { top: 18px; gap: 0.35rem; }
  .split-parent-card { padding: 0.45rem 0.85rem 0.45rem 0.45rem; gap: 0.6rem; }
  .split-parent-mark { width: 34px; height: 34px; border-radius: 10px; }
  .split-parent-name { font-size: 13px; }
  .split-parent-tag { font-size: 9.5px; }
  .split-parent-branches { display: none; }
}

/* Split content */
.split-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  max-width: 420px;
}

/* Overline above logo */
.split-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.vo-overline {
  background: rgba(124, 58, 237, 0.18);
  border-color: rgba(124, 58, 237, 0.4);
  color: #ddd6fe;
}

.lv-overline {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.4);
  color: #a7f3d0;
}

/* Feature chips under description */
.split-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  padding: 0;
  margin: 0 0 1.5rem;
}

.split-chips li {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  line-height: 1;
  letter-spacing: 0.01em;
}

.lv-chips li {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
}

.split-logo {
  width: 100px;
  height: 100px;
  border-radius: 32px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.split-logo-img {
  width: 62%;
  height: 62%;
  object-fit: contain;
  display: block;
}

.lv-logo-img {
  filter: brightness(0);
}

.split-logo span {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1;
  user-select: none;
}

.vo-logo {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(124, 58, 237, 0.15);
}

.lv-logo {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(16, 185, 129, 0.15);
}

.split-brand {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.25rem;
}

.split-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1rem;
}

.split-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 1.5rem;
}

.split-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vo-cta {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.2));
  border-color: rgba(124, 58, 237, 0.4);
}

.lv-cta {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(245, 158, 11, 0.2));
  border-color: rgba(16, 185, 129, 0.4);
}

/* Hover effects */
.split-side:hover .split-logo {
  transform: translateY(-4px) scale(1.04);
}

.split-side:hover .vo-logo {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 100px rgba(124, 58, 237, 0.25);
}

.split-side:hover .lv-logo {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 100px rgba(16, 185, 129, 0.25);
}

.split-side:hover .split-cta {
  transform: translateY(-2px);
}

#split-hero:hover .split-side { flex: 0.88; }
#split-hero .split-side:hover { flex: 1.2; }

/* Divider */
.split-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  pointer-events: none;
  transform: translateX(-50%);
}

.divider-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.divider-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

/* ===== Split expansion animation ===== */

body.expanding-left #side-venueora { flex: 5; }
body.expanding-left #side-lockvault { flex: 0; opacity: 0; }
body.expanding-left .split-divider { opacity: 0; }

body.expanding-right #side-lockvault { flex: 5; }
body.expanding-right #side-venueora { flex: 0; opacity: 0; }
body.expanding-right .split-divider { opacity: 0; }

.split-divider {
  transition: opacity 0.4s ease;
}

body.page-active #split-hero {
  opacity: 0;
  pointer-events: none;
}

/* =============================================
   BRAND PAGES (shared)
   ============================================= */

.brand-page {
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

body.show-venueora #venueora-page,
body.show-lockvault #lockvault-page {
  display: block;
  position: relative;
}

body.page-visible #venueora-page,
body.page-visible #lockvault-page {
  transition: opacity 0.45s ease, transform 0.45s ease;
}

body.page-visible.show-venueora #venueora-page,
body.page-visible.show-lockvault #lockvault-page {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ===== Navigation ===== */

.brand-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(6, 10, 20, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}

.vo-logo-sm {
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
}

.lv-logo-sm {
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.nav-logo-mark img,
.nav-switch-mark img {
  width: 64%;
  height: 64%;
  object-fit: contain;
  display: block;
}

.lv-logo-sm img {
  filter: brightness(0);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.nav-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.875rem 0.4rem 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
}

.nav-switch:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

a.nav-switch {
  text-decoration: none;
}

.nav-switch-mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1;
  user-select: none;
}

/* ===== Hero backgrounds ===== */

.hero-bg {
  position: absolute;
  inset: 0;
}

.vo-hero-bg {
  background:
    radial-gradient(1100px 550px at 20% -8%, rgba(124, 58, 237, 0.35), transparent 55%),
    radial-gradient(900px 450px at 85% 0%, rgba(6, 182, 212, 0.22), transparent 50%),
    radial-gradient(600px 600px at 50% 60%, rgba(124, 58, 237, 0.08), transparent 60%);
}

.lv-hero-bg {
  background:
    radial-gradient(1100px 550px at 20% -8%, rgba(16, 185, 129, 0.3), transparent 55%),
    radial-gradient(900px 450px at 85% 0%, rgba(245, 158, 11, 0.18), transparent 50%),
    radial-gradient(600px 600px at 50% 60%, rgba(16, 185, 129, 0.06), transparent 60%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.vo-hero, .lv-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ===== Glass cards ===== */

.glass-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.glass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.glass-panel {
  border-radius: 24px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ===== Icon boxes ===== */

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
}

.icon-violet { background: rgba(124, 58, 237, 0.12); border-color: rgba(124, 58, 237, 0.30); }
.icon-cyan   { background: rgba(6, 182, 212, 0.10); border-color: rgba(6, 182, 212, 0.30); }
.icon-green  { background: rgba(16, 185, 129, 0.10); border-color: rgba(16, 185, 129, 0.30); }
.icon-amber  { background: rgba(245, 158, 11, 0.10); border-color: rgba(245, 158, 11, 0.30); }

/* ===== Ticket visual (VenueOra) ===== */

.ticket-visual {
  position: relative;
  height: 200px;
  border-radius: 18px;
  background:
    radial-gradient(400px 180px at 25% 20%, rgba(124, 58, 237, 0.2), transparent 60%),
    radial-gradient(400px 180px at 80% 50%, rgba(6, 182, 212, 0.15), transparent 55%),
    rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ticket {
  position: absolute;
  left: 50%;
  width: 80%;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
}

.ticket::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.65), rgba(6, 182, 212, 0.55));
}

.ticket::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.t1 { top: 40px; transform: translateX(-50%) rotate(-1.5deg); }
.t2 { top: 62px; transform: translateX(-50%) rotate(1deg); opacity: 0.88; }
.t3 { top: 84px; transform: translateX(-50%) rotate(-0.5deg); opacity: 0.76; }

.scanline {
  position: absolute;
  left: -20%;
  right: -20%;
  top: 0;
  height: 36px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: rotate(6deg);
  animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
  0%   { transform: translateY(-100px) rotate(6deg); opacity: 0; }
  15%  { opacity: 1; }
  65%  { opacity: 0.6; }
  100% { transform: translateY(250px) rotate(6deg); opacity: 0; }
}

/* ===== Step numbers (LockVault) ===== */

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid;
}

.lv-step {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.30);
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Pricing cards ===== */

.pricing-card {
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
}

.pricing-popular {
  background: linear-gradient(170deg, rgba(16, 185, 129, 0.1), rgba(255, 255, 255, 0.04));
  border-color: rgba(16, 185, 129, 0.3);
}

.pricing-popular:hover {
  border-color: rgba(16, 185, 129, 0.5);
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.pricing-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2334d399' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 12.75 6 6 9-13.5'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== Scroll-reveal animations ===== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ===== Responsive ===== */

@media (max-width: 768px) {
  #split-hero {
    flex-direction: column;
  }

  .split-divider {
    left: 0;
    top: 50%;
    bottom: auto;
    width: 100%;
    height: 0;
    flex-direction: row;
    transform: translateY(-50%);
  }

  .divider-line {
    height: 1px;
    width: 100%;
    flex: 1;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
  }

  .split-watermark {
    font-size: 120px;
  }

  .split-logo {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    margin-bottom: 1rem;
  }

  .split-logo span {
    font-size: 28px;
  }

  .split-brand {
    font-size: 1.5rem;
  }

  .split-desc {
    display: none;
  }

  .split-chips {
    display: none;
  }

  .split-overline {
    margin-bottom: 0.75rem;
    font-size: 9.5px;
    padding: 0.25rem 0.6rem;
  }

  #split-hero:hover .split-side { flex: 1; }
  #split-hero .split-side:hover { flex: 1.15; }

  .nav-links {
    display: none;
  }

  .nav-inner {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .split-content {
    padding: 1rem;
  }

  .split-tagline {
    font-size: 0.875rem;
  }

  .split-cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
  }

  .divider-badge {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scanline { animation: none; }
  .glass-card:hover { transform: none; }
  .pricing-card:hover { transform: none; }
  .split-side { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .brand-page { transition: none; }
}

/* =============================================
   ENHANCED HERO IMAGERY
   ============================================= */

.hero-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 75%);
  pointer-events: none;
}

.vo-hero-image {
  background-image: url("./images/PWB_5971e.jpg");
  filter: saturate(0.95);
}

.lv-hero-image {
  background-image: url("./images/PWB_5748e.jpg");
  background-position: center;
  filter: saturate(1.05);
}

/* Hero scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  z-index: 5;
  pointer-events: none;
}

.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  animation: scrollMove 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollMove {
  0%   { transform: translateY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat { text-align: center; min-width: 110px; }

.hero-stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #a78bfa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-top: 2px;
}

.hero-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .hero-stat-sep { display: none; }
}

/* =============================================
   SECTION EYEBROW (small label above titles)
   ============================================= */

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(167, 139, 250, 0.9);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.section-eyebrow-green {
  color: rgba(52, 211, 153, 0.95);
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
}

/* Ambient glows for sections */
.section-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ambient-violet {
  background:
    radial-gradient(600px 400px at 10% 0%, rgba(124, 58, 237, 0.12), transparent 55%),
    radial-gradient(500px 400px at 90% 100%, rgba(6, 182, 212, 0.08), transparent 55%);
}

.ambient-cyan {
  background:
    radial-gradient(600px 400px at 90% 0%, rgba(6, 182, 212, 0.12), transparent 55%),
    radial-gradient(500px 400px at 10% 100%, rgba(124, 58, 237, 0.08), transparent 55%);
}

.ambient-mixed {
  background:
    radial-gradient(700px 500px at 50% 0%, rgba(124, 58, 237, 0.14), transparent 60%),
    radial-gradient(500px 400px at 50% 100%, rgba(6, 182, 212, 0.1), transparent 55%);
}

/* =============================================
   PILLAR CARDS (Two pillars section)
   ============================================= */

.pillar-card {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}

.pillar-violet:hover { box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25); }
.pillar-cyan:hover   { box-shadow: 0 20px 60px rgba(6, 182, 212, 0.22); }

.pillar-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.8s ease;
}

.pillar-card:hover .pillar-image { transform: scale(1.06); }

.pillar-img-hospitality {
  background-image: url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1600&q=80");
}

.pillar-img-ticketing {
  background-image: url("https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?auto=format&fit=crop&w=1600&q=80");
}

.pillar-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 10, 20, 0.35) 0%, rgba(6, 10, 20, 0.7) 50%, rgba(6, 10, 20, 0.95) 100%);
}

.pillar-violet .pillar-overlay {
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.25) 0%, rgba(6, 10, 20, 0.75) 55%, rgba(6, 10, 20, 0.97) 100%),
    radial-gradient(500px 300px at 20% 100%, rgba(124, 58, 237, 0.35), transparent 60%);
}

.pillar-cyan .pillar-overlay {
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.25) 0%, rgba(6, 10, 20, 0.75) 55%, rgba(6, 10, 20, 0.97) 100%),
    radial-gradient(500px 300px at 80% 100%, rgba(6, 182, 212, 0.28), transparent 60%);
}

.pillar-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  justify-content: flex-end;
  min-height: 320px;
}

.pillar-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.25rem;
}

.pillar-violet .pillar-tag { background: rgba(124, 58, 237, 0.18); border-color: rgba(124, 58, 237, 0.4); color: #ddd6fe; }
.pillar-cyan .pillar-tag   { background: rgba(6, 182, 212, 0.18); border-color: rgba(6, 182, 212, 0.4); color: #a5f3fc; }

.pillar-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}

.pillar-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin: 0.25rem 0 0.75rem;
  max-width: 36ch;
}

.pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  width: fit-content;
  transition: gap 0.25s ease;
}

.pillar-card:hover .pillar-cta { gap: 0.75rem; }

/* =============================================
   IMAGE SHOWCASE (hero-adjacent visual)
   ============================================= */

.image-showcase {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: visible;
}

.showcase-main {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.showcase-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 10, 20, 0.4) 100%);
}

.showcase-small {
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 46%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.image-showcase-right .showcase-small {
  right: auto;
  left: -8%;
}

.showcase-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(6, 10, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  z-index: 3;
}

.showcase-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.showcase-badge-green .showcase-badge-dot {
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.2);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Hospitality showcase images */
.showcase-img-restaurant {
  background-image: url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1600&q=80");
}
.showcase-img-kiosk {
  background-image: url("https://images.unsplash.com/photo-1555992336-fb0d29498b13?auto=format&fit=crop&w=1000&q=80");
}
.showcase-img-concert {
  background-image: url("https://images.unsplash.com/photo-1459749411175-04bf5292ceea?auto=format&fit=crop&w=1600&q=80");
}
.showcase-img-park {
  background-image: url("./images/PWB_5971e.jpg");
}
.showcase-img-festival {
  background-image: url("./images/PWB_5748e.jpg");
}
.showcase-img-locker {
  background-image: url("./images/PWB_5685e.jpg");
}

/* =============================================
   CHECK LIST
   ============================================= */

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a78bfa' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 12.75 6 6 9-13.5'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.check-list-cyan li::before {
  background: rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2322d3ee' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 12.75 6 6 9-13.5'/%3E%3C/svg%3E");
}

/* =============================================
   PRODUCT CARDS (hospitality)
   ============================================= */

.product-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.15);
}

.product-img {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 10, 20, 0.9) 100%);
}

.product-img-epos    { background-image: url("https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?auto=format&fit=crop&w=1200&q=80"); }
.product-img-kiosk   { background-image: url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1200&q=80"); }
.product-img-kds     { background-image: url("https://images.unsplash.com/photo-1565299585323-38d6b0865b47?auto=format&fit=crop&w=1200&q=80"); }
.product-img-signage { background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1200&q=80"); }
.product-img-online  { background-image: url("https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?auto=format&fit=crop&w=1200&q=80"); }
.product-img-card    { background-image: url("https://images.unsplash.com/photo-1556742044-3c52d6e88c62?auto=format&fit=crop&w=1200&q=80"); }

.product-body {
  padding: 20px 22px 24px;
}

/* Mini cards strip */
.mini-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mini-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.mini-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-card h4 {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
}

.mini-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.4;
}

/* =============================================
   INDUSTRY CARDS
   ============================================= */

.industry-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.industry-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s ease;
}

.industry-card:hover .industry-img { transform: scale(1.05); }

.industry-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 10, 20, 0.85) 100%);
}

.industry-img-restaurant    { background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80"); }
.industry-img-entertainment { background-image: url("https://images.unsplash.com/photo-1514313122851-5167c4fca5d6?auto=format&fit=crop&w=1200&q=80"); }
.industry-img-park          { background-image: url("https://images.unsplash.com/photo-1761242606389-0a45db29fdee?auto=format&fit=crop&w=1200&q=80"); }
.industry-img-leisure       { background-image: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1200&q=80"); }
.industry-img-retail        { background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1200&q=80"); }
.industry-img-festival      { background-image: url("https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=1200&q=80"); }

.industry-body {
  padding: 18px 22px 22px;
}

.industry-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.industry-body p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.55;
}

/* =============================================
   PARTNERSHIP PANEL
   ============================================= */

.partnership-panel {
  border-radius: 32px;
  padding: 3rem 2.5rem;
  background: linear-gradient(170deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.06) 60%, rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.partnership-panel::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 70%);
  pointer-events: none;
}

.partnership-panel::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18), transparent 70%);
  pointer-events: none;
}

.partnership-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (max-width: 900px) {
  .partnership-grid { grid-template-columns: 1fr; gap: 2rem; }
  .partnership-panel { padding: 2rem 1.5rem; }
}

.partnership-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .partnership-roles { grid-template-columns: 1fr; }
}

.role-card {
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.role-card-violet {
  background: linear-gradient(170deg, rgba(124, 58, 237, 0.12), rgba(255, 255, 255, 0.02));
  border-color: rgba(124, 58, 237, 0.25);
}

.role-card-cyan {
  background: linear-gradient(170deg, rgba(6, 182, 212, 0.12), rgba(255, 255, 255, 0.02));
  border-color: rgba(6, 182, 212, 0.25);
}

.role-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.625rem;
}

.role-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.role-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.role-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.role-card-violet .role-list li::before { background: #a78bfa; }
.role-card-cyan .role-list li::before   { background: #22d3ee; }

.partnership-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.partnership-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.6rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.partnership-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.posso-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, #e11d48, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: white;
  line-height: 1;
  flex-shrink: 0;
}

.partnership-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-tile {
  padding: 1.25rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #a78bfa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-tile p {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.35;
}

/* =============================================
   TESTIMONIAL CARDS
   ============================================= */

.testimonial-card {
  padding: 28px 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

/* =============================================
   CTA GRID (contact tiles)
   ============================================= */

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto;
}

.cta-tile {
  padding: 1.5rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cta-tile:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(124, 58, 237, 0.3);
}

.cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  margin-bottom: 0.25rem;
}

.cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.cta-value {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
  margin: 0;
}

/* =============================================
   CHIPS (feature tags)
   ============================================= */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.chip-green  { background: rgba(16, 185, 129, 0.1);  border-color: rgba(16, 185, 129, 0.3);  color: #6ee7b7; }
.chip-amber  { background: rgba(245, 158, 11, 0.1);  border-color: rgba(245, 158, 11, 0.3);  color: #fcd34d; }
.chip-cyan   { background: rgba(6, 182, 212, 0.1);   border-color: rgba(6, 182, 212, 0.3);   color: #67e8f9; }

/* =============================================
   PRODUCT-OF & NAV-BY BADGES
   ============================================= */

.nav-by-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 7px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: rgba(196, 181, 253, 0.9);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 6px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .nav-by-badge { display: none; }
}

.product-of-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 4px 8px 4px 6px;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-left: 4px;
}

.product-of-badge > span:last-child {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

/* =============================================
   LOCKVAULT DEPLOYMENT MODEL
   ============================================= */

.deploy-card {
  padding: 26px 24px;
  border-radius: 22px;
  background: linear-gradient(170deg, rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 0.02) 70%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.deploy-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.4);
}

.deploy-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
  pointer-events: none;
}

.deploy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.deploy-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.deploy-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin: 0;
}

.deploy-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.deploy-stat {
  flex: 1 1 140px;
  text-align: center;
  min-width: 120px;
}

.deploy-stat-num {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #34d399, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 4px;
}

.deploy-stat p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin: 0;
}

.deploy-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 720px) {
  .deploy-stat-sep { display: none; }
  .deploy-stats { padding: 1.25rem 1rem; gap: 0.5rem; }
}

/* =============================================
   PRICING TOGGLE (hour / block / day)
   ============================================= */

.pricing-toggle {
  display: inline-flex;
  padding: 4px;
  margin: 0 auto 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  gap: 2px;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-toggle { display: flex; }

.pricing-tab {
  appearance: none;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.pricing-tab:hover {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-tab.active {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Wrap the toggle in a centered flex container via parent */
.pricing-toggle {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

/* =============================================
   PILLAR PRIMARY / SUBBRAND (core vs add-on)
   ============================================= */

.pillar-primary {
  min-height: 360px;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.18);
  border-color: rgba(124, 58, 237, 0.35);
}

.pillar-primary .pillar-content { min-height: 360px; }

.pillar-primary .pillar-title {
  font-size: 1.75rem;
}

.pillar-subbrand {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: -0.01em;
}

.badge-addon {
  display: inline-block;
  padding: 2px 7px;
  margin-left: 6px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #67e8f9;
  vertical-align: middle;
}

/* =============================================
   MEMBERSHIP PANEL (core platform deep-dive)
   ============================================= */

.membership-panel {
  border-radius: 32px;
  padding: 2.5rem;
  background: linear-gradient(170deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.05) 60%, rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.membership-panel::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22), transparent 70%);
  pointer-events: none;
}

.membership-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (max-width: 900px) {
  .membership-grid { grid-template-columns: 1fr; gap: 2rem; }
  .membership-panel { padding: 1.75rem 1.25rem; }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
  line-height: 1.3;
}

.feature-item p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.45;
}

/* Membership card preview */
.membership-preview {
  position: relative;
  padding: 1rem;
}

.member-card {
  padding: 1.4rem 1.4rem 1.25rem;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.22), rgba(6, 182, 212, 0.12) 70%, rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.member-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
  pointer-events: none;
}

.member-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.member-tier {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #422006;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.member-active {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.member-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.22);
  animation: pulse 2s ease-in-out infinite;
}

.member-name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.member-meta {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
  margin-bottom: 1.1rem;
}

.member-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.member-stats > div { text-align: center; }

.member-stat-num {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}

.member-stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.member-actions {
  display: flex;
  gap: 0.5rem;
}

.member-btn {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  color: white;
  cursor: default;
  font-family: inherit;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.member-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.member-ticket {
  position: relative;
  margin-top: 1rem;
  padding: 0.85rem 1rem 0.85rem 1.3rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: rotate(-0.8deg);
}

.member-ticket-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #22d3ee);
  box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.2);
}

@media (max-width: 900px) {
  .membership-preview { padding: 0; max-width: 380px; margin: 0 auto; }
}

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */

@media (max-width: 900px) {
  .image-showcase { aspect-ratio: 3 / 2; }
  .showcase-small { display: none; }
  .partnership-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .pillar-title { font-size: 1.25rem; }
  .pillar-content { padding: 1.5rem; }
  .partnership-panel { padding: 1.75rem 1.25rem; }
  .hero-stats { gap: 1rem; padding: 0.875rem 1rem; }
  .hero-stat-num { font-size: 1.25rem; }
  .nav-links { display: none; }
  .cta-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll span { animation: none; }
  .showcase-badge-dot { animation: none; }
  .pillar-card:hover { transform: none; }
  .industry-card:hover { transform: none; }
  .industry-card:hover .industry-img { transform: none; }
  .pillar-card:hover .pillar-image { transform: none; }
  .product-card:hover { transform: none; }
  .cta-tile:hover { transform: none; }
}

/* =============================================
   LOCKVAULT HERO — business-case layout
   ============================================= */

.lv-hero {
  min-height: auto;
}

/* Override centered hero treatment with grid-friendly one */
.lv-hero .lv-hero-copy { text-align: left; }

.lv-hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 500px;
}

.lv-hero-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.lv-hero-tick {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.lv-hero-highlights strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 2px;
}

.lv-hero-highlights span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

.lv-hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  flex-wrap: wrap;
}

.lv-hero-proof-num {
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #34d399, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 0.3rem;
}

.lv-hero-proof-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

/* Right-side visual collage */
.lv-hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 5 / 6;
  margin-left: auto;
}

.lv-hero-photo {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lv-hero-photo-main {
  inset: 0 0 14% 8%;
  border-radius: 26px;
  z-index: 1;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(16, 185, 129, 0.08);
}

.lv-hero-photo-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 10, 20, 0.5) 100%);
}

.lv-hero-photo-sm {
  width: 48%;
  aspect-ratio: 3 / 4;
  right: 0;
  bottom: 0;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  z-index: 3;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(16, 185, 129, 0.18);
}

.lv-hero-photo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(6, 10, 20, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  z-index: 2;
}

.lv-hero-photo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.22);
  animation: pulse 2s ease-in-out infinite;
}

.lv-hero-stat-card {
  position: absolute;
  top: 12%;
  left: 0;
  z-index: 4;
  padding: 0.95rem 1.15rem 1rem;
  border-radius: 18px;
  background: rgba(6, 10, 20, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(16, 185, 129, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-width: 170px;
}

.lv-hero-stat-label {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.85);
  line-height: 1;
}

.lv-hero-stat-num {
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-top: 6px;
  background: linear-gradient(135deg, #34d399, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lv-hero-stat-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.lv-hero-stat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.18);
}

.lv-hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(6, 10, 20, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  z-index: 4;
  white-space: nowrap;
}

.lv-hero-chip-top {
  top: 45%;
  right: -4%;
  border-color: rgba(16, 185, 129, 0.3);
}

.lv-hero-chip-bottom {
  bottom: 8%;
  left: -2%;
  border-color: rgba(6, 182, 212, 0.3);
}

@media (max-width: 1023px) {
  .lv-hero-visual {
    max-width: 440px;
    aspect-ratio: 6 / 5;
    margin: 1rem auto 0;
  }
  .lv-hero-photo-main { inset: 0 0 12% 10%; }
  .lv-hero-photo-sm { width: 42%; }
  .lv-hero-stat-card { top: 8%; }
  .lv-hero-chip-top { right: 2%; }
  .lv-hero-chip-bottom { left: 4%; bottom: 4%; }
}

@media (max-width: 640px) {
  .lv-hero-visual {
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }
  .lv-hero-photo-main { inset: 0 0 0 0; border-radius: 20px; }
  .lv-hero-photo-sm { display: none; }
  .lv-hero-chip-top { display: none; }
  .lv-hero-chip-bottom { display: none; }
  .lv-hero-stat-card {
    top: auto;
    bottom: 12px;
    left: 12px;
    min-width: 150px;
    padding: 0.75rem 0.95rem 0.85rem;
  }
  .lv-hero-stat-num { font-size: 1.8rem; }
}

/* =============================================
   VIBRANT PAGE & SECTION BACKGROUNDS
   ============================================= */

/* Subtle full-page tint per brand */
body.show-venueora {
  background:
    radial-gradient(1400px 1000px at 10% 0%, rgba(124, 58, 237, 0.10), transparent 60%),
    radial-gradient(1200px 900px at 90% 40%, rgba(6, 182, 212, 0.07), transparent 60%),
    radial-gradient(1000px 800px at 50% 100%, rgba(124, 58, 237, 0.06), transparent 65%),
    #070c18;
}

body.show-lockvault {
  background:
    radial-gradient(1400px 1000px at 10% 0%, rgba(16, 185, 129, 0.11), transparent 60%),
    radial-gradient(1200px 900px at 90% 40%, rgba(245, 158, 11, 0.06), transparent 60%),
    radial-gradient(1000px 800px at 50% 100%, rgba(16, 185, 129, 0.06), transparent 65%),
    #070f14;
}

/* Section-level colour bands */
.vo-band {
  position: relative;
  background:
    radial-gradient(1200px 700px at 12% 0%, rgba(124, 58, 237, 0.14), transparent 55%),
    radial-gradient(1000px 600px at 88% 100%, rgba(6, 182, 212, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(124, 58, 237, 0.04), rgba(6, 182, 212, 0.03));
  border-top-color: rgba(255, 255, 255, 0.04) !important;
}

.vo-band-bold {
  position: relative;
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.16), rgba(6, 182, 212, 0.08) 55%, rgba(124, 58, 237, 0.05)),
    radial-gradient(1400px 800px at 50% -20%, rgba(124, 58, 237, 0.30), transparent 60%),
    radial-gradient(1000px 600px at 50% 120%, rgba(6, 182, 212, 0.20), transparent 60%);
  border-top-color: rgba(124, 58, 237, 0.18) !important;
  border-bottom-color: rgba(124, 58, 237, 0.18) !important;
}

.lv-band {
  position: relative;
  background:
    radial-gradient(1200px 700px at 12% 0%, rgba(16, 185, 129, 0.15), transparent 55%),
    radial-gradient(1000px 600px at 88% 100%, rgba(245, 158, 11, 0.09), transparent 55%),
    linear-gradient(180deg, rgba(16, 185, 129, 0.05), rgba(245, 158, 11, 0.03));
  border-top-color: rgba(255, 255, 255, 0.04) !important;
}

.lv-band-bold {
  position: relative;
  background:
    linear-gradient(180deg, rgba(16, 185, 129, 0.18), rgba(245, 158, 11, 0.07) 55%, rgba(16, 185, 129, 0.05)),
    radial-gradient(1400px 800px at 50% -20%, rgba(16, 185, 129, 0.32), transparent 60%),
    radial-gradient(1000px 600px at 50% 120%, rgba(245, 158, 11, 0.18), transparent 60%);
  border-top-color: rgba(16, 185, 129, 0.22) !important;
  border-bottom-color: rgba(16, 185, 129, 0.22) !important;
}

/* Inside bold bands, glass cards need a touch more contrast so they pop */
.vo-band-bold .glass-card,
.lv-band-bold .glass-card,
.vo-band-bold .product-card,
.lv-band-bold .pricing-card,
.vo-band-bold .industry-card,
.lv-band-bold .deploy-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.lv-band-bold .pricing-popular {
  background: linear-gradient(170deg, rgba(16, 185, 129, 0.22), rgba(255, 255, 255, 0.06));
  border-color: rgba(16, 185, 129, 0.5);
}

/* =============================================
   LOCKVAULT SMART LOCKER HUB (container showcase)
   ============================================= */

.hub-gallery {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .hub-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.hub-showcase {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.18);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(16, 185, 129, 0.08);
  background: #05090f;
  isolation: isolate;
}

.hub-showcase-primary {
  display: flex;
}

.hub-showcase-primary .hub-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hub-showcase-secondary {
  display: flex;
  border-color: rgba(245, 158, 11, 0.22);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(245, 158, 11, 0.08);
}

.hub-showcase-secondary .hub-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

@media (max-width: 900px) {
  .hub-showcase-primary,
  .hub-showcase-secondary {
    display: block;
  }
  .hub-showcase-primary .hub-showcase-img {
    height: auto;
  }
  .hub-showcase-secondary {
    aspect-ratio: 16 / 11;
  }
}

.hub-showcase-img {
  display: block;
  width: 100%;
  height: auto;
}

.hub-showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 50% 110%, rgba(6, 10, 20, 0.6), transparent 60%),
    linear-gradient(180deg, rgba(6, 10, 20, 0.15) 0%, transparent 35%, rgba(6, 10, 20, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.hub-showcase-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(6, 10, 20, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.32);
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  z-index: 4;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.hub-showcase-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.22);
  animation: pulse 2s ease-in-out infinite;
}

.hub-showcase-badge-amber {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 24px rgba(245, 158, 11, 0.14);
}

.hub-showcase-badge-dot-amber {
  background: #fbbf24;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.28);
}

/* Annotation pins on the container photo */
.hub-anno {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transform: translate(-50%, -50%);
}

.hub-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #34d399;
  border: 2px solid #fff;
  box-shadow:
    0 0 0 4px rgba(52, 211, 153, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.55);
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

.hub-label {
  display: inline-flex;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(6, 10, 20, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

/* Specific positions on the festival container photo */
.hub-anno-solar    { top: 13%;  left: 50%; }
.hub-anno-starlink { top: 22%;  left: 87%; transform: translate(-100%, -50%); }
.hub-anno-kiosk    { top: 55%;  left: 51%; }
.hub-anno-lockers  { top: 62%;  left: 22%; }

@media (max-width: 900px) {
  .hub-label { font-size: 0.66rem; padding: 0.3rem 0.6rem; }
  .hub-dot { width: 12px; height: 12px; }
}

@media (max-width: 640px) {
  .hub-anno { display: none; }
  .hub-showcase-badge {
    bottom: 12px;
    left: 12px;
    font-size: 0.68rem;
    padding: 0.42rem 0.8rem;
  }
}

/* Value-prop cards */
.hub-card {
  padding: 24px 22px;
  border-radius: 20px;
  background:
    linear-gradient(170deg, rgba(16, 185, 129, 0.06), rgba(255, 255, 255, 0.02) 70%);
  border: 1px solid rgba(16, 185, 129, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hub-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.4);
  background:
    linear-gradient(170deg, rgba(16, 185, 129, 0.12), rgba(255, 255, 255, 0.03) 70%);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.12);
}

.hub-card > * { position: relative; z-index: 1; }

.hub-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.28), rgba(245, 158, 11, 0.18));
  border: 1px solid rgba(16, 185, 129, 0.42);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hub-card-icon-wide {
  width: auto;
  min-width: 52px;
  padding: 0 0.7rem;
}

.hub-card-icon svg { color: #6ee7b7; }

.hub-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: #fff;
  line-height: 1.3;
}

.hub-card p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

/* =============================================
   LOCKVAULT "IN ACTION" GALLERY
   ============================================= */

.lv-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.lv-gallery-item {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  isolation: isolate;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.lv-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 20, 0) 35%, rgba(6, 10, 20, 0.92) 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.lv-gallery-item:hover {
  transform: translateY(-3px);
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow: 0 18px 48px rgba(16, 185, 129, 0.18);
}

.lv-gallery-tall {
  grid-row: span 2;
}

.lv-gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.15rem 1.1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lv-gallery-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(16, 185, 129, 0.22);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #a7f3d0;
  line-height: 1;
  width: fit-content;
  backdrop-filter: blur(6px);
}

.lv-gallery-item p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
  .lv-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .lv-gallery-tall {
    grid-row: span 1;
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
  .lv-gallery-item:not(.lv-gallery-tall) {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 520px) {
  .lv-gallery { grid-template-columns: 1fr; }
  .lv-gallery-tall,
  .lv-gallery-item:not(.lv-gallery-tall) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
}
