/* PM Media — Premium Revenue Engine · neon accent · enterprise trust */
:root {
  --cyan: #00d4ee;
  --magenta: #e8328a;
  --pink: #e8328a;
  --teal: #00d4ee;
  --purple: #9d4edd;
  --gold: #f0c14b;
  --bg: #06060c;
  --bg-brick: #0a0a12;
  --bg-elevated: #101018;
  --bg-card: rgba(12, 12, 20, 0.72);
  --text: #f4f4fa;
  --text-soft: rgba(244, 244, 250, 0.68);
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(0, 212, 238, 0.22);
  --border-magenta: rgba(232, 50, 138, 0.22);
  --gradient-neon: linear-gradient(135deg, var(--cyan) 0%, var(--magenta) 100%);
  --gradient-btn: linear-gradient(135deg, #00c8e8 0%, #e8328a 100%);
  --glow-cyan: 0 0 24px rgba(0, 212, 238, 0.18);
  --glow-magenta: 0 0 24px rgba(232, 50, 138, 0.16);
  --glow-mixed: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
  --glow-intense: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 238, 0.08);
  --neon-line: linear-gradient(90deg, transparent, rgba(0, 212, 238, 0.5), rgba(232, 50, 138, 0.5), transparent);
  --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
  --shadow-lift: 0 32px 80px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --radius-sm: 10px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --max: 1200px;
  --touch: 48px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  font-size: 16px;
  overflow-x: hidden;
  overflow-y: auto !important;
  height: auto !important;
  overscroll-behavior-y: none;
}
body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg-brick);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  touch-action: pan-y;
  background-image:
    linear-gradient(rgba(6, 6, 12, 0.97), rgba(6, 6, 12, 0.99)),
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 238, 0.07), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(232, 50, 138, 0.05), transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 80%, rgba(0, 212, 238, 0.04), transparent 50%);
  background-size: auto, auto, auto, auto;
  background-attachment: scroll;
}
/* fixed backgrounds cause scroll jank — keep scroll everywhere */
.section {
  content-visibility: auto;
  contain-intrinsic-size: auto 360px;
}
html.is-scrolling .neon-ambient,
html.is-scrolling .pm-synapse-layer,
html.is-scrolling .pm-bg-cinema,
html.is-scrolling .pm-liquid-path-wrap {
  opacity: 0.55;
  transition: opacity 0.08s ease;
}
html.is-scrolling .neon-scan-sweep,
html.is-scrolling .hero-8k-visual {
  animation-play-state: paused !important;
}
@media (max-width: 900px), (pointer: coarse) {
  body { background-attachment: scroll !important; }
  .neon-scan-sweep { display: none; }
  html.is-scrolling .neon-ambient,
  html.is-scrolling .pm-synapse-layer,
  html.is-scrolling .pm-bg-cinema {
    opacity: 0.45;
  }
}
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--gradient-btn); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }
.section { padding: clamp(5rem, 10vw, 8rem) 0; position: relative; contain: layout style; }
.section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(480px, 70%); height: 1px; background: var(--neon-line); opacity: 0.35;
}
.section:first-of-type::before { display: none; }
.section-soft {
  background: rgba(255, 255, 255, 0.025);
  border-block: 1px solid rgba(0, 229, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.section-dark {
  background: linear-gradient(180deg, rgba(6, 6, 15, 0.95), rgba(12, 12, 28, 0.98));
  border-block: 1px solid rgba(255, 42, 157, 0.12);
}

.eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1rem;
}
h1 {
  font-family: var(--display); font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.035em; margin-bottom: 1.25rem;
}
h2 {
  font-family: var(--display); font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 1.1rem;
}
h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 0.5rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--text-soft); max-width: 40rem; line-height: 1.7; }
.text-soft { color: var(--text-soft); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.gradient-text {
  background: var(--gradient-neon); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(4, 4, 12, 0.92); backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(0, 229, 255, 0.12);
}
.site-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--neon-line); opacity: 0.7;
}
.corp-bar {
  background: rgba(0, 0, 0, 0.55); border-bottom: 1px solid rgba(0, 232, 255, 0.15);
  padding: 0.5rem 0; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; text-align: center; color: rgba(248, 248, 255, 0.75);
}
.corp-bar em { font-style: normal; color: var(--cyan); text-shadow: var(--glow-cyan); }
.corp-bar strong { font-weight: 700; color: var(--magenta); text-shadow: var(--glow-magenta); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem clamp(1.25rem, 4vw, 2rem); max-width: 1280px; margin: 0 auto;
}
.logo {
  display: flex; flex-direction: column; gap: 0.2rem;
  font-weight: 800; text-decoration: none; line-height: 1;
}
.logo--image { display: block; max-width: min(280px, 40vw); line-height: 0; }
.site-header .logo--image { max-width: min(260px, 28vw); }
.logo--image-sm { max-width: 260px; }
.logo-img {
  display: block; width: 100%; height: auto;
  filter: saturate(1.08) contrast(1.04);
}
.logo span.logo-media-only {
  color: var(--magenta); text-shadow: var(--glow-magenta);
}
.nav-main { display: flex; align-items: center; gap: clamp(0.85rem, 2vw, 1.75rem); flex-wrap: wrap; }
.nav-main a {
  color: var(--text-soft); font-size: 0.8rem; font-weight: 500; text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s, text-shadow 0.2s;
}
.nav-main a:hover { color: var(--cyan); text-shadow: var(--glow-cyan); text-decoration: none; }
.header-actions { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 0.45rem 0.6rem; }
.lang-switch {
  flex-shrink: 0;
  display: inline-flex;
  display: flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.lang-switch button {
  border: none; background: transparent; padding: 0.4rem 0.7rem;
  font-size: 0.72rem; font-weight: 700; cursor: pointer; color: var(--text-soft);
}
.lang-switch button.active { background: var(--gradient-btn); color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--touch); padding: 0 1.6rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.25s; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: var(--gradient-btn); color: #fff;
  box-shadow: var(--glow-mixed);
}
.btn-primary:hover { box-shadow: 0 0 50px rgba(255, 42, 157, 0.45), 0 0 70px rgba(0, 229, 255, 0.25); }
.btn-outline {
  background: transparent; color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.5);
  box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.06);
}
.btn-outline:hover {
  background: rgba(0, 229, 255, 0.08); border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}
