/* ═══════════════════════════════════════════════════════════════════════════
   Mo6o ecosystem hub — shared stylesheet for every marketing page
   (company front page "/", product pages "/booking" & "/amc", "/press").

   Design system ported 1:1 from the LIVE product (mo6o.com):
   "White Glassmorphism + Soft Neumorphism" — light lavender base with
   animated aurora blobs, ink-navy type, muted violet→rose gradient, sage
   green accents, white glass cards with lavender shadows. Tokens sourced
   from frontend/src/assets/styles/globals.css and the built
   LandingView-*.css of the live site; values are kept verbatim (px scale)
   so the hub reads as the same brand as the product.

   No JavaScript anywhere in this sheet's behavior: aurora drift, marquee,
   and scroll reveals are pure CSS (reveals use scroll-driven animations
   where supported and degrade to fully visible content elsewhere).
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Base backgrounds */
  --bg-base: #f0f0f5;
  --bg-elevated: #f7f7fc;
  --bg-deep: #e8e8f0;

  /* Glass layers */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.75);
  --glass-bg-hover: rgba(255, 255, 255, 0.68);
  --glass-border: rgba(255, 255, 255, 0.90);
  --glass-blur: blur(24px) saturate(160%);
  --glass-shadow: 0 8px 32px rgba(148, 130, 200, 0.12), 0 2px 8px rgba(148, 130, 200, 0.08);
  --glass-shadow-hover: 0 16px 48px rgba(148, 130, 200, 0.20), 0 4px 16px rgba(148, 130, 200, 0.12);

  /* Neumorphic surfaces */
  --neuo-raised: 6px 6px 14px rgba(180, 175, 210, 0.45), -6px -6px 14px rgba(255, 255, 255, 0.90);
  --neuo-raised-hover: 8px 8px 18px rgba(180, 175, 210, 0.55), -8px -8px 18px rgba(255, 255, 255, 1);
  --neuo-inset: inset 4px 4px 10px rgba(180, 175, 210, 0.40), inset -4px -4px 10px rgba(255, 255, 255, 0.85);

  /* Accent colors — soft, premium pastel */
  --accent-primary: #7c5cbf;
  --accent-primary-light: #9b7fd4;
  --accent-primary-ultra: rgba(124, 92, 191, 0.10);
  --accent-pink: #d4709a;
  --accent-cyan: #5ba8c4;
  --accent-green: #5bab8a;
  --accent-amber: #c49a4a;
  --accent-red: #c45b6a;

  /* Gradient presets */
  --grad-primary: linear-gradient(135deg, #7c5cbf 0%, #d4709a 100%);
  --grad-secondary: linear-gradient(135deg, #5ba8c4 0%, #7c5cbf 100%);
  --grad-success: linear-gradient(135deg, #5bab8a 0%, #5ba8c4 100%);

  /* Text colors */
  --text-primary: #2d2d4e;
  --text-secondary: #6b6b8a;
  --text-muted: #9999b5;

  /* Borders */
  --border-subtle: rgba(148, 130, 200, 0.15);
  --border-default: rgba(148, 130, 200, 0.25);
  --hairline-violet: rgba(124, 92, 191, 0.10);

  /* Radii */
  --radius-card: 20px;
  --radius-pill: 100px;

  /* Layout */
  --shell: min(1240px, 100% - 4rem);
  --shell-narrow: min(920px, 100% - 3rem);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Back-compat aliases (referenced by a few inline styles in the pages) */
  --violet-400: var(--accent-primary);
  --text-dim: var(--text-muted);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

a { color: inherit; }
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

/* Screen-reader-only — keeps keyword-rich phrases in headings without altering
   the visible design (ported from LandingView's .sr-only). */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Aurora background — live LandingView blobs, verbatim ────────────────── */

.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.aurora::before {
  width: 60vw; height: 60vw;
  left: -10vw; top: -15vw;
  background: radial-gradient(circle, #d4709a 0%, transparent 70%);
  animation: floatA 24s ease-in-out infinite alternate;
}
.aurora::after {
  width: 55vw; height: 55vw;
  right: -12vw; top: 20vh;
  background: radial-gradient(circle, #7c5cbf 0%, transparent 70%);
  animation: floatB 28s ease-in-out infinite alternate;
}
.aurora .blob3 {
  position: absolute;
  width: 50vw; height: 50vw;
  left: 30vw; top: 60vh;
  border-radius: 50%;
  background: radial-gradient(circle, #5ba8c4 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.4;
  animation: floatC 32s ease-in-out infinite alternate;
}
@keyframes floatA { to { transform: translate(15vw, 10vh) scale(1.1); } }
@keyframes floatB { to { transform: translate(-12vw, -8vh) scale(1.15); } }
@keyframes floatC { to { transform: translate(-20vw, 15vh) scale(0.9); } }

/* Content sits above the aurora layer. */
header, main, footer { position: relative; z-index: 1; }

/* ── Site header — the live floating nav island ─────────────────────────── */

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 1180px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--glass-shadow);
}

.site-header .bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 12px 14px 12px 22px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  text-decoration: none;
}

/* The live brand's diamond logo image (nav .brand .diamond). */
.wordmark-logo {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  object-fit: contain;
}
.footer-brand .wordmark-logo { width: 32px; height: 32px; }

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

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: 0.2s var(--ease);
}

.nav-links a:hover { color: var(--text-primary); background: rgba(124, 92, 191, 0.08); }
.nav-links a[aria-current="page"] { color: var(--text-primary); background: rgba(124, 92, 191, 0.10); font-weight: 600; }

.nav-cta { margin-left: 4px; }
/* .nav-links a (0,1,1) beats .btn-primary (0,1,0) — restate the CTA's text
   colour at higher specificity or the gradient pill renders grey-on-purple. */
.nav-links a.nav-cta { color: #fff; }
.nav-links a.nav-cta:hover { color: #fff; background: var(--grad-primary); }

/* Header links collapse on small screens; the wordmark + primary CTA remain. */
@media (max-width: 720px) {
  .nav-links a.collapsible { display: none; }
}
@media (max-width: 640px) {
  .site-header { top: 12px; width: calc(100% - 20px); }
  .site-header .bar { padding: 10px 12px 10px 16px; }
  .wordmark { font-size: 16px; }
}

/* ── Buttons — live btn-primary / btn-ghost language ────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 3rem;
  padding: 14px 24px;
  border-radius: 14px;
  border: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s var(--ease);
}

.btn svg { width: 1.05rem; height: 1.05rem; }

.btn-sm { min-height: 2.5rem; padding: 10px 16px; font-size: 14px; }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(124, 92, 191, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(124, 92, 191, 0.45);
}

.btn-outline {
  background: var(--bg-elevated);
  color: var(--text-primary);
  box-shadow: var(--neuo-raised);
}

.btn-outline:hover { box-shadow: var(--neuo-inset); }

.btn-ghost {
  border: 1px dashed var(--border-default);
  background: transparent;
  color: var(--text-muted);
  cursor: default;
}

/* Nav CTA is a pill, like the live island's CTA. */
.nav-cta.btn, .nav-cta {
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(124, 92, 191, 0.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(124, 92, 191, 0.45); }

.btn:focus-visible,
.wordmark:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
}

/* ── Layout primitives ──────────────────────────────────────────────────── */

main { flex: 1; }

.shell { width: var(--shell); margin: 0 auto; }
.shell-narrow { width: var(--shell-narrow); margin: 0 auto; }

section { position: relative; }

.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(124, 92, 191, 0.10);
  color: var(--accent-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800;
}

.section-head p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.55;
}

/* ── Hero (shared shape across company + product pages) ─────────────────── */

.hero {
  width: var(--shell);
  margin: 0 auto;
  padding: clamp(128px, 16vw, 160px) 0 clamp(48px, 6vw, 80px);
}

.hero-inner { max-width: 52rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 22px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(91, 171, 138, 0.18);
}

.eyebrow .india {
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #f93, #fff, #138808);
  color: #2d2d4e;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(30px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.hero .lead {
  margin: 0 0 34px;
  max-width: 560px;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-violet);
}

.hero-meta .item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-meta .lbl { color: var(--text-muted); font-size: 13px; }

/* Hero entrance — the live landing reveals the hero on load; replicated as a
   staggered CSS fade-up so the page feels alive without JS. */
.hero-inner > * { animation: hero-in 0.7s var(--ease) both; }
.hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.15s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.25s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.35s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.45s; }
.hero-stage-wrap { animation: hero-in 0.9s var(--ease) 0.3s both; }
@keyframes hero-in {
  from { opacity: 0; transform: translateY(28px); }
}

/* ── Hero stage — the live 3D dashboard mock (booking page) ─────────────── */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-grid .hero-inner { max-width: none; min-width: 0; }

.hero-stage-wrap { position: relative; }
.stage {
  position: relative;
  height: 640px;
  perspective: 1600px;
}

.dash {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  height: 560px;
  border-radius: 24px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transform: rotateY(-10deg) rotateX(6deg) translateZ(0);
}
.dash-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.4);
}
.dash-top .d { width: 11px; height: 11px; border-radius: 50%; background: var(--bg-deep); }
.dash-top .d:nth-child(1) { background: var(--accent-red); }
.dash-top .d:nth-child(2) { background: var(--accent-amber); }
.dash-top .d:nth-child(3) { background: var(--accent-green); }
.dash-top .url {
  margin-left: 14px;
  font-size: 11px;
  color: var(--text-muted);
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
}
.dash-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  height: calc(100% - 49px);
}
.dash-side { display: flex; flex-direction: column; gap: 6px; }
.dash-side .it {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--text-secondary);
}
.dash-side .it .ic { width: 22px; height: 22px; border-radius: 7px; background: var(--bg-deep); }
.dash-side .it.active {
  background: linear-gradient(135deg, rgba(124, 92, 191, 0.13), rgba(212, 112, 154, 0.13));
  color: var(--text-primary);
  font-weight: 600;
}
.dash-side .it.active .ic { background: var(--grad-primary); }
.dash-main { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kpi {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--glass-border);
}
.kpi .lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.kpi .val { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 22px; margin-top: 4px; }
.kpi .trend { font-size: 11px; color: var(--accent-green); margin-top: 2px; }
.chart {
  flex: 1;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.chart h5 { font-size: 12px; color: var(--text-secondary); font-weight: 500; margin: 0 0 8px; }
.bars { display: flex; align-items: end; gap: 8px; height: 120px; }
.bars .b {
  flex: 1;
  background: var(--grad-primary);
  border-radius: 6px 6px 2px 2px;
  opacity: 0.85;
  transform-origin: bottom;
  animation: bar-grow 0.9s var(--ease) both;
}
.bars .b:nth-child(1) { animation-delay: 0.55s; }
.bars .b:nth-child(2) { animation-delay: 0.65s; }
.bars .b:nth-child(3) { animation-delay: 0.75s; }
.bars .b:nth-child(4) { animation-delay: 0.85s; }
.bars .b:nth-child(5) { animation-delay: 0.95s; }
.bars .b:nth-child(6) { animation-delay: 1.05s; }
.bars .b:nth-child(7) { animation-delay: 1.15s; }
@keyframes bar-grow { from { transform: scaleY(0); } }
.bk-list { display: flex; flex-direction: column; gap: 6px; }
.bk {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}
.bk .av {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-secondary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.bk .av.av-p { background: var(--grad-primary); }
.bk .bk-nm { font-weight: 600; }
.bk .bk-svc { font-size: 9px; color: var(--text-muted); }
.bk .tm { margin-left: auto; font-family: "JetBrains Mono", monospace; color: var(--text-muted); font-size: 10px; }
.bk.pill { border-left: 3px solid var(--accent-green); }

/* Floating notification cards — the live parallax replaced by a gentle
   CSS float loop (the design system's `float` animation). */
.fl {
  position: absolute;
  border-radius: 18px;
  padding: 14px 16px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: 0 18px 40px rgba(124, 92, 191, 0.18);
  min-width: 200px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fl-wa { top: 8%; left: -30px; display: flex; align-items: center; gap: 10px; }
.fl-wa .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
}
.fl-wa .ttl { font-size: 13px; font-weight: 600; }
.fl-wa .sub { font-size: 11px; color: var(--text-muted); }
.fl-pay { bottom: 70px; left: -10px; width: 230px; animation-duration: 6s; animation-delay: -2s; }
.fl-pay .row { display: flex; align-items: center; gap: 10px; }
.fl-pay .ic {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-success);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
}
.fl-pay .ttl { font-size: 13px; font-weight: 700; }
.fl-pay .sub { font-size: 11px; color: var(--text-muted); }
.fl-pay .amt { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 22px; margin-top: 8px; }
.fl-pay .meta { font-size: 10px; color: var(--accent-green); margin-top: 2px; font-weight: 600; }
.fl-book { top: 42%; right: -20px; width: 240px; animation-duration: 7s; animation-delay: -3.5s; }
.fl-book .ttl { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.fl-book .slot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}
.fl-book .slot .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-primary); box-shadow: none; }
.fl-book .slot.full .dot { background: var(--text-muted); }
.fl-book .slot.full { opacity: 0.55; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 60px; }
  .stage { height: 520px; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hero-stage-wrap { width: 100%; overflow: visible; }
  .stage {
    height: auto;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    perspective: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .dash {
    position: relative;
    inset: auto;
    height: auto;
    transform: none;
    width: 100%;
  }
  .fl {
    position: static;
    inset: auto;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    animation: none;
  }
}

/* ── Company front page: product cards ──────────────────────────────────── */

.products {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 18px;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  transition: 0.3s var(--ease);
}

.product-card.flagship {
  border-color: rgba(124, 92, 191, 0.35);
  box-shadow: 0 0 0 1px rgba(124, 92, 191, 0.12), var(--glass-shadow);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(124, 92, 191, 0.20);
}

.card-badge {
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card-badge.live { background: rgba(91, 171, 138, 0.15); color: var(--accent-green); }
.card-badge.new { background: rgba(91, 168, 196, 0.15); color: var(--accent-cyan); }
.card-badge.soon { background: var(--bg-deep); color: var(--text-muted); }

.card-icon {
  width: 48px; height: 48px;
  margin-bottom: 18px;
  display: grid; place-items: center;
  border-radius: 14px;
}
.card-icon svg { width: 1.5rem; height: 1.5rem; }
.icon-booking { background: rgba(124, 92, 191, 0.12); color: var(--accent-primary); }
.icon-amc { background: rgba(91, 168, 196, 0.14); color: var(--accent-cyan); }
.icon-soon { background: var(--bg-deep); color: var(--text-muted); }

.product-card h2 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
}

.card-role {
  margin: 0 0 14px;
  color: var(--accent-primary);
  font-size: 13px;
  font-weight: 600;
}
.product-card--soon .card-role { color: var(--text-muted); }

.card-copy {
  margin: 0 0 26px;
  flex: 1;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.card-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Generic card grid (industries, modules, integrations) ──────────────── */

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 18px;
}

.info-card {
  padding: 24px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  transition: 0.3s var(--ease);
}
.info-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(124, 92, 191, 0.20); }

