/* ══════════════════════════════════════════════════════════════════
   Social Walls — production homepage styles
   Brand: orange → pink → violet gradient on deep navy / white
   ══════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #0e1224;
  --ink-2: #262b40;
  --navy: #0b1023;
  --navy-2: #131a35;
  --body: #4b5169;
  --muted: #7b8098;
  --line: #e7e9f2;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-tint: #fdf5f4;

  --orange: #ff7a45;
  --pink: #f5426c;
  --violet: #7c3aed;
  --grad: linear-gradient(92deg, #ff7a45 0%, #f5426c 46%, #7c3aed 100%);
  --grad-soft: linear-gradient(92deg, rgba(255,122,69,.12), rgba(245,66,108,.12), rgba(124,58,237,.12));

  --font-head: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(14, 18, 36, .08);
  --shadow-md: 0 10px 30px -8px rgba(14, 18, 36, .14);
  --shadow-lg: 0 24px 60px -16px rgba(14, 18, 36, .22);
  --shadow-grad: 0 12px 32px -8px rgba(245, 66, 108, .38);

  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin: 0; color: inherit; }
p { margin: 0; }
a { color: var(--pink); text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
figure { margin: 0; }

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(245, 66, 108, .22); }

.container { max-width: var(--container); margin: 0 auto; padding-inline: clamp(20px, 4vw, 40px); }

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

/* — reveal on scroll — */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01s !important; }
}

/* ══════════ Buttons ══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; line-height: 1;
  padding: 15px 28px; border-radius: var(--r-pill); border: 0;
  text-decoration: none; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-grad { background: var(--grad); color: #fff; box-shadow: var(--shadow-grad); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(245, 66, 108, .5); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--ink); color: var(--ink); }
.btn-light-outline { background: rgba(255,255,255,.04); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-light-outline:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-white { background: #fff; color: var(--ink); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); color: var(--ink); }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ══════════ Nav ══════════ */
.site-nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14, 18, 36, .06);
}
.site-nav {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
  padding: 14px clamp(20px, 4vw, 40px);
}
.site-nav-brand { display: flex; align-items: center; margin-right: auto; }
.site-nav-brand img { height: 30px; width: auto; }
.site-nav-actions { display: flex; align-items: center; gap: 10px; }
.site-nav-toggle { display: none; }

/* — menu bar — */
.nav-menu { display: flex; align-items: center; gap: clamp(2px, 1vw, 10px); }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px; color: var(--ink-2);
  background: transparent; border: 0; padding: 10px 12px; border-radius: 10px;
  transition: color .15s ease, background .15s ease;
}
.nav-link .chev { transition: transform .2s ease; opacity: .55; }
.nav-item:hover .nav-link, .nav-item.open .nav-link, .nav-item:focus-within .nav-link { color: var(--pink); background: rgba(245, 66, 108, .06); }
.nav-item:hover .nav-link .chev, .nav-item.open .nav-link .chev { transform: rotate(180deg); }