.btn-white { background: #fff; color: #0a0a14; }
.btn-white:hover { background: var(--cyan); color: #000; }
.btn-lg { padding: 0 2.1rem; font-size: 0.92rem; }

/* Glass card mixin */
.glass {
  background: var(--bg-card); backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid var(--border); border-radius: var(--radius);
}

/* Hero */
.hero {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 232, 255, 0.06) 0%, transparent 35%),
    linear-gradient(90deg, rgba(0, 232, 255, 0.08) 0%, transparent 40%, rgba(255, 42, 157, 0.08) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 20% 40%, rgba(0, 232, 255, 0.15), transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(255, 42, 157, 0.12), transparent 45%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.hero-visual { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.hero-logo-wrap {
  position: relative; width: 100%; max-width: min(720px, 94vw); border-radius: var(--radius);
  padding: 0.5rem;
  background: linear-gradient(135deg, rgba(0, 232, 255, 0.35), rgba(255, 42, 157, 0.35));
  box-shadow: var(--glow-intense);
}
.hero-logo-wrap::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(0, 232, 255, 0.08), inset 0 0 60px rgba(255, 42, 157, 0.06);
  pointer-events: none;
}
.hero-logo-img {
  width: 100%; height: auto; border-radius: calc(var(--radius) - 2px);
  display: block; background: #0a0a12;
  filter: saturate(1.1) contrast(1.05);
  object-fit: contain;
}
.hero .lead { color: var(--text-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.85rem; }
.location-badge {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.25rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal); text-shadow: 0 0 20px rgba(0, 255, 200, 0.4);
}
.hero-stat-card {
  padding: 1.35rem 1.5rem; border-radius: var(--radius); width: 100%; max-width: min(720px, 94vw);
  background: rgba(8, 8, 16, 0.9); backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 232, 255, 0.35);
  box-shadow: var(--glow-cyan), inset 0 0 30px rgba(0, 232, 255, 0.04);
}
.hero-stat-card .num {
  font-size: 2.5rem; font-weight: 800; line-height: 1;
  background: var(--gradient-neon); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(0, 232, 255, 0.4));
}
.hero-stat-card p { margin-top: 0.65rem; color: var(--text-soft); font-size: 0.92rem; }

/* ON vs IN business */
.on-business { background: transparent; }
.on-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
  text-align: left;
  max-width: 920px;
  margin-inline: auto;
}
@media (max-width: 640px) {
  .on-grid { grid-template-columns: 1fr; }
}
.on-card {
  padding: 1.65rem; border-radius: var(--radius);
  background: var(--bg-card); backdrop-filter: blur(12px);
  border: 1px solid var(--border); transition: transform 0.25s, box-shadow 0.25s;
}
.on-card.featured {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: var(--glow-cyan), inset 0 0 30px rgba(0, 229, 255, 0.04);
}
.on-card.featured:hover { transform: translateY(-4px); }
.on-card h3 { font-size: 0.95rem; margin-bottom: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.on-card.on-in h3 { color: rgba(255, 255, 255, 0.4); }
.on-card.featured h3 {
  background: var(--gradient-neon); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.on-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.on-card li { font-size: 0.9rem; color: var(--text-soft); padding-left: 1.2rem; position: relative; }
.on-card.on-in li::before { content: '×'; position: absolute; left: 0; color: var(--pink); font-weight: 700; }
.on-card.featured li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); }
.on-business h2 em { font-style: normal; }
.on-business h2 em:first-of-type { color: var(--cyan); text-shadow: var(--glow-cyan); }
.on-business h2 em:last-of-type { color: var(--pink); text-shadow: var(--glow-magenta); }

/* Trust */
.trust {
  padding: 2.25rem 0; border-block: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
}
.trust-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-soft); text-align: center; margin-bottom: 0.75rem;
}
.industries-title {
  font-size: clamp(1.2rem, 3vw, 1.75rem); font-weight: 700; margin-bottom: 0.75rem;
  max-width: 36rem; margin-inline: auto;
}
.industries-lead { max-width: 42rem; margin-bottom: 1.5rem; font-size: 0.95rem; }
.industries-note { margin-top: 1.25rem; font-size: 0.85rem; color: var(--text-soft); max-width: 36rem; margin-inline: auto; }
.trust-logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.55rem;
  max-width: 900px; margin-inline: auto;
}
.trust-logos span {
  display: inline-block; padding: 0.4rem 0.85rem; border-radius: 999px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-soft); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.trust-logos span:hover { border-color: rgba(0, 229, 255, 0.35); color: var(--cyan); }

/* Video explainers */
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2.25rem;
}
.video-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-mixed);
  border-color: rgba(255, 42, 157, 0.3);
}
.video-poster {
  position: relative; aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0a0a14, #1a0533 40%, #0a1a2e);
  display: flex; align-items: center; justify-content: center;
}
.video-poster svg { width: 100%; height: 100%; opacity: 0.9; }
.play-btn {
  position: absolute; width: 62px; height: 62px; border-radius: 50%;
  background: var(--gradient-btn); color: #fff; border: none;
  font-size: 1.2rem; cursor: pointer;
  box-shadow: var(--glow-mixed); transition: transform 0.2s;
}
.play-btn:hover { transform: scale(1.08); }
.video-card-body { padding: 1.35rem; }
.video-card-body h3 { margin-bottom: 0.4rem; }
.video-card-body p { font-size: 0.88rem; color: var(--text-soft); }
.engine-tag {
  display: inline-block; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.3rem 0.65rem; border-radius: 4px; margin-bottom: 0.55rem;
  background: rgba(255, 42, 157, 0.12); color: var(--pink); border: 1px solid rgba(255, 42, 157, 0.3);
}

/* Questions */
.questions-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 1180px) {
  .questions-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.75rem; }
  .q-card { padding: 1.1rem; }
  .q-card blockquote { font-size: 0.92rem; }
}
@media (max-width: 960px) {
  .questions-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .questions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .questions-grid { grid-template-columns: 1fr; }
}
.q-card {
  padding: 1.4rem; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.q-card:hover { border-color: rgba(0, 229, 255, 0.3); box-shadow: var(--glow-cyan); }
.q-card .role {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 0.35rem;
}
.q-card blockquote { font-size: 0.92rem; font-style: italic; color: var(--text); line-height: 1.55; border: none; margin: 0; }
.q-card .q-answer {
  margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px solid var(--border);
  font-size: 0.85rem; color: var(--text-soft); line-height: 1.55; font-style: normal;
}

/* Steps */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.35rem; margin-top: 2.5rem;
}
.step-card {
  padding: 1.85rem; border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
}
.step-num {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em;
  background: var(--gradient-neon); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 0.75rem;
}
.section-dark .text-soft { color: var(--text-soft); }