.info-card .logo {
  width: 48px; height: 48px;
  margin-bottom: 14px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.info-card h4 { margin: 0 0 6px; font-size: 16px; font-weight: 700; }
.info-card p { margin: 0; color: var(--text-secondary); font-size: 13px; line-height: 1.5; }
.info-card .src {
  margin-top: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--text-muted);
}

/* ── Feature rows (alternating copy / visual) ───────────────────────────── */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 64px);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--hairline-violet); }
.feature-row.reverse .feature-copy { order: 2; }

.feature-copy .num {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--grad-primary);
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}
.feature-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.05;
}
.feature-copy > p { margin: 0 0 22px; color: var(--text-secondary); font-size: 17px; line-height: 1.55; max-width: 480px; }

.points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-primary);
  font-size: 14px;
}
.points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-primary);
}
.points li b, .points li strong { color: var(--text-primary); font-weight: 700; }
.feature-copy .hero-actions { margin-top: 22px; }

/* Visual side of a feature row — a live-style glass panel. */
.feature-visual {
  min-height: 15rem;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--glass-border);
  font-size: 13px;
}
.mock-row .mono { color: var(--accent-primary); }
.mock-row .amt { font-weight: 700; font-family: "JetBrains Mono", monospace; }
.mock-row.accent { border-color: var(--border-default); background: rgba(124, 92, 191, 0.10); }
.mock-tag {
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600;
}

