:root,
html[data-theme="dark"] {
  --bg: #030504;
  --bg-elevated: #07100b;
  --panel: rgba(255, 255, 255, .07);
  --panel-strong: rgba(255, 255, 255, .11);
  --panel-solid: #0a150f;
  --text: #f4fff8;
  --muted: #b5c4ba;
  --soft: #dce9df;
  --green: #32f783;
  --green-strong: #24dc72;
  --yellow: #ffd66b;
  --yellow-strong: #ffbd2e;
  --ink: #031008;
  --line: rgba(255, 255, 255, .13);
  --line-strong: rgba(255, 214, 107, .28);
  --shadow: 0 24px 80px rgba(0, 0, 0, .46);
  --shadow-soft: 0 16px 50px rgba(0, 0, 0, .28);
  --header-bg: rgba(3, 5, 4, .72);
  --overlay: rgba(3, 5, 4, .72);
  --mobile-tabbar-height: 74px;
  --crisp-mobile-offset: 80px;
  --skeleton-base: rgba(255, 255, 255, .075);
  --skeleton-sheen: rgba(255, 255, 255, .18);
  --skeleton-edge: rgba(255, 255, 255, .055);
}

html[data-theme="light"] {
  --bg: #f7f8f2;
  --bg-elevated: #ffffff;
  --panel: rgba(5, 17, 10, .055);
  --panel-strong: rgba(5, 17, 10, .08);
  --panel-solid: #ffffff;
  --text: #07100b;
  --muted: #536156;
  --soft: #1f3027;
  --green: #0b9f50;
  --green-strong: #078a44;
  --yellow: #c98d06;
  --yellow-strong: #aa7300;
  --ink: #ffffff;
  --line: rgba(5, 17, 10, .13);
  --line-strong: rgba(201, 141, 6, .32);
  --shadow: 0 24px 70px rgba(22, 36, 26, .14);
  --shadow-soft: 0 14px 40px rgba(22, 36, 26, .10);
  --header-bg: rgba(247, 248, 242, .82);
  --overlay: rgba(247, 248, 242, .62);
  --skeleton-base: rgba(5, 17, 10, .08);
  --skeleton-sheen: rgba(255, 255, 255, .76);
  --skeleton-edge: rgba(5, 17, 10, .05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 214, 107, .13), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(50, 247, 131, .13), transparent 26rem),
    linear-gradient(180deg, var(--bg), var(--bg-elevated) 48%, var(--bg));
  color: var(--text);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  background: rgba(3, 5, 4, .16);
  backdrop-filter: blur(1px);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483001;
  background: rgba(3, 5, 4, .48);
  backdrop-filter: blur(10px);
}

body::selection {
  color: var(--ink);
  background: var(--yellow);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
iframe {
  max-width: 100%;
}

button,
select {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 2000;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 2147483640;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
  background: transparent;
  transition: opacity .38s ease, visibility .38s ease;
}

.preloader::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 214, 107, .15), transparent 70%);
  filter: blur(2px);
}

.preloader-progress {
  position: relative;
  z-index: 1;
  width: min(320px, 70vw);
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .32);
}

.preloader-progress span {
  display: block;
  width: var(--loader-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  box-shadow: 0 0 28px rgba(255, 214, 107, .30);
  transition: width .22s ease;
}

.preloader strong {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: .88rem;
  font-weight: 950;
  letter-spacing: 0;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

body.is-loading .site-header,
body.is-loading .hero-content,
body.is-loading .hero-visual,
body.is-loading .brand-panel,
body.is-loading .feature-card,
body.is-loading .pricing-card,
body.is-loading .comparison,
body.is-loading .vip-band,
body.is-loading .split-text,
body.is-loading .luxury-frame,
body.is-loading .section-heading,
body.is-loading .video-toolbar,
body.is-loading .video-card,
body.is-loading .gallery-image,
body.is-loading .chat-window,
body.is-loading .testimonial-copy,
body.is-loading .location-card,
body.is-loading .content-columns article,
body.is-loading .compliance,
body.is-loading .faq-list,
body.is-loading .cta-section,
body.is-loading .footer,
body.is-loading .mobile-tabbar,
body.is-loading .side-app-launch {
  position: relative;
  overflow: hidden;
}

body.is-loading .site-header::after,
body.is-loading .hero-content::after,
body.is-loading .hero-visual::after,
body.is-loading .brand-panel::after,
body.is-loading .feature-card::after,
body.is-loading .pricing-card::after,
body.is-loading .comparison::after,
body.is-loading .vip-band::after,
body.is-loading .split-text::after,
body.is-loading .luxury-frame::after,
body.is-loading .section-heading::after,
body.is-loading .video-toolbar::after,
body.is-loading .video-card::after,
body.is-loading .gallery-image::after,
body.is-loading .chat-window::after,
body.is-loading .testimonial-copy::after,
body.is-loading .location-card::after,
body.is-loading .content-columns article::after,
body.is-loading .compliance::after,
body.is-loading .faq-list::after,
body.is-loading .cta-section::after,
body.is-loading .footer::after,
body.is-loading .mobile-tabbar::after,
body.is-loading .side-app-launch::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 25;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--skeleton-edge) 0%, var(--skeleton-base) 34%, var(--skeleton-sheen) 50%, var(--skeleton-base) 66%, var(--skeleton-edge) 100%);
  background-size: 760px 100%;
  animation: facebookShimmer 1.05s linear infinite;
}