/* Services */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.service-card {
  padding: 1.85rem; border-radius: var(--radius); display: flex; flex-direction: column; gap: 0.65rem;
  background: rgba(4, 8, 20, 0.8); border: 1px solid rgba(0, 229, 255, 0.18);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--neon-line); opacity: 0.55;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow: var(--glow-intense);
}
.service-card.featured {
  border-color: rgba(255, 42, 157, 0.55);
  background: linear-gradient(160deg, rgba(255, 42, 157, 0.1), rgba(0, 229, 255, 0.06));
  box-shadow: var(--glow-intense);
}
.offer-badge {
  display: inline-block; align-self: flex-start;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.65rem; border-radius: 999px;
  color: var(--teal); background: rgba(0, 255, 200, 0.08);
  border: 1px solid rgba(0, 255, 200, 0.35);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.15);
}
.price-was {
  font-size: 0.78rem; color: rgba(244, 244, 255, 0.4); text-decoration: line-through;
  margin-right: 0.35rem;
}
.service-card .price {
  font-size: 1.65rem; font-weight: 800;
  background: var(--gradient-neon); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-card .price-note {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-soft); margin-top: -0.35rem; margin-bottom: 0.25rem;
}
.services-note {
  max-width: 42rem; margin: 2rem auto 0; font-size: 0.88rem; color: var(--text-soft); line-height: 1.55;
}

.investment-label {
  font-size: 1.15rem; font-weight: 800; letter-spacing: 0.04em;
  background: var(--gradient-neon); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 0.25rem;
}
.investment-note {
  font-size: 0.78rem; color: var(--text-soft); margin-bottom: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.tier-tag {
  display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.25rem 0.55rem; border-radius: 999px;
  background: rgba(0, 232, 255, 0.1); color: var(--cyan); border: 1px solid rgba(0, 232, 255, 0.25);
  margin-bottom: 0.65rem;
}
.tier-tag--enterprise {
  background: rgba(255, 42, 157, 0.1); color: var(--magenta); border-color: rgba(255, 42, 157, 0.25);
}
.services-grid--four {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
@media (min-width: 1100px) {
  .services-grid--four { grid-template-columns: repeat(4, 1fr); }
}
.invest-pillars {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.5rem;
  margin: 1.75rem auto 1.5rem; max-width: 720px;
}
.invest-pillars li {
  font-size: 0.88rem; font-weight: 600; color: var(--text-soft);
  padding-left: 1.1rem; position: relative;
}
.invest-pillars li::before {
  content: '◆'; position: absolute; left: 0; color: var(--cyan); font-size: 0.55rem; top: 0.35rem;
}
.legal-note {
  font-size: 0.72rem; line-height: 1.55; color: rgba(248, 248, 255, 0.45);
  max-width: 680px; margin: 1.25rem auto 0;
}
.legal-note--footer { margin-top: 1rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.legal-micro {
  font-size: 0.62rem;
  line-height: 1.5;
  color: rgba(244, 244, 250, 0.32);
  max-width: 820px;
  margin: 0 auto 0.65rem;
}
.legal-micro a { color: rgba(244, 244, 250, 0.42); text-decoration: underline; text-underline-offset: 2px; }
.legal-micro a:hover { color: var(--cyan); }
html[data-a11y-contrast="true"] .legal-micro { color: rgba(244, 244, 250, 0.72); }
html[data-a11y-contrast="true"] .legal-micro a { color: var(--cyan); }

.legal-doc { padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem); }
.legal-doc .container { max-width: 760px; }
.legal-doc-meta { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 1.25rem; }
.legal-doc-note {
  font-size: 0.85rem; line-height: 1.6; color: var(--text-soft);
  padding: 1rem 1.1rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 50, 138, 0.25);
  background: rgba(232, 50, 138, 0.06);
  margin-bottom: 2rem;
}
.legal-doc section { margin-bottom: 1.75rem; }
.legal-doc h2 { font-size: 1.05rem; margin-bottom: 0.55rem; color: var(--text); }
.legal-doc p, .legal-doc li { font-size: 0.9rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 0.65rem; }
.legal-doc ul { padding-left: 1.2rem; margin-bottom: 0.75rem; }
.legal-doc code { font-size: 0.82rem; color: var(--cyan); }
.legal-doc-back { margin-top: 2.5rem; font-size: 0.88rem; }

/* AI Resource Library */
.library-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.lib-card {
  padding: 1.35rem; border-radius: var(--radius);
  background: rgba(4, 8, 20, 0.85); border: 1px solid rgba(0, 229, 255, 0.2);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.lib-card:hover {
  border-color: rgba(255, 42, 157, 0.45);
  box-shadow: var(--glow-intense); transform: translateY(-3px);
}
.lib-tag {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pink); text-shadow: 0 0 12px rgba(255, 42, 157, 0.4);
}
.lib-card h3 { font-size: 0.98rem; margin: 0; color: var(--text); }
.lib-card p { font-size: 0.84rem; color: var(--text-soft); line-height: 1.5; flex: 1; }
.lib-meta {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan); margin-top: 0.25rem;
}
.library-cta { margin-top: 2rem; text-align: center; }

.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin: 0.5rem 0 1rem; flex: 1; }
.service-card li {
  font-size: 0.88rem; color: var(--text-soft); padding-left: 1.1rem; position: relative;
}
.service-card li::before {
  content: ''; position: absolute; left: 0; top: 0.55rem; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gradient-btn);
}

/* Stats */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.stat-block {
  text-align: center; padding: 1.75rem; border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border);
}
.stat-block .val {
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; line-height: 1;
  background: var(--gradient-neon); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-block .lbl { font-size: 0.82rem; color: var(--text-soft); margin-top: 0.55rem; }

/* Testimonials */
.testimonials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.testimonial {
  padding: 1.55rem; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--pink), var(--cyan)) 1;
}
.testimonial q { display: block; font-size: 0.92rem; line-height: 1.65; color: var(--text); margin-bottom: 1rem; }
.testimonial cite { font-style: normal; font-size: 0.8rem; color: var(--teal); }

/* Form */
.form-section {
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.06));
  padding-bottom: calc(var(--pm-dock-offset, 5.25rem) + 2.5rem);
}
.form-wrap input.is-invalid,
.form-wrap select.is-invalid,
.form-wrap textarea.is-invalid,
.consent input.is-invalid {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 50, 138, 0.2);
}
.form-wrap button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: wait;
}
.form-wrap {
  max-width: 560px; margin: 2rem auto 0; padding: 2.25rem; border-radius: var(--radius);
  text-align: left;
  background: var(--bg-card); backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: var(--glow-cyan);
}
.form-wrap input, .form-wrap select, .form-wrap textarea {
  width: 100%; min-height: var(--touch); padding: 0 1rem; margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.4); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-wrap textarea {
  min-height: 88px; padding: 0.75rem 1rem; resize: vertical;
}
.form-wrap input:focus, .form-wrap select:focus, .form-wrap textarea:focus {
  border-color: var(--cyan); outline: none; box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
}
.form-qual {
  border: 1px solid rgba(0, 232, 255, 0.18); border-radius: var(--radius);
  padding: 1.25rem 1.1rem 0.25rem; margin: 0.5rem 0 1rem; background: rgba(0, 232, 255, 0.03);
}
.form-qual legend {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); padding: 0 0.35rem;
}
.form-wrap label {
  display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.35rem;
}
.form-qual-note {
  font-size: 0.82rem; color: var(--text-soft); line-height: 1.5; margin: -0.25rem 0 1rem;
}
.consent { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.78rem; color: var(--text-soft); margin: 1rem 0; }
.consent input { margin-top: 0.25rem; width: auto; min-height: auto; accent-color: var(--pink); }
.form-msg { text-align: center; font-size: 0.88rem; min-height: 1.4rem; margin-top: 0.75rem; }
.form-msg.ok { color: var(--teal); }
.form-msg.err { color: var(--pink); }