/* ── Chains band + HQ dashboard panel ───────────────────────────────────── */

.band {
  margin: clamp(2rem, 5vw, 3.5rem) 0;
  padding: clamp(3rem, 8vw, 140px) 0;
  background:
    radial-gradient(42rem 30rem at 12% 18%, rgba(212, 112, 154, 0.16), transparent 62%),
    radial-gradient(46rem 32rem at 88% 45%, rgba(124, 92, 191, 0.16), transparent 62%);
}

/* HQ dashboard panel — a glimpse of the real product's group view: topbar
   with branch switcher, summary stats, aligned branch rows, and a
   scoped-access footer. Upright and grid-aligned; replaces the app
   landing's orbit visual by design. */

.hq-panel {
  max-width: 46rem;
  margin: 0 auto;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow), 0 30px 80px rgba(124, 92, 191, 0.18);
  color: var(--text-primary);
  overflow: hidden;
}

.hq-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  padding: 0.8rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}
.hq-live { display: inline-flex; align-items: center; gap: 0.65rem; }
.hq-gem {
  width: 2.1rem; height: 2.1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-primary);
  font-size: 0.9rem;
  box-shadow: 0 6px 18px rgba(124, 92, 191, 0.35);
}
.hq-id { display: flex; flex-direction: column; line-height: 1.25; }
.hq-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.hq-sub { font-size: 0.72rem; color: var(--text-muted); }
.hq-switch {
  padding: 0.32rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(124, 92, 191, 0.10);
  color: var(--accent-primary);
  font-size: 0.78rem;
  font-weight: 600;
}

