/* =============================================
   Reservista by Megon. Custom CSS v2.0
   Brand design system · Kinetic Sublime hero · Choreographic Flow animations
   ============================================= */

/* ── A11Y: Skip-to-content link (visible only on keyboard focus) ── */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 16px;
  z-index: 100;
  padding: 8px 16px;
  background: #F59E0B;
  color: #0F172A;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 200ms ease;
}
.skip-to-content:focus {
  top: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ── A11Y: Consistent :focus-visible ring ── */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid #60A5FA;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── BASE ── */
*  { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ── MOBILE TOUCH FIXES ── */
a, button, [role="button"], input, select, textarea, summary {
  touch-action: manipulation; /* disables double-tap-to-zoom on interactive elements */
}

/* ═══════════════════════════════════════════════════════
   HEADER NAV — "Brass & Midnight"
   Scoped under .meg-nav. Handles desktop + mobile + scroll
   states. All rules class-based to avoid specificity wars.
   ═══════════════════════════════════════════════════════ */

.meg-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  height: 72px;
  transition: height 260ms cubic-bezier(.22,1,.36,1), background-color 260ms ease, backdrop-filter 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

/* Scrolled state: glassmorphic shell + brass-hairline bottom border */
/* `.is-solid` — apply to pages with light-coloured heroes (blog articles,
   demo, privacy, terms) so the nav is visible from the very top. */
.meg-nav.is-scrolled,
.meg-nav.is-solid {
  height: 60px;
  background: rgba(15, 23, 42, .78);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom-color: rgba(245, 158, 11, .22);
  box-shadow: 0 8px 32px -8px rgba(2, 6, 23, .5);
}
.meg-nav.is-solid .meg-nav-brand-logo { height: 28px; }

.meg-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 1024px) { .meg-nav-inner { padding: 0 48px; } }

/* ---------- Brand block (left) ---------- */
.meg-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.meg-nav-brand-logo {
  height: 32px;
  transition: height 260ms cubic-bezier(.22,1,.36,1);
  display: block;
}
.meg-nav.is-scrolled .meg-nav-brand-logo { height: 28px; }
.meg-nav-brand-eyebrow {
  display: none;
  align-items: center;
  gap: 10px;
  padding-left: 14px;
  border-left: 1px solid rgba(245, 158, 11, .35); /* brass hairline */
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: #94a3b8;
}
@media (min-width: 640px) { .meg-nav-brand-eyebrow { display: inline-flex; } }
.meg-nav-brand-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: megPulseDot 2.4s ease-in-out infinite;
}
@keyframes megPulseDot {
  0%, 100% { opacity: .4; transform: scale(.85); }
  50%      { opacity: 1;  transform: scale(1.1); }
}

/* ---------- Centre nav links ---------- */
.meg-nav-center {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1024px) { .meg-nav-center { display: flex; } }

.meg-nav-link {
  position: relative;
  padding: 6px 0;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -.005em;
  transition: color 220ms ease;
  white-space: nowrap;
}
.meg-nav-link:hover,
.meg-nav-link[aria-expanded="true"],
.meg-nav-link.is-active {
  color: #fff;
}
/* Animated gold underline */
.meg-nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms cubic-bezier(.22,1,.36,1);
}
.meg-nav-link:hover::after,
.meg-nav-link[aria-expanded="true"]::after,
.meg-nav-link.is-active::after {
  transform: scaleX(1);
}
/* Reverse sweep direction on hover-out */
.meg-nav-link:not(:hover):not([aria-expanded="true"]):not(.is-active)::after {
  transform-origin: right center;
}
.meg-nav-caret {
  display: inline-block;
  width: 10px; height: 10px;
  margin-left: 4px;
  transition: transform 220ms ease;
  vertical-align: middle;
}
.meg-nav-trigger[aria-expanded="true"] .meg-nav-caret {
  transform: rotate(180deg);
}

/* ---------- Products dropdown ---------- */
.meg-nav-dropdown-wrap {
  position: relative;
}
/* Invisible, always-interactive "bridge" — covers the 14px gap between
   trigger and dropdown so the cursor can travel without losing :hover.
   Must NOT be pointer-events:none, or it won't register the cursor crossing it. */
.meg-nav-dropdown-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  max-width: calc(100vw - 32px);
  height: 16px;
  background: transparent;
  z-index: 55;
}

.meg-nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: min(520px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  background: rgba(15, 23, 42, .92);
  backdrop-filter: blur(22px) saturate(1.1);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 24px 56px rgba(2, 6, 23, .55), inset 0 1px 0 rgba(255, 255, 255, .06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.22,1,.36,1), visibility 0ms linear 220ms;
  pointer-events: none;
}
.meg-nav-dropdown::before {
  /* Small top arrow */
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: rgba(15, 23, 42, .92);
  border: 1px solid rgba(255, 255, 255, .08);
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 3px;
}
.meg-nav-dropdown-wrap:hover > .meg-nav-dropdown,
.meg-nav-dropdown-wrap:focus-within > .meg-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.22,1,.36,1), visibility 0ms;
}
.meg-dd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: background-color 200ms ease;
}
.meg-dd-item:hover { background: rgba(255, 255, 255, .04); }
.meg-dd-item.is-soon { cursor: default; opacity: .78; }
.meg-dd-item.is-soon:hover { background: transparent; }
.meg-dd-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}
.meg-dd-icon svg { width: 18px; height: 18px; color: #fff; }
.meg-dd-body { min-width: 0; }
.meg-dd-title {
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 2px;
  color: #fff;
}
.meg-dd-sub {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.4;
  margin: 0;
}
.meg-dd-soon {
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #cbd5e1;
  text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
}

/* ---------- Right-side CTAs ---------- */
.meg-nav-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.meg-nav-wa {
  display: none;
}
@media (min-width: 1024px) { .meg-nav-wa { display: inline-flex; } }
.meg-nav-wa {
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #34d399;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.meg-nav-wa:hover {
  background: rgba(16, 185, 129, .14);
  border-color: rgba(52, 211, 153, .42);
  transform: translateY(-1px);
}
.meg-nav-wa svg { width: 20px; height: 20px; }

.meg-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #D97706 0%, #F59E0B 50%, #FBBF24 100%);
  color: #0F172A;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.005em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(245, 158, 11, .32), inset 0 1px 0 rgba(255, 255, 255, .3);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.meg-nav-cta::before {
  /* Shimmer strip on hover */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 700ms cubic-bezier(.22,1,.36,1);
}
.meg-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(245, 158, 11, .42), inset 0 1px 0 rgba(255, 255, 255, .4);
}
.meg-nav-cta:hover::before { transform: translateX(120%); }

/* Below lg, the compact `.meg-nav-cta-sm` takes over — hide the full pill so
   the navbar doesn't overflow phone viewports. */
@media (max-width: 1023px) { .meg-nav-cta { display: none; } }

/* ---------- Hamburger (mobile only) ---------- */
.meg-nav-hamburger {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  cursor: pointer;
  position: relative;
  transition: background-color 200ms ease;
  padding: 0;
}
@media (min-width: 1024px) {
  .meg-nav-hamburger { display: none; }
}
.meg-nav-hamburger:hover { background: rgba(255, 255, 255, .08); }
.meg-nav-hamburger-lines {
  position: relative;
  width: 20px; height: 14px;
}
.meg-nav-hamburger-lines::before,
.meg-nav-hamburger-lines::after,
.meg-nav-hamburger-lines span {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: #f1f5f9;
  border-radius: 2px;
  transition: transform 300ms cubic-bezier(.68,-0.5,.27,1.5), top 200ms ease 100ms, opacity 200ms ease;
}
.meg-nav-hamburger-lines::before { top: 0; }
.meg-nav-hamburger-lines span   { top: 6px; }
.meg-nav-hamburger-lines::after { top: 12px; }
.meg-nav-hamburger.is-open .meg-nav-hamburger-lines::before {
  top: 6px; transform: rotate(45deg);
  transition: top 200ms ease, transform 300ms ease 200ms;
}
.meg-nav-hamburger.is-open .meg-nav-hamburger-lines::after {
  top: 6px; transform: rotate(-45deg);
  transition: top 200ms ease, transform 300ms ease 200ms;
}
.meg-nav-hamburger.is-open .meg-nav-hamburger-lines span {
  opacity: 0;
}

/* Compact demo button for mobile */
.meg-nav-cta-sm {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #D97706, #F59E0B);
  color: #0F172A;
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(245, 158, 11, .28);
}
@media (min-width: 1024px) { .meg-nav-cta-sm { display: none; } }

/* ---------- Mobile drawer ---------- */
.meg-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(2, 6, 23, .6);
  z-index: 60;
  opacity: 0; visibility: hidden;
  transition: opacity 180ms ease, visibility 0ms linear 180ms;
}
.meg-drawer-backdrop.is-open {
  opacity: 1; visibility: visible;
  transition: opacity 180ms ease, visibility 0ms;
}

.meg-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 85vw; max-width: 420px;
  background: linear-gradient(180deg, #0B1220 0%, #0F172A 100%);
  border-left: 1px solid rgba(245, 158, 11, .25); /* brass hairline accent */
  z-index: 61;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 220ms cubic-bezier(.22,1,.36,1), visibility 0s 220ms;
  display: flex; flex-direction: column;
  padding: 20px 24px 24px;
  overflow-y: auto;
  will-change: transform;
}
.meg-drawer.is-open { transform: translateX(0); visibility: visible; transition: transform 220ms cubic-bezier(.22,1,.36,1), visibility 0s 0s; }

.meg-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  margin-bottom: 20px;
}
.meg-drawer-close {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #cbd5e1;
  cursor: pointer;
  transition: background-color 200ms ease;
}
.meg-drawer-close:hover { background: rgba(255, 255, 255, .08); color: #fff; }

.meg-drawer-section {
  padding: 10px 0;
}
.meg-drawer-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: #64748b;
  margin: 16px 0 8px;
}
.meg-drawer a.meg-drawer-item,
.meg-drawer span.meg-drawer-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 8px;
  border-radius: 10px;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 15px; font-weight: 500;
  min-height: 48px;
  transition: background-color 200ms ease;
  opacity: 0;
  transform: translateX(16px);
}
.meg-drawer.is-open .meg-drawer-item {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 180ms ease, transform 200ms cubic-bezier(.22,1,.36,1);
}
/* Stagger in via nth-child — tighter cadence so the last item arrives fast */
.meg-drawer.is-open .meg-drawer-item:nth-child(1) { transition-delay: 60ms; }
.meg-drawer.is-open .meg-drawer-item:nth-child(2) { transition-delay: 90ms; }
.meg-drawer.is-open .meg-drawer-item:nth-child(3) { transition-delay: 120ms; }
.meg-drawer.is-open .meg-drawer-item:nth-child(4) { transition-delay: 150ms; }
.meg-drawer.is-open .meg-drawer-item:nth-child(5) { transition-delay: 180ms; }
.meg-drawer.is-open .meg-drawer-item:nth-child(6) { transition-delay: 210ms; }