/* FAQ */
.faq { max-width: 720px; margin: 2rem auto 0; }
.faq details {
  padding: 1.1rem 1.3rem; margin-bottom: 0.65rem; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.faq details[open] { border-color: rgba(0, 229, 255, 0.3); box-shadow: var(--glow-cyan); }
.faq summary { font-weight: 600; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq .faq-answer p { margin-top: 0.65rem; color: var(--text-soft); font-size: 0.9rem; }
.faq p { margin-top: 0.65rem; color: var(--text-soft); font-size: 0.9rem; }

.book-reassure-wrap { max-width: 420px; margin: 1.25rem auto 1.75rem; text-align: left; }
.pattern-interrupt {
  max-width: 32rem; margin: 0 auto 1.25rem; padding: 0.85rem 1.1rem;
  font-size: 0.95rem; font-weight: 600; line-height: 1.45; color: var(--text);
  border-left: 3px solid var(--magenta, #ff2a9d);
  background: rgba(255, 42, 157, 0.08); text-align: left;
}
.book-reassure {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin: 0; padding: 0;
}
.book-reassure li {
  font-size: 0.88rem; color: var(--text-soft); padding-left: 1.35rem; position: relative; line-height: 1.45;
}
.book-reassure li::before {
  content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700;
}

/* CTA band */
.cta-band {
  text-align: center; padding: 4rem 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 42, 157, 0.12), rgba(0, 232, 255, 0.1));
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-btn); opacity: 0.08;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 0.85rem; }
.cta-band p { color: var(--text-soft); max-width: 34rem; margin: 0 auto 1.65rem; }

/* Footer */
.site-footer {
  background: #030308; color: var(--text-soft); padding: 3.5rem 0 2rem; font-size: 0.85rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem; margin-bottom: 2rem;
}
.site-footer h4 { color: var(--text); font-size: 0.82rem; margin-bottom: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }
.site-footer a { color: var(--text-soft); text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; font-size: 0.78rem; }

/* Chat widget — AI funnel closer */
.chat-widget {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 92;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.65rem;
}
.chat-teaser {
  position: relative; max-width: 280px; padding: 0.85rem 2rem 0.85rem 1rem;
  background: var(--bg-elevated); border: 1px solid var(--border-accent);
  border-radius: var(--radius); box-shadow: var(--shadow-lift);
  font-size: 0.82rem; line-height: 1.45; color: var(--text); cursor: pointer;
  animation: chatTeaserIn 0.4s var(--ease-out);
}
.chat-teaser-close {
  position: absolute; top: 0.35rem; right: 0.45rem;
  border: none; background: none; color: var(--text-soft);
  font-size: 1.1rem; cursor: pointer; line-height: 1;
}
@keyframes chatTeaserIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.chat-teaser.is-updated {
  animation: chatTeaserPulse 0.55s var(--ease-out);
  border-color: rgba(0, 212, 238, 0.55);
  box-shadow: var(--shadow-lift), 0 0 24px rgba(0, 212, 238, 0.18);
}
@keyframes chatTeaserPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.02); }
  100% { transform: scale(1); }
}
.chat-toggle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 52px; padding: 0 1.15rem 0 0.95rem; border-radius: 999px;
  background: var(--gradient-btn); color: #fff; border: none;
  cursor: pointer; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; box-shadow: var(--shadow-lift), 0 0 32px rgba(0, 212, 238, 0.15);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.chat-toggle:hover { transform: translateY(-2px); }