.hq-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border-subtle);
}
.hq-stat { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.1rem; }
.hq-stat + .hq-stat { border-left: 1px solid var(--border-subtle); }
.hq-stat .num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 800;
  color: var(--text-primary);
}
.hq-stat .num.up { color: var(--accent-green); }
.hq-stat .lbl { font-size: 0.75rem; color: var(--text-muted); }

.hq-rows { padding: 0.3rem 0 0.4rem; }
.hq-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.62rem 1.25rem;
}
.hq-row + .hq-row { border-top: 1px solid var(--border-subtle); }
.hq-head-row {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0.3rem;
}
.hq-branch { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.hq-badge {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(91, 171, 138, 0.20);
}
.hq-name {
  display: flex; flex-direction: column; min-width: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-primary);
}
.hq-code { font-size: 0.62rem; font-weight: 500; color: var(--text-muted); }
.hq-rev { font-weight: 700; font-size: 0.85rem; color: var(--text-primary); justify-self: end; }
.hq-growth { justify-self: end; font-weight: 700; font-size: 0.78rem; color: var(--accent-green); }

.hq-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
}
.hq-note { padding: 0.9rem 1.25rem; background: rgba(124, 92, 191, 0.06); color: var(--text-secondary); font-size: 0.83rem; }
.hq-note b { display: block; margin-bottom: 0.1rem; color: var(--text-primary); font-size: 0.8rem; font-family: "Plus Jakarta Sans", sans-serif; }