/* — mega panels — */
.mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  padding-top: 10px; z-index: 90;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-item:hover > .mega, .nav-item.open > .mega, .nav-item:focus-within > .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega.clamped { left: 0; transform: translateY(8px); }
.nav-item:hover > .mega.clamped, .nav-item.open > .mega.clamped, .nav-item:focus-within > .mega.clamped { transform: translateY(0); }
.mega-wide { width: min(880px, calc(100vw - 32px)); }
.mega-narrow { width: min(400px, calc(100vw - 32px)); }
.mega-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 30px 70px -18px rgba(14, 18, 36, .28);
  padding: 14px; overflow: hidden;
}
.mega-cols { display: grid; grid-template-columns: minmax(0, 1fr) 264px; gap: 14px; }
.mega-list { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mega-list.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 10px; }
.mega-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 9px 10px; border-radius: 11px; text-decoration: none;
  transition: background .14s ease;
}
.mega-item:hover, .mega-item:focus-visible { background: var(--bg-soft); text-decoration: none; }
.mi-img { width: 26px; height: 26px; border-radius: 7px; object-fit: contain; flex: none; margin-top: 2px; }
.mi-ic {
  width: 26px; height: 26px; border-radius: 7px; flex: none; margin-top: 2px;
  display: grid; place-items: center; color: #fff;
}
.mi-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.mi-name { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--ink); display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.mi-desc { font-size: 12px; line-height: 1.45; color: var(--muted); }
.mi-badge {
  font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: 9px;
  letter-spacing: .05em; text-transform: uppercase;
  background: var(--grad); color: #fff; border-radius: 6px; padding: 2px 7px; white-space: nowrap;
}
.mi-badge.alt { background: linear-gradient(92deg, #7c3aed, #4f9df7); }
.mi-badge.new { background: linear-gradient(92deg, #10b981, #0ea5e9); }
.mega-list.dense .mega-item { padding: 7px 10px; }
.mega-list.dense .mi-desc { display: none; }
.mega-list.dense .mi-name { font-size: 13.5px; }

/* — mega side panel — */
.mega-side {
  background: linear-gradient(160deg, #10162e, #0b1023 75%); color: #fff;
  border-radius: 13px; padding: 18px;
  display: flex; flex-direction: column; gap: 10px; min-width: 0;
}
.ms-kicker { font-family: var(--font-head); font-weight: 700; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #ff9d78; }
.ms-title { font-family: var(--font-head); font-weight: 800; font-size: 17px; letter-spacing: -0.015em; }
.ms-desc { font-size: 12.5px; line-height: 1.55; color: rgba(235,238,252,.7); flex: 1; }
.ms-link { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: #ff9d78; }
.ms-link:hover { color: #ffc0a5; text-decoration: none; }
.ms-link.muted { color: rgba(235,238,252,.6); }
.ms-wall { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 10px; display: flex; flex-direction: column; gap: 7px; }
.ms-wall-head { display: flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 700; font-size: 9px; letter-spacing: .12em; color: rgba(235,238,252,.7); }
.ms-dot { width: 6px; height: 6px; border-radius: 50%; background: #ff4d5e; animation: swPulse 1.6s infinite; }
.ms-post { background: #fff; color: var(--ink); border-radius: 8px; padding: 7px 9px; display: flex; align-items: center; gap: 7px; font-size: 11px; line-height: 1.35; }
.ms-photo { height: 44px; border-radius: 8px; }
.ms-case { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.ms-case-logo {
  width: 42px; height: 42px; border-radius: 11px; background: var(--grad);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff;
}
.ms-video {
  height: 116px; border-radius: 10px; position: relative; overflow: hidden;
  background: linear-gradient(120deg, #ff9a5c, #f5426c 55%, #7c3aed);
  display: grid; place-items: center;
}
.ms-video::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 90% at 24% 16%, rgba(255,255,255,.32), transparent 55%); }
.ms-play {
  position: relative; z-index: 1;
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--pink);
  display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.ms-play svg { margin-left: 2px; }

@media (max-width: 1120px) and (min-width: 921px) {
  .mega-cols { grid-template-columns: 1fr; }
  .mega-side { display: none; }
  .mega-wide { width: min(640px, calc(100vw - 32px)); }
}

@media (max-width: 920px) {
  .nav-menu { display: none; }
  .site-nav-actions .btn-outline { display: none; }
  .site-nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 12px; border: 1.5px solid var(--line);
    background: #fff; color: var(--ink);
  }
  .site-nav { position: relative; }
  body.nav-open .nav-menu {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 10px clamp(16px, 4vw, 40px) 18px;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  body.nav-open .nav-item { position: static; }
  body.nav-open .nav-link { width: 100%; justify-content: space-between; padding: 13px 12px; font-size: 15px; }
  body.nav-open .nav-item > .mega,
  body.nav-open .nav-item:hover > .mega,
  body.nav-open .nav-item.open > .mega,
  body.nav-open .nav-item:focus-within > .mega {
    position: static; transform: none !important; left: auto !important;
    width: 100%; padding-top: 0;
    opacity: 1; pointer-events: auto;
    display: none; visibility: hidden; transition: none;
  }
  body.nav-open .nav-item.open > .mega { display: block; visibility: visible; }
  body.nav-open .mega-card { border: 0; box-shadow: none; padding: 0 4px 10px; border-radius: 0; }
  body.nav-open .mega-cols { grid-template-columns: 1fr; }
  body.nav-open .mega-side { display: none; }
  body.nav-open .mega-list.cols-2 { grid-template-columns: 1fr; }
}

/* ══════════ Hero ══════════ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy); color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(52% 44% at 82% 6%, rgba(124, 58, 237, .34), transparent 70%),
    radial-gradient(44% 40% at 8% 96%, rgba(255, 122, 69, .2), transparent 70%),
    radial-gradient(36% 32% at 46% 118%, rgba(245, 66, 108, .22), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(36px, 5vw, 72px); align-items: center;
  padding-block: clamp(64px, 9vw, 120px) clamp(56px, 7vw, 96px);
}
.hero-inner > * { min-width: 0; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
  color: #fff; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 16px 8px 10px; border-radius: var(--r-pill);
  margin-bottom: 26px; backdrop-filter: blur(6px);
}
.hero-chip .stars { color: #ffc555; letter-spacing: 1px; font-size: 12px; }
.hero-chip .div { width: 1px; height: 14px; background: rgba(255,255,255,.22); }
.hero h1 { font-size: clamp(40px, 5.4vw, 68px); letter-spacing: -0.03em; }
.hero h1 span { display: block; }
.hero-sub {
  font-size: clamp(16px, 1.4vw, 18px); line-height: 1.65; color: rgba(235, 238, 252, .78);
  max-width: 55ch; margin-top: 22px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-ticks { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 26px; }
.hero-ticks span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(235, 238, 252, .66); }
.hero-ticks svg { color: #34d399; flex: none; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 18px clamp(24px, 3vw, 48px);
  margin-top: clamp(32px, 4vw, 48px); padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; }
.hero-stat small { font-size: 12.5px; color: rgba(235,238,252,.6); }

/* — live wall panel — */
.live-panel {
  position: relative;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--r-lg);
  padding: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .55);
}
.live-panel::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(255,122,69,.55), rgba(245,66,108,.25) 30%, transparent 55%, rgba(124,58,237,.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.live-panel-head { display: flex; align-items: center; gap: 10px; padding: 2px 4px 14px; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff4d5e; box-shadow: 0 0 0 0 rgba(255,77,94,.5); animation: swPing 1.8s infinite; }
.live-label { font-family: var(--font-head); font-weight: 700; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; }
.live-reactions { margin-left: auto; font-size: 12.5px; color: rgba(235,238,252,.62); font-variant-numeric: tabular-nums; white-space: nowrap; }
.live-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; min-width: 0; }
.live-ticker-wrap { overflow: hidden; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); min-width: 0; }
.live-ticker {
  display: flex; gap: 28px; white-space: nowrap; width: max-content;
  font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(235,238,252,.5);
  animation: swTicker 20s linear infinite;
}
.live-ticker .tick-dot { color: var(--pink); }

/* — post cards (shared) — */
.post-card {
  background: #fff; color: var(--ink);
  border-radius: 14px; padding: 12px 13px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow-sm);
  animation: swIn .5s cubic-bezier(.16,1,.3,1) both;
  min-width: 0;
}
.post-head { display: flex; align-items: center; gap: 8px; min-width: 0; }
.post-avatar {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 9.5px; letter-spacing: .02em;
}
.av-0 { background: linear-gradient(135deg, #ff7a45, #f5426c); }
.av-1 { background: linear-gradient(135deg, #7c3aed, #4f9df7); }
.av-2 { background: linear-gradient(135deg, #f5426c, #b23aed); }
.av-3 { background: linear-gradient(135deg, #0ea5e9, #22d3ae); }
.av-4 { background: linear-gradient(135deg, #f59e0b, #f5426c); }
.av-5 { background: linear-gradient(135deg, #6366f1, #a855f7); }
.post-id { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.post-name { font-weight: 600; font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.post-handle { font-size: 10.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.post-net {
  margin-left: auto; flex: none;
  font-size: 8.5px; font-weight: 700; letter-spacing: .06em;
  color: #fff; border-radius: 6px; padding: 3px 6px;
}
.net-IG { background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }
.net-X { background: #14171c; }
.net-TT { background: #010101; box-shadow: inset -1px 0 0 rgba(37,244,238,.7), inset 1px 0 0 rgba(254,44,85,.7); }
.net-LI { background: #0a66c2; }
.net-FB { background: #1877f2; }
.net-SNAP { background: var(--grad); }
.post-photo {
  height: 66px; border-radius: 9px; overflow: hidden; position: relative;
}
.post-photo::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 90% at 24% 20%, rgba(255,255,255,.38), transparent 55%);
}
.ph-0 { background: linear-gradient(120deg, #ff9a5c, #f5426c 55%, #90309f); }
.ph-1 { background: linear-gradient(120deg, #4f9df7, #7c3aed 60%, #2b2f77); }
.ph-2 { background: linear-gradient(120deg, #22d3ae, #0ea5e9 60%, #4553c9); }
.ph-3 { background: linear-gradient(120deg, #fbbf24, #fb7185 55%, #c026d3); }
.ph-4 { background: linear-gradient(120deg, #f472b6, #a855f7 60%, #4338ca); }
.ph-5 { background: linear-gradient(120deg, #fb923c, #e11d48 60%, #701a4d); }
.post-text { font-size: 12px; line-height: 1.5; color: var(--ink-2); }
.post-likes { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }
.post-likes svg { color: var(--pink); }

/* ══════════ Trust row ══════════ */
.trust { padding-block: clamp(36px, 5vw, 56px); border-bottom: 1px solid var(--line); }
.trust-label {
  text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 28px;
}
.trust-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 26px clamp(28px, 4vw, 56px); }
.trust-logo { height: 24px; width: auto; filter: grayscale(1); opacity: .55; transition: opacity .2s ease, filter .2s ease; }
.trust-logo:hover { filter: none; opacity: 1; }

/* ══════════ Section scaffolding ══════════ */
.section { padding-block: clamp(72px, 9vw, 120px); }
.section-soft { background: var(--bg-soft); }
.sec-head { max-width: 780px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .02em;
  color: var(--pink); background: rgba(245, 66, 108, .09);
  padding: 7px 14px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.sec-title { font-size: clamp(30px, 3.8vw, 46px); letter-spacing: -0.025em; }
.sec-lede { font-size: 17px; line-height: 1.7; color: var(--body); margin-top: 16px; }

/* ══════════ Experience zone ══════════ */
.zone-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 40px 0 22px;
}
.sec-head.center + .zone-tabs, .zone-tabs.center { justify-content: center; }
.zone-tab {
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  padding: 11px 20px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: #fff; color: var(--ink-2);
  transition: all .18s ease;
}
.zone-tab:hover { border-color: var(--pink); color: var(--pink); }
.zone-tab.active { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: var(--shadow-md); }
.zone-stage {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  min-height: 480px; display: flex; flex-direction: column; background: #fff;
}
.zone-scene { flex: 1; display: none; flex-direction: column; }
.zone-scene.active { display: flex; }
.zone-scene:not(.active) { display: none !important; }
.zone-scene.scene-signage { flex-direction: row; }
.zone-scene.active.scene-internal { display: grid; }

/* events */
.scene-events { background: linear-gradient(160deg, #10162e, #0b1023 70%); color: #fff; padding: clamp(22px, 3.5vw, 44px); gap: 20px; }
.scene-events-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.scene-kicker { font-family: var(--font-head); font-weight: 700; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(235,238,252,.6); }
.live-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255, 77, 94, .16); color: #ff8f9a;
  border: 1px solid rgba(255, 77, 94, .34);
  font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: .14em;
  padding: 5px 12px; border-radius: var(--r-pill);
}
.live-chip .sq { width: 7px; height: 7px; border-radius: 50%; background: #ff4d5e; animation: swPulse 1.6s infinite; }
.scene-meta { margin-left: auto; font-size: 12.5px; color: rgba(235,238,252,.6); font-variant-numeric: tabular-nums; }
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 12px; }
.events-ticker-wrap { overflow: hidden; border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px; min-width: 0; }
.events-ticker {
  display: flex; gap: 36px; white-space: nowrap; width: max-content;
  font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  animation: swTicker 17s linear infinite;
}
.events-ticker .tick-dot { color: var(--orange); }

/* websites */
.scene-websites { padding: clamp(22px, 3.5vw, 44px); background: var(--bg-soft); align-items: center; justify-content: center; }
.mock-browser { background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-lg); border: 1px solid var(--line); max-width: 880px; width: 100%; overflow: hidden; }
.mock-browser-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: #fafbfe; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ff5f57; } .mock-dot:nth-child(2) { background: #febc2e; } .mock-dot:nth-child(3) { background: #28c840; }
.mock-url { flex: 1; background: #eef0f7; font-size: 12px; padding: 6px 12px; border-radius: 8px; color: var(--muted); font-variant-numeric: tabular-nums; }
.mock-body { padding: clamp(20px, 3vw, 36px); }
.mock-site-nav { display: flex; align-items: baseline; gap: 22px; margin-bottom: 20px; }
.mock-site-brand { font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.mock-site-nav span:not(.mock-site-brand) { font-size: 12.5px; color: var(--muted); }
.mock-site-nav .current { color: var(--pink); font-weight: 700; }
.mock-heading { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em; margin-bottom: 6px; }
.mock-sub { font-size: 13.5px; color: var(--body); margin-bottom: 20px; }
.widget-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 10px; }
.widget-grid .post-card { border: 1px solid var(--line); box-shadow: none; }

/* signage */
.scene-signage { background: linear-gradient(150deg, #f4eefc, #fdeef2 60%, #fef3ec); padding: clamp(22px, 3.5vw, 44px); display: flex; gap: clamp(24px, 4vw, 64px); align-items: flex-end; flex-wrap: wrap; }
.totem-col { display: flex; flex-direction: column; gap: 12px; }
.totem {
  width: 252px; border-radius: 18px; padding: 14px;
  display: flex; flex-direction: column; gap: 9px;
  border: 6px solid var(--ink); box-shadow: var(--shadow-lg);
}
.totem-light { background: #fff; }
.totem-dark { background: var(--navy); color: #fff; }
.totem-label { font-family: var(--font-head); font-weight: 800; font-size: 14px; letter-spacing: .03em; }
.totem-dark .totem-label { color: #ff9d78; }
.totem .post-card { border: 1px solid var(--line); box-shadow: none; padding: 10px 11px; }
.totem-dark .post-card { border: 0; }
.totem-caption { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.scene-signage-copy { flex: 1; min-width: 230px; align-self: center; font-size: 15px; line-height: 1.7; max-width: 38ch; color: var(--body); }

/* virtual */
.scene-virtual { background: linear-gradient(160deg, #10162e, #0b1023 70%); color: #fff; padding: clamp(22px, 3.5vw, 44px); gap: 14px; }
.virtual-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 310px); gap: 14px; }
.virtual-stage {
  background: radial-gradient(90% 100% at 30% 0%, #1d2547, #0d1329 70%);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md);
  min-height: 300px; display: grid; place-items: center; position: relative; overflow: hidden;
}
.virtual-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 28px;
  box-shadow: 0 0 0 10px rgba(245, 66, 108, .14), 0 0 60px rgba(245, 66, 108, .4);
}
.virtual-speaker { position: absolute; left: 16px; bottom: 14px; font-size: 12px; font-weight: 700; letter-spacing: .06em; }
.virtual-rec { position: absolute; right: 16px; top: 14px; display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; letter-spacing: .12em; font-weight: 700; color: #ff8f9a; }
.virtual-rec .sq { width: 7px; height: 7px; border-radius: 50%; background: #ff4d5e; animation: swPulse 1.6s infinite; }
.virtual-side { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.virtual-side-label { font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(235,238,252,.55); }
.virtual-footer { display: flex; align-items: center; gap: 10px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px; }
.vr-box { width: 34px; height: 34px; border-radius: 10px; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; font-size: 15px; }
.vr-box.filled { background: var(--grad); border: 0; box-shadow: var(--shadow-grad); }
.virtual-watching { margin-left: auto; font-size: 12.5px; color: rgba(235,238,252,.6); font-variant-numeric: tabular-nums; }

/* internal */
.scene-internal { grid-template-columns: minmax(160px, 210px) minmax(0, 1fr); background: #fff; }
.intranet-side { border-right: 1px solid var(--line); padding: clamp(20px, 3vw, 32px) 20px; display: flex; flex-direction: column; gap: 4px; background: #fafbfe; }
.intranet-brand { font-family: var(--font-head); font-weight: 800; font-size: 14px; margin-bottom: 12px; }
.intranet-side span:not(.intranet-brand) { font-size: 13.5px; color: var(--body); padding: 8px 12px; border-radius: 9px; }
.intranet-side .current { font-weight: 700; color: var(--pink); background: rgba(245, 66, 108, .08); }
.intranet-main { padding: clamp(20px, 3vw, 32px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(180px, 220px); gap: 26px; }
.intranet-title { font-family: var(--font-head); font-weight: 800; font-size: 20px; letter-spacing: -0.015em; margin-bottom: 4px; }
.intranet-sub { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.intranet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: 10px; }
.intranet-grid .post-card { border: 1px solid var(--line); box-shadow: none; }
.leader-label { font-family: var(--font-head); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--pink); }
.leader-list { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.leader-name { font-size: 12.5px; font-weight: 600; }
.leader-track { height: 8px; border-radius: 6px; background: var(--bg-soft); margin-top: 5px; overflow: hidden; }
.leader-bar { height: 100%; border-radius: 6px; background: var(--grad); }

/* private */
.scene-private { background: linear-gradient(160deg, #fdf3f5, #f8f2fd); padding: clamp(22px, 3.5vw, 44px); }
.private-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 6px; }
.private-hashtag { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.02em; }
.private-live { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--pink); }
.private-live .sq { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); animation: swPulse 1.6s infinite; }
.private-sub { font-size: 14px; color: var(--body); margin-bottom: 22px; max-width: 70ch; }
.private-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(205px, 1fr)); gap: 12px; }
.private-grid .post-card { border: 0; box-shadow: var(--shadow-md); }
.private-grid .post-photo { height: 88px; }

/* ══════════ Engagement stack ══════════ */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 16px; margin-top: 48px; }
.tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.tile-icon {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: grid; place-items: center; color: #fff;
  background: var(--grad); box-shadow: var(--shadow-grad);
}
.tile:nth-child(3n+2) .tile-icon { background: linear-gradient(135deg, #7c3aed, #4f9df7); box-shadow: 0 12px 32px -8px rgba(124, 58, 237, .38); }
.tile:nth-child(3n) .tile-icon { background: linear-gradient(135deg, #f59e0b, #f5426c); box-shadow: 0 12px 32px -8px rgba(245, 158, 11, .38); }
.tile-title { font-family: var(--font-head); font-weight: 700; font-size: 16.5px; letter-spacing: -0.01em; }
.tile-copy { font-size: 14px; line-height: 1.65; color: var(--body); }

/* ══════════ Personas ══════════ */
.persona-panel {
  display: grid; grid-template-columns: minmax(250px, 340px) minmax(0, 1fr);
  border-radius: var(--r-lg); overflow: hidden; margin-top: 48px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.persona-tabs { display: flex; flex-direction: column; padding: 14px; gap: 4px; border-right: 1px solid var(--line); background: #fafbfe; }
.persona-tab {
  font-family: var(--font-head); font-weight: 600; font-size: 14px; text-align: left;
  padding: 12px 16px; border-radius: 11px; border: 0; background: transparent; color: var(--ink-2);
  transition: all .16s ease;
}
.persona-tab:hover { background: rgba(245, 66, 108, .06); color: var(--pink); }
.persona-tab.active { background: var(--grad); color: #fff; font-weight: 700; box-shadow: var(--shadow-grad); }
.persona-detail { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.persona-eyebrow { font-family: var(--font-head); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--pink); }
.persona-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 2.8vw, 36px); letter-spacing: -0.025em; max-width: 22ch; }
.persona-copy { font-size: 15.5px; line-height: 1.7; color: var(--body); max-width: 56ch; }
.persona-start {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  background: var(--grad-soft); border: 1px solid rgba(245, 66, 108, .18);
  padding: 10px 18px; border-radius: var(--r-pill);
  font-family: var(--font-head); font-size: 13.5px; font-weight: 700;
}
.persona-start svg { color: var(--pink); flex: none; }

/* ══════════ Feature rows ══════════ */
.feature-list { margin-top: 26px; }
.feature-row {
  display: grid; grid-template-columns: 90px minmax(0, 400px) minmax(0, 1fr);
  gap: 20px clamp(24px, 4vw, 64px); align-items: start;
  padding: clamp(32px, 4vw, 44px) 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-index {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 3vw, 40px);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.feature-heading { font-family: var(--font-head); font-weight: 800; font-size: clamp(19px, 2vw, 24px); letter-spacing: -0.02em; }
.feature-copy { font-size: 15.5px; line-height: 1.7; color: var(--body); max-width: 56ch; }

/* ══════════ Four steps ══════════ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 48px; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  box-shadow: var(--shadow-grad);
}
.step-title { font-family: var(--font-head); font-weight: 700; font-size: 17px; }
.step-copy { font-size: 14px; line-height: 1.65; color: var(--body); }

/* ══════════ Platforms ══════════ */
.platform-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; margin-top: 48px; }
.platform-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px; display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.platform-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.platform-icon { width: 34px; height: 34px; object-fit: contain; border-radius: 8px; margin-bottom: 4px; }
.platform-icon-svg {
  width: 34px; height: 34px; border-radius: 8px; margin-bottom: 4px;
  display: grid; place-items: center; color: #fff;
}
.platform-name { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; }
.platform-types { font-size: 12.5px; line-height: 1.55; color: var(--muted); }

/* ══════════ Proof (dark) ══════════ */
.proof { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.proof::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 34% at 90% 0%, rgba(124, 58, 237, .3), transparent 70%),
    radial-gradient(36% 30% at 4% 100%, rgba(245, 66, 108, .18), transparent 70%);
  pointer-events: none;
}
.proof > .container { position: relative; z-index: 1; }
.proof .eyebrow { color: #ff9d78; background: rgba(255, 122, 69, .12); }
.proof .sec-lede { color: rgba(235,238,252,.72); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 36px clamp(24px, 4vw, 64px); margin: 56px 0 clamp(48px, 6vw, 72px); }
.stat-number {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(36px, 4vw, 54px); line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px; letter-spacing: -0.02em;
}
.stat-label { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: rgba(235,238,252,.62); line-height: 1.5; }

.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-bottom: clamp(48px, 6vw, 72px); }
.case-card {
  background: #fff; color: var(--ink); border-radius: var(--r-md); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.case-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -20px rgba(0,0,0,.55); }
.case-image { width: 100%; height: 185px; object-fit: cover; }
.case-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.case-kicker { font-family: var(--font-head); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--pink); }
.case-name { font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -0.015em; }
.case-copy { font-size: 14px; line-height: 1.65; color: var(--body); flex: 1; }
.case-link { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; }
.case-link:hover { gap: 9px; }

.quotes-wrap { border-top: 1px solid rgba(255,255,255,.12); padding-top: clamp(44px, 5vw, 64px); }
.quotes-label { font-family: var(--font-head); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: #ff9d78; margin-bottom: 34px; display: block; }
.quotes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; }
.quote-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 26px 26px 24px;
  backdrop-filter: blur(8px);
}
.quote-mark { font-family: var(--font-head); font-size: 44px; font-weight: 800; line-height: .6; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 16px; }
.quote-text { font-family: var(--font-head); font-weight: 600; font-size: 16.5px; line-height: 1.55; letter-spacing: -0.01em; }
.quote-cite { font-size: 13.5px; margin-top: 18px; color: rgba(235,238,252,.62); }

/* ══════════ Extras ══════════ */
.extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px; margin-top: 48px; }

/* ══════════ Solution pages ══════════ */
.page-hero .hero-inner { padding-block: clamp(48px, 7vw, 92px) clamp(44px, 6vw, 76px); }
.crumb { font-size: 13px; color: rgba(235, 238, 252, .55); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; }
.crumb a { color: rgba(235, 238, 252, .8); }
.crumb a:hover { color: #fff; text-decoration: none; }
.crumb .sep { opacity: .5; }

.faq-list { max-width: 840px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 2px 22px; transition: box-shadow .2s ease; }
.faq[open] { box-shadow: var(--shadow-md); }
.faq summary {
  font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink);
  padding: 17px 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; color: var(--pink); transition: transform .2s ease; }
.faq[open] summary .pm { transform: rotate(45deg); }
.faq-a { padding: 0 0 19px; color: var(--body); font-size: 14.5px; line-height: 1.7; max-width: 68ch; }

.sol-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 48px; }
.sol-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.sol-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }
.sol-card .mi-badge { align-self: flex-start; }
.sol-card-title { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.sol-card-copy { font-size: 14px; line-height: 1.65; color: var(--body); flex: 1; }
.sol-card-link { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--pink); }

/* ══════════ Pricing ══════════ */
.price-section { scroll-margin-top: 90px; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 40px; }
.price-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--grad) border-box; box-shadow: var(--shadow-lg); }
.price-flag {
  position: absolute; top: -13px; left: 26px;
  background: var(--grad); color: #fff; border-radius: var(--r-pill);
  font-family: var(--font-head); font-weight: 700; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 13px; box-shadow: var(--shadow-grad);
}
.price-name { font-family: var(--font-head); font-weight: 800; font-size: 19px; }
.price-for { font-size: 13.5px; color: var(--muted); margin-top: -10px; }
.price-amount { font-family: var(--font-head); font-weight: 800; font-size: 40px; letter-spacing: -0.03em; line-height: 1; }
.price-amount small { font-family: var(--font-body); font-weight: 500; font-size: 14px; color: var(--muted); letter-spacing: 0; }
.price-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-list li { display: flex; gap: 9px; font-size: 14px; color: var(--body); line-height: 1.5; }
.price-list svg { flex: none; color: #10b981; margin-top: 3px; }
.price-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 22px; }

/* ══════════ Legal pages ══════════ */
.legal { max-width: 840px; margin: 0 auto; padding: clamp(48px, 6vw, 84px) clamp(20px, 4vw, 40px) clamp(64px, 8vw, 100px); }
.legal h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.03em; margin-bottom: 10px; }
.legal .updated {
  display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--muted);
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 6px 14px; margin: 6px 0 34px;
}
.legal h2 { font-size: 21px; letter-spacing: -0.015em; margin: 38px 0 12px; }
.legal p { color: var(--body); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; color: var(--body); font-size: 15px; line-height: 1.8; }
.legal li { margin-bottom: 6px; }
.legal a { font-weight: 600; }

/* ══════════ Contact / Help center ══════════ */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin-top: 44px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .val { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; }
.contact-card .val a { color: var(--pink); }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-lg);
  max-width: 720px; margin: 52px auto 0;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 700; font-size: 13px; }
.form-field input, .form-field textarea, .form-field select {
  font: inherit; font-size: 14.5px; color: var(--ink);
  background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 15px; transition: border-color .15s ease, background .15s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--pink); background: #fff; }
.form-field textarea { min-height: 130px; resize: vertical; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.hc-search { max-width: 620px; margin: 30px auto 0; position: relative; }
.hc-search input {
  width: 100%; font: inherit; font-size: 15.5px; color: var(--ink);
  background: #fff; border: 0; border-radius: var(--r-pill);
  padding: 18px 26px 18px 54px; box-shadow: var(--shadow-lg);
}
.hc-search input:focus { outline: 2px solid var(--pink); }
.hc-search svg { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.hc-band {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: linear-gradient(160deg, #10162e, #0b1023 75%); color: #fff;
  border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); margin-top: 56px;
}
.hc-band .t { font-family: var(--font-head); font-weight: 800; font-size: clamp(19px, 2.4vw, 26px); letter-spacing: -0.02em; }
.hc-band .d { font-size: 14.5px; color: rgba(235,238,252,.7); margin-top: 6px; }
.hc-contacts { display: flex; gap: 14px 28px; flex-wrap: wrap; }
.hc-contacts a { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14.5px; }
.hc-contacts a:hover { color: #ff9d78; text-decoration: none; }
.hc-contacts svg { color: #ff9d78; }

/* ══════════ Close CTA ══════════ */
.close-cta { position: relative; overflow: hidden; background: var(--grad); color: #fff; }
.close-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 80% 10%, rgba(255,255,255,.22), transparent 60%);
  pointer-events: none;
}
.close-inner { position: relative; z-index: 1; padding-block: clamp(72px, 9vw, 116px); text-align: center; }
.close-title { font-size: clamp(32px, 4.4vw, 56px); letter-spacing: -0.03em; }
.close-title span { display: block; }
.close-sub { font-size: 17px; margin-top: 18px; color: rgba(255,255,255,.86); }
.close-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.close-fineprint { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.75); }

/* ══════════ Footer ══════════ */
.site-footer { background: var(--navy); color: #c9cee4; }
.footer-grid {
  display: grid; grid-template-columns: minmax(210px, 300px) repeat(4, minmax(120px, 1fr));
  gap: 40px clamp(20px, 3vw, 48px);
  padding-block: clamp(56px, 7vw, 80px) 48px;
}
.footer-links a { display: inline-block; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .mark { width: 30px; height: 30px; border-radius: 9px; background: var(--grad); display: grid; place-items: center; flex: none; }
.footer-brand .mark svg { color: #fff; }
.footer-brand .word { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: #fff; letter-spacing: -0.01em; }
.footer-brand .word small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 10.5px; letter-spacing: .04em; color: rgba(235,238,252,.5); }
.footer-tagline { font-size: 14px; line-height: 1.7; color: rgba(235,238,252,.6); max-width: 36ch; margin-bottom: 20px; }
.footer-follow-label { font-family: var(--font-head); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: rgba(235,238,252,.45); margin-bottom: 12px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: #e6e9f7;
  transition: all .18s ease;
}
.footer-social a:hover { background: var(--grad); border-color: transparent; color: #fff; transform: translateY(-2px); }
.footer-col-title { font-family: var(--font-head); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: rgba(235,238,252,.45); margin-bottom: 18px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14.5px; color: rgba(235,238,252,.78); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 22px;
  display: flex; align-items: center; gap: 14px 26px; flex-wrap: wrap;
  font-size: 13px; color: rgba(235,238,252,.5);
}
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.fb-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: .04em;
  color: rgba(235,238,252,.72);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-pill); padding: 6px 12px;
}
.footer-bottom-links { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(235,238,252,.5); }
.footer-bottom-links a:hover { color: #fff; }

/* ══════════ Animations ══════════ */
@keyframes swPulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes swPing {
  0% { box-shadow: 0 0 0 0 rgba(255,77,94,.55); }
  70% { box-shadow: 0 0 0 9px rgba(255,77,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,94,0); }
}
@keyframes swTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes swIn { from { opacity: 0; transform: translateY(10px) scale(.985); } to { opacity: 1; transform: none; } }

/* ══════════ Responsive ══════════ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .persona-panel { grid-template-columns: 1fr; }
  .persona-tabs { flex-direction: row; flex-wrap: wrap; border-right: 0; border-bottom: 1px solid var(--line); }
  .persona-tab { flex: 1 1 auto; text-align: center; }
  .feature-row { grid-template-columns: 1fr; gap: 10px; }
  .scene-internal { grid-template-columns: 1fr; }
  .intranet-side { border-right: 0; border-bottom: 1px solid var(--line); flex-direction: row; flex-wrap: wrap; align-items: center; gap: 2px 4px; }
  .intranet-brand { margin-bottom: 0; margin-right: 10px; }
  .intranet-main { grid-template-columns: 1fr; }
  .virtual-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .live-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .zone-tab { flex: 1 1 calc(50% - 8px); text-align: center; }
}