body.is-loading .mobile-tabbar a {
  color: transparent !important;
  background: var(--skeleton-base) !important;
  box-shadow: none !important;
  pointer-events: none;
}

body.is-loading .mobile-tabbar svg,
body.is-loading .mobile-tabbar span,
body.is-loading .side-app-launch svg,
body.is-loading .side-app-launch span {
  opacity: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2147483006;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 6vw;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(22px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  width: 100%;
  font-size: .9rem;
  font-weight: 800;
  color: var(--soft);
}

.nav a {
  opacity: .9;
  transition: color .25s ease, opacity .25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--yellow);
  opacity: 1;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(50, 247, 131, .35);
  border-radius: 999px;
  color: var(--text);
  background: rgba(50, 247, 131, .13);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle,
.nav-toggle {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--panel);
  backdrop-filter: blur(14px);
}

.theme-toggle,
.nav-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  cursor: pointer;
}

.theme-toggle svg,
.nav-toggle svg,
.btn svg,
.icon-box svg,
.mobile-tabbar svg,
.modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-light,
html[data-theme="light"] .theme-icon-dark,
.close-icon,
.nav-toggle[aria-expanded="true"] .open-icon {
  display: none;
}

html[data-theme="light"] .theme-icon-light,
.nav-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: 94vh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 52px;
  padding: 122px 6vw 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(3, 5, 4, .96) 0%, rgba(3, 5, 4, .82) 42%, rgba(7, 16, 11, .55) 100%),
    radial-gradient(circle at 78% 42%, rgba(50, 247, 131, .16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(255, 214, 107, .14), transparent 28%);
}

html[data-theme="light"] .hero-bg {
  opacity: .65;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -20% -8%;
  z-index: -1;
  height: 360px;
  background:
    radial-gradient(ellipse at center, rgba(255, 214, 107, .18), transparent 62%),
    radial-gradient(ellipse at center, rgba(50, 247, 131, .15), transparent 74%);
}

.shine-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 214, 107, .10) 43%, transparent 49%),
    radial-gradient(circle at 16% 28%, rgba(255, 214, 107, .22), transparent 8rem),
    radial-gradient(circle at 78% 64%, rgba(50, 247, 131, .16), transparent 11rem);
  opacity: .7;
  animation: lightSweep 9s ease-in-out infinite alternate;
}

.eyebrow,
.section-heading span,
.section-kicker,
.vip-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 214, 107, .28);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 214, 107, .09);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.live-dot,
.live-ticker .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: livePulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0% { opacity: 1; transform: scale(1); }
  70% { opacity: .35; transform: scale(1.55); }
  100% { opacity: 1; transform: scale(1); }
}

.live-ticker {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(50, 247, 131, .08), rgba(255, 214, 107, .06), rgba(50, 247, 131, .08));
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.live-ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 14px 0;
  animation: tickerScroll 32s linear infinite;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
}

.live-ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.live-ticker-track span:nth-child(odd) {
  color: var(--yellow);
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.asset-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.asset-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--soft);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.asset-pill.active {
  color: #031008;
  border-color: transparent;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  box-shadow: 0 0 24px rgba(50, 247, 131, .22);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 720px;
  margin: 22px 0 18px;
  font-size: 4.15rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 660px;
  color: #d7e5db;
  font-size: 1.18rem;
  line-height: 1.7;
}

html[data-theme="light"] .hero-copy {
  color: #f4fff8;
}

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

.hero-actions.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn.primary {
  color: #031008;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  box-shadow: 0 0 34px rgba(50, 247, 131, .25);
}

.btn.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, .075);
}

html[data-theme="light"] .btn.secondary {
  background: rgba(5, 17, 10, .055);
}