a.meg-drawer-item:hover { background: rgba(255, 255, 255, .04); color: #fff; }
.meg-drawer-item-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}
.meg-drawer-item-icon svg { width: 16px; height: 16px; color: #fff; }
.meg-drawer-soon {
  margin-left: auto;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #94a3b8;
  text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
}

.meg-drawer-cta-row {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.meg-drawer-cta-primary,
.meg-drawer-cta-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 200ms ease, background-color 200ms ease;
}
.meg-drawer-cta-primary {
  background: linear-gradient(135deg, #D97706, #F59E0B);
  color: #0F172A;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(245, 158, 11, .32);
}
.meg-drawer-cta-primary:hover { transform: translateY(-1px); }
.meg-drawer-cta-secondary {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #34d399;
  font-size: 14px;
  gap: 8px;
}
.meg-drawer-cta-secondary svg { width: 18px; height: 18px; }
.meg-drawer-cta-secondary:hover { background: rgba(16, 185, 129, .12); border-color: rgba(52, 211, 153, .4); }

/* Lock body scroll while drawer open */
body.meg-drawer-lock { overflow: hidden; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .meg-nav,
  .meg-nav-brand-logo,
  .meg-nav-hamburger-lines::before,
  .meg-nav-hamburger-lines::after,
  .meg-nav-hamburger-lines span,
  .meg-drawer, .meg-drawer-backdrop,
  .meg-drawer-item,
  .meg-nav-link::after,
  .meg-nav-dropdown,
  .meg-nav-cta::before {
    transition-duration: 120ms !important;
    animation-duration: .01ms !important;
  }
  .meg-nav-brand-pulse { animation: none; }
}

/* ── CSS TOKENS ── */
:root {
   brand-950: #020617;  brand-900: #0F172A;  brand-800: #1E293B;
   brand-700: #1D4ED8;  brand-600: #2563EB;  brand-500: #3B82F6;
   brand-400: #60A5FA;  brand-100: #DBEAFE;  brand-50:  #EFF6FF;
   gold-600:  #D97706;  gold-500:  #F59E0B;  gold-400:  #FBBF24;  gold-100: #FEF3C7;
   emerald:   #10B981;
   ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── GRADIENTS ── */
.gradient-hero        { background: linear-gradient(135deg, #020617 0%, #0F172A 40%, #1E3A8A 75%, #4338CA 100%); }
.gradient-mesh        { background-color: #0F172A; background-image: radial-gradient(at 20% 30%, rgba(29,78,216,.35) 0, transparent 50%), radial-gradient(at 80% 10%, rgba(99,102,241,.25) 0, transparent 50%), radial-gradient(at 50% 80%, rgba(67,56,202,.2) 0, transparent 50%); }
.gradient-brand       { background: linear-gradient(135deg, #1D4ED8 0%, #6366F1 100%); }
.gradient-gold        { background: linear-gradient(135deg, #D97706 0%, #F59E0B 50%, #FCD34D 100%); }
.gradient-dark-section{ background: linear-gradient(160deg, #0F172A 0%, #1E3A8A 60%, #1E293B 100%); }
.text-gradient-brand  { background: linear-gradient(135deg, #60A5FA, #818CF8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── SHADOWS ── */
.shadow-brand     { box-shadow: 0 8px 32px rgba(37,99,235,.28); }
.shadow-brand-lg  { box-shadow: 0 16px 48px rgba(37,99,235,.35); }
.shadow-gold      { box-shadow: 0 8px 24px rgba(245,158,11,.35); }
.shadow-dark      { box-shadow: 0 24px 64px rgba(2,6,23,.55); }
.shadow-card      { box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.07); }
.shadow-card-hover{ box-shadow: 0 4px 8px rgba(0,0,0,.06), 0 12px 40px rgba(0,0,0,.1); }

/* ── BUTTONS ── */
.btn-brand {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(135deg, #1D4ED8, #6366F1);
  color: #fff; font-weight: 600; font-family: 'Inter', sans-serif;
  border-radius: 9999px; border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,99,235,.28);
  transition: all 250ms var( ease-spring); white-space: nowrap;
  font-size: .9375rem; padding: .625rem 1.5rem;
}
.btn-brand:hover { transform: translateY(-1px); box-shadow: 0 16px 48px rgba(37,99,235,.38); filter: brightness(1.08); }
.btn-brand:active { transform: translateY(0); }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(135deg, #D97706, #F59E0B, #FCD34D);
  color: #0F172A; font-weight: 700; font-family: 'Inter', sans-serif;
  border-radius: 9999px; border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 24px rgba(245,158,11,.35);
  transition: all 250ms var( ease-spring); white-space: nowrap;
  font-size: .9375rem; padding: .625rem 1.5rem;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 16px 40px rgba(245,158,11,.45); filter: brightness(1.05); }
.btn-gold:active { transform: translateY(0); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: transparent; color: #fff; font-weight: 500; font-family: 'Inter', sans-serif;
  border: 1.5px solid rgba(255,255,255,.25); border-radius: 9999px;
  cursor: pointer; text-decoration: none; transition: all 200ms ease; white-space: nowrap;
  font-size: .9375rem; padding: .625rem 1.5rem;
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

.btn-ghost-light {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: transparent; color: #2563EB; font-weight: 500; font-family: 'Inter', sans-serif;
  border: 1.5px solid #BFDBFE; border-radius: 9999px;
  cursor: pointer; text-decoration: none; transition: all 200ms ease; white-space: nowrap;
  font-size: .9375rem; padding: .625rem 1.5rem;
}
.btn-ghost-light:hover { background: #EFF6FF; border-color: #2563EB; }

/* ── SECTION LABELS ── */
.label-blue {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem; background: #EFF6FF; color: #1D4ED8;
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  border-radius: 9999px; border: 1px solid #BFDBFE;
}
.label-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem; background: rgba(245,158,11,.15); color: #FBBF24;
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  border-radius: 9999px; border: 1px solid rgba(245,158,11,.25);
}
.label-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem; background: rgba(96,165,250,.1); color: #60A5FA;
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  border-radius: 9999px; border: 1px solid rgba(96,165,250,.2);
}

/* ── NAVBAR ── */
#navbar {
  background: rgba(15,23,42,.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06); transition: all 300ms ease;
}
#navbar.scrolled { background: rgba(15,23,42,.97); box-shadow: 0 4px 24px rgba(2,6,23,.4); }

/* ── CARDS ── */
.card-feature {
  background: #fff; border: 1px solid #E2E8F0; border-top: 3px solid #3B82F6;
  border-radius: 16px; box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.07);
  transition: all 300ms var( ease-spring); position: relative; overflow: hidden;
}
.card-feature:hover { transform: translateY(-4px); box-shadow: 0 4px 8px rgba(0,0,0,.06), 0 12px 40px rgba(0,0,0,.1); border-color: #BFDBFE; }
.card-dark   { background: #1E293B; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; box-shadow: 0 24px 64px rgba(2,6,23,.55); }
.card-glass  { background: rgba(255,255,255,.06); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; transition: all 250ms ease; }
.card-glass:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }

/* ── TESTIMONIALS ── */
.card-testimonial {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 16px;
  padding: 1.75rem; box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.06);
  transition: all 300ms ease;
}
.card-testimonial:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }

/* ── DEFAULT CARD ── */
.card-default {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.07);
  transition: all 300ms var( ease-spring);
}
.card-default:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }

/* ── PRICING ── */
.card-pricing {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 20px;
  padding: 2rem; transition: all 300ms var( ease-spring); position: relative;
}
.card-pricing:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.card-pricing.featured {
  background: linear-gradient(160deg, #0F172A 0%, #1E3A8A 60%, #1E293B 100%);
  border: 2px solid rgba(99,102,241,.5);
  box-shadow: 0 8px 32px rgba(37,99,235,.28);
}
.card-pricing.featured:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(37,99,235,.35); }

/* ── BILLING TOGGLE ── */
#billing-monthly.active, #billing-annual.active {
  background: #fff; color: #1D4ED8; box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
#billing-monthly:not(.active), #billing-annual:not(.active) {
  background: transparent; color: #64748B;
}

/* ── STATS ── */
.stat-number { font-size: 3.5rem; font-weight: 800; color: #0F172A; line-height: 1; letter-spacing: -.04em; }
.stat-underline { height: 3px; width: 40px; background: linear-gradient(135deg,#D97706,#F59E0B); border-radius: 9999px; margin-top: 8px; }

/* ── GESTALT: CONSISTENT SECTION SPACING ── */
/* All major content sections use py-24 for rhythm.
   Only hero uses unique padding. */

/* ── FAQ ACCORDION ── */
.faq-item { border-bottom: 1px solid #E2E8F0; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; cursor: pointer; font-weight: 500; color: #0F172A; user-select: none; gap: 1rem; transition: color 200ms; }
.faq-question:hover { color: #2563EB; }
.faq-answer  { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding-bottom: 1.25rem; color: #64748B; line-height: 1.7; font-size: .9375rem; }
.faq-answer p { padding-bottom: 1.25rem; color: #64748B; line-height: 1.7; font-size: .9375rem; }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; color: #94A3B8; transition: transform .3s ease, color .3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: #2563EB; }

/* ── TABS ── */
.tab-btn { padding: .625rem 1.25rem; border-radius: 9999px; font-weight: 500; font-size: .875rem; color: #64748B; cursor: pointer; transition: all 200ms ease; border: 1px solid transparent; background: transparent; font-family: 'Inter', sans-serif; }
.tab-btn:hover { color: #0F172A; background: #F8FAFC; }
.tab-btn.active { color: #2563EB; background: #EFF6FF; border-color: #BFDBFE; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── FORMS ── */
.form-input { width: 100%; padding: .75rem 1rem; border: 1.5px solid #E2E8F0; border-radius: 12px; font-size: 1rem; font-family: 'Inter', sans-serif; color: #0F172A; background: #fff; transition: all 200ms ease; outline: none; -webkit-appearance: none; appearance: none; }
.form-input::placeholder { color: #94A3B8; }
.form-input:focus { border-color: #3B82F6; box-shadow: 0 0 0 3px rgba(59,130,246,.12); }
.form-label { display: block; font-size: .875rem; font-weight: 500; color: #374151; margin-bottom: .375rem; }
.form-input-dark { width: 100%; padding: .75rem 1rem; border: 1.5px solid rgba(255,255,255,.12); border-radius: 12px; font-size: 1rem; font-family: 'Inter', sans-serif; color: #F8FAFC; background: rgba(255,255,255,.05); transition: all 200ms ease; outline: none; }
.form-input-dark::placeholder { color: rgba(255,255,255,.55); }
.form-input-dark::-webkit-input-placeholder { color: rgba(255,255,255,.55); }
.form-input-dark::-moz-placeholder          { color: rgba(255,255,255,.55); opacity: 1; }
.form-input-dark:-ms-input-placeholder      { color: rgba(255,255,255,.55); }
.form-input-dark:focus { border-color: #3B82F6; box-shadow: 0 0 0 3px rgba(59,130,246,.15); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-up  { animation: fadeUp .5s var( ease-spring) both; }
.delay-100 { animation-delay: 100ms; } .delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; } .delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.animate-float        { animation: float 4s ease-in-out infinite; }
.animate-float-delay  { animation: float 4s ease-in-out 1.5s infinite; }
.animate-float-delay2 { animation: float 4s ease-in-out 3s infinite; }

@keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.6; transform:scale(.8); } }
.animate-pulse-dot { animation: pulseDot 1.8s ease-in-out infinite; }

/* ── SCROLL REVEAL SYSTEM ── */

/* Default: fade up */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s var( ease-spring); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Slide from left */
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s var( ease-spring); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Slide from right */
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s var( ease-spring); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* On narrow screens the 40px slide exceeds the container's gutter and can
   push past the viewport. Shrink the offset to a value that stays inside
   typical px-6 (24px) container padding. */
@media (max-width: 767px) {
  .reveal-left  { transform: translateX(-16px); }
  .reveal-right { transform: translateX(16px); }
}

/* Scale bloom */
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity .7s ease, transform .7s var( ease-spring); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Fade only (no movement) */
.reveal-fade { opacity: 0; transition: opacity .8s ease; }
.reveal-fade.visible { opacity: 1; }

/* Stagger delays for grid children */
.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: .1s; }
.stagger-3 { transition-delay: .2s; }
.stagger-4 { transition-delay: .3s; }
.stagger-5 { transition-delay: .4s; }
.stagger-6 { transition-delay: .5s; }

/* ── SECTION BOUNDARY TRANSITIONS ── */

/* Soft gradient blend: dark → light (top of light section) */
.section-fade-in {
  position: relative;
}
.section-fade-in::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 48px;
  background: linear-gradient(to bottom, var( fade-from, #020617) 0%, transparent 100%);
  opacity: 0.35;
  pointer-events: none; z-index: 1;
}

/* Soft gradient blend: light → dark (bottom of light section) */
.section-fade-out {
  position: relative;
}
.section-fade-out::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 48px;
  background: linear-gradient(to top, var( fade-to, #0F172A) 0%, transparent 100%);
  opacity: 0.35;
  pointer-events: none; z-index: 1;
}

/* Glowing divider line between sections */
.section-glow-divider {
  height: 1px; position: relative; overflow: visible;
  background: linear-gradient(90deg, transparent 0%, rgba(59,130,246,.12) 20%, rgba(99,102,241,.25) 50%, rgba(59,130,246,.12) 80%, transparent 100%);
}
.section-glow-divider::after {
  content: ''; position: absolute; inset: -3px 30% -3px;
  background: rgba(99,102,241,.06); filter: blur(6px);
}

/* ── MOCKUP ── */
.mockup-window { background: #1E293B; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 24px 80px rgba(2,6,23,.6), 0 0 0 1px rgba(255,255,255,.05); }
.mockup-titlebar { background: #273549; padding: 10px 16px; display: flex; align-items: center; gap: 6px; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ── FLOAT CARDS (hero) ── */
.float-card { background: rgba(30,41,59,.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 14px 16px; min-width: 180px; max-width: calc(100vw - 32px); box-shadow: 0 16px 48px rgba(2,6,23,.5); }
@media (max-width: 480px) { .float-card { min-width: min(160px, 100%); } }

/* ── MISC ── */
.check-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .875rem; }
.check-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: #EFF6FF; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.logo-pill { display: flex; align-items: center; justify-content: center; padding: .75rem 1.5rem; background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 12px; color: #94A3B8; font-size: .875rem; font-weight: 600; transition: all 200ms ease; }
.logo-pill:hover { background: #EFF6FF; border-color: #BFDBFE; color: #2563EB; }

/* ── LOGO MARQUEE. infinite scroll social proof ── */
.logo-pill-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; flex-shrink: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 9999px;
  color: #94A3B8; font-size: .8125rem; font-weight: 600;
  white-space: nowrap;
  transition: all 250ms ease;
}
.logo-pill-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #CBD5E1; }

.logo-marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  flex: 1;
  min-width: 0; /* allow flex shrink — without this, the max-content marquee inside makes the wrapper expand and overflow viewport on mobile */
}
.logo-marquee {
  display: flex; gap: .75rem;
  width: max-content;
  animation: logoMarquee 30s linear infinite;
}
@keyframes logoMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-marquee:hover { animation-play-state: paused; }

/* ── TRANSFORMATION CARDS ── */
.transform-card {
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 300ms var( ease-spring);
}
.transform-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.transform-card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid; margin-bottom: .75rem;
}
.transform-bar {
  height: 4px; width: 100%;
  background: rgba(255,255,255,.06);
  border-radius: 9999px; overflow: hidden;
}
.transform-bar-fill {
  height: 100%; border-radius: 9999px;
  animation: transformFill 1.5s var( ease-spring) both;
}
.reveal.visible .transform-bar-fill {
  animation: transformFill 1.5s var( ease-spring) both;
}
@keyframes transformFill {
  from { width: 0 !important; }
}

/* Light glassmorphism variant */
.transform-card-light {
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 350ms var( ease-spring);
  box-shadow:
    0 1px 2px rgba(0,0,0,.03),
    0 4px 16px rgba(0,0,0,.04),
    inset 0 1px 0 rgba(255,255,255,.8);
  position: relative;
  overflow: hidden;
}
.transform-card-light::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #10B981, #3B82F6, #6366F1);
  opacity: 0; transition: opacity 300ms ease;
}
.transform-card-light:hover::before { opacity: 1; }
.transform-card-light:hover {
  background: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.9);
  transform: translateY(-6px);
  box-shadow:
    0 8px 24px rgba(37,99,235,.08),
    0 20px 48px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.transform-bar-light {
  height: 5px; width: 100%;
  background: rgba(0,0,0,.06);
  border-radius: 9999px; overflow: hidden;
}
.transform-bar-light .transform-bar-fill {
  height: 100%; border-radius: 9999px;
  animation: transformFill 1.5s var( ease-spring) both;
}
.card-blog {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 16px;
  overflow: hidden; transition: all 300ms var( ease-spring);
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.06);
  display: flex; flex-direction: column;
}
.card-blog:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.1); border-color: #BFDBFE; }
.card-blog .blog-cover {
  height: 140px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; overflow: hidden;
}
.card-blog .blog-cover svg { opacity: .15; width: 48px; height: 48px; }
.card-blog .blog-tag {
  position: absolute; top: 12px; right: 12px;
  font-size: .6875rem; font-weight: 600; padding: 4px 10px;
  border-radius: 9999px; line-height: 1.2;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.card-blog .blog-body {
  padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1;
}
.card-blog .blog-body .blog-footer { margin-top: auto; }
.section-divider { height: 1px; background: linear-gradient(to right, transparent, #E2E8F0, transparent); }
.timeline-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#1D4ED8,#6366F1); color: white; font-weight: 700; font-size: .875rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(37,99,235,.3); }

/* ── JOURNEY CARDS ── */
.journey-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 350ms var( ease-spring);
}
.journey-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.3);
}
.journey-card-inner { padding: 1.5rem 1.5rem 1.25rem; }

/* ── FOUNDER CARDS ── */
.founder-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2rem;
  transition: all 350ms var( ease-spring);
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var( brand-700), var( brand-400));
  opacity: 0; transition: opacity 300ms ease;
}
.founder-card:hover::before { opacity: 1; }
.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  border-color: #BFDBFE;
}

/* ══════════════════════════════════════════════════
   KINETIC SUBLIME. Hero Backgrounds
   Inspired by aurora borealis, deep ocean light,
   cosmic nebulae. Slow, layered, inevitable motion.
   ══════════════════════════════════════════════════ */

/* ── HERO BASE ── */
.hero-v2 {
  position: relative; overflow: hidden;
  min-height: auto;
  display: flex; align-items: center;
  padding-top: 64px;
  background: #020617;
}

/* ── LAYER 1: NEBULA. vast, glacially slow, suggests infinite depth ── */
.sublime-nebula {
  position: absolute;
  inset: -50%; width: 200%; height: 200%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(29,78,216,.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(99,102,241,.22) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 50% 90%, rgba(67,56,202,.18) 0%, transparent 65%);
  animation: sublimeNebula 28s ease-in-out infinite;
  will-change: transform; pointer-events: none; z-index: 0;
}
@keyframes sublimeNebula {
  0%,100% { transform: translate(0,0) scale(1) rotate(0deg); }
  25%     { transform: translate(3%,-2%) scale(1.04) rotate(0.5deg); }
  50%     { transform: translate(-2%,3%) scale(0.97) rotate(-0.3deg); }
  75%     { transform: translate(1%,-1.5%) scale(1.02) rotate(0.2deg); }
}

/* ── LAYER 2: AURORA. horizontal drift, breathing light bands ── */
.sublime-aurora {
  position: absolute;
  inset: -30%; width: 160%; height: 160%;
  background:
    radial-gradient(ellipse 120% 35% at 30% 50%, rgba(29,78,216,.28) 0%, transparent 50%),
    radial-gradient(ellipse 100% 40% at 75% 30%, rgba(124,58,237,.18) 0%, transparent 50%);
  filter: blur(80px);
  animation: sublimeAurora 20s ease-in-out infinite;
  will-change: transform, opacity; pointer-events: none; z-index: 0;
}
@keyframes sublimeAurora {
  0%,100% { transform: translateX(0) scaleY(1); opacity: 0.6; }
  33%     { transform: translateX(5%) scaleY(1.2); opacity: 0.9; }
  66%     { transform: translateX(-4%) scaleY(0.85); opacity: 0.65; }
}

/* ── LAYER 3: CAUSTICS. near surface shimmer, like light through water ── */
.sublime-caustics {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 350px at 20% 30%, rgba(96,165,250,.1) 0%, transparent 100%),
    radial-gradient(circle 250px at 80% 65%, rgba(129,140,248,.07) 0%, transparent 100%),
    radial-gradient(circle 180px at 50% 50%, rgba(59,130,246,.05) 0%, transparent 100%);
  animation: sublimeCaustics 12s ease-in-out infinite;
  will-change: transform, opacity; pointer-events: none; z-index: 0;
}
@keyframes sublimeCaustics {
  0%,100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
  50%     { opacity: 1; transform: scale(1.06) rotate(0.5deg); }
}

/* ── FILM GRAIN. tactile depth, physical presence ── */
.sublime-grain {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── BREATHING HORIZON. light pulse at the base, like dawn breaking ── */
.sublime-horizon {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; z-index: 2;
  background: linear-gradient(90deg,
    transparent 0%, rgba(29,78,216,.3) 15%,
    rgba(99,102,241,.7) 50%,
    rgba(29,78,216,.3) 85%, transparent 100%);
  animation: sublimeHorizonPulse 6s ease-in-out infinite;
}
.sublime-horizon::after {
  content: ''; position: absolute;
  inset: -6px 15% -6px;
  background: rgba(99,102,241,.12);
  filter: blur(14px);
  animation: sublimeHorizonGlow 6s ease-in-out infinite;
}
@keyframes sublimeHorizonPulse {
  0%,100% { opacity: 0.5; }
  50%     { opacity: 1; }
}
@keyframes sublimeHorizonGlow {
  0%,100% { opacity: 0.3; transform: scaleX(0.85); }
  50%     { opacity: 1; transform: scaleX(1.15); }
}

/* ── INNER PAGE DARK VARIANT. 2 layers, subtler, meditative ── */
.hero-sublime-inner {
  position: relative; overflow: hidden;
  background: #0F172A;
}
.sublime-drift {
  position: absolute;
  inset: -40%; width: 180%; height: 180%;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(29,78,216,.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 75% 25%, rgba(99,102,241,.18) 0%, transparent 55%);
  filter: blur(80px);
  animation: sublimeDrift 24s ease-in-out infinite;
  will-change: transform; pointer-events: none; z-index: 0;
}
@keyframes sublimeDrift {
  0%,100% { transform: translate(0,0) scale(1) rotate(0deg); }
  33%     { transform: translate(4%,-2%) scale(1.05) rotate(0.3deg); }
  66%     { transform: translate(-3%,3%) scale(0.97) rotate(-0.2deg); }
}
.sublime-pulse {
  position: absolute; inset: 0;
  background: radial-gradient(circle 400px at 50% 50%, rgba(96,165,250,.06) 0%, transparent 100%);
  animation: sublimePulse 8s ease-in-out infinite;
  will-change: opacity, transform; pointer-events: none; z-index: 0;
}
@keyframes sublimePulse {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50%     { opacity: 0.8; transform: scale(1.12); }
}

/* ── LIGHT PAGE VARIANT. barely perceptible, like morning mist ── */
.hero-sublime-light {
  position: relative; overflow: hidden;
  background: #EFF6FF;
}
.sublime-mist {
  position: absolute;
  inset: -30%; width: 160%; height: 160%;
  background:
    radial-gradient(ellipse 80% 60% at 25% 35%, rgba(59,130,246,.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 75% 65%, rgba(99,102,241,.06) 0%, transparent 55%);
  animation: sublimeMist 22s ease-in-out infinite;
  will-change: transform; pointer-events: none; z-index: 0;
}
@keyframes sublimeMist {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(3%,-2%) scale(1.03); }
  66%     { transform: translate(-2%,2%) scale(0.98); }
}

/* ── HERO CONTENT z-layer ── */
.hero-v2 > .hero-content-wrap { position: relative; z-index: 1; width: 100%; }

/* ── GLOW SEPARATOR ── */
.hero-glow-sep {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent 0%, rgba(29,78,216,.5) 25%, rgba(99,102,241,.7) 50%, rgba(29,78,216,.5) 75%, transparent 100%);
}
.hero-glow-sep::after {
  content: ''; position: absolute; inset: -4px 20% -4px;
  background: rgba(99,102,241,.15); filter: blur(12px);
}

/* ── ANNOUNCEMENT BADGE ── */
@keyframes heroFadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes badgePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.82)} }

.hero-announce {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 8px;
  background: rgba(29,78,216,.09);
  border: 1px solid rgba(99,102,241,.28);
  border-radius: 9999px;
  font-size: 12px; font-weight: 600; color: #93C5FD;
  letter-spacing: .04em; cursor: default;
  opacity: 0; animation: heroFadeUp .65s .05s cubic-bezier(0.16,1,.3,1) forwards;
  transition: background 200ms, border-color 200ms;
}
.hero-announce:hover { background: rgba(29,78,216,.16); border-color: rgba(99,102,241,.48); }
.hero-announce-pulse {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(16,185,129,.14); border: 1px solid rgba(16,185,129,.28);
  flex-shrink: 0;
}
.hero-announce-pulse::after {
  content:''; width: 8px; height: 8px; border-radius: 50%;
  background: #10B981; animation: badgePulse 2.2s ease-in-out infinite;
}
.hero-announce-sep { width: 1px; height: 12px; background: rgba(255,255,255,.15); }

/* Mobile: hide the divider + NEW pill + sub-text so the announce pill fits.
   Keeps the pulse dot + main label "Built for Hotels in Northeast India". */
@media (max-width: 640px) {
  .hero-announce { max-width: 100%; }
  .hero-announce > *:nth-child(n+3) { display: none; }
}
.hero-announce-new {
  padding: 2px 8px; border-radius: 9999px;
  background: linear-gradient(135deg, rgba(29,78,216,.4), rgba(99,102,241,.4));
  font-size: 10px; font-weight: 700; color: #A5B4FC; letter-spacing: .06em;
  border: 1px solid rgba(99,102,241,.3);
}

/* ── HEADLINE ── */
.hero-h1 {
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.032em;
  color: #F0F6FF; margin-bottom: 0;
}
.hero-word {
  display: block; overflow: hidden;
}
.hero-word-inner {
  display: block;
  opacity: 0; transform: translateY(100%);
  animation: heroWordSlide .75s cubic-bezier(0.16,1,.3,1) forwards;
}
@keyframes heroWordSlide { to { opacity:1; transform:translateY(0); } }
.hero-accent {
  background: linear-gradient(100deg, #60A5FA 0%, #818CF8 45%, #C084FC 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SUBTEXT ── */
.hero-sub {
  font-size: clamp(.95rem, 1.25vw, 1.075rem);
  color: #94A3B8; line-height: 1.7; max-width: 540px;
  opacity: 0; animation: heroFadeUp .8s .62s cubic-bezier(0.16,1,.3,1) forwards;
}

/* ── CTAs ── */
.hero-ctas { opacity: 0; animation: heroFadeUp .8s .78s cubic-bezier(0.16,1,.3,1) forwards; }

.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 30px; border-radius: 9999px;
  background: linear-gradient(135deg, #1D4ED8 0%, #6366F1 100%);
  color: #fff; font-weight: 700; font-size: 15px; text-decoration: none;
  box-shadow: 0 0 0 1px rgba(99,102,241,.45), 0 8px 32px rgba(37,99,235,.45), inset 0 1px 0 rgba(255,255,255,.15);
  transition: all 280ms cubic-bezier(0.16,1,.3,1);
  position: relative; overflow: hidden; letter-spacing: -.01em;
}
.hero-btn-primary::before {
  content:''; position:absolute; inset:0; border-radius:inherit;
  background: linear-gradient(to bottom, rgba(255,255,255,.12), rgba(255,255,255,0));
  pointer-events: none;
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(99,102,241,.65), 0 16px 48px rgba(37,99,235,.55), inset 0 1px 0 rgba(255,255,255,.2); }
.hero-btn-primary:active { transform: translateY(0); }
.hero-btn-primary svg { transition: transform 200ms; }
.hero-btn-primary:hover svg { transform: translateX(3px); }

.hero-btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 9999px;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.11);
  color: #94A3B8; font-weight: 500; font-size: 15px; text-decoration: none;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: all 220ms ease; letter-spacing: -.01em;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.24); color: #E2E8F0; }
.hero-btn-secondary svg { opacity: .7; transition: opacity 200ms, transform 200ms; }
.hero-btn-secondary:hover svg { opacity: 1; transform: scale(1.1); }

/* ── TRUST ROW ── */
.hero-trust {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  opacity: 0; animation: heroFadeUp .8s .94s cubic-bezier(0.16,1,.3,1) forwards;
}
.hero-avatars { display: flex; }
.hero-av {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid #020617;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: #fff;
  margin-left: -7px; flex-shrink: 0;
  background: linear-gradient(135deg, #1D4ED8, #6366F1);
}
.hero-av:first-child { margin-left: 0; }
.hero-trust-pipe { width: 1px; height: 14px; background: rgba(255,255,255,.1); }
.hero-trust-stat { font-size: 12.5px; color: #475569; }
.hero-trust-stat b { color: #64748B; font-weight: 600; }
.hero-stars-row { display: flex; align-items: center; gap: 5px; }
.hero-stars { font-size: 11px; color: #F59E0B; letter-spacing: .08em; }
.hero-rating-val { font-size: 12px; color: #475569; font-weight: 500; }

/* ── MOCKUP WRAPPER ── */
.hero-mockup-wrap {
  position: relative;
  min-width: 0;
  max-width: 100%;
  opacity: 0; animation: heroMockupReveal 1.1s .22s cubic-bezier(0.16,1,.3,1) forwards;
}
/* Hero grid children must be allowed to shrink below their content's
   intrinsic min-width, otherwise the .stage aspect-ratio inflates the
   column width on narrow phones. */
.hero-v2 .hero-content-wrap > div > .grid > * { min-width: 0; }
@keyframes heroMockupReveal {
  from { opacity:0; transform: translateY(44px) scale(.96); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

/* ── MOCKUP FRAME ── */
.hero-mf {
  background: #080F1C;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 40px 96px rgba(0,0,0,.85),
    0 0 80px rgba(29,78,216,.18),
    inset 0 1px 0 rgba(255,255,255,.07);
}

/* Chrome bar */
.hero-mf-chrome {
  background: #0D1829; padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: 10px;
}
.mf-dots { display: flex; gap: 6px; }
.mf-dot { width: 10px; height: 10px; border-radius: 50%; }
.mf-dot-r { background: rgba(239,68,68,.55); }
.mf-dot-y { background: rgba(234,179,8,.55); }
.mf-dot-g { background: rgba(34,197,94,.55); }
.mf-url-bar {
  flex: 1; height: 26px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: 7px; display: flex; align-items: center;
  padding: 0 10px; gap: 6px;
}
.mf-url-bar svg { flex-shrink: 0; }
.mf-url-text { font-size: 11px; color: #334155; font-family: 'JetBrains Mono', monospace; }
.mf-actions { display: flex; gap: 4px; }
.mf-action-btn {
  width: 26px; height: 26px; border-radius: 6px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center; cursor: default;
}

/* Dashboard body */
.hero-mf-body { padding: 14px 16px; }
.mf-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mf-greeting { font-size: 12.5px; font-weight: 600; color: #CBD5E1; }
.mf-live-chip {
  display: flex; align-items: center; gap: 5px;
  padding: 3px 9px; border-radius: 9999px;
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2);
  font-size: 10px; font-weight: 600; color: #10B981;
}
.mf-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #10B981; animation: badgePulse 2s infinite; }

/* Stats strip */
.mf-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin-bottom: 12px; }
.mf-stat {
  background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; padding: 9px 11px;
}
.mf-stat-lbl { font-size: 9.5px; color: #334155; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; }
.mf-stat-val { font-size: 17px; font-weight: 800; color: #E2E8F0; line-height: 1.1; letter-spacing: -.03em; }
.mf-stat-delta { font-size: 9.5px; margin-top: 2px; font-weight: 500; }
.mf-stat-delta.up { color: #10B981; }
.mf-stat-delta.info { color: #60A5FA; }

/* Room occupancy grid */
.mf-occ-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.mf-occ-label { font-size: 9.5px; color: #334155; text-transform: uppercase; letter-spacing: .07em; }
.mf-occ-legend { display: flex; gap: 8px; }
.mf-legend-item { display: flex; align-items: center; gap: 3px; font-size: 8.5px; color: #334155; }
.mf-legend-dot { width: 7px; height: 7px; border-radius: 2px; }
.mf-room-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 3px; margin-bottom: 12px; }
.mf-room { height: 18px; border-radius: 3px; }
.mf-r-occ  { background: linear-gradient(135deg,#1D4ED8,#2563EB); }
.mf-r-vac  { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.07); }
.mf-r-rsv  { background: rgba(99,102,241,.55); }
.mf-r-cln  { background: rgba(245,158,11,.45); }
.mf-r-mnt  { background: rgba(239,68,68,.3); }

/* Reservation list */
.mf-list-label { font-size: 9.5px; color: #334155; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px; }
.mf-res-list { display: flex; flex-direction: column; gap: 5px; }
.mf-res-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.055);
  border-radius: 8px; padding: 7px 11px;
}
.mf-res-info { display: flex; flex-direction: column; gap: 1px; }
.mf-res-name { font-size: 11.5px; font-weight: 500; color: #CBD5E1; }
.mf-res-room { font-size: 9.5px; color: #334155; }
.mf-badge {
  font-size: 9.5px; font-weight: 600; padding: 2px 9px; border-radius: 9999px;
}
.mf-badge-ci { background: rgba(16,185,129,.14); color: #10B981; border: 1px solid rgba(16,185,129,.22); }
.mf-badge-co { background: rgba(245,158,11,.14); color: #F59E0B; border: 1px solid rgba(245,158,11,.22); }
.mf-badge-ih { background: rgba(29,78,216,.2); color: #60A5FA; border: 1px solid rgba(29,78,216,.3); }

/* ── FLOATING METRIC CARDS ── */
@keyframes heroCardBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

.hero-fc {
  position: absolute; border-radius: 14px;
  background: rgba(8,15,28,.9);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 64px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04), inset 0 1px 0 rgba(255,255,255,.07);
  padding: 13px 17px; min-width: 155px; z-index: 10;
}
.hero-fc-1 { bottom: -20px; left: -52px; animation: heroCardBob 5.5s ease-in-out infinite; }
.hero-fc-2 { top: 28px; right: -52px; animation: heroCardBob 6.5s ease-in-out 1.8s infinite; }
.hero-fc-3 { bottom: 90px; right: -52px; animation: heroCardBob 5s ease-in-out 3.5s infinite; }

.hero-fc-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 7px;
}
.fc-icon-blue  { background: rgba(29,78,216,.2); border: 1px solid rgba(29,78,216,.3); }
.fc-icon-green { background: rgba(16,185,129,.14); border: 1px solid rgba(16,185,129,.22); }
.fc-icon-gold  { background: rgba(245,158,11,.14); border: 1px solid rgba(245,158,11,.2); }
.hero-fc-lbl { font-size: 9.5px; color: #334155; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; }
.hero-fc-val { font-size: 19px; font-weight: 800; color: #F1F5F9; line-height: 1.1; letter-spacing: -.03em; }
.hero-fc-sub { font-size: 10px; margin-top: 3px; font-weight: 500; }
.hero-fc-sub.up  { color: #10B981; }
.hero-fc-sub.muted { color: #334155; }

/* ── CSS PHONE MOCKUP (paired with desktop dashboard) ── */
.hero-mp {
  position: absolute;
  width: 168px;
  right: -82px;
  top: 50%;
  transform: translateY(-50%) rotate(-3deg);
  z-index: 12;
  animation: heroPhoneFloat 6.4s ease-in-out infinite;
  filter:
    drop-shadow(0 30px 50px rgba(0,0,0,.55))
    drop-shadow(0 0 32px rgba(99,102,241,.18));
}
@keyframes heroPhoneFloat {
  0%, 100% { transform: translateY(-50%) rotate(-3deg); }
  50%      { transform: translateY(calc(-50% - 12px)) rotate(-3deg); }
}
.hero-mp-shell {
  width: 100%;
  aspect-ratio: 168 / 348;
  border-radius: 32px;
  background: linear-gradient(160deg, #1F2937 0%, #0B1220 50%, #1F2937 100%);
  padding: 6px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    inset 0 1px 0 rgba(255,255,255,.14);
  position: relative;
}
.hero-mp-island {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 14px;
  border-radius: 12px;
  background: #000;
  z-index: 3;
  box-shadow: inset 0 0 0 0.5px rgba(255,255,255,.08);
}
.hero-mp-screen {
  width: 100%; height: 100%;
  border-radius: 26px;
  background: linear-gradient(180deg, #0B1220 0%, #0F172A 100%);
  padding: 28px 9px 9px;
  display: flex; flex-direction: column;
  gap: 6px;
  overflow: hidden;
  position: relative;
}
.mp-status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 8px; color: #94A3B8; padding: 0 4px;
  font-weight: 600;
}
.mp-status-icons { display: inline-flex; align-items: center; gap: 3px; color: #94A3B8; }
.mp-batt {
  display: inline-block; width: 14px; height: 7px;
  border: 1px solid #94A3B8; border-radius: 1.5px;
  position: relative;
}
.mp-batt::before {
  content: ''; position: absolute; inset: 1px; right: 4px;
  background: #94A3B8; border-radius: 0.5px;
}
.mp-batt::after {
  content: ''; position: absolute; right: -2px; top: 2px;
  width: 1.5px; height: 3px; background: #94A3B8; border-radius: 0 1px 1px 0;
}
.mp-app-head {
  display: flex; align-items: center; gap: 5px;
  padding: 0 4px;
}
.mp-app-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.mp-app-name {
  font-size: 11px; font-weight: 700;
  color: #F1F5F9; letter-spacing: -.01em;
}
.mp-app-tag {
  margin-left: auto; font-size: 8px;
  color: #64748B; font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em;
}
.mp-hero-card {
  background: linear-gradient(135deg, rgba(29,78,216,.32), rgba(99,102,241,.16));
  border: 1px solid rgba(99,102,241,.32);
  border-radius: 9px;
  padding: 7px 9px;
}
.mp-hero-lbl {
  font-size: 7.5px; color: #93C5FD;
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 3px; font-weight: 600;
}
.mp-hero-row {
  display: flex; align-items: baseline;
  justify-content: space-between;
}
.mp-hero-val {
  font-size: 18px; font-weight: 800;
  color: #F1F5F9; line-height: 1; letter-spacing: -.03em;
}
.mp-hero-val small {
  font-size: 10px; font-weight: 600; color: #94A3B8;
}
.mp-hero-pct {
  font-size: 11px; font-weight: 700; color: #34D399;
}
.mp-hero-bar {
  height: 3px; background: rgba(255,255,255,.08);
  border-radius: 2px; margin-top: 6px; overflow: hidden;
}
.mp-hero-fill {
  height: 100%; width: 87%;
  background: linear-gradient(90deg, #1D4ED8, #6366F1);
  border-radius: 2px;
}
.mp-mini-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5px;
}
.mp-mini {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 7px; padding: 6px 7px;
}
.mp-mini-lbl {
  font-size: 7px; color: #64748B;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 1px; font-weight: 600;
}
.mp-mini-val {
  font-size: 13px; font-weight: 800; color: #F1F5F9;
  line-height: 1; letter-spacing: -.02em;
}
.mp-mini-sub {
  font-size: 7.5px; font-weight: 600; margin-top: 2px;
}
.mp-mini-sub.up { color: #10B981; }
.mp-list-label {
  font-size: 7.5px; color: #64748B;
  text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600; padding: 0 4px; margin-top: 1px;
}
.mp-list {
  display: flex; flex-direction: column; gap: 4px;
}
.mp-list-row {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 6px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 7px;
}
.mp-list-avatar {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: #F1F5F9;
  flex-shrink: 0;
}
.mp-list-info {
  display: flex; flex-direction: column; min-width: 0; flex: 1;
}
.mp-list-name {
  font-size: 9px; font-weight: 600;
  color: #F1F5F9; line-height: 1.15;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mp-list-meta {
  font-size: 7px; color: #64748B; line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mp-list-badge {
  font-size: 7px; font-weight: 700;
  padding: 2px 4px; border-radius: 3px;
  background: rgba(16,185,129,.18); color: #34D399;
  border: 1px solid rgba(16,185,129,.24);
  flex-shrink: 0;
}
.mp-list-badge.ih {
  background: rgba(99,102,241,.18); color: #A5B4FC;
  border-color: rgba(99,102,241,.24);
}
.mp-tabbar {
  margin-top: auto; display: flex; gap: 14px;
  justify-content: center; padding: 6px 0 2px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.mp-tab {
  width: 18px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.12);
}
.mp-tab.is-active { background: #6366F1; }

/* ═══════════════════════════════════════════════════════════
   SECTION RHYTHM — vertical boundaries at 60% of Tailwind defaults
   Applies only to top-level <section> elements with py-* utilities,
   so cards / buttons / inner blocks keep their own padding.
   ═══════════════════════════════════════════════════════════ */
section[class~="py-28"] { padding-top: 4.2rem !important; padding-bottom: 4.2rem !important; }
section[class~="py-24"] { padding-top: 3.6rem !important; padding-bottom: 3.6rem !important; }
section[class~="py-20"] { padding-top: 3rem   !important; padding-bottom: 3rem   !important; }
section[class~="py-16"] { padding-top: 2.4rem !important; padding-bottom: 2.4rem !important; }
section[class~="py-14"] { padding-top: 2.1rem !important; padding-bottom: 2.1rem !important; }
section[class~="py-12"] { padding-top: 1.8rem !important; padding-bottom: 1.8rem !important; }
section[class~="py-10"] { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
section[class~="pt-16"] { padding-top: 2.4rem !important; }
section[class~="pb-16"] { padding-bottom: 2.4rem !important; }
section[class~="pt-20"] { padding-top: 3rem   !important; }
section[class~="pb-20"] { padding-bottom: 3rem !important; }
section[class~="pt-24"] { padding-top: 3.6rem !important; }
section[class~="pb-24"] { padding-bottom: 3.6rem !important; }

@media (min-width: 1024px) {
  section[class~="lg:py-24"] { padding-top: 3.6rem !important; padding-bottom: 3.6rem !important; }
  section[class~="lg:py-20"] { padding-top: 3rem   !important; padding-bottom: 3rem   !important; }
  section[class~="lg:py-16"] { padding-top: 2.4rem !important; padding-bottom: 2.4rem !important; }
  section[class~="lg:py-12"] { padding-top: 1.8rem !important; padding-bottom: 1.8rem !important; }
}
@media (min-width: 768px) {
  section[class~="md:py-24"] { padding-top: 3.6rem !important; padding-bottom: 3.6rem !important; }
  section[class~="md:py-20"] { padding-top: 3rem   !important; padding-bottom: 3rem   !important; }
  section[class~="md:py-16"] { padding-top: 2.4rem !important; padding-bottom: 2.4rem !important; }
}

/* ═══════════════════════════════════════════════════════════
   PMS CORE CAPABILITIES — Interactive explorer (pms.html)
   ═══════════════════════════════════════════════════════════ */

.pms-cap-section { position: relative; overflow: hidden; }
.pms-cap-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 8% 20%, rgba(99,102,241,.06), transparent 70%),
    radial-gradient(50% 40% at 92% 80%, rgba(245,158,11,.05), transparent 70%);
  pointer-events: none;
}

.pms-cap {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── LEFT: vertical tab list ── */
.pms-cap-list {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pms-cap-tab {
  --accent: #6366F1;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid transparent;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: background 220ms ease, border-color 220ms ease,
              transform 220ms ease, box-shadow 220ms ease;
  font: inherit; color: inherit;
}
.pms-cap-tab:hover {
  background: rgba(15,23,42,.03);
}
.pms-cap-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.pms-cap-tab.is-active {
  background: #FFFFFF;
  border-color: rgba(15,23,42,.06);
  box-shadow: 0 6px 20px -4px rgba(15,23,42,.08),
              0 0 0 1px rgba(15,23,42,.03);
}
.pms-cap-tab.is-active::before {
  content: '';
  position: absolute;
  left: 6px; top: 14px; bottom: 14px;
  width: 3px;
  border-radius: 3px;
  background: var(--accent);
}
.pms-cap-num {
  font-family: 'JetBrains Mono', SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: .04em;
  flex-shrink: 0;
  width: 22px;
  transition: color 220ms ease;
}
.pms-cap-tab.is-active .pms-cap-num { color: var(--accent); }
.pms-cap-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,.07);
  color: #94A3B8;
  flex-shrink: 0;
  transition: background 220ms ease, color 220ms ease;
}
.pms-cap-icon svg { width: 18px; height: 18px; }
.pms-cap-tab.is-active .pms-cap-icon {
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
}
.pms-cap-info {
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.pms-cap-title {
  font-size: 14px; font-weight: 700;
  color: #0F172A;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.pms-cap-tagline {
  font-size: 12px;
  color: #64748B;
  line-height: 1.3;
}

/* Auto-rotate progress bar */
.pms-cap-progress {
  margin-top: 16px;
  height: 2px;
  background: rgba(15,23,42,.06);
  border-radius: 2px;
  overflow: hidden;
}
.pms-cap-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6366F1, #2563EB);
  border-radius: 2px;
  transition: width 100ms linear;
}
.pms-cap.is-paused .pms-cap-progress-fill { background: rgba(15,23,42,.15); }

/* ── RIGHT: stage panel ── */
.pms-cap-stage {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 24px;
  padding: 36px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 24px 60px -28px rgba(15,23,42,.18),
    0 0 0 1px rgba(15,23,42,.02);
}
.pms-cap-stage::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--panel-accent, #6366F1) 18%, transparent) 0%,
    transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 320ms ease;
  z-index: 0;
}
.pms-cap-stage:has(.pms-cap-panel.is-active[style*="6366F1"]) { --panel-accent: #6366F1; }
.pms-cap-stage:has(.pms-cap-panel.is-active[style*="2563EB"]) { --panel-accent: #2563EB; }
.pms-cap-stage:has(.pms-cap-panel.is-active[style*="10B981"]) { --panel-accent: #10B981; }
.pms-cap-stage:has(.pms-cap-panel.is-active[style*="F59E0B"]) { --panel-accent: #F59E0B; }
.pms-cap-stage::before { opacity: 1; }

.pms-cap-panel {
  display: none;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.pms-cap-panel.is-active {
  display: flex;
  animation: capPanelIn 520ms cubic-bezier(.22,1,.36,1);
}
@keyframes capPanelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pms-cap-chip {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
}
.pms-cap-h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.18;
  letter-spacing: -.02em;
  max-width: 22ch;
}
.pms-cap-lead {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  max-width: 60ch;
}
.pms-cap-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 6px 0 4px;
}
.pms-cap-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 12px;
  background: #F8FAFC;
  border: 1px solid rgba(15,23,42,.06);
  font-size: 13px;
  color: #334155;
  line-height: 1.45;
}
.pms-cap-feat svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.pms-cap-feat b { color: #0F172A; font-weight: 700; }

/* Browser-style frame around the screenshot */
.pms-cap-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin: 4px 0 0;
  background: #0F172A;
  box-shadow:
    0 28px 56px -22px rgba(15,23,42,.30),
    0 0 0 1px rgba(15,23,42,.04);
}
.pms-cap-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #1E293B, #0F172A);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pms-cap-chrome > span:nth-child(1),
.pms-cap-chrome > span:nth-child(2),
.pms-cap-chrome > span:nth-child(3) {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.pms-cap-chrome > span:nth-child(1) { background: #EF4444; }
.pms-cap-chrome > span:nth-child(2) { background: #F59E0B; }
.pms-cap-chrome > span:nth-child(3) { background: #10B981; }
.pms-cap-url {
  margin-left: 14px;
  font-family: 'JetBrains Mono', SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: #94A3B8;
  background: rgba(0,0,0,.30);
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.04);
}
.pms-cap-frame picture { display: block; }
.pms-cap-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* Mobile-only prev / next nav (hidden on desktop) */
.pms-cap-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  padding: 8px 10px;
  background: #F8FAFC;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 9999px;
}
.pms-cap-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #FFFFFF;
  color: #0F172A;
  border: 1px solid rgba(15,23,42,.08);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 180ms ease, transform 180ms ease, color 180ms ease, border-color 180ms ease;
}
.pms-cap-arrow:hover,
.pms-cap-arrow:focus-visible {
  background: var(--panel-accent, #6366F1);
  color: #FFFFFF;
  border-color: var(--panel-accent, #6366F1);
  outline: none;
  transform: scale(1.05);
}
.pms-cap-arrow:active { transform: scale(.96); }
.pms-cap-arrow svg { width: 18px; height: 18px; }
.pms-cap-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'JetBrains Mono', SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: #64748B;
  font-weight: 600;
}
.pms-cap-counter b {
  font-size: 16px;
  color: var(--panel-accent, #0F172A);
  font-weight: 800;
  min-width: 14px;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1023px) {
  .pms-cap-nav { display: flex; }
  .pms-cap {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pms-cap-list {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
    padding: 4px 4px 10px;
    margin: 0 -4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pms-cap-list::-webkit-scrollbar { display: none; }
  .pms-cap-tab {
    flex-shrink: 0;
    padding: 12px 14px;
    min-width: 200px;
  }
  .pms-cap-tab.is-active::before {
    left: 12px;
    top: auto;
    bottom: 6px;
    width: 28px;
    height: 3px;
  }
  .pms-cap-tagline { display: none; }
  .pms-cap-progress { display: none; }
  .pms-cap-stage { padding: 24px; border-radius: 18px; }
  .pms-cap-features { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 640px) {
  .pms-cap-stage { padding: 18px; }
  .pms-cap-h3 { font-size: 22px; }
  .pms-cap-lead { font-size: 15px; }
  .pms-cap-feat { font-size: 12.5px; padding: 11px 12px; }
  .pms-cap-tab { min-width: 180px; padding: 10px 12px; }
  .pms-cap-icon { width: 32px; height: 32px; border-radius: 9px; }
  .pms-cap-icon svg { width: 15px; height: 15px; }
  .pms-cap-title { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .pms-cap-panel.is-active { animation: none; }
  .pms-cap-progress-fill { transition: none; }
}

/* ── RECOGNITION CARDS (about page) ── */
.rec-card {
  display: block;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 200ms ease, border-color 200ms ease,
              transform 220ms ease, box-shadow 220ms ease;
}
.rec-card:hover,
.rec-card:focus-visible {
  background: #FFFFFF;
  border-color: rgba(99, 102, 241, .55);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, .08),
              0 0 0 1px rgba(99, 102, 241, .1);
  outline: none;
}
.rec-card-mark {
  width: 64px; height: 64px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}
.rec-card-mark svg { width: 40px; height: 40px; display: block; }
/* Image-based marks (real org logos) — wider container */
.rec-card-mark-img {
  width: 96px; height: 64px;
  padding: 8px;
}
.rec-card-mark-img picture { display: block; width: 100%; height: 100%; }
.rec-card-mark-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.rec-card-eyebrow {
  font-size: 11px;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  margin-bottom: 6px;
}
.rec-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.rec-card-id {
  font-family: 'JetBrains Mono', SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  color: #64748B;
}
.rec-card-arrow {
  position: absolute; top: 18px; right: 22px;
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(99, 102, 241, .1);
  color: #6366F1;
  font-size: 14px; font-weight: 700;
  opacity: 0; transform: translate(-4px, 4px);
  transition: opacity 200ms ease, transform 220ms cubic-bezier(.22,1,.36,1);
}
.rec-card:hover .rec-card-arrow,
.rec-card:focus-visible .rec-card-arrow {
  opacity: 1; transform: translate(0, 0);
}

/* Footer recognition links — inline pills with mini logos */
.rec-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #94A3B8;
  text-decoration: none;
  transition: color 200ms ease;
}
.rec-link:hover { color: #FFFFFF; }
.rec-link:hover .rec-link-id { color: #FFFFFF; }
.rec-link svg.rec-link-mark {
  width: 16px; height: 16px;
  border-radius: 3px;
  flex-shrink: 0;
}
/* Real-logo image marks in footer (Startup India, NRL) */
.rec-link picture.rec-link-img {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 2px 4px;
  background: #FFFFFF;
  border-radius: 3px;
  flex-shrink: 0;
}
.rec-link picture.rec-link-img img {
  height: 100%; width: auto;
  display: block;
  object-fit: contain;
}
.rec-link-id { color: #CBD5E1; transition: color 200ms ease; }

/* ── LOGIN NOW BUTTONS (header / drawer / footer) ── */
.meg-nav-login {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #E2E8F0;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14);
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.meg-nav-login:hover {
  background: rgba(99, 102, 241, .14);
  border-color: rgba(99, 102, 241, .42);
  color: #FFFFFF;
  transform: translateY(-1px);
}
.meg-nav-login svg { width: 14px; height: 14px; }

@media (min-width: 1024px) { .meg-nav-login { display: inline-flex; } }

/* Drawer login link */
.meg-drawer-login {
  display: flex; align-items: center; gap: 10px;
  margin-top: 12px;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(99, 102, 241, .35);
  color: #E2E8F0;
  font-weight: 600; font-size: 14px;
  letter-spacing: -.01em;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.meg-drawer-login:hover {
  background: rgba(99, 102, 241, .15);
  border-color: rgba(99, 102, 241, .55);
  color: #FFFFFF;
}
.meg-drawer-login svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Footer Talk login row (matches footer-demo styling) */
.footer-login {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(99, 102, 241, .08);
  border: 1px solid rgba(99, 102, 241, .25);
  color: #E2E8F0;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.footer-login:hover {
  background: rgba(99, 102, 241, .15);
  border-color: rgba(99, 102, 241, .50);
  color: #FFFFFF;
}
.footer-login svg.footer-btn-ico { color: #A5B4FC; }
.footer-login .footer-demo-arrow {
  margin-left: auto; width: 14px; height: 14px;
  color: #A5B4FC; opacity: .8;
  transition: transform 200ms ease;
}
.footer-login:hover .footer-demo-arrow { transform: translateX(3px); opacity: 1; }

/* Mobile footer login (used in index.html mobile block) */
.footer-login-mobile {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 9999px;
  margin-bottom: 12px;
  background: rgba(99, 102, 241, .12);
  border: 1px solid rgba(99, 102, 241, .35);
  color: #E2E8F0;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
}
.footer-login-mobile svg { width: 16px; height: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 1180px) {
  .hero-mp { right: -52px; transform: translateY(-50%) rotate(-2deg) scale(.92); }
  @keyframes heroPhoneFloat-sm {
    0%,100% { transform: translateY(-50%) rotate(-2deg) scale(.92); }
    50%     { transform: translateY(calc(-50% - 10px)) rotate(-2deg) scale(.92); }
  }
  .hero-mp { animation-name: heroPhoneFloat-sm; }
}
@media (max-width: 1100px) {
  .hero-fc { display: none; }
  .hero-mp { display: none; }
}
@media (max-width: 768px) {
  .hero-h1 { font-size: 2.4rem; }
  .hero-mf-body { padding: 10px 12px; }
  .hero-fc-1, .hero-fc-2, .hero-fc-3 { display: none; }
  .hero-mp { display: none; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background: #F8FAFC; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }
::selection { background: #DBEAFE; color: #1E3A8A; }

/* ══════════════════════════════════════════════════
   LEAD CAPTURE MODAL
   ══════════════════════════════════════════════════ */
.lead-modal-backdrop {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(2,6,23,.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lead-modal-backdrop.active {
  opacity: 1; visibility: visible;
}

.lead-modal-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  width: 100%; max-width: 420px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.25), 0 0 0 1px rgba(0,0,0,.05);
  transform: translateY(20px) scale(0.96);
  transition: transform .35s var( ease-spring), opacity .3s ease;
  opacity: 0;
}
.lead-modal-backdrop.active .lead-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lead-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 8px;
  background: #F8FAFC; border: 1px solid #E2E8F0;
  display: flex; align-items: center; justify-content: center;
  color: #64748B; cursor: pointer;
  transition: all 200ms ease;
}
.lead-modal-close:hover { background: #EFF6FF; border-color: #BFDBFE; color: #1D4ED8; }

.lead-form { display: flex; flex-direction: column; gap: .875rem; }

.lead-field label {
  display: block; font-size: .8125rem; font-weight: 600; color: #374151; margin-bottom: 5px;
}
.lead-field input {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid #E2E8F0; border-radius: 12px;
  font-size: .9375rem; font-family: 'Inter', sans-serif; color: #0F172A;
  background: #fff; transition: all 200ms ease; outline: none;
  -webkit-appearance: none; appearance: none;
}
.lead-field input::placeholder { color: #94A3B8; }
.lead-field input:focus { border-color: #3B82F6; box-shadow: 0 0 0 3px rgba(59,130,246,.12); }

.lead-submit {
  width: 100%; padding: .8rem;
  background: linear-gradient(135deg, #1D4ED8, #6366F1);
  color: #fff; font-weight: 700; font-size: .9375rem; font-family: 'Inter', sans-serif;
  border: none; border-radius: 12px; cursor: pointer;
  box-shadow: 0 8px 32px rgba(37,99,235,.28);
  transition: all 250ms var( ease-spring);
  margin-top: 4px;
}
.lead-submit:hover { transform: translateY(-1px); box-shadow: 0 12px 40px rgba(37,99,235,.38); filter: brightness(1.06); }
.lead-submit:active { transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-h1 { font-size: 2.2rem; }
  .hero-mf-body { padding: 10px 12px; }
}
@media (max-width: 640px) {
  .stat-number { font-size: 2.5rem; }
  .btn-brand,.btn-gold,.btn-ghost-dark,.btn-ghost-light { padding: .625rem 1.25rem; font-size: .875rem; min-height: 44px; }
  .hero-btn-primary,.hero-btn-secondary { min-height: 48px; }
  .lead-modal-card { padding: 1.5rem; }
  .lead-submit { min-height: 48px; }
  .lead-field input { min-height: 48px; }
}

/* ═══════════════════════════════════════════
   Hero Phone Mockup
   Phone frame overlaid in front of laptop mockup on homepage hero.
   Matches image1 reference composition.
   ═══════════════════════════════════════════ */
.hero-phone {
  position: absolute;
  left: -28px;
  bottom: -24px;
  width: 200px;
  z-index: 25;
  animation: fadeUp .7s var( ease-spring) .55s both, heroPhoneFloat 5s ease-in-out 1.2s infinite;
  pointer-events: none;
}
.hero-phone-frame {
  position: relative;
  background: #0B1220;
  border-radius: 28px;
  padding: 8px;
  box-shadow:
    0 24px 64px rgba(2, 6, 23, .6),
    0 0 0 1px rgba(255, 255, 255, .08),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  border: 2px solid #1e293b;
}
.hero-phone-notch {
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 14px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.hero-phone-screen {
  background: linear-gradient(180deg, #0F172A 0%, #111c30 100%);
  border-radius: 22px;
  padding: 28px 14px 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.04);
}
.hero-phone-status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; color: #cbd5e1; font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.hero-phone-dots { display: inline-flex; gap: 2px; }
.hero-phone-dots span {
  width: 3px; height: 3px; border-radius: 50%; background: #cbd5e1;
}
.hero-phone-apphead { margin-bottom: 10px; }
.hero-phone-hello { font-size: 10px; color: #94a3b8; margin: 0; }
.hero-phone-user { font-size: 13px; color: #fff; font-weight: 700; margin: 0; }
.hero-phone-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, .3), rgba(99, 102, 241, .25));
  border: 1px solid rgba(96, 165, 250, .3);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.hero-phone-lbl {
  font-size: 9px; color: #a5b4fc; text-transform: uppercase; letter-spacing: 0.6px; margin: 0 0 2px; font-weight: 600;
}
.hero-phone-val {
  font-size: 20px; color: #fff; font-weight: 800; margin: 0; letter-spacing: -0.5px;
}
.hero-phone-delta {
  font-size: 9px; color: #34d399; margin: 2px 0 0; font-weight: 600;
}
.hero-phone-statrow {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 10px;
}
.hero-phone-statmini {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 7px 9px;
}
.hero-phone-mini-lbl { font-size: 8px; color: #94a3b8; margin: 0 0 1px; text-transform: uppercase; letter-spacing: 0.4px; }
.hero-phone-mini-val { font-size: 14px; color: #fff; font-weight: 700; margin: 0; }
.hero-phone-sectitle {
  font-size: 9px; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
  margin: 0 0 6px;
}
.hero-phone-arr {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.hero-phone-arr:last-of-type { border-bottom: none; padding-bottom: 10px; }
.hero-phone-av {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 9px; font-weight: 700;
  flex-shrink: 0;
}
.hero-phone-arr-info { flex: 1; min-width: 0; }
.hero-phone-arr-name { font-size: 10px; color: #fff; font-weight: 600; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-phone-arr-room { font-size: 8px; color: #94a3b8; margin: 0; }
.hero-phone-badge {
  font-size: 8px; font-weight: 700;
  background: rgba(16, 185, 129, .18);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, .3);
  padding: 2px 6px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.hero-phone-badge-out {
  background: rgba(245, 158, 11, .18);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, .3);
}
.hero-phone-cta {
  width: 100%; margin-top: 8px;
  background: linear-gradient(135deg, #D97706, #F59E0B);
  color: #0F172A;
  font-size: 10px; font-weight: 700;
  padding: 9px 10px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 12px rgba(245, 158, 11, .35);
  cursor: pointer;
}

@keyframes heroPhoneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Tablet: reduce phone size */
@media (max-width: 1024px) {
  .hero-phone { left: -12px; bottom: -20px; width: 170px; }
  .hero-phone-val { font-size: 17px; }
  .hero-phone-mini-val { font-size: 12px; }
}

/* Mobile: hide phone (laptop mockup already full-width) */
@media (max-width: 640px) {
  .hero-phone { display: none; }
}

/* ═══════════════════════════════════════════
   MEGON ECOSYSTEM DIAGRAM (v2)
   Faithful recreation of image3 (Megon architecture).
   All selectors scoped to .megon-eco-v2 to avoid global collisions.
   Canvas: 1200 × 720 (aspect-ratio locked). SVG connectors
   hit node centers exactly via fixed node heights.
   ═══════════════════════════════════════════ */

/* ---------- Service category pills (top row) ---------- */
.megon-eco-v2 .meg-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border-radius: 9999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 13px; font-weight: 600; color: #E2E8F0;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  margin: 0 6px;
}
.megon-eco-v2 .meg-pill-dot { width: 7px; height: 7px; border-radius: 50%; box-shadow: 0 0 10px currentColor; }
.megon-eco-v2 .meg-pill-accomm { border-color: rgba(96,165,250,.5); }
.megon-eco-v2 .meg-pill-accomm .meg-pill-dot { background: #60A5FA; color: #60A5FA; }
.megon-eco-v2 .meg-pill-trans  { border-color: rgba(52,211,153,.5); }
.megon-eco-v2 .meg-pill-trans  .meg-pill-dot { background: #34D399; color: #34D399; }
.megon-eco-v2 .meg-pill-pkg    { border-color: rgba(251,191,36,.5); }
.megon-eco-v2 .meg-pill-pkg    .meg-pill-dot { background: #FBBF24; color: #FBBF24; }

/* ---------- Diagram canvas ---------- */
.megon-eco-v2 .meg-diagram {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 1200 / 720;
  background:
    radial-gradient(circle at 50% 42%, rgba(37,99,235,.08), transparent 55%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.055) 1px, transparent 0),
    linear-gradient(180deg, rgba(15,23,42,0), rgba(15,23,42,.4));
  background-size: auto, 28px 28px, auto;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 28px;
  overflow: hidden;
}

/* ---------- SVG connector layer ---------- */
.megon-eco-v2 .meg-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 2;
}

/* ---------- Column labels ---------- */
.megon-eco-v2 .meg-col-label {
  position: absolute;
  font-size: 10px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: #64748B; z-index: 5;
}
.megon-eco-v2 .meg-col-label.meg-lb-left   { top: 7%;  left: 3.3%; }
.megon-eco-v2 .meg-col-label.meg-lb-center { top: 7%;  left: 50%; transform: translateX(-50%); }
.megon-eco-v2 .meg-col-label.meg-lb-right  { top: 7%;  right: 3.3%; }

/* ---------- Node base ---------- */
.megon-eco-v2 .meg-node {
  position: absolute;
  z-index: 4;
  background: rgba(15,23,42,.85);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 14px 16px 12px 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(2,6,23,.55), inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.megon-eco-v2 .meg-node:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(2,6,23,.65), inset 0 1px 0 rgba(255,255,255,.08);
}
.megon-eco-v2 .meg-node.meg-n-blue:hover   { border-color: rgba(96,165,250,.5); }
.megon-eco-v2 .meg-node.meg-n-green:hover  { border-color: rgba(52,211,153,.5); }
.megon-eco-v2 .meg-node.meg-n-amber:hover  { border-color: rgba(251,191,36,.5); }
.megon-eco-v2 .meg-node.meg-n-purple:hover { border-color: rgba(167,139,250,.5); }
.megon-eco-v2 .meg-node.meg-n-rose:hover   { border-color: rgba(244,63,94,.5); }

/* Left colour-strip accent on each node */
.megon-eco-v2 .meg-node::before {
  content: ''; position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 3px; border-radius: 0 3px 3px 0; opacity: .85;
}
.megon-eco-v2 .meg-node.meg-n-blue::before   { background: linear-gradient(to bottom, #60A5FA, #2563EB); }
.megon-eco-v2 .meg-node.meg-n-green::before  { background: linear-gradient(to bottom, #34D399, #10B981); }
.megon-eco-v2 .meg-node.meg-n-amber::before  { background: linear-gradient(to bottom, #FBBF24, #D97706); }
.megon-eco-v2 .meg-node.meg-n-purple::before { background: linear-gradient(to bottom, #A78BFA, #7C3AED); }
.megon-eco-v2 .meg-node.meg-n-rose::before   { background: linear-gradient(to bottom, #F87171, #E11D48); }

/* Node inner parts */
.megon-eco-v2 .meg-head-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.megon-eco-v2 .meg-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.15);
}
.megon-eco-v2 .meg-icon svg { width: 20px; height: 20px; color: #fff; }
.megon-eco-v2 .meg-title { font-size: 15px; font-weight: 700; line-height: 1.15; color: #fff; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 0; }
.megon-eco-v2 .meg-sub { font-size: 11px; color: #94A3B8; margin: 2px 0 0; }
.megon-eco-v2 .meg-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px; }
.megon-eco-v2 .meg-chip {
  font-size: 10px; padding: 4px 8px; border-radius: 9999px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  color: #CBD5E1; font-weight: 500;
}
.megon-eco-v2 .meg-soon {
  font-size: 9px; padding: 2px 7px; border-radius: 9999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  color: #94A3B8; text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
}

/* Node placements (canvas is 1200×720; % keeps it responsive) */
.megon-eco-v2 .meg-n-properties { top: 16%;    left: 3%;  width: 24%; height: 17%; }
.megon-eco-v2 .meg-n-guests     { top: 41.5%;  left: 3%;  width: 24%; height: 17%; }
.megon-eco-v2 .meg-n-guestkyc   { top: 67%;    left: 3%;  width: 24%; height: 17%; }
.megon-eco-v2 .meg-n-otas       { top: 16%;    right: 3%; width: 24%; height: 17%; }
.megon-eco-v2 .meg-n-myalohi    { top: 41.5%;  right: 3%; width: 24%; height: 17%; }
.megon-eco-v2 .meg-n-reports    { top: 67%;    right: 3%; width: 24%; height: 17%; }

/* ---------- Megon hub (centre) ---------- */
.megon-eco-v2 .meg-hub {
  position: absolute;
  top: 15%; left: 32%;
  width: 36%; height: 56%;
  z-index: 3;
}
.megon-eco-v2 .meg-hub-glow {
  position: absolute; inset: -20px;
  border-radius: 32px;
  background: radial-gradient(circle at center, rgba(96,165,250,.28), transparent 70%);
  animation: megHubGlow 4s ease-in-out infinite;
  pointer-events: none; z-index: -1;
}
@keyframes megHubGlow {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%      { opacity: .85; transform: scale(1.06); }
}
.megon-eco-v2 .meg-hub-body {
  position: relative;
  height: 100%;
  padding: 22px 22px 20px;
  background: linear-gradient(160deg, rgba(37,99,235,.18) 0%, rgba(99,102,241,.16) 100%);
  border: 1.5px solid rgba(96,165,250,.4);
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 24px 56px rgba(37,99,235,.35), inset 0 1px 0 rgba(255,255,255,.1);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.megon-eco-v2 .meg-hub-body::before {
  content: ''; position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(
    from 0deg,
    rgba(96,165,250,0) 0deg,
    rgba(96,165,250,.12) 60deg,
    rgba(96,165,250,0) 120deg,
    rgba(96,165,250,0) 240deg,
    rgba(192,132,252,.1) 300deg,
    rgba(96,165,250,0) 360deg
  );
  animation: megHubRotate 14s linear infinite;
  z-index: -1;
}
@keyframes megHubRotate { to { transform: rotate(360deg); } }
.megon-eco-v2 .meg-hub-wordmark {
  font-size: 30px; font-weight: 800; letter-spacing: -.04em;
  background: linear-gradient(135deg, #fff 0%, #DBEAFE 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
}
.megon-eco-v2 .meg-hub-tag {
  font-size: 10px; color: #94A3B8; text-transform: uppercase;
  letter-spacing: .22em; font-weight: 600; margin: 0 0 16px 0;
}
.megon-eco-v2 .meg-hub-modules {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px;
}
.megon-eco-v2 .meg-hub-mod {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  color: #E2E8F0; font-size: 12px; font-weight: 600;
  text-decoration: none; text-align: left;
  transition: background-color 180ms ease, border-color 180ms ease;
}
.megon-eco-v2 a.meg-hub-mod:hover {
  background: rgba(255,255,255,.08); border-color: rgba(96,165,250,.4);
}
.megon-eco-v2 .meg-hub-mod-badge {
  flex-shrink: 0;
  min-width: 34px; height: 20px;
  padding: 0 6px; border-radius: 6px;
  font-size: 10px; font-weight: 800; color: #fff;
  letter-spacing: .05em;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}
.megon-eco-v2 .meg-hub-mod-badge.meg-b-pms { background: linear-gradient(135deg, #1D4ED8, #2563EB); }
.megon-eco-v2 .meg-hub-mod-badge.meg-b-pos { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.megon-eco-v2 .meg-hub-mod-badge.meg-b-cm  { background: linear-gradient(135deg, #D97706, #F59E0B); }
.megon-eco-v2 .meg-hub-mod-badge.meg-b-adm { background: linear-gradient(135deg, #E11D48, #F43F5E); }
.megon-eco-v2 .meg-hub-foot {
  font-size: 10px; color: #64748B; text-transform: uppercase;
  letter-spacing: .14em; font-weight: 600;
  padding-top: 10px; margin: 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ---------- Foundation strip (bottom) ---------- */
.megon-eco-v2 .meg-foundation {
  position: absolute; bottom: 3.2%; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 22px; border-radius: 9999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 12px; color: #94A3B8; font-weight: 500;
  z-index: 5; white-space: nowrap;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.megon-eco-v2 .meg-foundation b { color: #E2E8F0; font-weight: 700; }
.megon-eco-v2 .meg-foundation .meg-sep { color: #475569; }

/* Mobile flow hint (only shown on mobile stack) */
.megon-eco-v2 .meg-mobile-flow { display: none; }

/* ---------- Responsive stack ---------- */
@media (max-width: 960px) {
  .megon-eco-v2 .meg-diagram {
    aspect-ratio: auto;
    padding: 16px;
    background-image: none;
    display: flex; flex-direction: column; gap: 10px;
  }
  .megon-eco-v2 .meg-svg,
  .megon-eco-v2 .meg-col-label,
  .megon-eco-v2 .meg-foundation { display: none; }
  .megon-eco-v2 .meg-node,
  .megon-eco-v2 .meg-hub {
    position: static;
    width: 100%; max-width: 100%; height: auto;
    transform: none;
  }
  .megon-eco-v2 .meg-mobile-flow {
    display: block; text-align: center;
    color: #64748B; font-size: 11px; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    padding: 10px 0;
  }
  .megon-eco-v2 .meg-n-properties { order: 1; }
  .megon-eco-v2 .meg-n-guests     { order: 2; }
  .megon-eco-v2 .meg-n-guestkyc   { order: 3; }
  .megon-eco-v2 .meg-hub          { order: 4; }
  .megon-eco-v2 .meg-n-otas       { order: 5; }
  .megon-eco-v2 .meg-n-myalohi    { order: 6; }
  .megon-eco-v2 .meg-n-reports    { order: 7; }
  .megon-eco-v2 .meg-mobile-flow  { order: 8; }
}



/* ═══════════════════════════════════════════════════════
   HERO SCENES — 5 distinct backgrounds per product page
   Each scene lives inside .hero-v2 and replaces the sublime-* layers.
   All scoped. prefers-reduced-motion halts animations.
   ═══════════════════════════════════════════════════════ */

.hero-scene-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-v2 .hero-content-wrap { position: relative; z-index: 1; }

/* ───────────────────────────────────────────
   Scene 1 · Operations Grid (pms.html)
   Perspective-tilted data-grid + breathing radial glow + gold scan-line
─────────────────────────────────────────── */
.scene-grid {
  background:
    radial-gradient(ellipse 70% 45% at 50% 40%, rgba(37,99,235,.28), transparent 70%),
    linear-gradient(180deg, #020617 0%, #0B1426 50%, #0F172A 100%);
}
.scene-grid-floor {
  position: absolute;
  left: 50%; bottom: -30%;
  transform: translateX(-50%) perspective(900px) rotateX(62deg);
  width: 240%; height: 160%;
  background-image:
    linear-gradient(rgba(96,165,250,.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,.32) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 100%, #000 25%, transparent 70%);
          mask-image: radial-gradient(ellipse at 50% 100%, #000 25%, transparent 70%);
  animation: sceneGridBreathe 14s ease-in-out infinite;
}
.scene-grid-scan {
  position: absolute;
  left: -10%; top: -4%;
  width: 120%; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0) 10%, rgba(245,158,11,.7) 50%, rgba(245,158,11,0) 90%, transparent);
  filter: blur(1.5px) drop-shadow(0 0 8px rgba(245,158,11,.55));
  opacity: 0;
  animation: sceneGridScan 7s cubic-bezier(.55,0,.45,1) infinite;
}
.scene-grid-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 27% 72%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 52% 24%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 78% 58%, rgba(255,255,255,.45), transparent),
    radial-gradient(1px 1px at 88% 11%, rgba(255,255,255,.35), transparent),
    radial-gradient(1px 1px at 41% 84%, rgba(255,255,255,.3),  transparent);
  animation: sceneStars 6s ease-in-out infinite alternate;
  opacity: .7;
}
@keyframes sceneGridBreathe {
  0%,100% { transform: translateX(-50%) perspective(900px) rotateX(62deg) scale(1);    opacity: .85; }
  50%     { transform: translateX(-50%) perspective(900px) rotateX(62deg) scale(1.03); opacity: 1;   }
}
@keyframes sceneGridScan {
  0%   { top: -4%;  opacity: 0; }
  8%   {            opacity: 1; }
  55%  {            opacity: 1; }
  70%  { top: 110%; opacity: 0; }
  100% { top: 110%; opacity: 0; }
}
@keyframes sceneStars { from { opacity: .35; } to { opacity: .9; } }

/* ───────────────────────────────────────────
   Scene 2 · Ticker & Horizon (pos.html)
   Parallax horizontal bands + massive outlined POS-verbs marquee behind
─────────────────────────────────────────── */
.scene-ticker {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(99,102,241,.22), transparent 65%),
    linear-gradient(180deg, #0A1124 0%, #0F172A 50%, #080E1E 100%);
}
.scene-ticker-band {
  position: absolute; left: -20%; right: -20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,.55) 20%, rgba(245,158,11,.45) 60%, rgba(96,165,250,.55) 80%, transparent);
  opacity: .55;
  animation-name: sceneTickerDrift;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  filter: blur(.3px);
}
.scene-ticker-band:nth-child(1) { top: 18%; animation-duration: 38s; animation-delay:  0s; }
.scene-ticker-band:nth-child(2) { top: 31%; animation-duration: 56s; animation-delay: -8s; opacity: .35; }
.scene-ticker-band:nth-child(3) { top: 47%; animation-duration: 44s; animation-delay: -4s; }
.scene-ticker-band:nth-child(4) { top: 63%; animation-duration: 62s; animation-delay: -12s; opacity: .3; }
.scene-ticker-band:nth-child(5) { top: 78%; animation-duration: 48s; animation-delay: -6s; }
@keyframes sceneTickerDrift {
  0%   { transform: translateX(-10%); }
  100% { transform: translateX( 10%); }
}
.scene-ticker-marquee {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  white-space: nowrap;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 16vw, 14rem);
  letter-spacing: -.04em;
  line-height: 1;
  -webkit-text-stroke: 1.5px rgba(148,163,184,.22);
          text-stroke: 1.5px rgba(148,163,184,.22);
  color: transparent;
  opacity: .8;
}
.scene-ticker-marquee-inner {
  display: inline-block;
  padding-left: 100%;
  animation: sceneTickerRun 60s linear infinite;
}
.scene-ticker-marquee-inner span { display: inline-block; padding: 0 .4em; }
.scene-ticker-marquee-inner .sep { color: rgba(245,158,11,.22); -webkit-text-stroke: 0; text-stroke: 0; }
@keyframes sceneTickerRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ───────────────────────────────────────────
   Scene 3 · Aurora Veils (about.html)
   Tall SVG ribbons drifting like northern lights + mountain silhouette
─────────────────────────────────────────── */
.scene-aurora {
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(99,102,241,.18), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(29,78,216,.22), transparent 60%),
    linear-gradient(180deg, #060B18 0%, #0A1224 50%, #0F172A 100%);
}
.scene-aurora-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  mix-blend-mode: screen;
}
.scene-aurora-veil {
  transform-origin: center;
  mix-blend-mode: screen;
  animation: sceneAuroraDrift 40s ease-in-out infinite alternate,
             sceneAuroraSway 14s ease-in-out infinite alternate;
  opacity: .75;
}
.scene-aurora-veil-2 {
  animation-delay: -6s, -3s;
  animation-duration: 58s, 18s;
  opacity: .6;
}
.scene-aurora-veil-3 {
  animation-delay: -12s, -9s;
  animation-duration: 72s, 22s;
  opacity: .5;
}
@keyframes sceneAuroraDrift {
  from { transform: translateX(-6%); }
  to   { transform: translateX( 6%); }
}
@keyframes sceneAuroraSway {
  from { transform: translateY(-2%) scaleY(1); }
  to   { transform: translateY( 2%) scaleY(1.04); }
}
.scene-aurora-mountain {
  position: absolute;
  left: -10%; right: -10%;
  bottom: -2%;
  height: 30%;
  background: radial-gradient(ellipse 80% 120% at 50% 100%, #020617 35%, transparent 70%);
  opacity: .85;
}

/* ───────────────────────────────────────────
   Scene 4 · Kintsugi Seams (pricing.html)
   Navy base split by gold seams drawing in with stroke-dashoffset + sparkles
─────────────────────────────────────────── */
.scene-kintsugi {
  background:
    radial-gradient(ellipse 55% 40% at 20% 30%, rgba(37,99,235,.22), transparent 60%),
    radial-gradient(ellipse 50% 45% at 80% 70%, rgba(99,102,241,.2), transparent 65%),
    linear-gradient(180deg, #020617 0%, #0B1120 50%, #0F172A 100%);
}
.scene-kintsugi-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .38;              /* recede into background */
}
/* Centre vignette — darkens the area where hero text sits so seams stay behind */
.scene-kintsugi::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 50%,
              rgba(2,6,23,.55) 0%,
              rgba(2,6,23,.25) 45%,
              transparent 80%);
  pointer-events: none;
}
.scene-kintsugi-seam {
  fill: none;
  stroke: url(#megKintsugiGrad);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: sceneKintsugiDraw 2400ms cubic-bezier(.2,.8,.2,1) forwards;
  filter: drop-shadow(0 0 2px rgba(245,158,11,.25));
}
.scene-kintsugi-seam:nth-of-type(1) { animation-delay: 100ms; }
.scene-kintsugi-seam:nth-of-type(2) { animation-delay: 280ms; }
.scene-kintsugi-seam:nth-of-type(3) { animation-delay: 460ms; }
.scene-kintsugi-seam:nth-of-type(4) { animation-delay: 640ms; }
.scene-kintsugi-seam:nth-of-type(5) { animation-delay: 820ms; }
@keyframes sceneKintsugiDraw { to { stroke-dashoffset: 0; } }
.scene-kintsugi-spark {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,191,36,.8) 0%, rgba(245,158,11,.4) 50%, transparent 100%);
  filter: drop-shadow(0 0 3px rgba(245,158,11,.4));
  opacity: 0;
  animation: sceneKintsugiTwinkle 4s ease-in-out infinite;
}
.scene-kintsugi-spark:nth-child(1) { top: 22%; left: 18%; animation-delay: 1.2s; }
.scene-kintsugi-spark:nth-child(2) { top: 38%; left: 42%; animation-delay: 2.1s; }
.scene-kintsugi-spark:nth-child(3) { top: 27%; left: 71%; animation-delay: 1.8s; }
.scene-kintsugi-spark:nth-child(4) { top: 68%; left: 28%; animation-delay: 2.6s; }
.scene-kintsugi-spark:nth-child(5) { top: 55%; left: 62%; animation-delay: 1.5s; }
.scene-kintsugi-spark:nth-child(6) { top: 78%; left: 82%; animation-delay: 2.9s; }
@keyframes sceneKintsugiTwinkle {
  0%, 100% { opacity: 0;    transform: scale(.5); }
  50%      { opacity: .55;  transform: scale(1.1); }
}

/* ───────────────────────────────────────────
   Scene 5 · Signal Out (contact.html)
   Concentric sonar rings + central pulsing source + faint grid context
─────────────────────────────────────────── */
.scene-signal {
  background:
    radial-gradient(ellipse 55% 50% at 50% 50%, rgba(37,99,235,.22), transparent 70%),
    linear-gradient(180deg, #080E1E 0%, #0F172A 50%, #060B18 100%);
}
.scene-signal-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
          mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
}
.scene-signal-source {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #FBBF24 0%, #F59E0B 60%, transparent 100%);
  box-shadow: 0 0 24px rgba(245,158,11,.85), 0 0 48px rgba(245,158,11,.45);
  animation: sceneSignalCore 1.2s ease-in-out infinite;
}
@keyframes sceneSignalCore {
  0%, 100% { transform: translate(-50%, -50%) scale(1);   box-shadow: 0 0 20px rgba(245,158,11,.7), 0 0 40px rgba(245,158,11,.35); }
  50%      { transform: translate(-50%, -50%) scale(1.3); box-shadow: 0 0 30px rgba(245,158,11,1),  0 0 60px rgba(245,158,11,.6); }
}
.scene-signal-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(96,165,250,.6);
  opacity: 0;
  animation: sceneSignalRing 4.8s cubic-bezier(.2,.8,.2,1) infinite;
}
.scene-signal-ring:nth-child(2) { animation-delay: 1.2s; border-color: rgba(245,158,11,.5); }
.scene-signal-ring:nth-child(3) { animation-delay: 2.4s; border-color: rgba(96,165,250,.5); }
.scene-signal-ring:nth-child(4) { animation-delay: 3.6s; border-color: rgba(251,191,36,.5); }
@keyframes sceneSignalRing {
  0%   { width: 10px;  height: 10px;  opacity: 0; border-width: 1.5px; }
  6%   {                              opacity: 1; }
  90%  {                              opacity: 0; }
  100% { width: 160vmin; height: 160vmin; opacity: 0; border-width: .5px; }
}

/* ───────────────────────────────────────────
   Shared: respect prefers-reduced-motion
─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .scene-grid-floor,
  .scene-grid-scan,
  .scene-grid-stars,
  .scene-ticker-band,
  .scene-ticker-marquee-inner,
  .scene-aurora-veil,
  .scene-kintsugi-seam,
  .scene-kintsugi-spark,
  .scene-signal-source,
  .scene-signal-ring {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .scene-kintsugi-seam { stroke-dashoffset: 0 !important; }
}


/* ═══════════════════════════════════════════════════════
   HERO DEVICES — "Clean Stage" lineup (laptop + phone)
   Replaces the previous .hero-sc-* block. Pure CSS device frames,
   real screenshots inside, orchestrated entrance + continuous float.
   ═══════════════════════════════════════════════════════ */

/* ── STAGE CONTAINER ── */
.stage {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 7;
  min-height: 360px;
  perspective: 1600px;
  transform-style: preserve-3d;
}
/* Soft blue-indigo glow behind laptop */
.stage-glow {
  position: absolute;
  top: 4%; left: 2%;
  width: 72%; height: 78%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(37,99,235,.45), transparent 70%),
    radial-gradient(ellipse 40% 35% at 70% 60%, rgba(245,158,11,.15), transparent 70%);
  filter: blur(40px);
  opacity: 0;
  animation: stageGlowIn 1200ms 80ms ease-out forwards,
             stageGlowBreathe 6s 1300ms ease-in-out infinite alternate;
}
@keyframes stageGlowIn    { to { opacity: 1; } }
@keyframes stageGlowBreathe {
  from { transform: scale(1);   filter: blur(40px) brightness(1);   }
  to   { transform: scale(1.08);filter: blur(48px) brightness(1.15); }
}
/* Dotted grid texture (faint) */
.stage-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
  opacity: 0;
  animation: stageGlowIn 900ms 160ms ease-out forwards;
}
/* Gold ping ring (one pulse every ~8s) */
.stage-ping {
  position: absolute;
  top: 38%; left: 35%;
  width: 32px; height: 32px;
  margin: -16px;
  border: 1.5px solid rgba(245,158,11,.55);
  border-radius: 50%;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(245,158,11,.4));
  animation: stagePing 8s 2600ms cubic-bezier(.2,.8,.2,1) infinite;
}
@keyframes stagePing {
  0%   { transform: scale(.4); opacity: 0; }
  12%  {                       opacity: 1; }
  88%  {                       opacity: 0; }
  100% { transform: scale(14); opacity: 0; }
}
/* Horizontal "floor" line at ~85% */
.stage-floor {
  position: absolute;
  left: 2%; right: 2%;
  bottom: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,.35) 35%, rgba(245,158,11,.18) 65%, transparent);
  opacity: 0;
  animation: stageGlowIn 900ms 300ms ease-out forwards;
}


/* ══════════════════ iMAC DESKTOP — Back-right position (24" M-series look)
   Screen + aluminium chin + thin stand arm + oval foot plate. No keyboard. ══════════════════ */
.dev-imac {
  position: absolute;
  top: 3%;
  right: 0;
  left: auto;
  width: 70%;
  margin: 0;
  opacity: 0;
  z-index: 1;
  animation: devImacIn 900ms 250ms cubic-bezier(.16,1,.3,1) both,
             devImacFloat 10s 1400ms ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@keyframes devImacIn {
  from { opacity: 0; transform: translateY(26px) scale(.95); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}
@keyframes devImacFloat {
  0%, 100% { transform: translateY(0);    }
  50%      { transform: translateY(-6px); }
}

/* ── Monitor body (screen + chin) ── */
.dev-imac-body {
  position: relative;
  width: 100%;
  z-index: 2;
}
/* Monitor housing — thin graphite frame with rounded corners */
.dev-imac-lid {
  position: relative;
  background: linear-gradient(180deg, #1a202c 0%, #11172a 50%, #0b1120 100%);
  border-radius: 14px;
  padding: 12px 10px 0;      /* thinner side/top bezels, chin attaches at bottom */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.05),
    0 30px 60px -20px rgba(2,6,23,.65);
}
.dev-imac-camera {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #05080f;
  box-shadow:
    inset 0 0 0 .5px rgba(255,255,255,.15),
    0 0 2px rgba(96,165,250,.35);
}
.dev-imac-screen {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #0b1220;
  aspect-ratio: 1460 / 820;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.5);
}
.dev-imac-screen img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  animation: devScreenPower 1000ms 500ms cubic-bezier(.22,1,.36,1) both;
}
@keyframes devScreenPower {
  from { opacity: 0; filter: brightness(.4) saturate(.6); transform: scale(1.04); }
  to   { opacity: 1; filter: brightness(1)  saturate(1);   transform: scale(1);    }
}
/* Sheen sweep — plays once after screen reveals */
.dev-imac-sheen,
.dev-phone-sheen {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,.22) 50%, transparent 60%);
  transform: translateX(-130%);
  pointer-events: none;
}
.dev-imac-sheen  { animation: devSheen 1600ms 1600ms cubic-bezier(.22,1,.36,1) 1; }
.dev-phone-sheen { animation: devSheen 1600ms 1900ms cubic-bezier(.22,1,.36,1) 1; }
@keyframes devSheen {
  from { transform: translateX(-130%); }
  to   { transform: translateX(130%);  }
}
/* Aluminium chin beneath screen — the iconic iMac bottom band */
.dev-imac-chin {
  position: relative;
  margin: 10px -2px 0;
  height: 22px;
  background:
    linear-gradient(180deg, #e8ecf3 0%, #c7cdd7 45%, #a7aeb9 100%);
  border-radius: 0 0 12px 12px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    inset 0 -1px 0 rgba(0,0,0,.25),
    0 2px 6px rgba(2,6,23,.3);
}
.dev-imac-chin::before {
  /* Subtle Apple-logo placeholder — a faint oval indent */
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,.08) 35%, transparent 60%);
}

/* ── Stand arm ── (thin aluminium neck connecting screen to base) */
.dev-imac-stand {
  position: relative;
  width: 14%;
  height: 40px;
  margin-top: -2px;
  background:
    linear-gradient(90deg,
      #9aa0aa 0%,
      #dde1e8 15%,
      #f2f4f8 50%,
      #dde1e8 85%,
      #9aa0aa 100%);
  border-radius: 0 0 4px 4px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    inset 0 -1px 0 rgba(0,0,0,.2),
    0 4px 8px rgba(2,6,23,.25);
  z-index: 1;
}

/* ── Foot / desk base plate ── */
.dev-imac-foot {
  position: relative;
  width: 36%;
  height: 12px;
  margin-top: -2px;
  background:
    linear-gradient(180deg, #dde1e8 0%, #b7bdc8 55%, #9aa0aa 100%);
  border-radius: 40% / 100% 100% 50% 50%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    inset 0 -1px 0 rgba(0,0,0,.3),
    0 8px 18px rgba(2,6,23,.4);
  z-index: 1;
}
.dev-imac-foot::before {
  /* Front-edge highlight to give the base depth */
  content: '';
  position: absolute;
  top: 2px; left: 12%; right: 12%;
  height: 1px;
  background: rgba(255,255,255,.5);
  border-radius: 1px;
}

/* Floor shadow — wider to match iMac footprint */
.dev-imac-shadow {
  position: absolute;
  left: 10%; right: 10%;
  bottom: -22px;
  height: 42px;
  background: radial-gradient(ellipse 55% 100% at 50% 0%, rgba(2,6,23,.8), rgba(2,6,23,.3) 45%, transparent 80%);
  filter: blur(10px);
  opacity: 0;
  animation: stageGlowIn 900ms 800ms ease-out forwards;
  z-index: 0;
}


/* ══════════════════ PHONE — FRONT-LEFT, leaning left (matches reference image1)
   Phone sits over the laptop's bottom-left corner and is tilted counter-clockwise. ══════════════════ */
.dev-phone {
  position: absolute;
  top: 18%;
  left: 2%;
  right: auto;
  width: 26%;
  min-width: 140px;
  max-width: 220px;
  margin: 0;
  opacity: 0;
  z-index: 3;              /* always above the laptop */
  animation: devPhoneIn 850ms 700ms cubic-bezier(.16,1,.3,1) both,
             devPhoneFloat 7s 1700ms ease-in-out infinite;
}
@keyframes devPhoneIn {
  from { opacity: 0; transform: translateX(-30px) translateY(20px) rotate(-14deg) scale(.9); }
  to   { opacity: 1; transform: translateX(0)     translateY(0)    rotate(-8deg)  scale(1);  }
}
@keyframes devPhoneFloat {
  0%, 100% { transform: translateY(0)     rotate(-8deg); }
  50%      { transform: translateY(-10px) rotate(-6.5deg); }
}

/* ── iPhone 17 Pro Max — Titanium frame ── */
.dev-phone-shell {
  position: relative;
  padding: 4px;                                /* thinner uniform bezel */
  /* Titanium: subtle horizontal brushed highlights over graphite body */
  background:
    linear-gradient(90deg,
      #2a3042 0%, #4a5467 6%, #38404f 14%,
      #2a3042 50%,
      #38404f 86%, #4a5467 94%, #2a3042 100%),
    linear-gradient(180deg, #2a3042 0%, #1b2030 60%, #0e1322 100%);
  background-blend-mode: overlay;
  border-radius: 38px;                         /* deeper roundness like Pro Max */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.08),
    0 28px 54px rgba(2,6,23,.65);
}
/* Edge rails — thin titanium highlights along the sides */
.dev-phone-rail {
  position: absolute;
  top: 14%; bottom: 14%;
  width: 1.5px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255,255,255,.25) 8%,
    rgba(255,255,255,.08) 50%,
    rgba(255,255,255,.22) 92%,
    transparent 100%);
  border-radius: 2px;
  pointer-events: none;
}
.dev-phone-rail-l { left: 1px; }
.dev-phone-rail-r { right: 1px; }

/* Side buttons (Action, Volume, Power, Camera Control) */
.dev-phone-btn {
  position: absolute;
  background: linear-gradient(180deg, #414a5d 0%, #2a3042 50%, #1a2030 100%);
  border-radius: 1px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(0,0,0,.4);
  z-index: 4;
}
/* Left side — Action Button (top, short) */
.dev-phone-btn-action {
  left: -2px; top: 19%;
  width: 2.5px; height: 6%;
  border-radius: 1px 0 0 1px;
}
/* Left side — Volume Up (below action, taller) */
.dev-phone-btn-vol-up {
  left: -2.5px; top: 28%;
  width: 3px; height: 8%;
  border-radius: 1px 0 0 1px;
}
/* Left side — Volume Down (just below volume up) */
.dev-phone-btn-vol-dn {
  left: -2.5px; top: 38%;
  width: 3px; height: 8%;
  border-radius: 1px 0 0 1px;
}
/* Right side — Power button (upper) */
.dev-phone-btn-power {
  right: -2.5px; top: 26%;
  width: 3px; height: 12%;
  border-radius: 0 1px 1px 0;
}
/* Right side — Camera Control button (new in iPhone 16 Pro+, thinner + lower) */
.dev-phone-btn-camera {
  right: -2.5px; top: 44%;
  width: 3px; height: 5%;
  border-radius: 0 1px 1px 0;
  background: linear-gradient(180deg, #4a5467 0%, #3a4154 50%, #242a39 100%);
}
.dev-phone-btn-camera::before {
  /* Tiny highlight dot in centre of the camera control to suggest the touch sensor ring */
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5px; height: 1.5px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}

/* Dynamic Island */
.dev-phone-island {
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 36%; height: 12px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 1px 2px rgba(0,0,0,.6);
}
.dev-phone-screen {
  position: relative;
  border-radius: 32px;                         /* matches Pro Max display curvature */
  overflow: hidden;
  background: #0b1220;
  aspect-ratio: 612 / 1316;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.6);
}
.dev-phone-screen img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  animation: devScreenPower 1000ms 900ms cubic-bezier(.22,1,.36,1) both;
}
/* Home indicator bar */
.dev-phone-home {
  position: absolute;
  left: 50%; bottom: 9px;
  transform: translateX(-50%);
  width: 32%; height: 4px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  z-index: 3;
}
/* Ground shadow */
.dev-phone-shadow {
  position: absolute;
  left: 8%; right: 8%;
  bottom: -18px;
  height: 22px;
  background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(2,6,23,.65), transparent 70%);
  filter: blur(6px);
  opacity: 0;
  animation: stageGlowIn 900ms 1100ms ease-out forwards;
}


/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 1023px) {
  .stage        { aspect-ratio: 10 / 6.8; }
  .dev-imac     { width: 72%; right: 0; left: auto; top: 4%; }
  .dev-phone    { width: 28%; left: 0;  right: auto; top: 20%; }
}
@media (max-width: 640px) {
  .stage        { aspect-ratio: 10 / 7.8; min-height: 0; }
  .dev-imac     { width: 88%; right: 6%; top: 6%; }
  .dev-phone    { width: 36%; left: 0; top: 22%; max-width: 160px; }
}

/* ══════════════════ REDUCED MOTION ══════════════════ */
@media (prefers-reduced-motion: reduce) {
  .stage-glow, .stage-grid, .stage-ping, .stage-floor,
  .dev-imac, .dev-phone,
  .dev-imac-screen img, .dev-phone-screen img,
  .dev-imac-sheen, .dev-phone-sheen,
  .dev-imac-shadow, .dev-phone-shadow {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .dev-imac   { transform: none; }
  .dev-phone  { transform: rotate(-8deg); }
  .dev-imac-sheen, .dev-phone-sheen { display: none; }
}


/* ═══════════════════════════════════════════════════════
   MEGON SUITE — Stripe-style bento grid (dark theme)
   6 cards, each opens a modal "screen" with more detail.
   ═══════════════════════════════════════════════════════ */

.suite {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(37,99,235,.08), transparent 60%),
    radial-gradient(ellipse 55% 45% at 15% 95%, rgba(99,102,241,.08), transparent 60%),
    #0B1224;
  padding: 110px 0 120px;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.suite-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.suite-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: #C7D2FE;
  margin-bottom: 18px;
}
.suite-title {
  font-size: clamp(1.8rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #F1F5F9;
  line-height: 1.12;
  margin-bottom: 14px;
}
.suite-lede {
  color: #94A3B8;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Bento grid ─────────────────────────────── */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.suite-grid .suite-card             { grid-column: span 1; }
.suite-grid .suite-card.is-wide     { grid-column: span 2; }

@media (max-width: 1023px) {
  .suite-grid { grid-template-columns: repeat(2, 1fr); }
  .suite-grid .suite-card.is-wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .suite-grid { grid-template-columns: 1fr; gap: 16px; }
  .suite-grid .suite-card, .suite-grid .suite-card.is-wide { grid-column: span 1; }
}

/* ── Card shell ─────────────────────────────── */
.suite-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 26px 26px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.015)),
    rgba(15,23,42,.55);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  min-height: 340px;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), border-color 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
  font: inherit;
}
.suite-card:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02)),
    rgba(15,23,42,.7);
  box-shadow: 0 20px 40px -20px rgba(2,6,23,.6);
}
.suite-card:focus-visible {
  outline: 2px solid #60A5FA;
  outline-offset: 2px;
}

/* A faint top-edge colour stripe keyed to the product */
.suite-card::before {
  content: '';
  position: absolute;
  top: 0; left: 26px; right: 26px;
  height: 1px;
  opacity: .7;
  transition: opacity 260ms ease;
}
.suite-card:hover::before { opacity: 1; }
.suite-card-pms::before    { background: linear-gradient(90deg, transparent, #60A5FA, transparent); }
.suite-card-pos::before    { background: linear-gradient(90deg, transparent, #818CF8, transparent); }
.suite-card-cm::before     { background: linear-gradient(90deg, transparent, #FBBF24, transparent); }
.suite-card-kyc::before    { background: linear-gradient(90deg, transparent, #34D399, transparent); }
.suite-card-alohi::before  { background: linear-gradient(90deg, transparent, #C084FC, transparent); }
.suite-card-admin::before  { background: linear-gradient(90deg, transparent, #F87171, transparent); }

.suite-card:hover.suite-card-pms   { border-color: rgba(96,165,250,.35); }
.suite-card:hover.suite-card-pos   { border-color: rgba(129,140,248,.35); }
.suite-card:hover.suite-card-cm    { border-color: rgba(251,191,36,.35); }
.suite-card:hover.suite-card-kyc   { border-color: rgba(52,211,153,.35); }
.suite-card:hover.suite-card-alohi { border-color: rgba(192,132,252,.35); }
.suite-card:hover.suite-card-admin { border-color: rgba(248,113,113,.35); }

/* Head row (tag + optional soon chip) */
.suite-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.suite-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #CBD5E1;
}
.suite-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  box-shadow: 0 0 6px currentColor;
}
.suite-card-pms   .suite-tag-dot { background: #60A5FA; color: #60A5FA; }
.suite-card-pos   .suite-tag-dot { background: #818CF8; color: #818CF8; }
.suite-card-cm    .suite-tag-dot { background: #FBBF24; color: #FBBF24; }
.suite-card-kyc   .suite-tag-dot { background: #34D399; color: #34D399; }
.suite-card-alohi .suite-tag-dot { background: #C084FC; color: #C084FC; }
.suite-card-admin .suite-tag-dot { background: #F87171; color: #F87171; }
.suite-soon {
  font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 9999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: #94A3B8;
}

.suite-card-title {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 700; line-height: 1.25; letter-spacing: -.01em;
  color: #F1F5F9;
  margin: 0 0 8px;
}
.suite-card.is-wide .suite-card-title {
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
}
.suite-card-sub {
  color: #94A3B8;
  font-size: .875rem;
  line-height: 1.5;
  margin: 0 0 18px;
}

/* Arrow at bottom */
.suite-arrow {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8125rem; font-weight: 700;
  color: #E0E7FF;
  transition: color 220ms ease, gap 220ms ease;
}
.suite-arrow svg { width: 12px; height: 12px; transition: transform 220ms ease; }
.suite-card:hover .suite-arrow    { color: #fff; gap: 9px; }
.suite-card:hover .suite-arrow svg { transform: translateX(2px); }

/* ── Mini mockup area ─────────────────────── */
.suite-viz {
  position: relative;
  margin: 8px 0 20px;
  padding: 14px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.008));
  border: 1px solid rgba(255,255,255,.06);
  min-height: 130px;
  overflow: hidden;
}
.suite-card.is-wide .suite-viz { min-height: 160px; }

/* PMS viz — 4 tiles + room grid */
.viz-pms-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 10px; }
.viz-tile {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 4px 12px rgba(0,0,0,.25);
}
.viz-tile-num { font-size: 15px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.viz-tile-lbl { font-size: 9px; font-weight: 500; opacity: .85; margin-top: 3px; letter-spacing: .02em; }
.viz-pms-grid { display: grid; grid-template-columns: repeat(16, 1fr); gap: 3px; }
.viz-room { height: 10px; border-radius: 2px; }
.viz-occ { background: #1D4ED8; }
.viz-rsv { background: rgba(99,102,241,.5); }
.viz-vac { background: rgba(255,255,255,.08); }
.viz-cln { background: rgba(52,211,153,.5); }

/* POS viz — receipt */
.viz-pos-receipt {
  background: #0F172A;
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 10px 12px;
}
.viz-pos-head { font-size: 9px; font-weight: 700; color: #94A3B8; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 6px; }
.viz-pos-row { display: flex; justify-content: space-between; font-size: 11px; color: #CBD5E1; padding: 3px 0; border-bottom: 1px dashed rgba(255,255,255,.06); }
.viz-pos-row:last-child { border-bottom: none; }
.viz-pos-total { color: #fff; font-weight: 700; padding-top: 6px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 4px; }

/* Channel Manager viz — OTA rows with sync dots */
.viz-cm { display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.viz-cm-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  font-size: 11px; color: #E2E8F0; font-weight: 500;
}
.viz-cm-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
  animation: vizCmPulse 2.4s ease-in-out infinite;
}
.viz-cm-row:nth-child(1) .viz-cm-dot { animation-delay: 0s; }
.viz-cm-row:nth-child(2) .viz-cm-dot { animation-delay: .3s; }
.viz-cm-row:nth-child(3) .viz-cm-dot { animation-delay: .6s; }
.viz-cm-row:nth-child(4) .viz-cm-dot { animation-delay: .9s; }
@keyframes vizCmPulse { 0%,100% { opacity: .5; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.15); } }

/* KYC viz — ID card with verified */
.viz-kyc { display: flex; align-items: center; justify-content: center; }
.viz-kyc-card {
  position: relative;
  width: 78%; aspect-ratio: 1.6 / 1;
  background: linear-gradient(135deg, #111827 0%, #0b1224 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 10px;
  display: flex; gap: 10px; align-items: center;
}
.viz-kyc-face {
  width: 36px; height: 44px;
  border-radius: 6px;
  background: linear-gradient(160deg, #334155, #1e293b);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.viz-kyc-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.viz-kyc-lines span {
  height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, rgba(96,165,250,.35), rgba(96,165,250,.08));
}
.viz-kyc-lines span:nth-child(2) { width: 80%; }
.viz-kyc-lines span:nth-child(3) { width: 60%; }
.viz-kyc-check {
  position: absolute;
  right: -10px; bottom: -10px;
  width: 28px; height: 28px;
  filter: drop-shadow(0 4px 10px rgba(16,185,129,.35));
}

/* MyAlohi viz — browser frame with listing */
.viz-alohi { padding: 0; overflow: hidden; }
.viz-alohi-browser {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 6px 10px;
  display: flex; align-items: center; gap: 8px;
}
.viz-alohi-dots { display: inline-flex; gap: 3px; }
.viz-alohi-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.15); }
.viz-alohi-url {
  flex: 1; text-align: center;
  font-size: 9.5px; font-weight: 500; color: #94A3B8;
  background: rgba(255,255,255,.04);
  border-radius: 4px;
  padding: 2px 6px;
}
.viz-alohi-page { padding: 10px; }
.viz-alohi-hero {
  position: relative;
  aspect-ratio: 3/1;
  border-radius: 6px;
  background:
    radial-gradient(ellipse 60% 80% at 30% 60%, rgba(192,132,252,.3), transparent 60%),
    linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #0b1224 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 8px;
  margin-bottom: 8px;
}
.viz-alohi-headline {
  display: block;
  width: 60%; height: 8px; border-radius: 2px;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,.5));
}
.viz-alohi-cta {
  font-size: 9px; font-weight: 700; color: #0F172A;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  padding: 4px 8px; border-radius: 4px;
  box-shadow: 0 4px 10px rgba(245,158,11,.3);
}
.viz-alohi-rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.viz-alohi-rooms span {
  aspect-ratio: 1;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(99,102,241,.2), rgba(99,102,241,.06));
  border: 1px solid rgba(255,255,255,.06);
}

/* Admin viz — settings list */
.viz-admin { display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.viz-admin-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px;
  border-radius: 7px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  font-size: 11px; color: #E2E8F0; font-weight: 500;
}
.viz-toggle {
  width: 22px; height: 12px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  position: relative;
  transition: background-color 200ms ease;
}
.viz-toggle::after {
  content: ''; position: absolute;
  top: 1.5px; left: 1.5px;
  width: 9px; height: 9px; border-radius: 50%;
  background: #94A3B8;
  transition: left 200ms ease, background-color 200ms ease;
}
.viz-toggle.is-on { background: rgba(52,211,153,.3); }
.viz-toggle.is-on::after { left: 11.5px; background: #34D399; }


/* ════════════ SUITE MODAL ════════════ */
.suite-modal-root {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}
.suite-modal-root.is-open { display: block; }
.suite-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(2,6,23,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  animation: suiteBackIn 240ms ease forwards;
}
@keyframes suiteBackIn { to { opacity: 1; } }

.suite-modal {
  position: absolute;
  top: 5vh; left: 50%;
  transform: translateX(-50%) translateY(16px);
  width: min(1060px, 94vw);
  max-height: 90vh;
  overflow: auto;
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(37,99,235,.18), transparent 60%),
    radial-gradient(ellipse 50% 45% at 100% 100%, rgba(99,102,241,.18), transparent 60%),
    linear-gradient(180deg, #0F172A 0%, #0B1224 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(2,6,23,.65);
  display: none;
  opacity: 0;
  will-change: opacity, transform;
}
.suite-modal.is-open {
  display: block;
  animation: suiteModalIn 320ms cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes suiteModalIn {
  from { opacity: 0; transform: translateX(-50%) translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0)    scale(1);   }
}
.suite-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #CBD5E1;
  border-radius: 10px;
  cursor: pointer;
  z-index: 2;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.suite-modal-close:hover { background: rgba(255,255,255,.09); color: #fff; border-color: rgba(255,255,255,.18); }
.suite-modal-close svg { width: 16px; height: 16px; }

.suite-modal-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
}
@media (max-width: 900px) {
  .suite-modal-split { grid-template-columns: 1fr; }
}

/* Visual half */
.suite-modal-visual {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  border-right: 1px solid rgba(255,255,255,.05);
}
@media (max-width: 900px) {
  .suite-modal-visual { border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); min-height: 320px; }
}
.suite-modal-screen {
  width: 100%;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(2,6,23,.5);
}
.suite-modal-screen img { display: block; width: 100%; height: auto; }

/* Body half */
.suite-modal-body { padding: 44px 40px 36px; }
.suite-modal-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #F1F5F9;
  letter-spacing: -.02em;
  margin: 14px 0 10px;
}
.suite-modal-lede {
  color: #94A3B8;
  line-height: 1.6;
  margin: 0 0 20px;
}
.suite-modal-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.suite-modal-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9375rem; color: #E2E8F0; line-height: 1.45;
}
.suite-modal-features li span {
  flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(52,211,153,.14);
  border: 1px solid rgba(52,211,153,.35);
  color: #34D399;
  font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.suite-modal-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.suite-modal-btn-primary,
.suite-modal-btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 20px;
  border-radius: 9999px;
  font-size: .9375rem; font-weight: 700;
  text-decoration: none;
  transition: transform 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
  border: none;
  cursor: pointer;
}
.suite-modal-btn-primary {
  background: linear-gradient(135deg, #D97706, #F59E0B);
  color: #0F172A;
  box-shadow: 0 8px 24px rgba(245,158,11,.32);
}
.suite-modal-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(245,158,11,.42); }
.suite-modal-btn-ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: #E2E8F0;
}
.suite-modal-btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }

/* Waitlist block inside KYC / MyAlohi modals */
.suite-waitlist {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.suite-waitlist-label {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #94A3B8;
  margin: 0 0 10px;
}
.suite-waitlist-form {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.suite-waitlist-form input {
  flex: 1; min-width: 180px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9999px;
  padding: 11px 16px;
  color: #F1F5F9;
  font-size: .9rem;
  outline: none;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.suite-waitlist-form input:focus {
  border-color: rgba(96,165,250,.5);
  background: rgba(255,255,255,.06);
}
.suite-waitlist-form button {
  white-space: nowrap;
}
.suite-waitlist-success {
  display: none;
  margin: 0;
  color: #34D399;
  font-size: .9rem;
  font-weight: 600;
}
.suite-waitlist.is-submitted .suite-waitlist-form { display: none; }
.suite-waitlist.is-submitted .suite-waitlist-success { display: block; }

/* Lock body scroll when a modal is open */
body.suite-modal-lock { overflow: hidden; }


/* ════════════ CSS-DRAWN ILLUSTRATIONS (modal visuals) ════════════ */

/* Channel Manager illustration */
.suite-cm-diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 360px;
}
.suite-cm-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.suite-cm-hub {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(99,102,241,.2));
  border: 1px solid rgba(96,165,250,.5);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(37,99,235,.35), inset 0 1px 0 rgba(255,255,255,.08);
  z-index: 2;
}
.suite-cm-hub-label { display: block; font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.suite-cm-hub-sub { display: block; font-size: 10px; font-weight: 600; color: #94A3B8; letter-spacing: .15em; text-transform: uppercase; margin-top: 2px; }
.suite-cm-node {
  position: absolute;
  padding: 9px 14px;
  background: rgba(15,23,42,.85);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  font-size: 12px; font-weight: 600; color: #E2E8F0;
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 2;
}
.suite-cm-node-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
  animation: vizCmPulse 2.4s ease-in-out infinite;
}
.suite-cm-n1 { top: 8%;  left: 8%; }
.suite-cm-n2 { top: 8%;  right: 8%; }
.suite-cm-n3 { bottom: 8%; left: 8%; }
.suite-cm-n4 { bottom: 8%; right: 8%; }

/* GuestKYC illustration */
.suite-kyc-scene {
  position: relative;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.suite-kyc-idcard {
  position: relative;
  aspect-ratio: 1.6 / 1;
  background:
    linear-gradient(135deg, #111827 0%, #0b1224 60%, #0F172A 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(2,6,23,.5);
}
.suite-kyc-id-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.suite-kyc-id-title { font-size: 12px; font-weight: 800; color: #94A3B8; letter-spacing: .2em; text-transform: uppercase; }
.suite-kyc-id-chip {
  width: 22px; height: 16px; border-radius: 3px;
  background: linear-gradient(135deg, #FBBF24, #D97706);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}
.suite-kyc-id-body { display: flex; gap: 14px; }
.suite-kyc-id-face {
  width: 72px; height: 88px; border-radius: 8px;
  background: linear-gradient(160deg, #334155 0%, #1e293b 50%, #0F172A 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.suite-kyc-id-data { flex: 1; display: flex; flex-direction: column; gap: 8px; padding-top: 8px; }
.suite-kyc-id-line {
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, rgba(96,165,250,.4), rgba(96,165,250,.08));
}
.suite-kyc-id-line.short { width: 55%; }
.suite-kyc-scan {
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,.9), transparent);
  filter: blur(1.5px) drop-shadow(0 0 6px rgba(96,165,250,.8));
  animation: kycScan 3s ease-in-out infinite;
}
@keyframes kycScan {
  0%, 100% { top: 0;    opacity: 0; }
  10%      {            opacity: 1; }
  90%      {            opacity: 1; }
  100%     { top: 100%; opacity: 0; }
}

.suite-kyc-steps {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
}
.suite-kyc-step {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #CBD5E1;
}
.suite-kyc-step-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.suite-kyc-step.is-done .suite-kyc-step-dot  { background: #10B981; box-shadow: 0 0 6px rgba(16,185,129,.6); }
.suite-kyc-step.is-active .suite-kyc-step-dot { background: #FBBF24; box-shadow: 0 0 8px rgba(251,191,36,.7); animation: vizCmPulse 1.6s ease-in-out infinite; }
.suite-kyc-stamp {
  position: absolute;
  top: 20px; right: 20px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 2px solid #10B981;
  color: #10B981;
  font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  border-radius: 6px;
  transform: rotate(-6deg);
  box-shadow: 0 0 12px rgba(16,185,129,.25);
}
.suite-kyc-stamp svg { width: 14px; height: 14px; color: #10B981; }

/* MyAlohi illustration */
.suite-alohi-browser {
  width: 100%;
  background: linear-gradient(180deg, #0F172A 0%, #0B1224 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(2,6,23,.55);
}
.suite-alohi-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.suite-alohi-chrome .suite-alohi-dots { display: inline-flex; gap: 5px; }
.suite-alohi-chrome .suite-alohi-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); }
.suite-alohi-chrome .suite-alohi-dots span:nth-child(1) { background: #F87171; }
.suite-alohi-chrome .suite-alohi-dots span:nth-child(2) { background: #FBBF24; }
.suite-alohi-chrome .suite-alohi-dots span:nth-child(3) { background: #34D399; }
.suite-alohi-chrome .suite-alohi-url {
  flex: 1;
  text-align: center;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(255,255,255,.04);
  font-size: 11px; color: #94A3B8; font-weight: 500;
}
.suite-alohi-page { padding: 14px; }
.suite-alohi-hero {
  position: relative;
  aspect-ratio: 2.2 / 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  background:
    linear-gradient(135deg, rgba(192,132,252,.3) 0%, rgba(99,102,241,.2) 50%, rgba(14,20,33,.8) 100%);
}
.suite-alohi-hero-img {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(245,158,11,.25), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(96,165,250,.25), transparent 60%),
    linear-gradient(180deg, #1e1b4b 0%, #0F172A 100%);
}
.suite-alohi-hero-over {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
}
.suite-alohi-hero-over h4 { font-size: 17px; font-weight: 800; color: #fff; margin: 0 0 4px; letter-spacing: -.01em; }
.suite-alohi-hero-over p { font-size: 11px; color: rgba(255,255,255,.75); margin: 0 0 10px; }
.suite-alohi-book {
  display: inline-block;
  padding: 7px 14px;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: #0F172A;
  font-size: 11px; font-weight: 800;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(245,158,11,.35);
}
.suite-alohi-rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.suite-alohi-room {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column; gap: 6px;
}
.suite-alohi-room-img {
  display: block; aspect-ratio: 3/2;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(99,102,241,.2), rgba(192,132,252,.15));
  border: 1px solid rgba(255,255,255,.05);
  margin-bottom: 4px;
}
.suite-alohi-room span:nth-of-type(2) { font-size: 11px; font-weight: 600; color: #E2E8F0; }
.suite-alohi-room span:nth-of-type(3) { font-size: 12px; font-weight: 800; color: #FBBF24; }

/* Admin illustration */
.suite-admin-scene {
  padding: 14px;
  display: flex; flex-direction: column; gap: 14px;
}
.suite-admin-summary {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.suite-admin-sum-item {
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 4px;
}
.suite-admin-sum-item span:first-child { font-size: 10px; font-weight: 600; color: #94A3B8; letter-spacing: .05em; }
.suite-admin-sum-item span:last-child  { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.suite-admin-props { display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 900px) { .suite-admin-props { grid-template-columns: repeat(3, 1fr); } }
.suite-admin-prop {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
}
.suite-admin-prop-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: #E2E8F0;
  margin-bottom: 6px;
}
.suite-admin-prop-dot { width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 6px currentColor; }
.suite-admin-prop-body { display: flex; justify-content: space-between; font-size: 11px; color: #94A3B8; }
.suite-admin-perms {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
}
.suite-admin-perms > span { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #94A3B8; }
.suite-admin-avatars { display: inline-flex; }
.suite-admin-avatars span {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 10px; font-weight: 700;
  border: 2px solid #0B1224;
  margin-left: -8px;
}
.suite-admin-avatars span:first-child { margin-left: 0; }


/* ══════════ REDUCED MOTION ══════════ */
@media (prefers-reduced-motion: reduce) {
  .suite-card, .suite-card:hover { transform: none !important; }
  .viz-cm-dot, .suite-cm-node-dot { animation: none !important; }
  .suite-kyc-scan { animation: none !important; display: none; }
  .suite-modal.is-open, .suite-modal-backdrop { animation: none !important; opacity: 1 !important; transform: translateX(-50%) !important; }
}


/* ═══════════════════════════════════════════════════════
   CINEMATIC BENTO — gradient upgrade for .suite cards + modals
   Layers: diagonal wash · conic rotating border · pointer spotlight
   ═══════════════════════════════════════════════════════ */

/* Film grain overlay (section-wide, subtle) */
.suite::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .025;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}
.suite { position: relative; overflow: hidden; }
.suite > * { position: relative; z-index: 1; }

/* ── Card defaults: establish CSS vars for pointer + mouse state ── */
.suite-card {
  --mx: 50%;
  --my: 50%;
  --tint: 96,165,250;            /* default blue; overridden per product */
  isolation: isolate;
}
.suite-card-pms   { --tint: 96,165,250; }
.suite-card-pos   { --tint: 129,140,248; }
.suite-card-cm    { --tint: 251,191,36; }
.suite-card-kyc   { --tint: 52,211,153; }
.suite-card-alohi { --tint: 192,132,252; }
.suite-card-admin { --tint: 248,113,113; }

/* Base diagonal atmospheric wash (under everything else, subtle) */
.suite-card {
  background:
    linear-gradient(135deg, rgba(var(--tint), .09) 0%, rgba(var(--tint), 0) 55%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.012)),
    rgba(15, 23, 42, .55);
}
.suite-card:hover {
  background:
    linear-gradient(135deg, rgba(var(--tint), .14) 0%, rgba(var(--tint), .02) 60%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)),
    rgba(15, 23, 42, .7);
}

/* Pointer spotlight — a soft radial bloom following the cursor */
.suite-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--mx) var(--my),
    rgba(var(--tint), .14),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}
.suite-card:hover::after { opacity: 1; }

/* Conic orbiting border (only visible on hover) */
.suite-card {
  position: relative;
}
.suite-card > * { position: relative; z-index: 1; }
.suite-card .suite-conic {
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    rgba(var(--tint), .85) 28deg,
    rgba(var(--tint), .15) 60deg,
    transparent 120deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
  z-index: 0;
}
/* The --angle property needs @property for animation on browsers that support it */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.suite-card:hover .suite-conic {
  opacity: 1;
  animation: suiteConicSpin 8s linear infinite;
}
@keyframes suiteConicSpin {
  to { --angle: 360deg; }
}

/* Edge-light — inset hairline highlight at top, tiny bottom shadow */
.suite-card {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 1px 2px rgba(2,6,23,.3),
    0 12px 28px -18px rgba(2,6,23,.55);
}
.suite-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    0 2px 4px rgba(2,6,23,.35),
    0 24px 48px -20px rgba(2,6,23,.65),
    0 0 42px -14px rgba(var(--tint), .4);
}

/* Tag gets a gradient underline */
.suite-tag {
  position: relative;
  padding-bottom: 3px;
}
.suite-tag::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--tint), .7), transparent);
  opacity: .6;
}

/* Card title — subtle gradient text clip on hover */
.suite-card .suite-card-title {
  background-image: linear-gradient(90deg, #F1F5F9 0%, #F1F5F9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: background-image 300ms ease;
}
.suite-card:hover .suite-card-title {
  background-image: linear-gradient(90deg, #ffffff 0%, rgb(var(--tint)) 100%);
}

/* Arrow — gold + gradient underline on hover */
.suite-arrow {
  position: relative;
}
.suite-arrow::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, #FBBF24, #F59E0B, transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(.22,1,.36,1);
}
.suite-card:hover .suite-arrow {
  color: #FBBF24;
}
.suite-card:hover .suite-arrow::before {
  transform: scaleX(1);
}

/* ── Corner "open" arrow badge (clickability affordance) ── */
.suite-card-open {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(226,232,240,.55);
  z-index: 3;
  pointer-events: none;
  transition:
    background .35s cubic-bezier(.22,1,.36,1),
    border-color .35s ease,
    color .35s ease,
    transform .35s cubic-bezier(.22,1.3,.36,1),
    box-shadow .35s ease;
}
.suite-card-open svg {
  width: 14px;
  height: 14px;
  transition: transform .35s cubic-bezier(.22,1.3,.36,1);
}

/* Static state — slightly dimmer on "soon" products so they read as peek-ahead */
.suite-card[data-product="kyc"]   .suite-card-open,
.suite-card[data-product="alohi"] .suite-card-open {
  opacity: .55;
}

/* Hover — fill with brand gradient, arrow turns gold, lifts up-right */
.suite-card:hover .suite-card-open {
  background: linear-gradient(135deg, #2563EB, #6366F1);
  border-color: rgba(99,102,241,.55);
  color: #FBBF24;
  transform: translate(2px, -2px);
  box-shadow:
    0 8px 18px -6px rgba(37,99,235,.45),
    0 0 0 3px rgba(99,102,241,.1);
}
.suite-card:hover .suite-card-open svg {
  transform: translate(1px, -1px);
}

/* Soon cards brighten to full opacity on hover so the affordance reads clearly */
.suite-card[data-product="kyc"]:hover   .suite-card-open,
.suite-card[data-product="alohi"]:hover .suite-card-open {
  opacity: 1;
}

/* On "Soon" cards, push the Soon chip left so it clears the corner arrow */
.suite-card[data-product="kyc"]   .suite-card-head,
.suite-card[data-product="alohi"] .suite-card-head {
  padding-right: 38px;
}

/* Keyboard focus — matches card focus-visible outline colour */
.suite-card:focus-visible .suite-card-open {
  border-color: rgba(96,165,250,.6);
  color: rgba(226,232,240,.9);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .suite-card-open,
  .suite-card-open svg { transition: none !important; }
  .suite-card:hover .suite-card-open,
  .suite-card:hover .suite-card-open svg { transform: none; }
}


/* ═══════════════ MODAL UPGRADE — hero banner + museum lighting ═══════════════ */

/* Hero banner at the top of each modal */
.suite-modal-hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  --tint: 96,165,250;
}
.suite-modal-hero-pms   { --tint: 96,165,250; }
.suite-modal-hero-pos   { --tint: 129,140,248; }
.suite-modal-hero-cm    { --tint: 251,191,36; }
.suite-modal-hero-kyc   { --tint: 52,211,153; }
.suite-modal-hero-alohi { --tint: 192,132,252; }
.suite-modal-hero-admin { --tint: 248,113,113; }

/* Banner gradient backdrop — product-coloured wash fading into the modal navy */
.suite-modal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(var(--tint), .24), transparent 60%),
    linear-gradient(90deg, rgba(var(--tint), .12) 0%, rgba(var(--tint), 0) 70%);
  transform: scale(1.15);
  opacity: 0;
  animation: suiteHeroIn 500ms 160ms cubic-bezier(.2,.8,.2,1) forwards;
  pointer-events: none;
}
@keyframes suiteHeroIn {
  to { transform: scale(1); opacity: 1; }
}
/* Grain inside the hero band for texture */
.suite-modal-hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .04;
  mix-blend-mode: screen;
  pointer-events: none;
}

.suite-modal-hero-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--tint), .8) 0%, rgba(var(--tint), .4) 100%);
  color: #0B1224;
  font-size: 14px; font-weight: 900;
  letter-spacing: .04em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 8px 20px rgba(var(--tint), .35);
  z-index: 1;
}
.suite-modal-hero-text {
  display: flex; flex-direction: column; gap: 2px;
  z-index: 1;
}
.suite-modal-hero-name {
  font-size: 17px; font-weight: 700;
  color: #F1F5F9;
  letter-spacing: -.01em;
}
.suite-modal-hero-sub {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(var(--tint), 1);
  opacity: .85;
}

/* Museum plinth for the visual side — spotlight cone + floor reflection */
.suite-modal-visual {
  position: relative;
  background:
    radial-gradient(ellipse 80% 55% at 50% 10%, rgba(255,255,255,.04), transparent 55%),
    radial-gradient(ellipse 50% 45% at 50% 110%, rgba(var(--tint, 96,165,250), .12), transparent 70%);
  overflow: hidden;
}
.suite-modal-visual::before {
  /* Cone of light from above-left */
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 80%; height: 80%;
  background: radial-gradient(ellipse 60% 60% at 30% 20%, rgba(255,255,255,.06), transparent 70%);
  pointer-events: none;
}

/* Neon gradient outline around the screenshot frame (single draw on open) */
.suite-modal-screen {
  position: relative;
}
.suite-modal-screen::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from -30deg,
    transparent 0deg,
    rgba(var(--tint, 96,165,250), .9) 35deg,
    rgba(var(--tint, 96,165,250), .2) 80deg,
    transparent 200deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  animation: suiteNeonIn 1400ms 520ms cubic-bezier(.22,1,.36,1) forwards;
  pointer-events: none;
}
@keyframes suiteNeonIn {
  0%   { opacity: 0; transform: rotate(-15deg); }
  40%  { opacity: 1; }
  100% { opacity: .55; transform: rotate(0deg); }
}
/* Carry --tint into modal from the hero variant */
.suite-modal:has(.suite-modal-hero-pms)   { --tint: 96,165,250; }
.suite-modal:has(.suite-modal-hero-pos)   { --tint: 129,140,248; }
.suite-modal:has(.suite-modal-hero-cm)    { --tint: 251,191,36; }
.suite-modal:has(.suite-modal-hero-kyc)   { --tint: 52,211,153; }
.suite-modal:has(.suite-modal-hero-alohi) { --tint: 192,132,252; }
.suite-modal:has(.suite-modal-hero-admin) { --tint: 248,113,113; }

/* Feature rows — slide in + draw tick */
.suite-modal-features li {
  opacity: 0;
  transform: translateX(-8px);
  animation: suiteFeatIn 420ms cubic-bezier(.22,1,.36,1) forwards;
}
.suite-modal-features li:nth-child(1) { animation-delay: 380ms; }
.suite-modal-features li:nth-child(2) { animation-delay: 460ms; }
.suite-modal-features li:nth-child(3) { animation-delay: 540ms; }
.suite-modal-features li:nth-child(4) { animation-delay: 620ms; }
@keyframes suiteFeatIn {
  to { opacity: 1; transform: translateX(0); }
}
.suite-modal-features li span {
  /* Use the product tint for the tick ring */
  background: rgba(var(--tint, 52,211,153), .14);
  border-color: rgba(var(--tint, 52,211,153), .45);
  color: rgb(var(--tint, 52,211,153));
  position: relative;
  overflow: hidden;
}
.suite-modal-features li span::before {
  /* Gold highlight swipe on initial appear */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.4) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: suiteTickSweep 1400ms cubic-bezier(.22,1,.36,1) forwards;
}
.suite-modal-features li:nth-child(1) span::before { animation-delay: 500ms; }
.suite-modal-features li:nth-child(2) span::before { animation-delay: 580ms; }
.suite-modal-features li:nth-child(3) span::before { animation-delay: 660ms; }
.suite-modal-features li:nth-child(4) span::before { animation-delay: 740ms; }
@keyframes suiteTickSweep {
  to { transform: translateX(100%); }
}

/* Modal body — align the whole content so hero banner + split below share a visual identity */
.suite-modal {
  --tint: 96,165,250;
}


/* ═══════════════ RESPONSIVE ADJUSTS ═══════════════ */
@media (max-width: 640px) {
  .suite-modal-hero { padding: 16px 20px; gap: 12px; }
  .suite-modal-hero-badge { width: 40px; height: 40px; font-size: 12px; border-radius: 10px; }
  .suite-modal-hero-name { font-size: 15px; }
  .suite-modal-hero-sub  { font-size: 9.5px; }
}

/* ═══════════════ REDUCED MOTION ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  .suite-card:hover .suite-conic { animation: none !important; }
  .suite-modal-hero::before,
  .suite-modal-screen::after,
  .suite-modal-features li,
  .suite-modal-features li span::before { animation: none !important; opacity: 1 !important; transform: none !important; }
}


/* ═══════════════════════════════════════════════════════════════
   4.5 A GLIMPSE INSIDE — tabbed unified frame
   "Inside the control room" — dark glass window, two tabs
   (Operations / Analytics) that crossfade with auto-rotate.
   ═══════════════════════════════════════════════════════════════ */
.glimpse {
  position: relative;
  padding: 120px 0 130px;
  background:
    radial-gradient(ellipse 70% 55% at 50% 8%, rgba(99,102,241,.12), transparent 60%),
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(37,99,235,.09), transparent 65%),
    #070C1A;
  overflow: hidden;
  isolation: isolate;
}

/* Ambient drifting glow — sits behind the frame */
.glimpse-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 620px at 20% 38%, rgba(37,99,235,.14), transparent 70%),
    radial-gradient(circle 540px at 82% 62%, rgba(99,102,241,.12), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
  animation: glimpseDrift 22s ease-in-out infinite alternate;
}
@keyframes glimpseDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(1.5%, -1%, 0) scale(1.04); }
  100% { transform: translate3d(-1.5%, 1%, 0) scale(1); }
}

/* Subtle grid texture, masked to center */
.glimpse::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(148,163,184,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148,163,184,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 70% 58% at 50% 55%, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 58% at 50% 55%, #000 40%, transparent 85%);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}

/* ── Head ── */
.glimpse-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.glimpse-eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 9999px;
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.28);
  color: #FCD34D;
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 20px;
}
.glimpse-title {
  font-size: clamp(1.8rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.12;
  color: #F1F5F9;
  margin-bottom: 14px;
}
.glimpse-lede {
  color: #94A3B8;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Glass frame ── */
.glimpse-frame {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
  min-width: 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.015) 100%),
    rgba(11,18,36,.9);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 40px 80px -20px rgba(2,6,23,.9),
    0 20px 50px -10px rgba(37,99,235,.18);
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
/* Gradient highlight ring around frame */
.glimpse-frame::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(96,165,250,.55), rgba(129,140,248,.3) 40%, transparent 60%, rgba(245,158,11,.28));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: .75;
}

/* ── Chrome bar ── */
.glimpse-chrome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border-bottom: 1px solid rgba(255,255,255,.06);
  min-width: 0;
}
.glimpse-dots { display: flex; gap: 7px; flex-shrink: 0; }
.glimpse-dots span {
  width: 11px; height: 11px; border-radius: 9999px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
}
.glimpse-dots span:nth-child(1) { background: #FF5F57; }
.glimpse-dots span:nth-child(2) { background: #FEBC2E; }
.glimpse-dots span:nth-child(3) { background: #28C840; }

/* Tab pill */
.glimpse-tabs {
  position: relative;
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  background: rgba(2,6,23,.55);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  justify-self: center;
  min-width: 0;
  max-width: 100%;
}
.glimpse-tab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px; font-weight: 600;
  color: #94A3B8;
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  transition: color .25s ease;
  white-space: nowrap;
  min-width: 0;
}
.glimpse-tab:hover { color: #E0E7FF; }
.glimpse-tab.is-active { color: #F1F5F9; }
.glimpse-tab:focus-visible { outline: 2px solid #60A5FA; outline-offset: 2px; }
.glimpse-tab-icon { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; }
.glimpse-tab-indicator {
  position: absolute;
  top: 4px; left: 0;
  width: var(--w, 0px);
  height: calc(100% - 8px);
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(37,99,235,.92), rgba(99,102,241,.92));
  box-shadow:
    0 4px 12px -2px rgba(37,99,235,.55),
    inset 0 0 0 1px rgba(255,255,255,.12);
  transform: translateX(var(--x, 0px));
  transition: transform .45s cubic-bezier(.65,.01,.16,1), width .45s cubic-bezier(.65,.01,.16,1);
  z-index: 0;
  pointer-events: none;
}

/* URL pill on the right */
.glimpse-url {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 11px;
  border-radius: 9999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  color: #94A3B8;
  font-size: 11.5px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  flex-shrink: 0;
  max-width: 100%;
  overflow: hidden;
}
.glimpse-url > span:nth-child(2) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.glimpse-url svg { width: 12px; height: 12px; opacity: .55; flex-shrink: 0; }
.glimpse-url-live {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 4px;
  padding: 2px 8px 2px 7px;
  border-radius: 9999px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  color: #86EFAC;
  font-size: 9.5px; font-weight: 700; letter-spacing: .14em;
  flex-shrink: 0;
}
.glimpse-url-live > span:first-child {
  width: 6px; height: 6px; border-radius: 9999px;
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
  animation: glimpsePulse 1.8s ease-in-out infinite;
}
@keyframes glimpsePulse {
  0%, 100% { opacity: 1;  transform: scale(1); }
  50%      { opacity: .45; transform: scale(.82); }
}

/* ── Crossfade screen area ── */
.glimpse-screens {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(37,99,235,.12), transparent 60%),
    #050914;
  overflow: hidden;
  width: 100%;
}
.glimpse-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .8s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
}
.glimpse-screen.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.glimpse-screen img {
  width: 100%; height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Progress bar along the bottom of the screen area */
.glimpse-progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: rgba(255,255,255,.05);
  z-index: 2;
  pointer-events: none;
}
.glimpse-progress > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
  box-shadow: 0 0 10px rgba(245,158,11,.5);
}
.glimpse-frame.is-rotating .glimpse-progress > span {
  animation: glimpseProgress 6s linear infinite;
}
.glimpse-frame.is-paused .glimpse-progress > span {
  animation-play-state: paused;
}
@keyframes glimpseProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── Caption row ── */
.glimpse-captions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1120px;
  margin: 32px auto 0;
  position: relative;
  z-index: 1;
}
.glimpse-caption {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(15,23,42,.45);
  border: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease, transform .4s ease;
  min-width: 0;
}
.glimpse-caption:hover {
  border-color: rgba(255,255,255,.12);
  background: rgba(15,23,42,.7);
  transform: translateY(-1px);
}
.glimpse-caption.is-active {
  background:
    linear-gradient(180deg, rgba(37,99,235,.14), rgba(99,102,241,.08)),
    rgba(15,23,42,.7);
  border-color: rgba(96,165,250,.3);
  box-shadow: 0 12px 32px -12px rgba(37,99,235,.3);
}
.glimpse-caption-num {
  flex-shrink: 0;
  font-size: 28px; font-weight: 800;
  letter-spacing: -.02em; line-height: 1;
  color: #475569;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  transition: color .4s ease;
}
.glimpse-caption.is-active .glimpse-caption-num {
  background: linear-gradient(135deg, #60A5FA, #818CF8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.glimpse-caption > div { min-width: 0; }
.glimpse-caption h3 {
  font-size: 16px; font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 6px;
  letter-spacing: -.01em; line-height: 1.3;
  word-break: break-word;
}
.glimpse-caption p {
  font-size: 13.5px;
  color: #94A3B8;
  line-height: 1.55;
  word-break: break-word;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .glimpse-chrome { gap: 16px; padding: 13px 16px; }
  .glimpse-url { font-size: 11px; padding: 5px 10px; }
  .glimpse-url > span:nth-child(2) { max-width: 130px; }
}
@media (max-width: 900px) {
  .glimpse { padding: 90px 0 100px; }
  .glimpse-captions { grid-template-columns: 1fr; gap: 12px; }
  .glimpse-chrome { grid-template-columns: auto 1fr; gap: 12px; padding: 12px 14px; }
  .glimpse-url { display: none; }
  .glimpse-tab { padding: 7px 11px; font-size: 12px; }
  .glimpse-dots span { width: 9px; height: 9px; }
}
@media (max-width: 560px) {
  .glimpse { padding: 72px 0 84px; }
  .glimpse-frame { border-radius: 16px; }
  .glimpse-frame::before { border-radius: 16px; }
  .glimpse-dots { display: none; }
  .glimpse-chrome {
    grid-template-columns: 1fr;
    padding: 10px 12px;
    gap: 0;
  }
  .glimpse-tabs { justify-self: stretch; width: 100%; }
  .glimpse-tab {
    flex: 1 1 0;
    justify-content: center;
    padding: 8px 8px;
    font-size: 12px;
    gap: 6px;
  }
  .glimpse-screens { aspect-ratio: 4 / 3; }
  .glimpse-screen img { object-position: top left; }
  .glimpse-caption { padding: 16px 16px; gap: 14px; border-radius: 14px; }
  .glimpse-caption-num { font-size: 24px; }
  .glimpse-caption h3 { font-size: 15px; }
  .glimpse-caption p { font-size: 13px; }
  .glimpse-eyebrow { font-size: 10px; padding: 6px 12px; letter-spacing: .18em; }
  .glimpse-title { font-size: clamp(1.5rem, 7vw, 1.85rem); }
  .glimpse-lede { font-size: .95rem; }
}
@media (max-width: 380px) {
  .glimpse-tab-icon { display: none; }
  .glimpse-tab { padding: 8px 6px; font-size: 11.5px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .glimpse-bg,
  .glimpse-url-live > span:first-child,
  .glimpse-frame.is-rotating .glimpse-progress > span { animation: none !important; }
  .glimpse-screen { transition: opacity .2s ease, transform 0ms; }
  .glimpse-tab-indicator { transition: none; }
}


/* ═══════════════════════════════════════════════════════════════
   7. HOW IT WORKS — "The Itinerary"
   Editorial horizontal bands. Typography stays on-brand (Inter
   + JetBrains Mono). Innovation is compositional: oversized
   outlined numerals fill with a navy→blue gradient wipe as each
   band scrolls into view, acting as a reading progress indicator.
   ═══════════════════════════════════════════════════════════════ */
.howit {
  position: relative;
  padding: 110px 0 120px;
  background: #ffffff;
  overflow: hidden;
  isolation: isolate;
}
.howit-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 45% 40% at 88% 12%, rgba(99,102,241,.06), transparent 60%),
    radial-gradient(ellipse 40% 35% at 8% 88%, rgba(37,99,235,.05), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── The itinerary list ── */
.howit-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
  border-top: 1px solid rgba(15,23,42,.09);
}

/* ── Each band ── */
.howit-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 32px;
  padding: 56px 28px 56px 28px;
  border-bottom: 1px solid rgba(15,23,42,.09);
  align-items: start;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1),
              transform .75s cubic-bezier(.22,1,.36,1),
              background .5s ease;
}
.howit-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Alternating subtle warm tint — creates editorial rhythm */
.howit-row:nth-child(even) {
  background: linear-gradient(180deg, rgba(251,250,246,.6), rgba(251,250,246,.3));
}

/* Gold chapter-mark on the left — grows in as band reveals */
.howit-row::before {
  content: '';
  position: absolute;
  left: 0; top: 56px; bottom: 56px;
  width: 2px;
  background: linear-gradient(180deg, #F59E0B, #D97706);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .9s cubic-bezier(.22,1,.36,1) .3s;
  border-radius: 2px;
  opacity: .85;
}
.howit-row.is-visible::before { transform: scaleY(1); }

/* ── Oversized numeral column ── */
.howit-num {
  position: relative;
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(5.5rem, 11vw, 10rem);
  line-height: .82;
  letter-spacing: -.055em;
  color: transparent;

  /* Default: outlined via text-stroke */
  -webkit-text-stroke: 1.5px rgba(15,23,42,.22);
  -webkit-text-fill-color: transparent;

  transition: -webkit-text-stroke-color .7s ease;
  user-select: none;
}
/* Filled duplicate (pseudo-element) — clip-path wipes it in L→R on reveal */
.howit-num::before {
  content: attr(data-num);
  position: absolute;
  top: 0; left: 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E40AF 48%, #4F46E5 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.3s cubic-bezier(.55,.08,.2,1) .15s;
  pointer-events: none;
}
.howit-row.is-visible .howit-num { -webkit-text-stroke-color: transparent; }
.howit-row.is-visible .howit-num::before { clip-path: inset(0 0 0 0); }

/* Hover: shift gradient to brand-bright */
.howit-row:hover .howit-num::before {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #6366F1 100%);
  -webkit-background-clip: text;
          background-clip: text;
}

/* ── Copy column ── */
.howit-copy { padding-top: 16px; }

.howit-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

/* Timestamp pill (gold) */
.howit-time {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #B45309;
  background: #FEF3C7;
  border: 1px solid rgba(245,158,11,.35);
  border-radius: 4px;
}
/* Role tag (you / system) */
.howit-who {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.howit-who::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 9999px;
  background: currentColor;
  display: inline-block;
}
.howit-who[data-role="you"]    { color: #2563EB; }
.howit-who[data-role="system"] { color: #6366F1; }

/* Step title */
.howit-head {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.3rem, 2.1vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #0F172A;
  line-height: 1.22;
  margin: 0 0 10px;
  max-width: 34ch;
}
/* Body */
.howit-body {
  font-size: clamp(.98rem, 1.1vw, 1.08rem);
  line-height: 1.6;
  color: #475569;
  margin: 0;
  max-width: 56ch;
}

/* Stagger per-row reveal delays */
.howit-row[data-step="1"] { transition-delay: 0ms; }
.howit-row[data-step="2"] { transition-delay: 90ms; }
.howit-row[data-step="3"] { transition-delay: 180ms; }
.howit-row[data-step="4"] { transition-delay: 270ms; }
.howit-row[data-step="1"]::before { transition-delay: 300ms; }
.howit-row[data-step="2"]::before { transition-delay: 390ms; }
.howit-row[data-step="3"]::before { transition-delay: 480ms; }
.howit-row[data-step="4"]::before { transition-delay: 570ms; }

/* ── Responsive ── */
@media (max-width: 800px) {
  .howit { padding: 80px 0 90px; }
  .howit-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 20px 40px;
  }
  .howit-row::before { top: 36px; bottom: 40px; }
  .howit-num {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }
  .howit-copy { padding-top: 4px; }
  .howit-head { font-size: 1.25rem; }
  .howit-body { font-size: 1rem; }
  .howit-meta { gap: 10px; margin-bottom: 14px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .howit-row,
  .howit-row::before,
  .howit-num,
  .howit-num::before { transition: none !important; }
  .howit-row { opacity: 1; transform: none; }
  .howit-row::before { transform: scaleY(1); }
  .howit-num { -webkit-text-stroke-color: transparent; }
  .howit-num::before { clip-path: inset(0 0 0 0); }
}


/* ═══════════════════════════════════════════════════════════════
   PMS · How It Works — connected stepper
   4 numbered circles linked by an animated dashed→gradient line,
   with a gold traveller pulse that sweeps across continuously.
   Used on pms.html / pos.html (scoped class prefix: .pms-how).
   ═══════════════════════════════════════════════════════════════ */
.pms-how {
  position: relative;
}
.pms-how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .pms-how-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* ── Step card ── */
.pms-how-step {
  position: relative;
  z-index: 2;
  text-align: center;
}
.pms-how-circle {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.pms-how-step:hover .pms-how-circle {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 18px 36px -10px rgba(37,99,235,.5);
}

/* Expanding pulse ring — plays continuously once the section is visible,
   staggered so each circle pulses in sequence. */
.pms-how-circle::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 9999px;
  border: 2px solid rgba(37,99,235,.4);
  opacity: 0;
  transform: scale(.85);
  pointer-events: none;
}
.pms-how.is-visible .pms-how-step:nth-child(1) .pms-how-circle::before { animation: pmsHowPulse 2.8s cubic-bezier(.3,0,.2,1) 1.2s infinite; }
.pms-how.is-visible .pms-how-step:nth-child(2) .pms-how-circle::before { animation: pmsHowPulse 2.8s cubic-bezier(.3,0,.2,1) 1.7s infinite; }
.pms-how.is-visible .pms-how-step:nth-child(3) .pms-how-circle::before { animation: pmsHowPulse 2.8s cubic-bezier(.3,0,.2,1) 2.2s infinite; }
.pms-how.is-visible .pms-how-step:nth-child(4) .pms-how-circle::before { animation: pmsHowPulse 2.8s cubic-bezier(.3,0,.2,1) 2.7s infinite; }
@keyframes pmsHowPulse {
  0%   { opacity: 0;   transform: scale(.85); }
  35%  { opacity: .75; transform: scale(1.12); }
  100% { opacity: 0;   transform: scale(1.5); }
}

/* ── Horizontal connector (lg+) ── */
.pms-how-line-h { display: none; }
@media (min-width: 1024px) {
  .pms-how-line-h {
    display: block;
    position: absolute;
    top: 28px;            /* vertical centre of 56px circles */
    left: 12%;
    right: 12%;
    height: 2px;
    pointer-events: none;
    z-index: 0;
  }
}

/* ── Vertical connector (below lg, only in the gaps between circles) ── */
.pms-how-line-v { display: none; } /* hidden — horizontal line is the star */

/* Dashed base (always visible) */
.pms-how-line .pms-how-line-base {
  position: absolute;
  inset: 0;
  border-radius: 2px;
}
.pms-how-line-h .pms-how-line-base {
  background-image: repeating-linear-gradient(90deg,
    rgba(148,163,184,.55) 0 6px,
    transparent 6px 14px);
}
.pms-how-line-v .pms-how-line-base {
  background-image: repeating-linear-gradient(180deg,
    rgba(148,163,184,.55) 0 6px,
    transparent 6px 14px);
}

/* Gradient fill (draws itself on reveal) */
.pms-how-line .pms-how-line-fill {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  transition: transform 1.6s cubic-bezier(.55,.1,.15,1) .25s;
  box-shadow: 0 0 14px rgba(37,99,235,.3);
}
.pms-how-line-h .pms-how-line-fill {
  background: linear-gradient(90deg, #2563EB 0%, #6366F1 100%);
  transform: scaleX(0);
  transform-origin: left center;
}
.pms-how-line-v .pms-how-line-fill {
  background: linear-gradient(180deg, #2563EB 0%, #6366F1 100%);
  transform: scaleY(0);
  transform-origin: top center;
}
.pms-how.is-visible .pms-how-line-h .pms-how-line-fill { transform: scaleX(1); }
.pms-how.is-visible .pms-how-line-v .pms-how-line-fill { transform: scaleY(1); }

/* Gold traveller dot (desktop line only) */
.pms-how-traveler {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: #F59E0B;
  box-shadow: 0 0 0 4px rgba(245,158,11,.18), 0 0 16px rgba(245,158,11,.6);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.pms-how.is-visible .pms-how-traveler {
  animation: pmsHowTravel 4s cubic-bezier(.5,0,.5,1) 2s infinite;
}
@keyframes pmsHowTravel {
  0%   { left: 0%;   opacity: 0; }
  8%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pms-how-line-fill,
  .pms-how-traveler,
  .pms-how-circle::before,
  .pms-how-step:hover .pms-how-circle { transition: none !important; animation: none !important; }
  .pms-how-line-h .pms-how-line-fill { transform: scaleX(1); }
  .pms-how-line-v .pms-how-line-fill { transform: scaleY(1); }
  .pms-how-step:hover .pms-how-circle { transform: none; }
}


/* ═══════════════════════════════════════════════════════════════
   PMS · SECTION 2 — Frontdesk incident log
   Status-coded rows, monospace timestamps, severity dots.
   ═══════════════════════════════════════════════════════════════ */
.pms-log {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 20px 40px -20px rgba(15,23,42,.12);
  overflow: hidden;
}
.pms-log-chrome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #F8FAFC, #F1F5F9);
  border-bottom: 1px solid rgba(15,23,42,.08);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pms-log-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #FEF2F2;
  border: 1px solid rgba(244,63,94,.3);
  color: #BE123C;
  border-radius: 9999px;
  font-weight: 600;
}
.pms-log-badge i {
  width: 6px; height: 6px;
  border-radius: 9999px;
  background: #F43F5E;
  box-shadow: 0 0 8px rgba(244,63,94,.6);
  animation: pmsLogPulse 1.8s ease-in-out infinite;
}
@keyframes pmsLogPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}
.pms-log-title {
  color: #475569;
  font-weight: 500;
  text-align: center;
  letter-spacing: .08em;
}
.pms-log-sev {
  padding: 3px 10px;
  background: #FEF3C7;
  border: 1px solid rgba(245,158,11,.35);
  color: #B45309;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.pms-log-list { list-style: none; padding: 0; margin: 0; }
.pms-log-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 120px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(15,23,42,.06);
  transition: background .25s ease;
}
.pms-log-row:last-child { border-bottom: 0; }
.pms-log-row:hover { background: rgba(248,250,252,.6); }
.pms-log-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.pms-log-row:hover::before { transform: scaleY(1); }
.pms-log-row[data-sev="high"]::before { background: linear-gradient(180deg, #F43F5E, #BE123C); }
.pms-log-row[data-sev="mid"]::before  { background: linear-gradient(180deg, #F59E0B, #B45309); }
.pms-log-row[data-sev="info"]::before { background: linear-gradient(180deg, #6366F1, #4F46E5); }

.pms-log-dot {
  width: 10px; height: 10px;
  border-radius: 9999px;
  flex-shrink: 0;
}
.pms-log-row[data-sev="high"] .pms-log-dot {
  background: #F43F5E;
  box-shadow: 0 0 0 4px rgba(244,63,94,.15), 0 0 12px rgba(244,63,94,.4);
}
.pms-log-row[data-sev="mid"] .pms-log-dot {
  background: #F59E0B;
  box-shadow: 0 0 0 4px rgba(245,158,11,.15), 0 0 12px rgba(245,158,11,.4);
}
.pms-log-row[data-sev="info"] .pms-log-dot {
  background: #6366F1;
  box-shadow: 0 0 0 4px rgba(99,102,241,.15);
}

.pms-log-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
}
.pms-log-tag {
  font-weight: 600;
  color: #0F172A;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pms-log-time {
  color: #94A3B8;
  letter-spacing: .1em;
}

.pms-log-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 4px;
  letter-spacing: -.01em;
}
.pms-log-body p {
  font-size: .875rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

.pms-log-count {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 600;
  color: #94A3B8;
  padding: 4px 10px;
  background: #F8FAFC;
  border-radius: 4px;
  min-width: 42px;
  text-align: center;
}

@media (max-width: 700px) {
  .pms-log-chrome { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .pms-log-title { text-align: center; }
  .pms-log-row {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 16px;
  }
  .pms-log-meta { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   PMS · SECTION 3 — Solution bento hero grid
   1 big hero card (mini dashboard mockup) + 3 smaller cards.
   ═══════════════════════════════════════════════════════════════ */
.pms-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 1024px) {
  .pms-bento {
    grid-template-columns: 1.25fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 18px;
  }
  .pms-bento-hero {
    grid-column: 1;
    grid-row: 1 / span 3;
  }
}

/* Hero card */
.pms-bento-hero {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px -24px rgba(37,99,235,.18);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.pms-bento-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 300px at 85% 15%, rgba(99,102,241,.08), transparent 70%),
    radial-gradient(circle 300px at 10% 90%, rgba(37,99,235,.06), transparent 70%);
  pointer-events: none;
}
.pms-bento-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -24px rgba(37,99,235,.28);
}
.pms-bento-hero-text { position: relative; z-index: 1; }
.pms-bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  color: #047857;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  margin-bottom: 14px;
}
.pms-bento-tag i {
  width: 6px; height: 6px;
  border-radius: 9999px;
  background: #10B981;
  box-shadow: 0 0 8px rgba(16,185,129,.6);
  animation: pmsLogPulse 1.8s ease-in-out infinite;
}
.pms-bento-hero h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: #0F172A;
  line-height: 1.2;
  margin: 0 0 10px;
}
.pms-bento-hero p {
  font-size: 1rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
  max-width: 44ch;
}

/* Dashboard screenshot frame inside hero */
.pms-bento-mock {
  position: relative;
  z-index: 1;
  background: #0F172A;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.2);
  box-shadow: 0 20px 40px -20px rgba(15,23,42,.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
}
.pms-bento-mock-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #1E293B, #0F172A);
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.pms-bento-mock-chrome span { width: 10px; height: 10px; border-radius: 9999px; }
.pms-bento-mock-chrome span:nth-child(1) { background: #FF5F57; }
.pms-bento-mock-chrome span:nth-child(2) { background: #FEBC2E; }
.pms-bento-mock-chrome span:nth-child(3) { background: #28C840; }
.pms-bento-mock img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top left;
}

/* Small cards */
.pms-bento-item {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.pms-bento-item:hover {
  transform: translateY(-3px);
  border-color: rgba(37,99,235,.25);
  box-shadow: 0 16px 32px -18px rgba(37,99,235,.25);
}
.pms-bento-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563EB, #6366F1);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pms-bento-icon svg { width: 20px; height: 20px; }
.pms-bento-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  letter-spacing: -.01em;
}
.pms-bento-item p {
  font-size: .875rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   PMS · SECTION 6 — Core capability specimen cards
   Each card has a unique mini-visualization.
   ═══════════════════════════════════════════════════════════════ */
.pms-spec-card {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 16px;
  padding: 20px 20px 22px;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
  position: relative;
  overflow: hidden;
}
.pms-spec-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB, #6366F1);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.pms-spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,.2);
  box-shadow: 0 20px 44px -24px rgba(15,23,42,.2);
}
.pms-spec-card:hover::after { transform: scaleX(1); }

/* Uniform specimen viz — mac-chrome frame + product screenshot */
.pms-spec-viz {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  margin: 0 0 16px;
  padding: 0;
  background: #0F172A;
  border: 1px solid rgba(15,23,42,.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 20px -10px rgba(15,23,42,.2);
  transition: box-shadow .35s ease;
}
.pms-spec-card:hover .pms-spec-viz {
  box-shadow: 0 14px 30px -12px rgba(37,99,235,.3);
}
.pms-spec-chrome {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: linear-gradient(180deg, #1E293B, #0F172A);
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.pms-spec-chrome span { width: 7px; height: 7px; border-radius: 9999px; }
.pms-spec-chrome span:nth-child(1) { background: #FF5F57; }
.pms-spec-chrome span:nth-child(2) { background: #FEBC2E; }
.pms-spec-chrome span:nth-child(3) { background: #28C840; }
.pms-spec-viz img {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  object-position: top left;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.pms-spec-card:hover .pms-spec-viz img {
  transform: scale(1.04);
}

.pms-spec-title {
  font-size: .95rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 5px;
  letter-spacing: -.01em;
}
.pms-spec-body {
  font-size: .85rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   PMS · SECTION 7 — Built for you · comparison manifesto
   "A big-chain PMS → Reservista" 2-column compare.
   ═══════════════════════════════════════════════════════════════ */
.pms-compare {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 48px -28px rgba(15,23,42,.14);
}
.pms-compare-head {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  background: linear-gradient(90deg, rgba(248,250,252,.6), rgba(239,246,255,.6));
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.pms-compare-head .pms-compare-them { color: #94A3B8; }
.pms-compare-head .pms-compare-us {
  color: #2563EB;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pms-compare-head .pms-compare-us::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #2563EB, #6366F1);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

.pms-compare-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(15,23,42,.06);
  transition: background .3s ease;
}
.pms-compare-row:last-child { border-bottom: 0; }
.pms-compare-row:hover { background: linear-gradient(90deg, rgba(248,250,252,.4), rgba(239,246,255,.6)); }

.pms-compare-them {
  font-size: .98rem;
  color: #94A3B8;
  text-decoration: line-through;
  text-decoration-color: rgba(148,163,184,.4);
  text-decoration-thickness: 1px;
}
.pms-compare-arrow {
  color: #94A3B8;
  display: inline-flex;
  justify-content: center;
  transition: color .3s ease, transform .3s ease;
}
.pms-compare-arrow svg { width: 22px; height: 22px; }
.pms-compare-row:hover .pms-compare-arrow {
  color: #F59E0B;
  transform: translateX(3px);
}

.pms-compare-us {
  font-size: 1.02rem;
  font-weight: 600;
  color: #0F172A;
  letter-spacing: -.01em;
  position: relative;
  padding-left: 16px;
}
.pms-compare-us::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 3px; height: 22px;
  background: linear-gradient(180deg, #2563EB, #6366F1);
  border-radius: 2px;
  transform: translateY(-50%) scaleY(0);
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.pms-compare-row:hover .pms-compare-us::before { transform: translateY(-50%) scaleY(1); }

.pms-compare-spacer { display: none; }

@media (max-width: 640px) {
  .pms-compare-head,
  .pms-compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 20px;
  }
  .pms-compare-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }
  .pms-compare-row:hover .pms-compare-arrow {
    transform: rotate(90deg) translateX(3px);
  }
}


/* ═══════════════════════════════════════════════════════════════
   PMS · SECTION 8 — Growth trend cards · dark + sparklines
   ═══════════════════════════════════════════════════════════════ */
.pms-trend-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 22px 24px 24px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s ease, box-shadow .4s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pms-trend-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 240px at 100% 0%, rgba(96,165,250,.12), transparent 65%);
  pointer-events: none;
  transition: opacity .4s ease;
  opacity: .8;
}
.pms-trend-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96,165,250,.2);
  box-shadow: 0 22px 44px -20px rgba(37,99,235,.25);
}
.pms-trend-card:hover::before { opacity: 1; }

.pms-trend-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.pms-trend-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #94A3B8;
}
.pms-trend-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 4px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.3);
  color: #6EE7B7;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}
.pms-trend-badge svg { width: 10px; height: 10px; }

.pms-trend-spark {
  width: 100%;
  height: 60px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.pms-trend-line {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  transition: stroke-dashoffset 1.8s cubic-bezier(.55,.12,.2,1) .25s;
  filter: drop-shadow(0 0 4px currentColor);
}
.pms-trend-fill {
  opacity: 0;
  transition: opacity 1s ease 1.2s;
}
.pms-trend.is-visible .pms-trend-line { stroke-dashoffset: 0; }
.pms-trend.is-visible .pms-trend-fill { opacity: 1; }

.pms-trend-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #F1F5F9;
  margin: 0 0 6px;
  letter-spacing: -.01em;
  position: relative;
  z-index: 1;
}
.pms-trend-card p {
  font-size: .88rem;
  color: #94A3B8;
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
}


/* ═══════════════════════════════════════════════════════════════
   PMS · SECTION 9 — Horizontal outcome strip
   Big gradient numbers, thin vertical dividers between items.
   ═══════════════════════════════════════════════════════════════ */
.pms-outcome {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 20px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 20px 44px -28px rgba(15,23,42,.14);
}
@media (min-width: 900px) {
  .pms-outcome {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pms-outcome-item {
  position: relative;
  padding: 32px 28px;
  border-bottom: 1px solid rgba(15,23,42,.06);
  transition: background .3s ease;
}
.pms-outcome-item:last-child { border-bottom: 0; }
@media (min-width: 900px) {
  .pms-outcome-item {
    border-bottom: 0;
    border-right: 1px solid rgba(15,23,42,.06);
  }
  .pms-outcome-item:last-child { border-right: 0; }
}
.pms-outcome-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(239,246,255,.5), rgba(237,233,254,.3));
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.pms-outcome-item:hover::before { opacity: 1; }

.pms-outcome-num {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.pms-outcome-val {
  display: block;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  background: linear-gradient(135deg, #0F172A 0%, #2563EB 55%, #6366F1 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.pms-outcome-val small {
  font-size: 45%;
  font-weight: 700;
  vertical-align: 12%;
  margin-left: 2px;
  color: #F59E0B;
  -webkit-text-fill-color: #F59E0B;
}
.pms-outcome-unit {
  display: block;
  margin-top: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #94A3B8;
}
.pms-outcome-item h3 {
  position: relative; z-index: 1;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.pms-outcome-item p {
  position: relative; z-index: 1;
  font-size: .88rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   Reduced motion (PMS redesigned sections)
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .pms-log-badge i,
  .pms-bento-tag i,
  .pms-log-row::before,
  .pms-spec-card::after,
  .pms-compare-us::before,
  .pms-trend-line,
  .pms-trend-fill,
  .pms-spec-chart-bar { animation: none !important; transition: none !important; }
  .pms-log-row::before { transform: scaleY(0); }
  .pms-spec-chart-bar { transform: scaleY(1); }
  .pms-trend-line { stroke-dashoffset: 0; }
  .pms-trend-fill { opacity: 1; }
}


/* ═══════════════════════════════════════════════════════════════
   POS · SECTION 2 — Tilted receipt chits (thermal-paper metaphor)
   ═══════════════════════════════════════════════════════════════ */
.pos-chits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px 32px;
  padding: 32px 12px 40px;
}
.pos-chit {
  position: relative;
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, #FFFDF8 0%, #FDF7E6 100%);
  border: 1px dashed rgba(15,23,42,.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -1px 0 rgba(15,23,42,.04),
    0 12px 28px -14px rgba(15,23,42,.22);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease;
}
/* Subtle rotations on each chit */
.pos-chit[data-i="1"] { transform: rotate(-2.2deg); }
.pos-chit[data-i="2"] { transform: rotate(1.6deg);  }
.pos-chit[data-i="3"] { transform: rotate(-1.2deg); }
.pos-chit[data-i="4"] { transform: rotate(2deg);    }
.pos-chit:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -1px 0 rgba(15,23,42,.04),
    0 22px 44px -16px rgba(15,23,42,.28);
  z-index: 2;
}

.pos-chit-head {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #94A3B8;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pos-chit-rule {
  height: 0;
  border-top: 1px dashed rgba(15,23,42,.25);
  margin: 0 0 14px;
}
.pos-chit h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -.01em;
  margin: 0 0 6px;
  line-height: 1.3;
}
.pos-chit p {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 16px;
}
.pos-chit-foot {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #94A3B8;
  text-transform: uppercase;
  padding-top: 10px;
  border-top: 1px dashed rgba(15,23,42,.18);
}
.pos-chit-sev { color: #BE123C; }
.pos-chit-sev-amber { color: #B45309; }
.pos-chit-sev-muted { color: #64748B; }

@media (max-width: 640px) {
  .pos-chits { grid-template-columns: 1fr; gap: 28px; }
  .pos-chit[data-i] { transform: rotate(0); }
  .pos-chit:hover { transform: translateY(-4px); }
}


/* ═══════════════════════════════════════════════════════════════
   POS · SECTION 3 — Split screenshot + numbered solution list
   ═══════════════════════════════════════════════════════════════ */
.pos-sol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .pos-sol {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
.pos-sol-mock {
  position: relative;
  background: #0F172A;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.2);
  box-shadow: 0 30px 60px -28px rgba(15,23,42,.4);
  overflow: hidden;
  margin: 0;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.pos-sol-mock:hover { transform: translateY(-3px); }
.pos-sol-mock-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #1E293B, #0F172A);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pos-sol-mock-chrome span { width: 10px; height: 10px; border-radius: 9999px; }
.pos-sol-mock-chrome span:nth-child(1) { background: #FF5F57; }
.pos-sol-mock-chrome span:nth-child(2) { background: #FEBC2E; }
.pos-sol-mock-chrome span:nth-child(3) { background: #28C840; }
.pos-sol-mock img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top left;
}

.pos-sol-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pos-sol-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 4px;
  border-left: 3px solid transparent;
  padding-left: 14px;
  transition: border-color .35s ease, background .35s ease;
  border-radius: 0 10px 10px 0;
}
.pos-sol-item:hover {
  border-left-color: #F59E0B;
  background: linear-gradient(90deg, rgba(245,158,11,.06), transparent 40%);
}
.pos-sol-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(37,99,235,.4);
  -webkit-text-fill-color: transparent;
  min-width: 42px;
  transition: all .4s ease;
}
.pos-sol-item:hover .pos-sol-num {
  -webkit-text-stroke: 0;
  color: transparent;
  background: linear-gradient(135deg, #2563EB, #6366F1);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pos-sol-item h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 4px;
  letter-spacing: -.01em;
}
.pos-sol-item p {
  font-size: .9375rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   POS · SECTION 4 — Pipeline with animated gold chevron arrows
   ═══════════════════════════════════════════════════════════════ */
.pos-pipe {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .pos-pipe {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 8px;
    align-items: stretch;
  }
}
.pos-pipe-step {
  position: relative;
  padding: 26px 22px 22px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px -14px rgba(15,23,42,.12);
  text-align: center;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
  overflow: hidden;
}
.pos-pipe-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px at 50% 0%, rgba(37,99,235,.05), transparent 70%);
  pointer-events: none;
}
.pos-pipe-step:hover {
  transform: translateY(-4px);
  border-color: rgba(37,99,235,.22);
  box-shadow: 0 20px 36px -18px rgba(37,99,235,.25);
}
.pos-pipe-num {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #B45309;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.35);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.pos-pipe-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: #2563EB;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(99,102,241,.06));
  border: 1px solid rgba(37,99,235,.18);
  border-radius: 12px;
  transition: transform .4s ease, color .3s ease, border-color .3s ease;
}
.pos-pipe-icon svg { width: 24px; height: 24px; }
.pos-pipe-step:hover .pos-pipe-icon {
  color: #6366F1;
  transform: scale(1.08);
  border-color: rgba(99,102,241,.3);
}
.pos-pipe-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.pos-pipe-step h3 small {
  font-size: .7em;
  color: #94A3B8;
  font-weight: 500;
  margin-left: 3px;
}
.pos-pipe-step p {
  font-size: .875rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* Gold chevron arrows between steps */
.pos-pipe-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #F59E0B;
  padding: 0 2px;
}
.pos-pipe-arrow svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 6px rgba(245,158,11,.35));
  animation: posPipeFlow 2.4s ease-in-out infinite;
}
.pos-pipe-arrow:nth-of-type(2) svg { animation-delay: 0s; }
.pos-pipe-arrow:nth-of-type(4) svg { animation-delay: .35s; }
.pos-pipe-arrow:nth-of-type(6) svg { animation-delay: .7s; }
@keyframes posPipeFlow {
  0%, 100% { transform: translateX(0); opacity: .55; }
  50%      { transform: translateX(4px); opacity: 1; }
}
@media (max-width: 899px) {
  .pos-pipe-arrow { transform: rotate(90deg); padding: 6px 0; }
}


/* ═══════════════════════════════════════════════════════════════
   POS · SECTION 6 — Asymmetric feature bento (1 hero + 4 icon tiles)
   ═══════════════════════════════════════════════════════════════ */
.pos-feat {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) {
  .pos-feat {
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
  }
  .pos-feat-hero {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
}

.pos-feat-hero {
  background: #ffffff;
  border: 1px solid rgba(37,99,235,.12);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  box-shadow: 0 22px 48px -28px rgba(37,99,235,.25);
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.pos-feat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 320px at 85% 10%, rgba(99,102,241,.08), transparent 65%);
  pointer-events: none;
}
.pos-feat-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -24px rgba(37,99,235,.3);
}
.pos-feat-hero-copy { position: relative; z-index: 1; }
.pos-feat-tag {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pos-feat-hero h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: #0F172A;
  line-height: 1.15;
  margin: 0 0 10px;
}
.pos-feat-hero p {
  font-size: .98rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 16px;
}
.pos-feat-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pos-feat-hero-bullets li {
  position: relative;
  padding-left: 24px;
  font-size: .9rem;
  color: #1E293B;
  font-weight: 500;
}
.pos-feat-hero-bullets li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 6px;
  width: 14px;
  height: 7px;
  border-left: 2px solid #2563EB;
  border-bottom: 2px solid #2563EB;
  transform: rotate(-45deg);
}

.pos-feat-hero-shot {
  position: relative;
  margin: 0;
  background: #0F172A;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.15);
  box-shadow: 0 16px 30px -18px rgba(15,23,42,.4);
  overflow: hidden;
  align-self: end;
}
.pos-feat-hero-chrome {
  display: flex;
  gap: 5px;
  padding: 7px 11px;
  background: linear-gradient(180deg, #1E293B, #0F172A);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pos-feat-hero-chrome span { width: 7px; height: 7px; border-radius: 9999px; }
.pos-feat-hero-chrome span:nth-child(1) { background: #FF5F57; }
.pos-feat-hero-chrome span:nth-child(2) { background: #FEBC2E; }
.pos-feat-hero-chrome span:nth-child(3) { background: #28C840; }
.pos-feat-hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top left;
}

.pos-feat-item {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.pos-feat-item:hover {
  transform: translateY(-3px);
  border-color: rgba(37,99,235,.22);
  box-shadow: 0 18px 34px -20px rgba(37,99,235,.2);
}
.pos-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(99,102,241,.06));
  border: 1px solid rgba(37,99,235,.18);
  color: #2563EB;
  flex-shrink: 0;
  transition: color .3s ease, transform .3s ease;
}
.pos-feat-icon svg { width: 22px; height: 22px; }
.pos-feat-item:hover .pos-feat-icon { color: #6366F1; transform: scale(1.06); }
.pos-feat-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -.01em;
  margin: 0;
}
.pos-feat-item p {
  font-size: .875rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   POS · SECTION 7 — Manifesto claim card with chip callouts
   ═══════════════════════════════════════════════════════════════ */
.pos-claim {
  position: relative;
  padding: 48px 40px 44px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 55%, #EEF2FF 100%);
  border: 1px solid rgba(37,99,235,.12);
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 26px 56px -28px rgba(15,23,42,.15);
}
.pos-claim::before,
.pos-claim::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(45px);
}
.pos-claim::before {
  top: -80px; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(37,99,235,.15), transparent 70%);
}
.pos-claim::after {
  bottom: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245,158,11,.13), transparent 70%);
}

.pos-claim-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 9999px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.22);
  color: #1D4ED8;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.pos-claim-title {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.14;
  color: #0F172A;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}
.pos-claim-title em {
  font-style: normal;
  position: relative;
  color: transparent;
  background: linear-gradient(135deg, #2563EB, #6366F1);
  -webkit-background-clip: text;
          background-clip: text;
  padding: 0 .05em;
}
.pos-claim-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 8%;
  bottom: -2px;
  height: 3px;
  background: linear-gradient(90deg, #F59E0B, transparent 90%);
  border-radius: 2px;
}
.pos-claim-sub {
  font-size: 1.02rem;
  line-height: 1.6;
  color: #475569;
  max-width: 620px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}
.pos-claim-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.pos-claim-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.1);
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: #0F172A;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.pos-claim-chips li:hover {
  transform: translateY(-2px);
  border-color: rgba(37,99,235,.3);
  background: linear-gradient(180deg, #ffffff, #EEF2FF);
}
.pos-claim-chips svg {
  width: 16px;
  height: 16px;
  color: #2563EB;
}


/* ═══════════════════════════════════════════════════════════════
   POS · SECTION 8 — Editorial "why" rows
   ═══════════════════════════════════════════════════════════════ */
.pos-why {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 48px -28px rgba(15,23,42,.15);
}
.pos-why-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(15,23,42,.06);
  transition: background .3s ease;
}
.pos-why-row:last-child { border-bottom: 0; }
.pos-why-row:hover {
  background: linear-gradient(90deg, rgba(248,250,252,.8), rgba(239,246,255,.6));
}
.pos-why-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 2.1rem;
  letter-spacing: -.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(15,23,42,.18);
  -webkit-text-fill-color: transparent;
  min-width: 48px;
  transition: all .4s ease;
}
.pos-why-row:hover .pos-why-num {
  -webkit-text-stroke: 0;
  color: transparent;
  background: linear-gradient(135deg, #2563EB, #6366F1);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pos-why-body h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -.01em;
  margin: 0 0 4px;
}
.pos-why-body p {
  font-size: .9375rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
  max-width: 58ch;
}
.pos-why-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(16,185,129,.08));
  border: 1px solid rgba(16,185,129,.3);
  color: #047857;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pos-why-badge svg { width: 12px; height: 12px; }

@media (max-width: 700px) {
  .pos-why-row {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 20px 22px;
  }
  .pos-why-badge {
    grid-column: 1 / -1;
    justify-self: start;
  }
}


/* ═══════════════════════════════════════════════════════════════
   Reduced motion — POS redesigned sections
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .pos-chit,
  .pos-sol-mock,
  .pos-sol-item,
  .pos-sol-num,
  .pos-pipe-step,
  .pos-pipe-arrow svg,
  .pos-feat-hero,
  .pos-feat-item,
  .pos-feat-icon,
  .pos-claim-chips li,
  .pos-why-row,
  .pos-why-num { transition: none !important; animation: none !important; }
  .pos-chit[data-i] { transform: none; }
  .pos-pipe-arrow svg { opacity: .75; }
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT · SECTION 3 — Product family (color-accented cards)
   ═══════════════════════════════════════════════════════════════ */
.abt-prod {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .abt-prod { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .abt-prod { grid-template-columns: repeat(4, 1fr); }
}

.abt-prod-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 28px 26px 26px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
}
.abt-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(15,23,42,.22);
}

/* Color accent bar at top, unique per card */
.abt-prod-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  transform-origin: left center;
}
.abt-prod-card[data-key="1"] .abt-prod-bar { background: linear-gradient(90deg, #1D4ED8, #2563EB); }
.abt-prod-card[data-key="2"] .abt-prod-bar { background: linear-gradient(90deg, #047857, #10B981); }
.abt-prod-card[data-key="3"] .abt-prod-bar { background: linear-gradient(90deg, #D97706, #F59E0B); }
.abt-prod-card[data-key="4"] .abt-prod-bar { background: linear-gradient(90deg, #4338CA, #6366F1); }

/* Soft radial glow on hover (matched to card color) */
.abt-prod-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  filter: blur(30px);
}
.abt-prod-card[data-key="1"]::before { background: radial-gradient(circle, rgba(37,99,235,.18), transparent 70%); }
.abt-prod-card[data-key="2"]::before { background: radial-gradient(circle, rgba(16,185,129,.18), transparent 70%); }
.abt-prod-card[data-key="3"]::before { background: radial-gradient(circle, rgba(245,158,11,.18), transparent 70%); }
.abt-prod-card[data-key="4"]::before { background: radial-gradient(circle, rgba(99,102,241,.18), transparent 70%); }
.abt-prod-card:hover::before { opacity: 1; }

/* Hover: colored border per card */
.abt-prod-card[data-key="1"]:hover { border-color: rgba(37,99,235,.28); }
.abt-prod-card[data-key="2"]:hover { border-color: rgba(16,185,129,.28); }
.abt-prod-card[data-key="3"]:hover { border-color: rgba(245,158,11,.28); }
.abt-prod-card[data-key="4"]:hover { border-color: rgba(99,102,241,.28); }

.abt-prod-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.abt-prod-tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  padding: 3px 9px;
  border-radius: 4px;
}
.abt-prod-card[data-key="1"] .abt-prod-tag { color: #1D4ED8; background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.22); }
.abt-prod-card[data-key="2"] .abt-prod-tag { color: #047857; background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.24); }
.abt-prod-card[data-key="3"] .abt-prod-tag { color: #B45309; background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.25); }
.abt-prod-card[data-key="4"] .abt-prod-tag { color: #4338CA; background: rgba(99,102,241,.08); border: 1px solid rgba(99,102,241,.24); }

.abt-prod-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(15,23,42,.2);
  -webkit-text-fill-color: transparent;
}
.abt-prod-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 6px;
  letter-spacing: -.015em;
  position: relative;
  z-index: 1;
}
.abt-prod-body {
  font-size: .875rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
  position: relative;
  z-index: 1;
}
.abt-prod-body strong { color: #0F172A; }


/* ═══════════════════════════════════════════════════════════════
   ABOUT · SECTION 4 — Editorial principle rows (I–IV, alt align)
   ═══════════════════════════════════════════════════════════════ */
.abt-principle {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.abt-principle-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.abt-principle-row:last-child { border-bottom: 0; }
.abt-principle-row[data-align="r"] {
  grid-template-columns: 1fr auto;
  text-align: right;
}
.abt-principle-row[data-align="r"] .abt-principle-rn { order: 2; }
.abt-principle-row[data-align="r"] .abt-principle-body { order: 1; }

.abt-principle-rn {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(37,99,235,.38);
  -webkit-text-fill-color: transparent;
  min-width: 64px;
  padding-top: 6px;
  transition: all .45s ease;
}
.abt-principle-row[data-align="r"] .abt-principle-rn {
  text-align: right;
  padding-left: 0;
}
.abt-principle-row:hover .abt-principle-rn {
  -webkit-text-stroke: 0;
  color: transparent;
  background: linear-gradient(135deg, #2563EB, #6366F1);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt-principle-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: #0F172A;
  line-height: 1.18;
  margin: 0 0 8px;
  position: relative;
  display: inline-block;
}
.abt-principle-body h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #F59E0B, transparent);
  border-radius: 2px;
  transition: width .5s cubic-bezier(.22,1,.36,1);
}
.abt-principle-row[data-align="r"] .abt-principle-body h3::after {
  left: auto;
  right: 0;
  background: linear-gradient(-90deg, #F59E0B, transparent);
}
.abt-principle-row:hover .abt-principle-body h3::after { width: 70%; }

.abt-principle-body p {
  font-size: 1rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
  max-width: 52ch;
}
.abt-principle-row[data-align="r"] .abt-principle-body p { margin-left: auto; }

@media (max-width: 700px) {
  .abt-principle-row,
  .abt-principle-row[data-align="r"] {
    grid-template-columns: auto 1fr;
    text-align: left;
    gap: 18px;
    padding: 24px 0;
  }
  .abt-principle-row[data-align="r"] .abt-principle-rn { order: 0; text-align: left; }
  .abt-principle-row[data-align="r"] .abt-principle-body { order: 1; }
  .abt-principle-row[data-align="r"] .abt-principle-body p { margin-left: 0; }
  .abt-principle-row[data-align="r"] .abt-principle-body h3::after {
    left: 0; right: auto;
    background: linear-gradient(90deg, #F59E0B, transparent);
  }
  .abt-principle-rn { min-width: 48px; }
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT · SECTION 7 — Passport-stamp venue badges
   ═══════════════════════════════════════════════════════════════ */
.abt-stamps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}
@media (min-width: 900px) {
  .abt-stamps { grid-template-columns: repeat(4, 1fr); gap: 48px 16px; }
}
.abt-stamp {
  position: relative;
  text-align: center;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.abt-stamp:hover { transform: translateY(-4px); }

.abt-stamp-disc {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto 14px;
  border-radius: 9999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #2563EB;
  border: 2px dashed rgba(37,99,235,.4);
  background: #ffffff;
  transition: color .4s ease, border-color .4s ease, transform .5s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.abt-stamp-disc::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 9999px;
  border: 1px solid rgba(37,99,235,.18);
  pointer-events: none;
}
.abt-stamp:hover .abt-stamp-disc {
  color: #B45309;
  border-color: rgba(245,158,11,.55);
  box-shadow: 0 18px 36px -18px rgba(245,158,11,.35);
  transform: rotate(-6deg);
}
.abt-stamp:hover .abt-stamp-disc::before { border-color: rgba(245,158,11,.28); }

.abt-stamp-disc svg {
  width: 44px;
  height: 44px;
  margin-top: 6px;
}
.abt-stamp-region {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: -2px;
}
.abt-stamp h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  letter-spacing: -.01em;
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT · SECTION 8 — Medallion cards (2×2 coins)
   ═══════════════════════════════════════════════════════════════ */
.abt-medal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .abt-medal {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.abt-medal-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 20px;
  padding: 28px 28px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
}
.abt-medal-card::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.1), transparent 70%);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
  opacity: .55;
}
.abt-medal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,158,11,.25);
  box-shadow: 0 26px 52px -24px rgba(245,158,11,.2);
}
.abt-medal-card:hover::before {
  opacity: 1;
  background: radial-gradient(circle, rgba(245,158,11,.15), transparent 70%);
}

.abt-medal-coin {
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #EEF2FF 0%, #FFFFFF 50%, #FEF3C7 100%);
  border: 1.5px solid rgba(37,99,235,.22);
  color: #1D4ED8;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,.8),
    inset 0 -1px 2px rgba(37,99,235,.1),
    0 8px 16px -6px rgba(37,99,235,.25);
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, color .4s ease, border-color .4s ease;
}
.abt-medal-coin::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 9999px;
  border: 1px dashed rgba(37,99,235,.28);
  pointer-events: none;
  transition: border-color .4s ease;
}
.abt-medal-card:hover .abt-medal-coin {
  transform: rotate(14deg);
  color: #B45309;
  border-color: rgba(245,158,11,.45);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,.8),
    inset 0 -1px 2px rgba(245,158,11,.15),
    0 12px 22px -6px rgba(245,158,11,.35);
}
.abt-medal-card:hover .abt-medal-coin::before { border-color: rgba(245,158,11,.5); }
.abt-medal-coin svg {
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 1;
}

.abt-medal-body h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 6px;
  letter-spacing: -.015em;
}
.abt-medal-body p {
  font-size: .9375rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   Reduced motion — ABOUT redesigned sections
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .abt-prod-card,
  .abt-prod-card::before,
  .abt-principle-rn,
  .abt-principle-body h3::after,
  .abt-stamp,
  .abt-stamp-disc,
  .abt-medal-card,
  .abt-medal-coin { transition: none !important; animation: none !important; }
  .abt-stamp:hover .abt-stamp-disc,
  .abt-medal-card:hover .abt-medal-coin { transform: none; }
}


/* ═══════════════════════════════════════════════════════════════
   INDEX · SECTION 2 — Cost impact tiles (rose accent)
   ═══════════════════════════════════════════════════════════════ */
.idx-cost {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .idx-cost { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .idx-cost { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.idx-cost-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #FFF7F7 100%);
  border: 1px solid rgba(244,63,94,.15);
  border-radius: 18px;
  padding: 22px 22px 22px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
}
.idx-cost-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F43F5E, #FB7185);
}
.idx-cost-card::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,63,94,.1), transparent 70%);
  pointer-events: none;
  opacity: .6;
  transition: opacity .4s ease;
}
.idx-cost-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244,63,94,.28);
  box-shadow: 0 22px 44px -22px rgba(244,63,94,.25);
}
.idx-cost-card:hover::after { opacity: 1; }

.idx-cost-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #BE123C;
  background: rgba(244,63,94,.08);
  border: 1px solid rgba(244,63,94,.22);
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.idx-cost-label svg { width: 11px; height: 11px; }

.idx-cost-stat {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}
.idx-cost-sign {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(244,63,94,.6);
  letter-spacing: -.02em;
}
.idx-cost-val {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  background: linear-gradient(135deg, #BE123C 0%, #E11D48 55%, #F43F5E 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.idx-cost-val small {
  font-size: 40%;
  font-weight: 700;
  vertical-align: 14%;
  margin-left: 2px;
  color: #94A3B8;
  -webkit-text-fill-color: #94A3B8;
}
.idx-cost-unit {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 16px;
}
.idx-cost-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -.015em;
  margin: 0 0 6px;
}
.idx-cost-body {
  font-size: .875rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   INDEX · SECTION 3 — Hub & spokes radial solution diagram
   ═══════════════════════════════════════════════════════════════ */
.idx-hub {
  position: relative;
  padding: 20px 0;
}
@media (min-width: 900px) {
  .idx-hub { min-height: 580px; padding: 0; }
}

/* Central Reservista hub */
.idx-hub-center {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, #ffffff 0%, #EEF2FF 70%, #E0E7FF 100%);
  border: 1.5px solid rgba(99,102,241,.3);
  border-radius: 9999px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 30px 60px -24px rgba(37,99,235,.3),
    0 0 0 6px rgba(99,102,241,.06);
  z-index: 3;
}
@media (min-width: 900px) {
  .idx-hub-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 210px;
    height: 210px;
  }
}

/* Pulsing rings around the hub */
.idx-hub-pulse {
  position: absolute;
  inset: -14px;
  border-radius: 9999px;
  border: 1.5px solid rgba(99,102,241,.35);
  opacity: 0;
  animation: idxHubPulse 2.8s cubic-bezier(.3,0,.2,1) infinite;
  pointer-events: none;
}
.idx-hub-pulse-2 { animation-delay: 1.4s; }
@keyframes idxHubPulse {
  0%   { opacity: 0; transform: scale(.85); }
  30%  { opacity: .6; }
  100% { opacity: 0; transform: scale(1.3); }
}

.idx-hub-mark {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6px 10px rgba(37,99,235,.25));
}
.idx-hub-mark svg { width: 100%; height: 100%; }
.idx-hub-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -.02em;
}
.idx-hub-tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4338CA;
  margin-top: 4px;
}

/* SVG connector lines — desktop only */
.idx-hub-lines { display: none; }
@media (min-width: 900px) {
  .idx-hub-lines {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
}
.idx-hub-line {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  transition: stroke-dashoffset 1.4s cubic-bezier(.55,.12,.2,1);
  transition-delay: calc(var(--i, 0) * 150ms + 300ms);
}
.idx-hub.reveal.visible .idx-hub-line,
.reveal.visible .idx-hub-line { stroke-dashoffset: 0; }

/* Spoke cards */
.idx-hub-spoke {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(37,99,235,.12);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 12px 28px -14px rgba(37,99,235,.2);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
  z-index: 2;
  margin-bottom: 14px;
}
.idx-hub-spoke:hover {
  transform: translateY(-3px);
  border-color: rgba(37,99,235,.3);
  box-shadow: 0 20px 40px -18px rgba(37,99,235,.28);
}
@media (min-width: 900px) {
  .idx-hub-spoke {
    position: absolute;
    width: 280px;
    margin: 0;
  }
  .idx-hub-spoke[data-pos="tl"] { top: 0;    left: 0;    }
  .idx-hub-spoke[data-pos="tr"] { top: 0;    right: 0;   }
  .idx-hub-spoke[data-pos="bl"] { bottom: 0; left: 0;    }
  .idx-hub-spoke[data-pos="br"] { bottom: 0; right: 0;   }
}

.idx-hub-spoke-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(99,102,241,.08));
  border: 1px solid rgba(37,99,235,.2);
  color: #2563EB;
  margin-bottom: 10px;
}
.idx-hub-spoke-ico svg { width: 20px; height: 20px; }
.idx-hub-spoke h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.idx-hub-spoke p {
  font-size: .875rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   INDEX · SECTION 8 — Gain tiles (upward arrows, emerald accent)
   ═══════════════════════════════════════════════════════════════ */
.idx-gain {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .idx-gain { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .idx-gain { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.idx-gain-tile {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #F0FDF4 100%);
  border: 1px solid rgba(16,185,129,.18);
  border-radius: 18px;
  padding: 22px 22px 22px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
}
.idx-gain-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #059669, #10B981);
}
.idx-gain-tile::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,.12), transparent 70%);
  pointer-events: none;
  opacity: .65;
  transition: opacity .4s ease, transform .5s ease;
}
.idx-gain-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(16,185,129,.32);
  box-shadow: 0 22px 44px -22px rgba(16,185,129,.28);
}
.idx-gain-tile:hover::after { opacity: 1; transform: scale(1.15); }

/* Upward-arrow badge */
.idx-gain-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #ffffff;
  box-shadow: 0 6px 14px -4px rgba(16,185,129,.5);
  transition: transform .4s cubic-bezier(.22,1.4,.36,1);
}
.idx-gain-tile:hover .idx-gain-arrow {
  transform: translate(2px, -3px) rotate(-6deg);
  box-shadow: 0 10px 20px -4px rgba(16,185,129,.6);
}
.idx-gain-arrow svg { width: 18px; height: 18px; }

.idx-gain-stat {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-top: 8px;
  margin-bottom: 2px;
}
.idx-gain-sign {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  letter-spacing: -.02em;
}
.idx-gain-val {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  background: linear-gradient(135deg, #065F46 0%, #059669 50%, #10B981 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.idx-gain-val small {
  font-size: 40%;
  font-weight: 700;
  vertical-align: 14%;
  margin-left: 2px;
  color: #F59E0B;
  -webkit-text-fill-color: #F59E0B;
}
.idx-gain-unit {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 16px;
}
.idx-gain-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -.015em;
  margin: 0 0 6px;
}
.idx-gain-body {
  font-size: .875rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   Reduced motion — INDEX redesigned sections
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .idx-cost-card,
  .idx-hub-pulse,
  .idx-hub-line,
  .idx-hub-spoke,
  .idx-gain-tile,
  .idx-gain-arrow { transition: none !important; animation: none !important; }
  .idx-hub-line { stroke-dashoffset: 0; }
  .idx-gain-tile:hover .idx-gain-arrow { transform: none; }
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER — WhatsApp button (used across all pages)
   ═══════════════════════════════════════════════════════════════ */
/* Shared "Talk to us" contact stack — 3 aligned buttons */
.footer-talk {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-demo,
.footer-wa,
.footer-email {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 16px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  width: 100%;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.footer-btn-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* 1 · Book Free Demo — primary gold CTA */
.footer-demo {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #0F172A;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(245,158,11,.25), inset 0 1px 0 rgba(255,255,255,.25);
}
.footer-demo:hover {
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(245,158,11,.38), inset 0 1px 0 rgba(255,255,255,.3);
}
.footer-demo-arrow {
  width: 14px;
  height: 14px;
  margin-left: auto;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.footer-demo:hover .footer-demo-arrow { transform: translateX(3px); }

/* 2 · WhatsApp — green outline */
.footer-wa {
  background: linear-gradient(135deg, rgba(16,185,129,.14), rgba(16,185,129,.07));
  border: 1px solid rgba(16,185,129,.32);
  color: #6EE7B7;
}
.footer-wa:hover {
  background: linear-gradient(135deg, rgba(16,185,129,.22), rgba(16,185,129,.12));
  border-color: rgba(16,185,129,.55);
  color: #A7F3D0;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -8px rgba(16,185,129,.4);
}
.footer-wa .footer-btn-ico { color: #34D399; }
/* back-compat: keep old selector so pages using 'w-4 h-4' Tailwind class still size correctly */
.footer-wa svg { width: 16px; height: 16px; flex-shrink: 0; color: #34D399; }

/* 3 · Email — neutral slate */
.footer-email {
  background: linear-gradient(135deg, rgba(148,163,184,.08), rgba(148,163,184,.03));
  border: 1px solid rgba(148,163,184,.18);
  color: #CBD5E1;
  font-weight: 500;
}
.footer-email:hover {
  background: linear-gradient(135deg, rgba(148,163,184,.16), rgba(148,163,184,.07));
  border-color: rgba(148,163,184,.32);
  color: #F8FAFC;
  transform: translateY(-1px);
}
.footer-email .footer-btn-ico {
  color: #94A3B8;
  transition: color .25s ease;
}
.footer-email:hover .footer-btn-ico { color: #E0E7FF; }
/* Mobile pill variant — centered, rounded */
.footer-wa-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.32);
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6EE7B7;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.footer-wa-inline:hover {
  background: rgba(16,185,129,.2);
  border-color: rgba(16,185,129,.55);
  color: #A7F3D0;
  transform: translateY(-1px);
}
.footer-wa-inline svg { width: 14px; height: 14px; color: #34D399; }


/* ═══════════════════════════════════════════════════════════════
   INSIGHTS HERO — "Reading Lamp" editorial treatment
   Unique to blog.html — distinct from .scene-grid (PMS/POS pages).
   Warm gold glow, floating dust motes, editorial masthead rules.
   ═══════════════════════════════════════════════════════════════ */
.insights-hero {
  position: relative;
  padding: 80px 0 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 40%, rgba(37,99,235,.28), transparent 70%),
    linear-gradient(180deg, #020617 0%, #0B1426 50%, #0F172A 100%);
  overflow: hidden;
  isolation: isolate;
  min-height: 520px;
}

/* Breathing radial glow — matches .scene-grid family, but unique top-of-hero lamp position */
.insights-hero-lamp {
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  max-width: 140vw;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%,
      rgba(99,102,241,.28) 0%,
      rgba(37,99,235,.12) 30%,
      rgba(29,78,216,.06) 55%,
      transparent 75%);
  filter: blur(26px);
  animation: lampBreathe 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes lampBreathe {
  0%, 100% { opacity: 1;   transform: translateX(-50%) scale(1); }
  50%      { opacity: .78; transform: translateX(-50%) scale(1.04); }
}

/* Diagonal light streaks (subtle) */
.insights-hero-rays {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 35%, rgba(99,102,241,.045) 50%, transparent 65%),
    linear-gradient(225deg, transparent 45%, rgba(96,165,250,.03) 55%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Floating dust motes — denser field, soft white with blue glow */
.insights-hero-dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.insights-hero-dust span {
  position: absolute;
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.9) 0%, rgba(191,219,254,.55) 45%, rgba(99,102,241,0) 100%);
  box-shadow: 0 0 5px rgba(147,197,253,.55);
  animation: dustDrift var(--dur, 12s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}
@keyframes dustDrift {
  0%   { transform: translate(0,   0);    opacity: 0;   }
  15%  { opacity: .7; }
  35%  { transform: translate(14px, -28px); opacity: .9; }
  55%  { transform: translate(-10px, -52px); opacity: .5; }
  75%  { transform: translate(8px,  -32px); opacity: .85;}
  90%  { opacity: .3; }
  100% { transform: translate(0,   0);    opacity: 0;   }
}

/* Soft vignette so content stays legible over the glow */
.insights-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 60%, transparent 40%, rgba(2,6,23,.55) 100%);
  pointer-events: none;
  z-index: 0;
}

.insights-hero-inner {
  position: relative;
  z-index: 1;
}

/* Editorial masthead: hairline — label — hairline */
.insights-masthead {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}
.insights-masthead-rule {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251,191,36,.55), transparent);
}
.insights-masthead-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #FBBF24;
}
.insights-masthead-pulse {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FBBF24;
  box-shadow: 0 0 10px rgba(251,191,36,.9);
  animation: mastheadPulse 2.2s ease-in-out infinite;
}
@keyframes mastheadPulse {
  0%, 100% { opacity: 1;  transform: scale(1); }
  50%      { opacity: .5; transform: scale(.82); }
}

/* Editorial headline — italic gold accent on "better hotel" */
.insights-h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.06;
  color: #F8FAFC;
  margin: 0 0 22px;
}
.insights-h1 em {
  font-style: italic;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 55%, #D97706 100%);
  -webkit-background-clip: text;
          background-clip: text;
  display: inline-block;
  position: relative;
  padding: 0 .06em;
}
.insights-h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 10%;
  bottom: .02em;
  height: 3px;
  background: linear-gradient(90deg, rgba(251,191,36,.85) 0%, rgba(245,158,11,.6) 50%, transparent 100%);
  border-radius: 2px;
  transform-origin: left center;
  animation: mastheadUnderline 1.4s cubic-bezier(.22,1,.36,1) .4s both;
}
@keyframes mastheadUnderline {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.insights-lede {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.0625rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: #94A3B8;
  max-width: 640px;
  margin: 0 auto 38px;
}

/* Search bar — newspaper-style with a top hairline rule */
.insights-search {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}
.insights-search::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}
.insights-search input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #F8FAFC;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.insights-search input:focus {
  outline: none;
  border-color: rgba(251,191,36,.5);
  background: rgba(255,255,255,.07);
  box-shadow: 0 0 0 3px rgba(251,191,36,.12);
}
.insights-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: rgba(251,191,36,.75);
  pointer-events: none;
}

/* Responsive tightening */
@media (max-width: 640px) {
  .insights-hero { min-height: 440px; }
  .insights-masthead-rule { width: 32px; }
  .insights-masthead-label { font-size: 9.5px; letter-spacing: .2em; }
  .insights-hero-lamp { top: -200px; width: 700px; height: 500px; filter: blur(24px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .insights-hero-lamp,
  .insights-hero-dust span,
  .insights-masthead-pulse,
  .insights-h1 em::after { animation: none !important; }
  .insights-hero-dust span { opacity: .5; }
  .insights-h1 em::after { transform: scaleX(1); }
}


/* ═══════════════════════════════════════════════════════════════
   FORM STATUS — feedback message shown after form submit
   ═══════════════════════════════════════════════════════════════ */
[data-form-status] {
  min-height: 0;
  font-size: 13.5px;
  line-height: 1.45;
  margin-top: 8px;
  transition: min-height .2s ease;
}
[data-form-status]:not(:empty) {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 500;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
}
[data-form-status][data-kind="ok"] {
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.32);
  color: #047857;
}
[data-form-status][data-kind="error"] {
  background: rgba(244,63,94,.08);
  border: 1px solid rgba(244,63,94,.3);
  color: #BE123C;
}
/* On dark backgrounds use lighter variants */
.form-input-dark ~ [data-form-status][data-kind="ok"],
.hero-v2 [data-form-status][data-kind="ok"],
.gradient-dark-section [data-form-status][data-kind="ok"] {
  color: #6EE7B7;
}
.form-input-dark ~ [data-form-status][data-kind="error"],
.hero-v2 [data-form-status][data-kind="error"],
.gradient-dark-section [data-form-status][data-kind="error"] {
  color: #FDA4AF;
}

/* Honeypot — truly hidden from users + assistive tech */
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