.chat-toggle-icon { font-size: 1.1rem; line-height: 1; }
.chat-panel {
  position: absolute; bottom: calc(100% + 0.75rem); right: 0;
  width: min(380px, calc(100vw - 2rem)); max-height: min(520px, 72vh);
  background: var(--bg-elevated); border: 1px solid var(--border-accent);
  border-radius: var(--radius); box-shadow: var(--shadow-lift);
  display: flex; flex-direction: column; overflow: hidden;
  transform-origin: bottom right;
  animation: chatPanelIn 0.3s var(--ease-out);
}
.chat-panel[hidden] { display: none !important; }
.chat-panel.open { display: flex; }
@keyframes chatPanelIn {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to { opacity: 1; transform: none; }
}
.chat-head {
  display: flex; align-items: flex-start; gap: 0.5rem;
  padding: 0.85rem 1rem; border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0, 212, 238, 0.08), rgba(232, 50, 138, 0.06));
}
.chat-head-text { flex: 1; min-width: 0; }
.chat-head-title {
  font-size: 0.92rem; font-weight: 700; color: var(--text); margin: 0;
}
.chat-head-sub {
  font-size: 0.72rem; color: var(--text-soft); margin: 0.15rem 0 0;
}
.chat-ai-badge {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.45rem; border-radius: 999px; white-space: nowrap;
  color: var(--cyan); background: rgba(0, 212, 238, 0.1); border: 1px solid rgba(0, 212, 238, 0.25);
}
.chat-close {
  border: none; background: none; color: var(--text-soft);
  font-size: 1.35rem; line-height: 1; cursor: pointer; padding: 0 0.15rem;
}
.chat-stop-voice {
  flex-shrink: 0; border: 1px solid rgba(232, 50, 138, 0.45); background: rgba(232, 50, 138, 0.12);
  color: var(--magenta); font-size: 0.85rem; line-height: 1; cursor: pointer;
  width: 2rem; height: 2rem; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
}
.chat-stop-voice:hover { background: rgba(232, 50, 138, 0.22); border-color: var(--magenta); }
.chat-stop-voice[hidden] { display: none !important; }
.chat-widget.is-speaking .chat-head-title::after {
  content: ' · speaking';
  font-size: 0.72rem; font-weight: 600; color: var(--cyan);
}
.chat-messages {
  flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem;
  min-height: 200px; max-height: 280px;
}
.chat-msg { display: flex; gap: 0.5rem; align-items: flex-end; }
.chat-msg--user { justify-content: flex-end; }
.chat-msg--user .chat-msg-bubble {
  background: var(--gradient-btn); color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-msg--agent .chat-msg-bubble {
  background: rgba(255, 255, 255, 0.06); color: var(--text);
  border: 1px solid var(--border); border-bottom-left-radius: 4px;
}
.chat-msg-bubble {
  max-width: 85%; padding: 0.65rem 0.85rem; border-radius: 14px;
  font-size: 0.84rem; line-height: 1.5;
}
.chat-msg-avatar {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 800; letter-spacing: 0.02em;
  background: rgba(0, 212, 238, 0.15); color: var(--cyan);
  border: 1px solid rgba(0, 212, 238, 0.3);
}
.chat-book-link {
  display: inline-block; margin-top: 0.5rem; font-weight: 700; font-size: 0.78rem;
  color: var(--cyan) !important; text-decoration: none !important;
}
.chat-book-link:hover { text-decoration: underline !important; }
.chat-typing-dots {
  display: flex; gap: 4px; align-items: center; padding: 0.75rem 1rem !important;
}
.chat-typing-dots span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  animation: chatDot 1.2s infinite ease-in-out;
}
.chat-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}
.chat-quick {
  display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 1rem 0.65rem;
}
.chat-quick-btn {
  font: inherit; font-size: 0.68rem; font-weight: 600;
  padding: 0.35rem 0.65rem; border-radius: 999px; cursor: pointer;
  color: var(--text-soft); background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border); transition: border-color 0.2s, color 0.2s;
}
.chat-quick-btn:hover { border-color: var(--border-accent); color: var(--cyan); }
.chat-foot {
  padding: 0.65rem 0.75rem; border-top: 1px solid var(--border);
  display: flex; gap: 0.5rem; align-items: center;
}
.chat-foot input {
  flex: 1; min-height: 44px; padding: 0 0.85rem;
  border: 1px solid var(--border); border-radius: 999px;
  font: inherit; font-size: 0.84rem; background: rgba(0, 0, 0, 0.35); color: var(--text);
}
.chat-foot input:focus { border-color: var(--cyan); outline: none; box-shadow: 0 0 0 3px rgba(0, 212, 238, 0.12); }
.chat-voice-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.chat-voice-btn:hover { border-color: var(--border-accent); }
.chat-voice-btn.is-handsfree {
  border-color: var(--cyan);
  background: rgba(0, 212, 238, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 212, 238, 0.18);
}
.chat-voice-btn.is-listening {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(232, 50, 138, 0.2);
  background: rgba(232, 50, 138, 0.12);
  animation: chatMicPulse 1.3s ease-in-out infinite;
}
@keyframes chatMicPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232, 50, 138, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(232, 50, 138, 0.28); }
}
html[data-a11y-reduce-motion="true"] .chat-voice-btn.is-listening { animation: none; }

/* Header voice on/off toggle */
.chat-voice-toggle {
  flex-shrink: 0;
  width: 2rem; height: 2rem; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0, 212, 238, 0.45);
  background: rgba(0, 212, 238, 0.1);
  color: var(--cyan); font-size: 0.9rem; line-height: 1; cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.chat-voice-toggle:hover { background: rgba(0, 212, 238, 0.18); border-color: var(--cyan); }
.chat-voice-toggle.is-muted {
  border-color: rgba(255, 77, 109, 0.55);
  background: rgba(255, 77, 109, 0.1);
  color: #ff4d6d;
}

/* Hands-free / usage hint */
.chat-mic-hint {
  margin: 0; padding: 0.4rem 0.85rem 0;
  font-size: 0.66rem; line-height: 1.4;
  color: rgba(244, 244, 250, 0.5); text-align: center;
}
.chat-foot input, #chat-input { font-size: max(16px, 1rem); }
.chat-disclosure {
  font-size: 0.62rem; color: rgba(244, 244, 250, 0.4); text-align: center;
  padding: 0.35rem 0.75rem 0.65rem; margin: 0; line-height: 1.4;
}