.btn.full {
  width: 100%;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-strip span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: var(--panel);
  font-size: .82rem;
  font-weight: 850;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-campaign {
  position: relative;
  justify-self: end;
  width: min(510px, 100%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(0, 0, 0, .28);
  box-shadow: var(--shadow);
}

.hero-campaign::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 5, 4, .02), rgba(3, 5, 4, .35)),
    radial-gradient(circle at 12% 12%, rgba(255, 214, 107, .24), transparent 34%);
  pointer-events: none;
}

.hero-campaign picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-campaign img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% center;
}

.campaign-card {
  position: absolute;
  z-index: 2;
  padding: 11px 14px;
  border-radius: 8px;
  color: #041109;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  box-shadow: var(--shadow);
  font-weight: 900;
}

.campaign-a { left: 18px; bottom: 72px; }
.campaign-b { right: 18px; bottom: 20px; }

.brand-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: center;
  margin: -42px 6vw 70px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--panel-strong), rgba(255, 214, 107, .045));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.brand-panel img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-panel h2 {
  margin: 12px 0 10px;
  font-size: 2.1rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.brand-panel p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 86px 6vw;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.vip-content h2,
.split h2,
.cta-section h2 {
  margin: 18px 0 14px;
  font-size: 3.4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.split p,
.vip-content p,
.cta-section p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.feature-grid,
.app-cards,
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.pricing-card,
.glass-stat,
.location-card,
.video-card,
.gallery-image,
.testimonial-panel,
.testimonial-copy,
.locale-card,
.comparison,
.content-columns article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--panel-strong), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow-soft);
}

.feature-card,
.pricing-card,
.location-card,
.content-columns article {
  padding: 26px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.feature-card:hover,
.pricing-card:hover,
.location-card:hover,
.content-columns article:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 214, 107, .38);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 214, 107, .24);
  border-radius: 8px;
  color: var(--yellow);
  background: rgba(255, 214, 107, .10);
}

.feature-card h3,
.pricing-card h3,
.location-card h3,
.content-columns h3 {
  margin: 20px 0 10px;
  font-size: 1.32rem;
  letter-spacing: 0;
}

.feature-card p,
.pricing-card p,
.pricing-card li,
.location-card p,
.content-columns p {
  color: var(--muted);
  line-height: 1.68;
}

.app-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 214, 107, .10), transparent 18rem),
    radial-gradient(circle at 80% 90%, rgba(50, 247, 131, .10), transparent 22rem);
}

.pricing-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-toolbar,
.internal-links {
  max-width: 1120px;
  margin: 0 auto 22px;
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plan-tag,
.plan-fit {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
}

.plan-tag {
  color: var(--yellow);
  background: rgba(255, 214, 107, .10);
  border: 1px solid rgba(255, 214, 107, .24);
}

.plan-fit {
  color: var(--green);
  background: rgba(50, 247, 131, .10);
  border: 1px solid rgba(50, 247, 131, .22);
}

.price {
  margin: 18px 0 4px;
  color: var(--text) !important;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.price-note {
  margin-top: 0;
  color: var(--yellow) !important;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.plan-summary {
  min-height: 76px;
}

.check-list {
  padding: 0;
  list-style: none;
  margin: 20px 0 26px;
}

.check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(-45deg);
}

.pricing-card.highlight {
  border-color: rgba(50, 247, 131, .40);
  box-shadow: 0 0 70px rgba(50, 247, 131, .14);
}

.pricing-card.plus {
  border-color: rgba(255, 214, 107, .38);
  box-shadow: 0 0 70px rgba(255, 214, 107, .12);
}

.comparison {
  max-width: 1120px;
  margin: 28px auto 0;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 1px;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row span {
  padding: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, .025);
  font-weight: 750;
}

.comparison-head span {
  color: var(--text);
  background: rgba(255, 214, 107, .09);
  font-weight: 900;
}

.vip-band {
  position: relative;
  overflow: hidden;
  margin: 40px 6vw;
  padding: 72px 6vw;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(50, 247, 131, .12), rgba(255, 214, 107, .16));
}

.vip-band.media-ready {
  background:
    linear-gradient(135deg, rgba(50, 247, 131, .12), rgba(255, 214, 107, .16)),
    url('assets/mr-analyst-vip-benefits-background.webp?v=20260728d') center/cover;
}

.vip-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.vip-content {
  position: relative;
  max-width: 920px;
}

.vip-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.vip-metrics div {
  min-width: 140px;
  flex: 1 1 140px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, .32);
}

