:root {
  --bg: #0b0b0b;
  --surface: #1a1a1a;
  --border: #2a2a2a;
  --text: #ffffff;
  --muted: #9a9a9a;
  --dim: #666666;
  --accent: #00ff85;
  --warning: #ff9f43;
  --max: 1080px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 34px;
  width: auto;
  max-width: min(168px, 42vw);
}

.logo-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: contain;
}

.hm-brand-icon {
  border-radius: 6px;
  object-fit: contain;
}

.logo-text {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  padding: 72px 0 48px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}

.lead {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 42ch;
  margin: 0 0 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #04140c;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-discord {
  background: #5865f2;
  color: #fff;
}

.hero-card {
  background: linear-gradient(160deg, rgba(0, 255, 133, 0.12), rgba(26, 26, 26, 0.9));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.stat:last-child {
  border-bottom: 0;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.stat span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.section {
  padding: 56px 0;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.section p.sub {
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 60ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

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

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  max-width: 640px;
}

.panel h1 {
  font-size: 2rem;
}

.legal-doc {
  max-width: 720px;
}

.legal-meta {
  margin-bottom: 20px;
}

.legal-section {
  margin-top: 28px;
}

.legal-section h2 {
  font-size: 1.15rem;
  margin: 0 0 10px;
}

.legal-section p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.55;
  white-space: pre-wrap;
}

.form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

input,
textarea,
select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.hint {
  color: var(--dim);
  font-size: 0.85rem;
  font-weight: 600;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  display: none;
}

.status.ok {
  display: block;
  background: rgba(0, 255, 133, 0.12);
  color: var(--accent);
  border: 1px solid rgba(0, 255, 133, 0.35);
}

.status.err {
  display: block;
  background: rgba(255, 92, 92, 0.12);
  color: #ff8f8f;
  border: 1px solid rgba(255, 92, 92, 0.35);
}

.discord-box {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
  color: var(--dim);
  font-size: 0.9rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ── Sales page ── */

.sales-hero {
  padding-top: 56px;
}

.hero-proof {
  margin: 20px 0 0;
  color: var(--dim);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.trust-bar-section {
  padding: 0 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 860px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
}

.trust-metric-value {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.trust-metric-label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.trust-metric-detail {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--dim);
}

.trust-bar-note {
  margin: 12px 0 0;
  text-align: center;
  color: var(--dim);
  font-size: 0.75rem;
  font-weight: 600;
}

.testimonials-section {
  padding-top: 48px;
}

.testimonials-header {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

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

.testimonials-rating-card {
  background: linear-gradient(160deg, rgba(0, 255, 133, 0.12), rgba(26, 26, 26, 0.95));
  border: 1px solid rgba(0, 255, 133, 0.28);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.testimonials-rating-score {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--accent);
  line-height: 1;
}

.testimonials-rating-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.stars {
  color: #ffc857;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.stars-lg {
  font-size: 1.1rem;
  margin: 8px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 760px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-weeks {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
}

.testimonial-quote {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 500;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(0, 255, 133, 0.22), rgba(26, 26, 26, 0.9));
  border: 1px solid rgba(0, 255, 133, 0.28);
  color: var(--accent);
  font-weight: 900;
  font-size: 0.82rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-size: 0.92rem;
}

.testimonial-role {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.testimonial-outcome {
  align-self: flex-start;
  background: rgba(0, 255, 133, 0.1);
  border: 1px solid rgba(0, 255, 133, 0.22);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border-radius: 999px;
}

.testimonials-disclaimer {
  margin: 16px 0 0;
  color: var(--dim);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.phone-mock {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.55));
}

.phone-mock::before {
  content: '';
  position: absolute;
  inset: 12% 8% auto;
  height: 55%;
  background: radial-gradient(circle at 50% 40%, rgba(124, 255, 203, 0.22), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.phone-bezel {
  position: relative;
  z-index: 1;
  background: linear-gradient(165deg, #2a2a2a 0%, #111 42%, #0a0a0a 100%);
  border: 1px solid #3a3a3a;
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(0, 255, 133, 0.06);
}

.phone-island {
  width: 96px;
  height: 26px;
  border-radius: 999px;
  background: #000;
  margin: 4px auto 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.phone-screen {
  background: #0b0b0b;
  border-radius: 28px;
  padding: 10px 12px 14px;
  border: 1px solid #1f1f1f;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.hm-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 8px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hm-status-icons {
  display: inline-flex;
  gap: 3px;
  align-items: flex-end;
}

.hm-status-icons span {
  display: block;
  background: #fff;
  border-radius: 1px;
}

.hm-status-icons span:nth-child(1) {
  width: 14px;
  height: 4px;
  opacity: 0.9;
}

.hm-status-icons span:nth-child(2) {
  width: 10px;
  height: 6px;
  opacity: 0.75;
}

.hm-status-icons span:nth-child(3) {
  width: 16px;
  height: 7px;
  border-radius: 2px;
}

.hm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hm-brand {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hm-brand-icon {
  border-radius: 6px;
}

.hm-brand-name {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hm-streak {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.72rem;
  font-weight: 900;
  color: #ff6b35;
}

.hm-streak-flame {
  font-size: 0.7rem;
  line-height: 1;
}

.hm-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  margin-bottom: 10px;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
}

.hm-tab {
  text-align: center;
  padding: 7px 0;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #666;
}

.hm-tab-on {
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hm-plate-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 16px;
  background: rgba(124, 255, 203, 0.05);
  border: 1px solid rgba(124, 255, 203, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hm-plate-copy {
  flex: 1;
  min-width: 0;
}

.hm-plate-tag {
  color: #7cffcb;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hm-plate-headline {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 4px;
}

.hm-plate-insight {
  color: #9a9a9a;
  font-size: 0.68rem;
  line-height: 1.4;
}

.hm-ring-wrap {
  position: relative;
  width: 78px;
  height: 88px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.hm-ring-glow {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #7cffcb;
  opacity: 0.16;
  filter: blur(8px);
  top: 2px;
}

.hm-ring {
  width: 78px;
  height: 78px;
  transform: rotate(-90deg);
}

.hm-ring-track,
.hm-ring-progress {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
}

.hm-ring-track {
  stroke: #2a2a2a;
}

.hm-ring-progress {
  stroke: #7cffcb;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 45.2;
}

.hm-ring-score {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.35rem;
  font-weight: 900;
  color: #7cffcb;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hm-ring-label {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.hm-challenge-card {
  background: #1a1a1a;
  border: 1px solid #ff9f43;
  border-radius: 14px;
  padding: 11px;
  margin-bottom: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.hm-challenge-top {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.hm-challenge-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #141414;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.hm-challenge-copy {
  flex: 1;
  min-width: 0;
}

.hm-challenge-tag {
  color: #00ff85;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hm-challenge-title {
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 2px;
}

.hm-challenge-sub {
  color: #9a9a9a;
  font-size: 0.62rem;
  line-height: 1.35;
}

.hm-challenge-pct {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 3px 7px;
  font-size: 0.62rem;
  font-weight: 900;
  flex-shrink: 0;
}

.hm-progress-track {
  height: 7px;
  border-radius: 999px;
  background: #141414;
  overflow: hidden;
  margin-top: 10px;
}

.hm-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #00ff85, #7cffcb);
  box-shadow: 0 0 12px rgba(0, 255, 133, 0.35);
}

.hm-progress-label {
  margin-top: 6px;
  color: #666;
  font-size: 0.62rem;
  font-weight: 700;
}

.hm-fix-card {
  background: #1a1a1a;
  border: 1px solid rgba(0, 255, 133, 0.18);
  border-radius: 14px;
  padding: 11px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.hm-fix-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.hm-fix-spark {
  color: #00ff85;
  font-size: 0.75rem;
}

.hm-fix-tag {
  color: #00ff85;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hm-fix-summary {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.hm-fix-body {
  margin: 0 0 8px;
  color: #9a9a9a;
  font-size: 0.66rem;
  line-height: 1.45;
}

.hm-fix-action {
  background: #141414;
  border-radius: 9px;
  padding: 8px;
  margin-bottom: 8px;
}

.hm-fix-action-label {
  color: #666;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hm-fix-action-text {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
}

.hm-fix-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.hm-fix-chip {
  background: #141414;
  color: #9a9a9a;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}

.pain-section .pain-card h3 {
  font-size: 1rem;
  line-height: 1.35;
}

.loop {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.loop li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.loop-num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(0, 255, 133, 0.12);
  color: var(--accent);
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.loop strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.loop p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-icon {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 900;
}

.illustration-frame {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(0, 255, 133, 0.05), rgba(26, 26, 26, 0.96));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 32px);
}

.illustration-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.illustration-safe img {
  object-fit: contain;
  object-position: center center;
  max-height: min(420px, 52vh);
}

.illustration-frame-mission.illustration-safe img,
.illustration-frame-quiz.illustration-safe img {
  max-height: min(420px, 50vh);
}

.illustration-frame-quiz.illustration-safe {
  padding: clamp(28px, 5vw, 44px);
}

.illustration-frame-loop.illustration-safe img,
.illustration-frame-identity.illustration-safe img {
  max-height: min(380px, 48vh);
}

.illustration-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

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

  .illustration-split .illustration-frame {
    order: -1;
  }
}

.illustration-split-copy .sub:last-child {
  margin-bottom: 0;
}

.illustration-frame-mission {
  border-color: rgba(0, 255, 133, 0.2);
}

.illustration-frame-loop {
  margin-bottom: 24px;
  border-color: rgba(0, 255, 133, 0.18);
}

.card-illustration {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0 0 14px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.2);
}

.card-illustration-sm {
  max-width: 72px;
  margin-bottom: 12px;
}

.pain-card .card-illustration {
  max-width: 120px;
}

.identity-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: center;
}

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

  .identity-layout .illustration-frame {
    order: -1;
  }
}

.identity-copy .sub {
  margin-bottom: 0;
}

.identity-card h2 {
  margin-top: 0;
}

.identity-section {
  padding-top: 24px;
}

.quiz-section {
  padding-top: 32px;
}

.quiz-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

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

  .quiz-layout .illustration-frame {
    display: none;
  }
}

.illustration-frame-quiz {
  position: sticky;
  top: 24px;
  border-color: rgba(0, 255, 133, 0.18);
}

.mission-section {
  padding-top: 16px;
  padding-bottom: 8px;
}

.text-accent {
  color: var(--accent);
}

.mission-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

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

.mission-copy {
  background: linear-gradient(155deg, rgba(0, 255, 133, 0.06), rgba(26, 26, 26, 0.4));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
}

.mission-title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.mission-statement {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--text);
}

.mission-body {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.mission-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mission-counter-card {
  background: linear-gradient(160deg, rgba(0, 255, 133, 0.16), rgba(26, 26, 26, 0.95));
  border: 1px solid rgba(0, 255, 133, 0.28);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
}

.mission-counter-num {
  display: block;
  font-size: clamp(2.8rem, 8vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--accent);
}

.mission-counter-label {
  margin: 10px 0 6px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.mission-counter-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.mission-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.mission-pillars li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
}

.mission-pillar-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(0, 255, 133, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
}

.mission-pillars strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.mission-pillars p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.expert-endorsement {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(0, 255, 133, 0.22);
  background: linear-gradient(135deg, rgba(0, 255, 133, 0.05), rgba(26, 26, 26, 0.92));
}

@media (max-width: 760px) {
  .expert-endorsement {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.expert-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
  max-width: 280px;
}

@media (max-width: 760px) {
  .expert-photo-wrap {
    margin: 0 auto;
  }
}

.expert-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.expert-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(0, 255, 133, 0.35);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.expert-quote {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--text);
}

.expert-cite {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.expert-cite strong {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.expert-cite span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.expert-note {
  margin: 0;
  color: var(--dim);
  font-size: 0.78rem;
  line-height: 1.5;
}

.identity-card {
  background: linear-gradient(145deg, rgba(0, 255, 133, 0.1), rgba(26, 26, 26, 0.95));
  border: 1px solid rgba(0, 255, 133, 0.25);
  border-radius: 24px;
  padding: 40px 32px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.badge-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
}

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

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
}

.price-card-featured {
  border-color: rgba(0, 255, 133, 0.45);
  box-shadow: 0 0 40px rgba(0, 255, 133, 0.08);
}

.price-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #04140c;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-proof {
  margin: 18px 0 0;
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.price {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}

.price-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.price-list li {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding-left: 18px;
  position: relative;
}

.price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.cta-final {
  padding-bottom: 72px;
}

.cta-final-card {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 24px;
}

.cta-final-card h2 {
  margin: 0 0 10px;
}

.cta-final-card p {
  color: var(--muted);
  margin: 0 0 24px;
}

.cta-final-card .cta-row {
  justify-content: center;
}

@media (max-width: 860px) {
  .nav a[href='#how'],
  .nav a[href='#features'],
  .nav a[href='#pricing'] {
    display: none;
  }
}

.waitlist-card {
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}

.waitlist-card .eyebrow,
.waitlist-card h2,
.waitlist-card > p {
  text-align: center;
}

.waitlist-form {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.waitlist-fields {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .waitlist-fields {
    grid-template-columns: 1fr;
  }
}

.waitlist-form .btn {
  width: 100%;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.dash-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.dash-stat strong {
  display: block;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.dash-stat span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.dash-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.dash-table th,
.dash-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.dash-table th {
  color: var(--dim);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dash-table tr:last-child td {
  border-bottom: 0;
}

.dash-table td {
  color: var(--text);
  font-weight: 600;
}

/* ── Investor data room ── */

.dataroom-body .wrap {
  max-width: 1200px;
}

.dataroom-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 32px 0 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .dataroom-layout {
    grid-template-columns: 1fr;
  }

  .dataroom-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  .dataroom-nav-title {
    width: 100%;
  }
}

.dataroom-nav {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dataroom-nav-title {
  color: var(--dim);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.dataroom-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
}

.dataroom-nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

.dataroom-main {
  min-width: 0;
}

.dataroom-hero {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.dataroom-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.dataroom-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.dataroom-kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.dataroom-kpi strong {
  display: block;
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.dataroom-kpi span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.dataroom-section {
  margin-bottom: 56px;
  scroll-margin-top: 24px;
}

.dataroom-section h2 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.dataroom-section h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

.dataroom-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

@media (max-width: 700px) {
  .dataroom-grid-2 {
    grid-template-columns: 1fr;
  }
}

.dataroom-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.92rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.dataroom-table th,
.dataroom-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.dataroom-table tr:last-child th,
.dataroom-table tr:last-child td {
  border-bottom: 0;
}

.dataroom-table th {
  color: var(--muted);
  font-weight: 800;
  width: 28%;
  background: rgba(0, 0, 0, 0.2);
}

.dataroom-table thead th {
  width: auto;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dataroom-table code {
  font-size: 0.85em;
  color: var(--accent);
}

.dataroom-list {
  margin: 12px 0;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.dataroom-list li {
  margin-bottom: 8px;
}

.dataroom-diagram {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  overflow-x: auto;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--accent);
  margin: 16px 0;
}

.dataroom-disclaimer {
  color: var(--dim);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 24px;
  padding: 16px;
  border-left: 3px solid var(--border);
}

.dataroom-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--dim);
  font-size: 0.85rem;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 0.85rem;
}

/* —— Before / after transformations —— */
.transformations-section {
  padding-top: 56px;
}

.transformations-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.transformations-intro h2 {
  margin-bottom: 12px;
}

.transformations-intro .sub {
  margin: 0 auto;
}

.ba-showcase {
  outline: none;
  background: linear-gradient(155deg, rgba(0, 255, 133, 0.05), rgba(20, 20, 20, 0.6));
  border: 1px solid rgba(0, 255, 133, 0.14);
  border-radius: 28px;
  padding: clamp(16px, 3vw, 28px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.ba-showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}

@media (max-width: 900px) {
  .ba-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.ba-showcase-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.ba-showcase-frame {
  position: relative;
  border-radius: 22px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(0, 255, 133, 0.35), rgba(0, 255, 133, 0.05) 40%, rgba(42, 42, 42, 0.8));
}

.ba-showcase-stage {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #080808;
}

.ba-showcase-nav {
  position: absolute;
  inset: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
  z-index: 5;
}

.ba-nav-btn {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 133, 0.4);
  background: rgba(8, 8, 8, 0.78);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.ba-nav-btn:hover {
  background: rgba(0, 255, 133, 0.18);
  border-color: var(--accent);
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(0, 255, 133, 0.25);
}

.ba-thumb-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.ba-thumb-strip::-webkit-scrollbar {
  display: none;
}

.ba-thumb {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.ba-thumb img {
  display: block;
  width: 72px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  background: #111;
}

.ba-thumb-name {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--dim);
  letter-spacing: 0.02em;
}

.ba-thumb.on {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.ba-thumb.on .ba-thumb-name {
  color: var(--accent);
}

.ba-showcase-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(11, 11, 11, 0.85);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px 22px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ba-showcase-panel.ba-panel-out {
  opacity: 0;
  transform: translateX(12px);
}

.ba-panel-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ba-story-index {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.ba-progress {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ba-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #7cffcb);
  border-radius: inherit;
  transition: width 0.1s linear;
}

.ba-featured-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ba-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(0, 255, 133, 0.22), rgba(26, 26, 26, 0.95));
  border: 1px solid rgba(0, 255, 133, 0.3);
  color: var(--accent);
  font-weight: 900;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.ba-meta-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ba-story-name {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.ba-story-detail {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.ba-carousel-caption {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: -0.01em;
}

.ba-story-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ba-story-badge {
  background: rgba(0, 255, 133, 0.08);
  border: 1px solid rgba(0, 255, 133, 0.22);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
}

.ba-panel-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.ba-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 700px) {
  .ba-stats-row {
    grid-template-columns: 1fr;
  }
}

.transformations-stat {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: center;
}

.transformations-stat-soft {
  border-color: rgba(0, 255, 133, 0.15);
}

.transformations-stat strong {
  display: block;
  font-size: 1.75rem;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.transformations-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ba-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ba-stage.ba-stage-out {
  opacity: 0;
  transform: scale(0.98);
}

.ba-stage.ba-stage-in {
  animation: ba-stage-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes ba-stage-in {
  from {
    opacity: 0.5;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ba-frame {
  position: absolute;
  inset: 0;
}

.ba-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
  background: #080808;
}

.ba-photo-before {
  z-index: 2;
}

.ba-photo-after {
  z-index: 1;
}

.ba-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  z-index: 4;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0, 255, 133, 0.5);
}

.ba-stage.ba-dragging .ba-divider,
.ba-stage.ba-revealing .ba-divider {
  box-shadow: 0 0 32px rgba(0, 255, 133, 0.7);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.55), 0 0 0 4px rgba(0, 255, 133, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ba-stage.ba-dragging .ba-handle {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.6), 0 0 0 6px rgba(0, 255, 133, 0.3);
}

.ba-handle span {
  display: none;
}

.ba-scanline {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    105deg,
    transparent 48%,
    rgba(0, 255, 133, 0.1) 49.5%,
    rgba(0, 255, 133, 0.28) 50%,
    rgba(0, 255, 133, 0.1) 50.5%,
    transparent 52%
  );
  transform: translateX(-120%);
}

.ba-stage.ba-revealing .ba-scanline {
  animation: ba-scan 3s ease-in-out infinite;
}

@keyframes ba-scan {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

.ba-labels {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}

.ba-label {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.ba-label-before {
  background: rgba(0, 0, 0, 0.7);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ba-label-after {
  background: var(--accent);
  color: #04140c;
}

.ba-hint {
  text-align: center;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 600;
  margin: 0;
}

.ba-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ba-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.ba-dot.on {
  width: 28px;
  background: var(--accent);
}

.transformations-disclaimer {
  text-align: center;
  color: var(--dim);
  font-size: 0.75rem;
  line-height: 1.5;
  max-width: 62ch;
  margin: 0 auto 20px;
}

.transformations-cta {
  text-align: center;
}

@media (max-width: 860px) {
  .transformations-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .transformations-stats {
    width: 100%;
  }

  .transformations-stat {
    flex: 1;
    min-width: 0;
  }
}

.ba-carousel-caption {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 auto 14px;
  max-width: 48ch;
  min-height: 2.8em;
  line-height: 1.5;
}

.ba-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.ba-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.ba-dot.on {
  width: 24px;
  background: var(--accent);
}

@media (max-width: 860px) {
  .ba-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }
}

@media print {
  .site-header,
  .dataroom-nav,
  .dataroom-footer .btn,
  #btn-logout {
    display: none !important;
  }

  .dataroom-layout {
    display: block;
  }

  .dataroom-section {
    break-inside: avoid;
  }
}