@media (max-width: 768px) {
  .nav-main { display: none; }
  .a11y-panel { width: min(380px, calc(100vw - 1.5rem)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ── Light theme ── */
html[data-theme="light"] {
  --bg: #f0f2f8;
  --bg-brick: #e8ebf3;
  --bg-elevated: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.96);
  --text: #0c0c18;
  --text-soft: rgba(12, 12, 24, 0.78);
  --border: rgba(0, 120, 140, 0.22);
  --border-magenta: rgba(180, 20, 100, 0.25);
  --glow-cyan: 0 0 12px rgba(0, 160, 190, 0.35);
  --glow-magenta: 0 0 12px rgba(200, 30, 120, 0.3);
  --glow-mixed: 0 2px 16px rgba(0, 120, 140, 0.15);
  --glow-intense: 0 2px 20px rgba(0, 120, 140, 0.2);
}
html[data-theme="light"] body {
  background-image:
    linear-gradient(rgba(240, 242, 248, 0.92), rgba(232, 235, 243, 0.95)),
    linear-gradient(335deg, rgba(0, 0, 0, 0.03) 22px, transparent 22px),
    linear-gradient(155deg, rgba(0, 0, 0, 0.03) 22px, transparent 22px);
}
html[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(0, 120, 140, 0.15);
}
html[data-theme="light"] .section-soft { background: rgba(0, 0, 0, 0.03); }
html[data-theme="light"] .hero-logo-wrap { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); }
html[data-theme="light"] .chat-foot input { background: #f4f6fa; }

/* ── Accessibility modes ── */
html[data-a11y-text="large"] { font-size: 18px; }
html[data-a11y-text="xlarge"] { font-size: 21px; }

html[data-a11y-readable="true"] body {
  font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.75;
}

html[data-a11y-contrast="true"] {
  --text: #ffffff;
  --text-soft: #ffffff;
  --bg: #000000;
  --bg-brick: #000000;
  --bg-elevated: #000000;
  --bg-card: #000000;
  --border: #ffffff;
  --cyan: #00ffff;
  --magenta: #ff66cc;
  --pink: #ff66cc;
}
html[data-theme="light"][data-a11y-contrast="true"] {
  --text: #000000;
  --text-soft: #000000;
  --bg: #ffffff;
  --bg-brick: #ffffff;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --border: #000000;
  --cyan: #0000cc;
  --magenta: #990066;
}
html[data-a11y-contrast="true"] body { background-image: none; }
html[data-a11y-contrast="true"] .btn-primary,
html[data-a11y-contrast="true"] .glass,
html[data-a11y-contrast="true"] .service-card,
html[data-a11y-contrast="true"] .q-card {
  border: 2px solid currentColor !important;
  box-shadow: none !important;
}

html[data-a11y-highlight-links="true"] a {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  font-weight: 600;
}
html[data-a11y-highlight-links="true"] a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

html[data-a11y-reduce-motion="true"] *,
html[data-a11y-reduce-motion="true"] *::before,
html[data-a11y-reduce-motion="true"] *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

html[data-a11y-colorblind="protanopia"] {
  --cyan: #0077aa;
  --magenta: #cc7700;
  --pink: #cc7700;
  --gradient-btn: linear-gradient(90deg, #0077aa 0%, #cc7700 100%);
}
html[data-a11y-colorblind="deuteranopia"] {
  --cyan: #006699;
  --magenta: #994400;
  --pink: #994400;
  --gradient-btn: linear-gradient(90deg, #006699 0%, #994400 100%);
}
html[data-a11y-colorblind="tritanopia"] {
  --cyan: #cc0044;
  --magenta: #008855;
  --pink: #008855;
  --gradient-btn: linear-gradient(90deg, #cc0044 0%, #008855 100%);
}
html[data-a11y-colorblind="monochrome"] {
  --cyan: #444444;
  --magenta: #888888;
  --pink: #888888;
  --gradient-neon: linear-gradient(90deg, #333 0%, #777 100%);
  --gradient-btn: linear-gradient(90deg, #222 0%, #666 100%);
  filter: grayscale(1) contrast(1.15);
}

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

/* ── Accessibility widget ── */
.ambient-toggle {
  position: relative;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-elevated); color: var(--magenta);
  border: 2px solid var(--magenta);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--glow-magenta);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.ambient-toggle:hover { transform: scale(1.05); box-shadow: var(--glow-intense); }
.ambient-toggle.ambient-off { opacity: 0.55; color: var(--text-soft); border-color: var(--border); box-shadow: none; }
.ambient-toggle.ambient-speech-pause { color: var(--cyan); border-color: var(--cyan); box-shadow: var(--glow-cyan); animation: ambientPulse 1.8s ease-in-out infinite; }
.ambient-toggle.ambient-unlocked:not(.ambient-off):not(.ambient-speech-pause) svg { animation: ambientNote 2.4s ease-in-out infinite; }
@keyframes ambientPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@keyframes ambientNote {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
html[data-a11y-reduce-motion="true"] .ambient-toggle { animation: none !important; }

.ambient-rotate {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-elevated); color: var(--cyan);
  border: 2px solid var(--cyan);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--glow-cyan);
  transition: transform 0.2s, opacity 0.2s;
}
.ambient-rotate:hover { transform: scale(1.06); }
.ambient-rotate[hidden] { display: none !important; }

.pm-trophy-modal {
  position: fixed; inset: 0; z-index: 12000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem; pointer-events: none; opacity: 0;
  transition: opacity 0.32s ease;
}
.pm-trophy-modal.is-open { pointer-events: auto; opacity: 1; }
.pm-trophy-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 6, 14, 0.72); backdrop-filter: blur(6px);
}
.pm-trophy-card {
  position: relative; z-index: 1; max-width: 420px; width: 100%;
  padding: 2rem 1.75rem 1.5rem; text-align: center;
  background: linear-gradient(165deg, rgba(18, 12, 32, 0.96), rgba(8, 10, 20, 0.98));
  border: 1px solid rgba(255, 80, 200, 0.35);
  border-radius: 20px; box-shadow: 0 24px 80px rgba(255, 80, 200, 0.18);
  transform: translateY(12px) scale(0.96);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-trophy-modal.is-open .pm-trophy-card { transform: translateY(0) scale(1); }
.pm-trophy-rays {
  position: absolute; inset: -40%; pointer-events: none;
  background: conic-gradient(from 0deg, transparent, rgba(255, 201, 64, 0.12), transparent, rgba(0, 212, 255, 0.1), transparent);
  animation: trophySpin 8s linear infinite;
}
@keyframes trophySpin { to { transform: rotate(360deg); } }
.pm-trophy-icon { font-size: 3.2rem; line-height: 1; margin-bottom: 0.35rem; position: relative; }
.pm-trophy-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); margin: 0 0 0.35rem;
}
.pm-trophy-title { font-family: var(--font-display); font-size: 1.45rem; margin: 0 0 0.5rem; color: #fff; }
.pm-trophy-sub { color: var(--text-soft); margin: 0 0 0.75rem; font-size: 0.95rem; line-height: 1.5; }
.pm-trophy-xp { color: var(--magenta); font-weight: 700; margin: 0 0 1rem; }
.pm-trophy-spark {
  position: absolute; left: 50%; top: 42%; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold, #ffc940);
  transform: translate(var(--x), var(--y));
  animation: trophySpark var(--d) ease-out forwards;
}
@keyframes trophySpark {
  from { opacity: 1; transform: translate(var(--x), var(--y)) scale(1); }
  to { opacity: 0; transform: translate(calc(var(--x) * 1.8), calc(var(--y) * 1.8)) scale(0); }
}
html[data-a11y-reduce-motion="true"] .pm-trophy-rays,
html[data-a11y-reduce-motion="true"] .pm-trophy-spark { animation: none !important; }

.pm-live-demand {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 8500;
  max-width: min(360px, calc(100vw - 2rem));
  pointer-events: none;
}
.pm-live-demand-inner {
  pointer-events: auto;
  display: grid; grid-template-columns: auto 1fr auto; gap: 0.65rem 0.75rem; align-items: start;
  padding: 0.75rem 0.85rem;
  background: rgba(8, 10, 18, 0.92);
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 212, 255, 0.08);
  backdrop-filter: blur(8px);
}
.pm-live-demand.is-urgent .pm-live-demand-inner {
  border-color: rgba(255, 80, 200, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 28px rgba(255, 80, 200, 0.12);
}
.pm-live-demand-pulse {
  width: 10px; height: 10px; border-radius: 50%; margin-top: 0.35rem;
  background: #00ff88;
  box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.55);
  animation: liveDemandPulse 2s ease-in-out infinite;
}
.pm-live-demand.is-urgent .pm-live-demand-pulse { background: #ff50c8; box-shadow: 0 0 0 0 rgba(255, 80, 200, 0.55); }
@keyframes liveDemandPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
}
.pm-live-demand-viewers { margin: 0; font-size: 0.82rem; font-weight: 700; color: #fff; }
.pm-live-demand-slots { margin: 0.15rem 0 0; font-size: 0.78rem; color: #00ff88; }
.pm-live-demand.is-urgent .pm-live-demand-slots { color: #ff9fd4; }
.pm-live-demand-note { margin: 0.2rem 0 0; font-size: 0.68rem; color: var(--text-soft); line-height: 1.35; }
.pm-live-demand-cta { align-self: center; white-space: nowrap; font-size: 0.72rem; padding: 0.35rem 0.65rem; }
.pm-live-demand-toast {
  position: fixed; left: 1rem; bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)); z-index: 8499;
  max-width: min(340px, calc(100vw - 2rem));
  padding: 0.55rem 0.75rem; font-size: 0.74rem; line-height: 1.4;
  color: #e8f4ff; background: rgba(12, 18, 32, 0.94);
  border: 1px solid rgba(140, 80, 255, 0.35);
  border-radius: 10px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.pm-live-demand-toast.is-visible { opacity: 1; transform: translateY(0); }
.pm-live-demand-form-hint {
  margin: 0.75rem auto 0; max-width: 36rem; font-size: 0.85rem;
  color: var(--cyan); font-weight: 600;
}
.pm-live-demand-form-hint.is-urgent { color: var(--magenta); }
html[data-a11y-reduce-motion="true"] .pm-live-demand-pulse { animation: none !important; }
@media (max-width: 720px) {
  .pm-live-demand { left: 0.65rem; bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px)); max-width: calc(100vw - 1.3rem); }
  .pm-live-demand-inner { grid-template-columns: auto 1fr; }
  .pm-live-demand-cta { grid-column: 1 / -1; justify-self: start; }
  .pm-live-demand-toast { bottom: calc(9.5rem + env(safe-area-inset-bottom, 0px)); }
}

.a11y-toggle {
  position: relative;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--bg-elevated); color: var(--cyan);
  border: 2px solid var(--cyan);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--glow-cyan);
  transition: transform 0.2s, box-shadow 0.2s;
}
.a11y-toggle:hover { transform: scale(1.05); box-shadow: var(--glow-intense); }
.a11y-toggle[aria-expanded="true"] {
  background: var(--gradient-btn); color: #fff; border-color: transparent;
}