html[data-theme="light"] .vip-metrics div {
  background: rgba(255, 255, 255, .78);
}

.vip-metrics strong {
  display: block;
  color: var(--yellow);
  font-size: 1.85rem;
}

.vip-metrics small {
  color: var(--muted);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
}

.steps {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.steps li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-weight: 750;
}

.steps span {
  color: var(--yellow);
  font-weight: 900;
}

.luxury-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  min-height: 540px;
  box-shadow: var(--shadow);
}

.luxury-frame img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
}

.luxury-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 5, 4, .42));
  pointer-events: none;
}

.gallery-section {
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 214, 107, .10), transparent 20rem),
    radial-gradient(circle at 88% 18%, rgba(50, 247, 131, .10), transparent 18rem);
}

.video-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.video-toolbar div {
  display: grid;
  gap: 4px;
}

.video-toolbar strong {
  color: var(--text);
}

.video-toolbar span {
  color: var(--muted);
  font-size: .9rem;
}

.video-toolbar a,
.internal-links a,
.footer-links a {
  color: var(--yellow);
  font-weight: 850;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto 36px;
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .35s ease, opacity .35s ease, filter .35s ease;
}

.video-embed {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  background: #010302;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .30);
}

.video-embed::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .10), transparent 26%, transparent 72%, rgba(3, 5, 4, .34)),
    linear-gradient(135deg, rgba(255, 214, 107, .16), transparent 34%);
  opacity: .58;
}

.video-embed::before {
  content: "";
  position: absolute;
  inset: -40% -70%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 214, 107, .18) 48%, transparent 58%);
  opacity: 0;
  transform: translateX(-24%);
}

.video-card.is-active .video-embed::before {
  animation: videoSheen 3.4s ease-in-out infinite;
}

.video-embed.wide {
  aspect-ratio: 16 / 9;
}

.video-embed iframe,
.video-embed video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
  background: #010302;
}

.video-card-body {
  padding: 14px 2px 0;
}

.video-label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 214, 107, .10);
  font-size: .72rem;
  font-weight: 900;
}

.video-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.video-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
  font-size: .92rem;
}

.video-card a {
  color: var(--green);
  font-weight: 900;
}

@keyframes videoSheen {
  0%,
  42% {
    opacity: 0;
    transform: translateX(-24%);
  }

  56% {
    opacity: 1;
  }

  78%,
  100% {
    opacity: 0;
    transform: translateX(24%);
  }
}

.media-fallback {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 100%;
  padding: 22px;
  color: var(--text);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 214, 107, .14), transparent 45%),
    rgba(0, 0, 0, .42);
}

.media-fallback strong {
  color: var(--yellow);
}

.media-fallback span {
  color: var(--muted);
  line-height: 1.5;
}

.media-fallback a {
  color: var(--green);
}

.video-skeleton {
  aspect-ratio: 9 / 16;
  background: linear-gradient(100deg, var(--panel), var(--panel-strong), var(--panel));
  background-size: 220% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}

.loading-card {
  padding-bottom: 18px;
}

.loading-card h3,
.loading-card p {
  padding: 0 18px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  margin: 0;
}

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

.gallery-image.wide {
  grid-column: span 2;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .5s ease;
}

.gallery-image:hover img {
  transform: scale(1.05);
}

.gallery-image figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(16px);
  font-size: .88rem;
  font-weight: 800;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.testimonial-panel,
.testimonial-copy {
  padding: 20px;
}

.chat-window {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .28));
}

.chat-window.media-ready {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .28)),
    url('assets/mr-analyst-vip-chat-background.webp?v=20260728d') center/cover;
}

.chat-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 5, 4, .30), rgba(3, 5, 4, .82));
}

.chat-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  background: rgba(0, 0, 0, .38);
  backdrop-filter: blur(16px);
  font-size: .92rem;
  font-weight: 900;
}

.chat-header small {
  color: var(--yellow);
  font-weight: 850;
}

.chat-stream {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
  padding: 12px;
}

.chat-composer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .38);
  backdrop-filter: blur(18px);
}

.chat-composer input {
  min-width: 0;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .10);
  outline: 0;
}

.chat-composer input::placeholder {
  color: rgba(255, 255, 255, .66);
}

.chat-composer input:focus {
  border-color: rgba(255, 214, 107, .55);
  box-shadow: 0 0 0 4px rgba(255, 214, 107, .10);
}

.chat-composer button {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  min-width: 72px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #031008;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(255, 214, 107, .16);
  transition: transform .22s ease, filter .22s ease;
}