@media (max-width: 560px) {
  .hq-summary { grid-template-columns: 1fr; }
  .hq-stat { padding: 0.75rem 1.25rem; }
  .hq-stat + .hq-stat { border-left: 0; border-top: 1px solid var(--border-subtle); }
  .hq-foot { grid-template-columns: 1fr; }
  .hq-row { gap: 0.6rem; padding: 0.62rem 1rem; }
}

/* ── Pricing ────────────────────────────────────────────────────────────── */

.value-prop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
  margin: 0 auto 36px;
  padding: 18px 24px;
  border-radius: 18px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 13px;
  max-width: 1080px;
}
.value-prop strong { color: var(--accent-primary); font-weight: 700; margin-right: 4px; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 14px;
}

.plan {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 28px 22px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.plan.fav {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 30px 70px rgba(124, 92, 191, 0.40);
}
.plan.fav h3, .plan.fav .price { color: #fff; }
.plan .tag {
  position: absolute;
  top: -12px;
  right: 18px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--accent-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
}
.plan h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.plan .price { font-family: "Plus Jakarta Sans", sans-serif; font-size: 32px; font-weight: 800; }
.plan .price .per { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.plan.fav .price .per { color: rgba(255, 255, 255, 0.75); }
.plan .price .was { text-decoration: line-through; color: var(--text-muted); font-size: 18px; font-weight: 500; margin-right: 8px; }
.plan.fav .price .was { color: rgba(255, 255, 255, 0.65); }
.plan .savings, .plan .badge-free {
  align-self: flex-start;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-green);
  background: rgba(91, 171, 138, 0.15);
}
.plan.fav .savings, .plan.fav .badge-free { color: #fff; background: rgba(255, 255, 255, 0.25); }
.plan .desc { margin: 12px 0 18px; color: var(--text-secondary); font-size: 12px; }
.plan.fav .desc { color: rgba(255, 255, 255, 0.85); }
.plan .lis { flex: 1; display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.plan .li { position: relative; padding-left: 1.1rem; color: var(--text-secondary); font-size: 12px; line-height: 1.4; }
.plan .li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.4rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-primary);
}
.plan.fav .li { color: rgba(255, 255, 255, 0.95); }
.plan.fav .li::before { background: #fff; }
.plan .cta-link {
  margin-top: auto;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  background: var(--bg-elevated);
  box-shadow: var(--neuo-raised);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s var(--ease);
}
.plan .cta-link:hover { box-shadow: var(--neuo-inset); }
.plan.fav .cta-link { background: #fff; color: var(--accent-primary); box-shadow: none; }

.credit-packs {
  margin-top: 48px;
  padding: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  text-align: center;
}
.cp-title { font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.cp-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cp-card {
  min-width: 13rem;
  padding: 18px;
  border-radius: 14px;
  background: var(--bg-elevated);
  box-shadow: var(--neuo-raised);
}
.cp-amt { font-family: "Plus Jakarta Sans", sans-serif; font-size: 22px; font-weight: 800; color: var(--accent-primary); }
.cp-units { font-size: 12px; color: var(--text-secondary); }

.pricing-fallback {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Centered follow-up action under a grid (e.g. "See all coverage"). */
.section-cta {
  margin-top: 1.25rem;
  text-align: center;
}

/* Feature comparison matrix (populated by the catalog fetch) */
.matrix-wrap { margin-top: 48px; }
.matrix-title { text-align: center; font-size: 22px; font-weight: 800; }
.matrix-sub { text-align: center; color: var(--text-secondary); font-size: 13px; margin-bottom: 18px; }
.matrix-scroll {
  overflow-x: auto;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.matrix { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 40rem; }
.matrix th, .matrix td { padding: 11px 12px; text-align: center; border-bottom: 1px solid var(--border-subtle); }
.matrix thead th {
  position: sticky; top: 0;
  padding: 14px 12px;
  background: rgba(124, 92, 191, 0.06);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.matrix thead th.m-fav, .matrix .m-fav { background: var(--grad-primary); color: #fff; }
.matrix td.m-fav { background: rgba(124, 92, 191, 0.06); color: var(--accent-primary); }
.matrix .m-feat { text-align: left; color: var(--text-secondary); font-weight: 500; }
.matrix .m-group td {
  text-align: left;
  font-weight: 700;
  color: var(--accent-primary);
  background: rgba(124, 92, 191, 0.04);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.matrix-foot { margin-top: 14px; text-align: center; color: var(--text-muted); font-size: 12px; }

/* ── Trust ──────────────────────────────────────────────────────────────── */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 18px;
}
.trust-card {
  padding: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.trust-card .ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--grad-primary);
  font-size: 20px;
  margin-bottom: 18px;
}
.trust-card h4 { margin: 0 0 10px; font-size: 18px; font-weight: 700; }
.trust-card > p { margin: 0 0 1rem; color: var(--text-secondary); font-size: 13px; line-height: 1.55; }
.trust-card .li { position: relative; padding-left: 1.4rem; margin-top: 8px; color: var(--text-secondary); font-size: 12px; }
.trust-card .li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-green); font-weight: 700; }

/* ── FAQ (native <details>, no JS) ──────────────────────────────────────── */

.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 840px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  overflow: hidden;
  transition: 0.3s var(--ease);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(124, 92, 191, 0.10);
  color: var(--accent-primary);
  font-size: 18px;
  font-weight: 300;
  transition: 0.3s var(--ease);
}
.faq-item[open] summary .plus {
  transform: rotate(45deg);
  background: var(--grad-primary);
  color: #fff;
}
.faq-item .faq-a { padding: 0 26px 22px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.faq-item[open] .faq-a { animation: faq-in 0.35s var(--ease); }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } }

/* ── Press ──────────────────────────────────────────────────────────────── */

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 18px;
}
.press-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  text-decoration: none;
  color: inherit;
  transition: 0.25s var(--ease);
}
.press-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(124, 92, 191, 0.20); }
.p-outlet {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.p-title { margin: 0; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600; font-size: 15px; line-height: 1.35; color: var(--text-primary); }
.p-excerpt { color: var(--text-secondary); font-size: 13px; margin: 0; }
.p-read { margin-top: auto; padding-top: 8px; color: var(--accent-primary); font-weight: 600; font-size: 12px; }
.p-date { color: var(--text-muted); font-size: 12px; }

/* Syndicated-coverage cloud (press page) — hundreds of outlets rendered as
   compact flowing pills, grouped into a few glass panels so the list reads
   as a coverage map instead of a monotonous grid. */
.press-links-head { margin-top: clamp(3rem, 7vw, 96px); }

.press-cloud { display: flex; flex-direction: column; gap: 18px; }

.pc-group {
  padding: 26px 26px 24px;
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.pc-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.pc-head::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: 0 0 0 4px rgba(124, 92, 191, 0.14);
}
.pc-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.pc-count {
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  background: rgba(124, 92, 191, 0.10);
  color: var(--accent-primary);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
}
.pc-links { display: flex; flex-wrap: wrap; gap: 8px; }

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s var(--ease);
}
.press-link::after { content: "↗"; color: var(--text-muted); font-size: 10px; flex-shrink: 0; }
.press-link:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(124, 92, 191, 0.30);
}
.press-link:hover::after { color: #fff; }

@media (max-width: 640px) {
  .pc-group { padding: 20px 16px 18px; }
  .press-link { font-size: 12px; padding: 6px 11px; }
}

/* ── Final CTA — the live gradient box with light bubbles ───────────────── */

.cta-final {
  width: var(--shell);
  margin: clamp(2.5rem, 6vw, 4rem) auto;
}
.cta-box {
  position: relative;
  padding: clamp(48px, 8vw, 80px) 32px;
  border-radius: 32px;
  text-align: center;
  background: var(--grad-primary);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(124, 92, 191, 0.40);
}
.cta-box::before,
.cta-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.cta-box::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
  top: -150px; left: -100px;
}
.cta-box::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91, 168, 196, 0.4), transparent 70%);
  bottom: -200px; right: -150px;
}
.cta-box h2 { position: relative; z-index: 1; margin: 0 0 18px; font-size: clamp(38px, 5.5vw, 68px); font-weight: 800; color: #fff; }
.cta-box p { position: relative; z-index: 1; margin: 0 auto 36px; max-width: 580px; color: #fff; opacity: 0.92; font-size: 18px; line-height: 1.5; }
.cta-box .hero-actions { position: relative; z-index: 1; justify-content: center; }
.cta-box .btn-primary { background: #fff; color: var(--accent-primary); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15); }
.cta-box .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(0, 0, 0, 0.20); }
.cta-box .btn-outline {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.30);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cta-box .btn-outline:hover { background: rgba(255, 255, 255, 0.28); box-shadow: none; }

/* ── Generic section spacing ────────────────────────────────────────────── */

.section-pad { padding: clamp(3rem, 8vw, 120px) 0; }

/* ── Footer ─────────────────────────────────────────────────────────────── */

.site-footer {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(124, 92, 191, 0.12);
}
.footer-inner {
  width: var(--shell);
  margin: 0 auto;
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand-col .footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 20px;
  color: var(--text-primary);
}
.footer-brand-col p { margin: 14px 0 0; color: var(--text-secondary); font-size: 13px; line-height: 1.5; max-width: 280px; }
.footer-col h5 { margin: 0 0 14px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-secondary); text-decoration: none; font-size: 13px; transition: 0.15s var(--ease); }
.footer-col a:hover { color: var(--accent-primary); }
.footer-bottom {
  width: var(--shell);
  margin: 0 auto;
  padding: 24px 0 32px;
  border-top: 1px solid var(--hairline-violet);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 1.5rem;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 12px;
}

/* ── Scroll reveals — live's .reveal, as pure CSS ───────────────────────────
   The live landing fades sections up on scroll via a JS IntersectionObserver.
   The hub replicates it with scroll-driven animations (no JS, CSP-safe):
   supported browsers get the same 40px fade-up; others show content
   immediately. Keyframe defines `from` only so the element's own transform
   (hover lifts, etc.) is untouched at rest. */

@supports (animation-timeline: view()) {
  .section-head,
  .product-card,
  .info-card,
  .press-card,
  .trust-card,
  .feature-row,
  .hq-panel,
  .value-prop,
  .credit-packs,
  .faq-item,
  .step-card,
  .phone-mock,
  .plan,
  .pc-group,
  .cta-box {
    animation: reveal-up 1 both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(40px); }
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 980px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-copy { order: 0; }
}

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

@media (max-width: 768px) {
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
}

@media (max-width: 640px) {
  :root { --shell: min(1240px, 100% - 2rem); --shell-narrow: min(920px, 100% - 2rem); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(28px, 8vw, 40px); }
  .hero .actions, .hero-actions { gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   AMC product page (/amc) — page-specific components.

   The /amc CSP is style-src 'self' with NO 'unsafe-inline', so the page can
   carry no inline style attributes: everything it needs lives here. Same
   design vocabulary as the rest of the hub — upright glass panels and grids
   only (the AMC brief bans orbit/radial visuals with rotated/floating cards).
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero: the "Revenue leak · live" panel — upright, dark, stacked rows ── */

.leak-panel {
  border-radius: 26px;
  background: linear-gradient(165deg, #34345c 0%, #23233f 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 40px 90px rgba(45, 45, 78, 0.40);
  color: #fff;
  overflow: hidden;
}
.leak-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.leak-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.leak-live .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #7ee2b8;
  animation: leak-pulse 2.2s ease-in-out infinite;
}
@keyframes leak-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(126, 226, 184, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(126, 226, 184, 0); }
}
/* Honesty rule: the meter is real, these figures are not a real customer's. */
.leak-tag {
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}
.leak-total { padding: 24px 22px 4px; }
.leak-total .lbl {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.leak-total .num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(90deg, #ff9db3, #ffd29d);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.leak-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 14px 4px;
}
.leak-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
}
.leak-row .l { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.85); }
.leak-row .l .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.leak-amber .dot { background: #ffce85; }
.leak-rose .dot { background: #ff9db3; }
.leak-red .dot { background: #ff8585; }
.leak-row .amt { font-family: "JetBrains Mono", monospace; font-weight: 600; white-space: nowrap; }
.leak-foot { padding: 12px 22px 20px; font-size: 11.5px; color: rgba(255, 255, 255, 0.5); }

/* ── "Four steps, no leak" — numbered cards, 4-up / 2×2 / 1-col ──────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  padding: 24px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.step-card .step-num {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(124, 92, 191, 0.30);
}
.step-card h4 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.step-card p { margin: 0; color: var(--text-secondary); font-size: 13px; line-height: 1.55; }

/* ── Small mock atoms shared by the AMC feature visuals ──────────────────── */

.chip {
  display: inline-block;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.chip-active { background: rgba(91, 171, 138, 0.16); color: var(--accent-green); }

/* Allocation-board mock — upright weekly grid, one suggested slot. */
.board-mock { display: flex; flex-direction: column; gap: 6px; }
.board-row {
  display: grid;
  grid-template-columns: 64px repeat(5, 1fr);
  gap: 6px;
  align-items: center;
}
.board-head span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.board-tech { font-size: 11px; font-weight: 700; }
.board-cell {
  height: 30px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--glass-border);
  display: grid; place-items: center;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-secondary);
}
.board-cell.visit { background: rgba(124, 92, 191, 0.14); border-color: rgba(124, 92, 191, 0.25); color: var(--accent-primary); }
.board-cell.call { background: rgba(91, 168, 196, 0.14); border-color: rgba(91, 168, 196, 0.30); color: var(--accent-cyan); }
.board-cell.suggest { background: transparent; border: 1.5px dashed var(--border-default); color: var(--accent-primary); }
.board-note {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(124, 92, 191, 0.10);
  border: 1px solid var(--border-default);
  font-size: 11.5px;
  color: var(--text-primary);
}

/* Phone-frame mock — used in the FIELD feature row and the customer trio. */
.phone-mock {
  padding: 18px 16px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-mock .cam {
  width: 56px; height: 5px;
  margin: 0 auto 10px;
  border-radius: var(--radius-pill);
  background: var(--bg-deep);
}
.phone-mock .mock-row { padding: 10px 12px; font-size: 12px; }
.phone-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 4px;
}
.btn-mock {
  padding: 10px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.btn-mock.ghost { background: rgba(124, 92, 191, 0.10); color: var(--accent-primary); }
.otp-row { display: flex; justify-content: center; gap: 6px; padding: 4px 0; }
.otp-box {
  width: 30px; height: 36px;
  display: grid; place-items: center;
  border-radius: 8px;
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.8);
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.photo-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.photo-thumbs span { aspect-ratio: 1; border-radius: 8px; }
.photo-thumbs .ph1 { background: linear-gradient(135deg, #9b7fd4, #5ba8c4); }
.photo-thumbs .ph2 { background: linear-gradient(135deg, #5bab8a, #5ba8c4); }
.photo-thumbs .ph3 { background: linear-gradient(135deg, #d4709a, #c49a4a); }

/* UPI pay-page mock atoms. */
.upi-row { display: flex; gap: 6px; }
.upi-btn {
  flex: 1;
  padding: 9px 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-subtle);
  font-size: 10.5px;
  font-weight: 700;
  text-align: center;
}
.upi-gpay { color: #1a73e8; }
.upi-phonepe { color: #5f259f; }
.upi-paytm { color: #00b9f1; }
.qr-row { display: flex; align-items: center; gap: 12px; padding: 4px 2px; }
.qr-mock {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 8px;
  border: 4px solid #fff;
  background:
    repeating-linear-gradient(0deg, #2d2d4e 0 4px, transparent 4px 9px),
    repeating-linear-gradient(90deg, #2d2d4e 0 4px, #fff 4px 9px);
}
.qr-note { font-size: 11px; color: var(--text-muted); line-height: 1.45; }

/* Customer trio — three upright phone frames in a row. */
.phones-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 62rem;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .phones-row { grid-template-columns: 1fr; max-width: 24rem; }
}

/* Module-card logo gradients (inline styles are blocked by the /amc CSP). */
.info-card .logo.g1 { background: linear-gradient(135deg, #7c5cbf, #d4709a); }
.info-card .logo.g2 { background: linear-gradient(135deg, #5ba8c4, #5bab8a); }
.info-card .logo.g3 { background: linear-gradient(135deg, #5bab8a, #5ba8c4); }
.info-card .logo.g4 { background: linear-gradient(135deg, #c49a4a, #d4709a); }
.info-card .logo.g5 { background: linear-gradient(135deg, #d4709a, #7c5cbf); }
.info-card .logo.g6 { background: linear-gradient(135deg, #2d2d4e, #7c5cbf); }
.info-card .logo.g7 { background: linear-gradient(135deg, #5ba8c4, #7c5cbf); }
.info-card .logo.g8 { background: linear-gradient(135deg, #9b7fd4, #5ba8c4); }
.info-card .logo.gw { background: linear-gradient(135deg, #25d366, #128c7e); }

/* Reduced motion — WCAG 2.3.3, same policy as the live product. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