.a11y-panel {
  position: fixed; z-index: 8490;
  width: min(380px, calc(100vw - 2rem)); max-height: min(78vh, 620px);
  background: var(--bg-elevated);
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  box-shadow: var(--glow-mixed);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.a11y-panel[hidden] { display: none !important; }

.a11y-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.1rem; border-bottom: 1px solid var(--border);
  background: rgba(0, 232, 255, 0.06);
}
.a11y-head h2 { font-size: 1rem; font-weight: 800; letter-spacing: 0.04em; }
.a11y-close {
  border: none; background: transparent; cursor: pointer;
  font-size: 1.5rem; line-height: 1; color: var(--text-soft); padding: 0.25rem;
  min-width: 44px; min-height: 44px;
}
.a11y-close:hover { color: var(--text); }

.a11y-body {
  padding: 1rem 1.1rem 1.25rem; overflow-y: auto; flex: 1;
}
.a11y-intro, .a11y-note {
  font-size: 0.82rem; color: var(--text-soft); margin-bottom: 1rem; line-height: 1.5;
}
.a11y-group { margin-bottom: 1.15rem; }
.a11y-group h3 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 0.55rem;
}
.a11y-btns { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.a11y-btns--wrap .a11y-opt { flex: 1 1 auto; min-width: calc(50% - 0.25rem); }
.a11y-opt {
  flex: 1; min-height: 44px; padding: 0.5rem 0.75rem;
  border: 1px solid var(--border); border-radius: 8px;
  background: rgba(255, 255, 255, 0.04); color: var(--text);
  font: inherit; font-size: 0.82rem; font-weight: 600; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.a11y-opt:hover { border-color: var(--cyan); background: rgba(0, 232, 255, 0.08); }
.a11y-opt.active {
  background: var(--gradient-btn); color: #fff; border-color: transparent;
}
.a11y-opt--primary { background: rgba(0, 232, 255, 0.12); border-color: var(--cyan); }

.a11y-toggles { display: flex; flex-direction: column; gap: 0.55rem; }
.a11y-check {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; cursor: pointer; min-height: 44px; padding: 0.35rem 0;
}
.a11y-check input {
  margin-top: 0.2rem; width: 20px; height: 20px;
  accent-color: var(--cyan); cursor: pointer; flex-shrink: 0;
}

.a11y-reset {
  width: 100%; min-height: 44px; margin-top: 0.5rem;
  border: 1px dashed var(--border-magenta); border-radius: 8px;
  background: transparent; color: var(--text-soft);
  font: inherit; font-size: 0.82rem; font-weight: 600; cursor: pointer;
}
.a11y-reset:hover { color: var(--magenta); border-color: var(--magenta); }

@media (max-width: 480px) {
  .a11y-panel { left: 1rem; right: 1rem; width: auto; }
  .chat-panel { width: calc(100vw - 2rem); right: 0; }
}

/* ── Premium tier: restrained neon · enterprise trust · $5K+ polish ── */
.site-header {
  background: rgba(6, 6, 12, 0.82);
  backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03);
}
.site-header::after { opacity: 0.35; }
.corp-bar {
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.18em;
}
.corp-bar em { text-shadow: none; }
.corp-bar strong { text-shadow: none; }
.nav-main a:hover { text-shadow: none; }

.btn {
  letter-spacing: 0.05em;
  transition: transform 0.25s var(--ease-out), box-shadow 0.3s var(--ease-out), filter 0.25s;
}
.btn-primary {
  box-shadow: var(--glow-mixed);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent 55%);
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift), 0 0 40px rgba(0, 212, 238, 0.12);
  filter: brightness(1.05);
}
.btn-outline:hover { box-shadow: var(--shadow-card); text-shadow: none; }

.hero {
  padding: clamp(4rem, 10vw, 6.5rem) 0 clamp(3rem, 6vw, 4rem);
  background: transparent;
}
.hero::before { opacity: 0.55; }
.hero-logo-wrap {
  padding: 0.5rem;
  background: linear-gradient(135deg, rgba(0, 212, 238, 0.25), rgba(232, 50, 138, 0.2));
  box-shadow: var(--shadow-card);
  border-radius: calc(var(--radius) + 2px);
}
.hero-logo-wrap::before { display: none; }
.hero-stat-card {
  padding: 1.5rem 1.65rem;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px) saturate(1.4);
}
.hero-stat-card .num { filter: none; }
.location-badge { text-shadow: none; color: var(--text-soft); }

.trust-bar {
  padding: 1.35rem 0;
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
}
.trust-bar-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.5rem;
}
@media (max-width: 900px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .trust-bar-grid { grid-template-columns: 1fr; }
}
.trust-bar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.5;
}
.trust-bar-icon {
  color: var(--cyan);
  font-size: 0.45rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.on-card, .q-card, .step-card, .service-card, .lib-card, .video-card, .stat-block, .testimonial {
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px) saturate(1.2);
}
.on-card.featured {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(0, 212, 238, 0.08);
}
.on-card.featured:hover,
.service-card:hover,
.q-card:hover,
.lib-card:hover,
.video-card:hover {
  box-shadow: var(--shadow-lift);
  border-color: var(--border-accent);
}
.service-card.featured {
  border-color: rgba(232, 50, 138, 0.35);
  box-shadow: var(--shadow-lift), inset 0 1px 0 rgba(232, 50, 138, 0.1);
}
.service-card:hover { box-shadow: var(--shadow-lift); }