.chat-composer button:hover,
.chat-composer button:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.send-label {
  transition: opacity .2s ease, transform .2s ease;
}

.send-dots {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.send-dots i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(0);
  animation: sendDots .82s ease-in-out infinite;
}

.send-dots i:nth-child(2) {
  animation-delay: .12s;
}

.send-dots i:nth-child(3) {
  animation-delay: .24s;
}

.chat-composer.is-sending .send-label {
  opacity: 0;
  transform: translateY(-3px);
}

.chat-composer.is-sending .send-dots {
  opacity: 1;
}

.chat-composer.is-sending input {
  opacity: .72;
}

@keyframes sendDots {
  0%,
  80%,
  100% {
    opacity: .42;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.chat-bubble {
  position: absolute;
  left: 12px;
  bottom: var(--chat-bottom, 12px);
  max-width: 76%;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: #fff;
  background: rgba(5, 17, 10, .78);
  overflow: hidden;
  max-height: 160px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
  will-change: opacity, transform;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: bottom .72s cubic-bezier(.22, 1, .36, 1), opacity .7s ease, transform .78s cubic-bezier(.22, 1, .36, 1), filter .7s ease, max-height .7s ease, padding .7s ease, border-color .7s ease, box-shadow .7s ease;
}

.chat-bubble.entering {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(.98);
}

.chat-bubble.leaving {
  opacity: 0;
  filter: blur(3px) saturate(.88);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 0 36px rgba(255, 214, 107, .08);
  transform: translate3d(0, -46px, 0) scale(.96);
}

.chat-bubble:nth-child(even) {
  background: rgba(255, 214, 107, .18);
}

.chat-bubble.right {
  right: 12px;
  left: auto;
  background: rgba(255, 214, 107, .18);
}

.chat-bubble.pro {
  border-color: rgba(50, 247, 131, .28);
  background: rgba(5, 17, 10, .80);
}

.chat-bubble.plus {
  border-color: rgba(255, 214, 107, .30);
  background: rgba(255, 214, 107, .17);
}

.chat-bubble.leaving {
  border-color: transparent;
}

.chat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.chat-meta strong {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: .72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vip-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 3px 6px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: .58rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vip-badge.pro {
  color: var(--green);
  background: rgba(50, 247, 131, .12);
}

.vip-badge.plus {
  color: var(--yellow);
  background: rgba(255, 214, 107, .14);
}

.chat-text {
  display: block;
  line-height: 1.34;
  font-size: .8rem;
}

.testimonial-copy h3 {
  margin: 16px 0 12px;
  font-size: 2.1rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.testimonial-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-archive {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.testimonial-archive blockquote {
  margin: 0;
  padding: 16px;
  border-left: 3px solid var(--yellow);
  border-radius: 8px;
  color: var(--soft);
  background: var(--panel);
  line-height: 1.6;
}

.localization-section {
  background:
    linear-gradient(180deg, transparent, rgba(255, 214, 107, .045), transparent);
}

.locale-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto 22px;
  padding: 22px;
}

.locale-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.08rem;
}

.locale-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.location-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-section {
  padding-top: 76px;
}

.content-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.internal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.internal-links a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}

.compliance {
  max-width: 1000px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 214, 107, .065);
  text-align: center;
}

.compliance h2 {
  margin-top: 0;
}

.compliance p {
  color: var(--muted);
  line-height: 1.78;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--panel);
  font-size: 1rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  flex: 0 0 auto;
  color: var(--yellow);
}

.faq-answer {
  display: none;
  padding: 16px 22px 10px;
  color: var(--muted);
  line-height: 1.72;
}

.faq-answer.open {
  display: block;
}

.cta-section {
  margin: 40px 6vw 70px;
  padding: 70px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 214, 107, .16), transparent 45%),
    linear-gradient(135deg, var(--panel-strong), rgba(255, 255, 255, .03));
}

.footer {
  padding: 34px 6vw 52px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  font-size: .9rem;
}

.google-translate-root,
.goog-te-banner-frame,
.goog-te-gadget,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.mobile-tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2147483000;
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: rgba(3, 5, 4, .94);
  backdrop-filter: blur(24px);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, .34);
  overflow: visible;
  transition: opacity .22s ease, transform .22s ease;
}

html[data-theme="light"] .mobile-tabbar {
  background: rgba(255, 255, 255, .95);
}