.pattern-interrupt {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  padding: 1.25rem 1.65rem;
  font-size: 1.02rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  border: 1px solid var(--border-accent);
  border-left: 3px solid var(--magenta);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(232, 50, 138, 0.06), rgba(0, 212, 238, 0.04));
  box-shadow: var(--shadow-card);
  text-align: center;
}

.form-wrap {
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-lift);
  background: rgba(10, 10, 18, 0.85);
}
.form-wrap input, .form-wrap select, .form-wrap textarea {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.form-wrap input:focus, .form-wrap select:focus, .form-wrap textarea:focus {
  box-shadow: 0 0 0 3px rgba(0, 212, 238, 0.12);
}

.faq details {
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.faq details[open] {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lift);
}

.cta-band {
  padding: clamp(4.5rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, rgba(232, 50, 138, 0.08), rgba(0, 212, 238, 0.06));
}
.cta-band::before { opacity: 0.04; }

.site-footer {
  background: #040408;
  border-top: 1px solid var(--border);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.hero.reveal { transition-duration: 0.9s; }

.book-reassure li strong { color: var(--text); font-weight: 700; }
.investment-label { filter: none; }
.stat-block .val { filter: none; }

/* About page */
.nav-main .nav-active {
  color: var(--text);
  text-decoration: none;
  position: relative;
}
.nav-main .nav-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--gradient-neon);
  border-radius: 2px;
}
.about-hero { padding-bottom: clamp(3rem, 6vw, 4.5rem); }
.about-manifesto {
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-block: 1px solid var(--border-accent);
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0, 212, 238, 0.06), transparent 70%),
    rgba(255, 255, 255, 0.02);
}
.about-manifesto-inner {
  margin: 0 auto;
  max-width: 52rem;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.65rem, 4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-split {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 860px) {
  .about-split { grid-template-columns: 1fr 1.15fr; gap: 3rem; }
  .about-split--center { align-items: center; }
}
.about-prose { display: flex; flex-direction: column; gap: 1.25rem; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.35rem;
  margin-top: 2.5rem;
}
.about-value-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px) saturate(1.2);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}
.about-value-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lift);
}
.about-value-num {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}
.about-value-card h3 { font-size: 1.05rem; margin-bottom: 0.65rem; }
.about-value-card p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.6; }
.about-miami {
  background:
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(232, 50, 138, 0.06), transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 80%, rgba(0, 212, 238, 0.05), transparent 55%);
}
.about-stats { margin-top: 0; }
.referral-banner {
  background: linear-gradient(90deg, rgba(0, 212, 238, 0.12), rgba(232, 50, 138, 0.1));
  border-bottom: 1px solid var(--border-accent);
  padding: 0.65rem 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
}
.referral-banner p { margin: 0; color: var(--text); }

/* Tier ladder */
.tier-ladder {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 0.55rem;
  margin: 2.5rem auto 1.75rem;
  max-width: 1100px;
  padding: 0;
}
@media (max-width: 900px) {
  .tier-ladder { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 520px) {
  .tier-ladder { grid-template-columns: repeat(4, 1fr); }
}
.tier-rung {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s var(--ease-out), border-color 0.2s, box-shadow 0.2s;
}
.tier-rung:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lift);
}
.tier-rung--peak {
  border-color: rgba(232, 50, 138, 0.35);
  background: linear-gradient(180deg, rgba(232, 50, 138, 0.08), rgba(0, 212, 238, 0.06));
}
.tier-rung-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.tier-rung-num {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tier-ladder-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 1.75rem;
}
@media (max-width: 640px) {
  .tier-ladder-extra { grid-template-columns: 1fr; }
}
.tier-extra-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.tier-extra-card h3 {
  font-size: 1rem;
  margin-bottom: 0.55rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tier-extra-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; }
.tier-extra-card--alacarte { border-color: var(--border-magenta); }
.tier-ladder-note {
  max-width: 42rem;
  margin-inline: auto;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.65;
}
.invest-pillars + .legal-note { margin-top: 1.25rem; }
.about-value-card.reveal,
.about-manifesto.reveal { transition-duration: 0.85s; }

/* Affiliate partner program */
.aff-steps { margin-top: 2.5rem; }
.aff-perks {
  max-width: 720px;
  margin: 2.75rem auto 0;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  box-shadow: var(--glow-cyan);
}
.aff-perks h3 { margin-bottom: 1rem; }
.aff-perk-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.aff-perk-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.aff-perk-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.65rem;
  top: 0.35rem;
}
.aff-link-box {
  max-width: 640px;
  margin: 2.5rem auto 0;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(0, 212, 238, 0.04);
  border: 1px solid var(--border-accent);
  text-align: left;
}
.aff-link-box h3 { margin-bottom: 0.5rem; }
.aff-link-box label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 1rem 0 0.35rem;
}
.aff-link-box input[type="text"] {
  width: 100%;
  min-height: var(--touch);
  padding: 0 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
}
.aff-link-box input:focus {
  border-color: var(--cyan);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
}
.aff-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.aff-link-row input { flex: 1 1 220px; margin: 0; }
.aff-link-row .btn { flex: 0 0 auto; min-height: var(--touch); }
.aff-apply { margin-top: 2.75rem; }
.aff-apply h3 { margin-bottom: 0.75rem; }
.aff-form { margin-top: 1.5rem; }
.aff-disclaimer { max-width: 42rem; margin: 2rem auto 0; }

/* Floating transparent 3D ambient — pointer-events only on the orb itself */
.pm-float-3d {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.pm-float-3d-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(96px, 12vw, 148px);
  height: clamp(96px, 12vw, 148px);
  pointer-events: auto;
  cursor: grab;
  opacity: 0.38;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 28px rgba(0, 212, 238, 0.28));
  transition: opacity 0.25s;
  will-change: transform;
}
.pm-float-3d-inner:hover { opacity: 0.52; }
.pm-float-3d-inner.is-dragging {
  cursor: grabbing;
  opacity: 0.58;
}
.pm-float-3d-inner canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
html[data-a11y-reduce-motion="true"] .pm-float-3d,
html[data-a11y-contrast="true"] .pm-float-3d { display: none; }
@media (max-width: 640px) {
  .pm-float-3d-inner {
    width: 88px;
    height: 88px;
    opacity: 0.28;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pm-float-3d { display: none; }
}