.mobile-tabbar a {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 0;
  padding: 8px 2px;
  border-radius: 8px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 900;
  transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.mobile-tabbar a:hover,
.mobile-tabbar a:focus-visible {
  color: var(--text);
  background: rgba(255, 214, 107, .12);
  outline: 0;
  transform: translateY(-2px);
}

.mobile-tabbar a:active {
  transform: translateY(0) scale(.97);
}

.mobile-tabbar a.active,
.mobile-tabbar a[aria-current="page"] {
  color: #031008;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  box-shadow: 0 10px 28px rgba(255, 214, 107, .18);
}

.mobile-tabbar span {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-app-launch {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 130;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px 12px 11px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  color: #031008;
  background: linear-gradient(135deg, var(--yellow), #fff1b4 52%, var(--green));
  box-shadow: 16px 18px 45px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .42);
  font-size: .78rem;
  font-weight: 950;
  cursor: grab;
  user-select: none;
  touch-action: none;
  transform: translateY(-50%);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.side-app-launch.is-dragging {
  cursor: grabbing;
  filter: saturate(1.08);
  transition: none;
  box-shadow: 18px 22px 52px rgba(0, 0, 0, .30), inset 0 1px 0 rgba(255, 255, 255, .42);
}

.side-app-launch:hover,
.side-app-launch:focus-visible {
  color: #031008;
  outline: 0;
  filter: saturate(1.08);
  transform: translateY(-50%) translateX(5px);
}

.side-app-launch:active {
  transform: translateY(-50%) translateX(2px) scale(.98);
}

.side-app-launch svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.side-app-launch.is-positioned {
  transform: none;
}

.side-app-launch.is-positioned:hover,
.side-app-launch.is-positioned:focus-visible,
.side-app-launch.is-positioned:active {
  transform: none;
}

.crisp-drag-layer {
  position: fixed;
  z-index: 2147483003;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: grab;
  touch-action: none;
}

.crisp-drag-layer:hover,
.crisp-drag-layer:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(255, 214, 107, .32);
}

.crisp-drag-layer.is-dragging {
  cursor: grabbing;
  box-shadow: 0 0 0 3px rgba(50, 247, 131, .32);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2147483010;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(14px);
}

.modal.show {
  display: grid;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 28px;
  border: 1px solid rgba(255, 214, 107, .28);
  border-radius: 8px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.modal-card h3 {
  margin: 0 42px 10px 0;
  font-size: 1.5rem;
}

.modal-card p {
  color: var(--muted);
  line-height: 1.6;
}

.modal-card .btn + .btn {
  margin-top: 10px;
}

.vip-join-card {
  max-width: 520px;
}

.vip-join-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--panel);
  cursor: pointer;
}

.small-note {
  color: var(--muted);
  font-size: .84rem;
}

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

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

.hero .reveal {
  opacity: 1;
  transform: none;
}

@keyframes pulseLogo {
  from {
    transform: scale(.96);
    opacity: .72;
  }
  to {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes pageShimmer {
  from {
    background-position: 220% 0, 0 0;
  }
  to {
    background-position: -80% 0, 0 0;
  }
}

@keyframes facebookShimmer {
  from {
    background-position: -760px 0;
  }
  to {
    background-position: 760px 0;
  }
}

@keyframes floatPhone {
  from {
    transform: translateY(0) rotate(3deg);
  }
  to {
    transform: translateY(-18px) rotate(1deg);
  }
}

@keyframes floatMini {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

@keyframes lightSweep {
  from {
    opacity: .42;
    transform: translateX(-2%);
  }
  to {
    opacity: .85;
    transform: translateX(2%);
  }
}

@keyframes shimmer {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -220% 0;
  }
}

@media (max-width: 1180px) {
  .nav {
    gap: 14px;
    font-size: .84rem;
  }

  h1 {
    font-size: 4.35rem;
  }

  .section-heading h2,
  .vip-content h2,
  .split h2,
  .cta-section h2 {
    font-size: 2.85rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .site-header {
    padding: 9px 4vw;
    min-height: 64px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    overflow: hidden;
    max-width: 42vw;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    margin-left: auto;
    gap: 8px;
  }

  .nav-toggle {
    display: inline-grid;
    position: relative;
    z-index: 2147483008;
  }

  .theme-toggle {
    position: relative;
    z-index: 2147483008;
  }

  .theme-toggle,
  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav {
    position: fixed;
    top: calc(64px + env(safe-area-inset-top, 0px));
    left: 12px;
    right: 12px;
    bottom: auto;
    z-index: 2147483007;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    width: auto;
    max-height: min(72vh, calc(100dvh - 94px - var(--mobile-tabbar-height)));
    padding: 12px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04)),
      radial-gradient(circle at 12% 0%, rgba(255, 214, 107, .16), transparent 16rem),
      rgba(3, 5, 4, .96);
    backdrop-filter: blur(26px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.985);
    transform-origin: top center;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }

  html[data-theme="light"] .nav {
    border-color: rgba(4, 18, 10, .12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(250, 247, 238, .92)),
      radial-gradient(circle at 12% 0%, rgba(255, 214, 107, .22), transparent 16rem);
    box-shadow: 0 28px 70px rgba(8, 20, 13, .18);
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 13px 15px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
    color: var(--text);
    font-size: .96rem;
    opacity: 1;
  }

  .nav a:hover,
  .nav a:focus-visible {
    color: var(--text);
    border-color: rgba(255, 214, 107, .38);
    background: rgba(255, 214, 107, .13);
    transform: translateY(-1px);
  }

  .nav .nav-cta {
    justify-content: center;
    color: #031008;
    border-color: transparent;
    background: linear-gradient(90deg, var(--green), var(--yellow));
  }

  body.nav-open .mobile-tabbar,
  body.nav-open .side-app-launch,
  body.nav-open .crisp-drag-layer,
  body.nav-open .crisp-client .cc-13wro {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-actions,
  .trust-strip {
    justify-content: center;
  }

  .hero-campaign {
    justify-self: center;
    width: min(520px, 92vw);
  }

  .brand-panel,
  .split,
  .pricing-cards,
  .testimonial-layout,
  .locale-card,
  .content-columns {
    grid-template-columns: 1fr;
  }

  .locale-card {
    display: grid;
  }

  .brand-panel {
    text-align: center;
  }

  .brand-panel img {
    margin: 0 auto;
  }

  .location-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(var(--mobile-tabbar-height) + env(safe-area-inset-bottom, 0px));
  }

  .mobile-tabbar {
    display: grid;
  }

  .crisp-client,
  .crisp-client .cc-165wh {
    --crisp-customization-mobile-button-vertical: var(--crisp-mobile-offset) !important;
    --crisp-customization-default-button-vertical: var(--crisp-mobile-offset) !important;
  }

  .crisp-client .cc-165wh .cc-lk42u .cc-13wro,
  .crisp-client .cc-165wh[data-full-view="true"] .cc-lk42u .cc-13wro,
  .crisp-client iframe,
  iframe[src*="client.crisp.chat"] {
    bottom: calc(var(--crisp-mobile-offset) + env(safe-area-inset-bottom, 0px)) !important;
  }

  h1 {
    font-size: 2.72rem;
    line-height: 1.08;
  }

  .hero-copy,
  .section-heading p,
  .split p,
  .vip-content p,
  .cta-section p {
    font-size: 1rem;
  }

  .section-heading h2,
  .vip-content h2,
  .split h2,
  .cta-section h2 {
    font-size: 2.2rem;
  }

  .brand-panel h2,
  .testimonial-copy h3 {
    font-size: 1.8rem;
  }

  .section {
    padding: 66px 4vw;
  }

  .hero {
    padding: 112px 4vw 58px;
  }

  .brand-panel,
  .vip-band,
  .cta-section {
    margin-left: 4vw;
    margin-right: 4vw;
  }

  .feature-grid,
  .location-grid,
  .video-grid,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .gallery-image.wide {
    grid-column: auto;
  }

  .comparison {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 680px;
  }

  .video-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .video-grid {
    position: relative;
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    max-width: none;
    margin: 0 -4vw 34px;
    padding: 4px 8vw 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 8vw;
    -webkit-overflow-scrolling: touch;
  }

  .video-grid::-webkit-scrollbar {
    display: none;
  }

  .video-card {
    flex: 0 0 clamp(230px, 66vw, 300px);
    min-height: auto;
    scroll-snap-align: center;
    opacity: .72;
    filter: saturate(.9) brightness(.88);
    transform: scale(.94);
  }

  .video-card.is-active {
    opacity: 1;
    filter: saturate(1.08) brightness(1);
    transform: scale(1);
  }

  .video-embed {
    width: 100%;
    min-height: 0;
    aspect-ratio: 9 / 16;
    max-height: none;
    border-radius: 14px;
    box-shadow:
      0 24px 58px rgba(0, 0, 0, .38),
      0 0 0 1px rgba(255, 255, 255, .10);
  }

  .video-card-body {
    display: grid;
    gap: 6px;
    padding: 10px 4px 0;
    text-align: center;
  }

  .video-label {
    justify-self: center;
    margin-bottom: 0;
    padding: 5px 9px;
    font-size: .66rem;
  }

  .video-card h3 {
    margin-bottom: 0;
    font-size: .92rem;
    line-height: 1.25;
  }

  .video-card p {
    display: none;
  }

  .video-card a {
    justify-self: center;
    padding: 7px 11px;
    border: 1px solid rgba(50, 247, 131, .24);
    border-radius: 999px;
    background: rgba(50, 247, 131, .08);
    font-size: .78rem;
  }

  .chat-window {
    min-height: 430px;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .video-grid {
    gap: 10px;
    padding-inline: 14vw;
    scroll-padding-inline: 14vw;
  }

  .video-card {
    flex-basis: clamp(210px, 68vw, 270px);
  }

  .video-embed {
    aspect-ratio: 9 / 16;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .brand-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .price {
    font-size: 1.85rem;
  }

  .hero-campaign {
    margin-top: 10px;
    aspect-ratio: 3 / 4;
  }

  .luxury-frame,
  .luxury-frame img {
    min-height: 420px;
  }

  .mobile-tabbar a {
    font-size: .66rem;
    padding-left: 0;
    padding-right: 0;
  }

  .side-app-launch {
    padding: 10px 12px 10px 9px;
    font-size: .7rem;
  }
}

/* Dual-platform: football + markets */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
}

.platform-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow-soft);
}

.platform-card.lane-football {
  border-color: rgba(50, 247, 131, .24);
}

.platform-card.lane-markets {
  border-color: rgba(255, 214, 107, .28);
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.platform-badge.football {
  color: var(--green);
  background: rgba(50, 247, 131, .12);
  border: 1px solid rgba(50, 247, 131, .24);
}

.platform-badge.markets {
  color: var(--yellow);
  background: rgba(255, 214, 107, .12);
  border: 1px solid rgba(255, 214, 107, .28);
}

.platform-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
}

.platform-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-card.lane-football .platform-icon {
  color: var(--green);
}

.platform-card.lane-markets .platform-icon {
  color: var(--yellow);
}

.platform-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

.platform-card p {
  margin: 0;
  color: var(--muted);
}

.platform-points {
  margin: 0;
  padding-left: 18px;
  color: var(--soft);
  display: grid;
  gap: 8px;
}

.platform-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.lane-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lane-label.football {
  color: var(--green);
  border: 1px solid rgba(50, 247, 131, .28);
  background: rgba(50, 247, 131, .09);
}

.lane-label.markets {
  color: var(--yellow);
  border: 1px solid rgba(255, 214, 107, .28);
  background: rgba(255, 214, 107, .09);
}

.lane-section.lane-football,
.lane-football.vip-band {
  border-top: 1px solid rgba(50, 247, 131, .12);
}

.lane-section.lane-markets,
.lane-markets.vip-band,
.markets-vip-band {
  border-top: 1px solid rgba(255, 214, 107, .12);
}

.icon-box.markets {
  color: var(--yellow);
  border-color: rgba(255, 214, 107, .28);
  background: rgba(255, 214, 107, .08);
}

.pricing-lane-heading {
  margin: 42px 0 18px;
}

.pricing-lane-heading h3 {
  margin: 12px 0 0;
  font-size: 1.55rem;
}

.pricing-lane-note {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.markets-pricing-cards {
  margin-bottom: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .markets-pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.markets-vip-band .vip-content {
  display: grid;
  gap: 14px;
}

.markets-vip-band .btn {
  width: fit-content;
}

.markets-frame {
  display: grid;
  place-items: stretch;
  min-height: 420px;
  background:
    radial-gradient(circle at top right, rgba(255, 214, 107, .16), transparent 42%),
    linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
}

.markets-visual-card {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 34px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.markets-visual-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(50, 247, 131, .22), transparent 68%);
  pointer-events: none;
  animation: livePulse 3.2s ease-out infinite;
}

.markets-visual-card h3 {
  margin: 0;
  font-size: 1.8rem;
  position: relative;
}

.markets-visual-card p,
.markets-visual-card .platform-badge,
.markets-visual-card .btn {
  position: relative;
}

.markets-visual-card p {
  margin: 0;
  color: var(--muted);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.compliance-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
}

.compliance-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.compliance-card p {
  margin: 0;
  color: var(--muted);
}

.compliance-card.lane-football {
  border-color: rgba(50, 247, 131, .18);
}

.compliance-card.lane-markets {
  border-color: rgba(255, 214, 107, .22);
}

.faq-answer code {
  font-size: .92em;
  color: var(--yellow);
}

@media (max-width: 960px) {
  .platform-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
