/* LVLUP Agents AI — www.lvlup.network surfaces + ORION purple product accent */
:root {
  /* Main site (lvlup-homepage / lvlup-global) */
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #16161e;
  --card: #16161e;
  /* ORION */
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-bright: #c4b5fd;
  --purple-dim: rgba(124, 58, 237, 0.18);
  --purple-glow: rgba(124, 58, 237, 0.35);
  --orion-mid: #8b5cf6;
  /* Links: violet on dark (ORION-leaning, same contrast role as #00D4FF on main site) */
  --link: #c4b5fd;
  --link-hover: #e9d5ff;
  /* Semantic */
  --blue: #2563eb;
  --live: #22c55e;
  --white: #ffffff;
  --text-secondary: #8888a0;
  --mid: #8888a0;
  --muted: #5c5c6b;
  --border: rgba(255, 255, 255, 0.06);
  --max: 1140px;
  --radius: 10px;
  --radius-sm: 6px;
  --nav-h: 70px;
}

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

html { scroll-behavior: smooth; }
body.ai-lvlup-site [id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; text-underline-offset: 3px; }

/* Nav — matches www.lvlup.network (Barlow / uppercase / 70px) + ORION CTA */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--nav-h);
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  display: flex;
  align-items: center;
}
.site-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  min-height: var(--nav-h);
}
.brand-lockup { display: flex; flex-direction: column; gap: 2px; text-decoration: none !important; }
.brand-lockup:hover { text-decoration: none; }
.brand-kicker {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #44445a;
}
.brand-title {
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.brand-title span { color: var(--purple-bright); }
.brand-sub {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px 14px;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  font-family: "Barlow", system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none;
}
/* Purple slash (visual) before text links; skip CTA button */
.nav-links a:not(.btn-nav)::before {
  content: "/";
  color: var(--purple) !important;
  font-weight: 800;
  margin-right: 0.4em;
  text-transform: none;
  display: inline-block;
  font-size: 0.9em;
  line-height: 0;
  vertical-align: 0.08em;
  opacity: 0.95;
  letter-spacing: 0.05em;
}
.nav-links a:not(.btn-nav):hover::before {
  color: var(--purple-bright) !important;
  opacity: 1;
}
.nav-links a:hover { color: #fff !important; }
.nav-links a.nav-link-domain {
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 11.5px;
  font-weight: 600;
}
/* Featured story link — first in nav, CLEANai / environmental angle */
.nav-links a.nav-link-cleanai {
  text-transform: none;
  letter-spacing: 0.1em;
  font-size: 12.5px;
  font-weight: 800;
  color: #b8f0d8 !important;
  padding: 6px 12px;
  margin: 0 2px 0 0;
  border-radius: 6px;
  border: 1px solid rgba(52, 211, 153, 0.4);
  background: linear-gradient(180deg, rgba(6, 78, 59, 0.4) 0%, rgba(4, 20, 24, 0.5) 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}
.nav-links a.nav-link-cleanai::before {
  content: none;
  display: none;
}
.nav-links a.nav-link-cleanai:hover {
  color: #ecfdf5 !important;
  border-color: rgba(16, 185, 129, 0.65);
  background: linear-gradient(180deg, rgba(6, 95, 70, 0.55) 0%, rgba(4, 24, 30, 0.65) 100%);
}
.nav-links a.nav-link-cleanai[aria-current="page"] {
  border-color: rgba(110, 231, 183, 0.6);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.12);
}
.btn-nav {
  display: inline-block;
  padding: 9px 18px;
  /* Same pattern as main site nav CTA (#00D4FF + #0A0A0F): violet + dark text */
  background: var(--purple-light) !important;
  color: #0a0a0f !important;
  font-family: "Barlow", system-ui, sans-serif;
  font-weight: 800 !important;
  font-size: 12px;
  letter-spacing: 0.06em;
  border-radius: 5px;
  text-decoration: none !important;
  box-shadow: 0 4px 20px var(--purple-glow);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.btn-nav:hover {
  background: var(--purple-bright) !important;
  color: #0a0a0f !important;
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* Mobile menu toggle (index only — pages without .nav-toggle keep horizontal nav) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 2px;
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.nav-toggle-bars > span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.88);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-nav.is-open .nav-toggle-bars > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav.is-open .nav-toggle-bars > span:nth-child(2) {
  opacity: 0;
}
.site-nav.is-open .nav-toggle-bars > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 899px) {
  .site-nav-inner {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .site-nav:has(.nav-toggle) .nav-toggle {
    display: inline-flex;
  }
  .site-nav:has(.nav-toggle) .site-nav-menu {
    flex: 1 0 100%;
    order: 3;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    border-top: 1px solid transparent;
    transition: max-height 0.35s ease, opacity 0.2s ease, padding 0.2s ease, border-color 0.2s ease;
  }
  .site-nav:has(.nav-toggle).is-open .site-nav-menu {
    max-height: min(75vh, 28rem);
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
    padding: 12px 0 8px;
    margin-top: 4px;
    border-top-color: var(--border);
    -webkit-overflow-scrolling: touch;
  }
  .site-nav:has(.nav-toggle) .site-nav-menu .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .site-nav:has(.nav-toggle) .site-nav-menu .nav-links li {
    border-bottom: 1px solid var(--border);
  }
  .site-nav:has(.nav-toggle) .site-nav-menu .nav-links li:last-child {
    border-bottom: 0;
  }
  .site-nav:has(.nav-toggle) .site-nav-menu .nav-links a {
    display: block;
    padding: 14px 2px;
  }
  .site-nav:has(.nav-toggle) .site-nav-menu .nav-links a.btn-nav {
    text-align: center;
    padding: 12px 18px;
    margin: 4px 0 0;
  }
  .site-nav:has(.nav-toggle) .site-nav-menu .nav-links a.nav-link-cleanai {
    padding: 12px 14px;
    margin: 6px 0 2px 0;
  }
}

@media (max-width: 899px) and (prefers-reduced-motion: reduce) {
  .site-nav:has(.nav-toggle) .site-nav-menu {
    transition: none;
  }
  .nav-toggle-bars > span {
    transition: none;
  }
}

/* Status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--mid);
  font-family: ui-monospace, monospace;
  margin-top: 8px;
}
.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 10px var(--live);
}

/* Hero — LVLUP layout + ORION wordmark (was cyan; now violet) */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) 24px 4rem;
  position: relative;
  background: var(--bg);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 28% 0%, rgba(124, 58, 237, 0.12), transparent 50%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero-inner { max-width: var(--max); margin: 0 auto; width: 100%; }
.hero-inner--headline { max-width: 720px; }
.hero-showcase { margin-top: 56px; max-width: var(--max); }

/* Two-column hero: copy + CTAs left, ORION mock right (stacks on small viewports) */
.hero-split {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.hero-split .hero-inner {
  max-width: none;
  width: 100%;
}
/* Keep headline + mock centered as a column on narrow screens */
@media (max-width: 959px) {
  .hero-split .hero-inner {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 960px) {
  .hero-split .hero-inner {
    margin: 0;
  }
  .hero-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    align-items: center;
    column-gap: clamp(1.5rem, 3.5vw, 3.5rem);
    row-gap: 2rem;
  }
  .hero-split .hero-inner--headline {
    max-width: none;
  }
  .hero-split .orion-mock {
    max-width: none;
    width: 100%;
    margin: 0;
  }
  .hero-split h1 {
    font-size: clamp(2.15rem, 2.2vw + 1.4rem, 3.4rem);
  }
}
@media (min-width: 1200px) {
  .hero-split {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.3fr);
    column-gap: 3.5rem;
  }
}

.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
}
.eyebrow-orion {
  color: var(--purple-light);
  letter-spacing: 0.2em;
  font-size: 12px;
  text-shadow: 0 0 32px var(--purple-glow);
}

h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 7.5vw, 4.25rem);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
/* ORION: CLEAN (white) + AI. (violet) + LVLUP. (hollow) */
.hero-h1-legacy .h1-solid { color: #fff; }
.hero-h1-legacy .h1-orion { color: var(--purple-bright); }
.hero-h1-legacy .h1-lvlup-outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
  color: transparent;
  text-shadow: none;
}
/* Trademark: small superscript; skip hollow stroke so it doesn’t match display cap height */
.hero-h1-legacy .h1-lvlup-outline .h1-tm {
  font-size: 0.34em;
  font-weight: 800;
  vertical-align: super;
  line-height: 0;
  margin-left: 0.06em;
  position: relative;
  top: -0.12em;
  -webkit-text-stroke: 0;
  color: rgba(255, 255, 255, 0.9);
}
@supports not (-webkit-text-stroke: 1px) {
  .hero-h1-legacy .h1-lvlup-outline { color: rgba(255, 255, 255, 0.2); -webkit-text-stroke: 0; }
  .hero-h1-legacy .h1-lvlup-outline .h1-tm { color: rgba(255, 255, 255, 0.75); }
}
.hero-h1-legacy .hero-line2 { display: inline-block; margin-top: 0.04em; }

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  color: var(--mid);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.lead strong { color: var(--white); }

.tech-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  /* Match main site primary: bright accent, dark label */
  background: var(--purple-light);
  color: #0a0a0f !important;
  font-weight: 800;
  font-size: 15px;
  font-family: "Barlow", system-ui, sans-serif;
  border-radius: 5px;
  text-decoration: none !important;
  box-shadow: 0 4px 24px var(--purple-glow);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary:hover {
  background: var(--purple-bright);
  transform: translateY(-1px);
  text-decoration: none !important;
}
.btn-blue {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(124, 58, 237, 0.55);
  box-shadow: none;
}
.btn-blue:hover {
  background: rgba(124, 58, 237, 0.12);
  border-color: var(--purple-light);
  filter: none;
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  padding: 14px 24px;
  background: transparent;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 15px;
  font-family: "Barlow", system-ui, sans-serif;
  border-radius: 5px;
  border: 1px solid var(--border);
  text-decoration: none !important;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: rgba(124, 58, 237, 0.45); color: #fff !important; background: rgba(124, 58, 237, 0.06); }

/* Hero mock — browser chrome */
.app-chrome {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 1px var(--purple-glow);
}
.app-chrome-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #0e0e12;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
}
.app-dots { display: flex; gap: 6px; }
.app-dots span { width: 10px; height: 10px; border-radius: 50%; background: #3f3f46; }
.app-dots span:nth-child(1) { background: #ef4444; opacity: 0.85; }
.app-dots span:nth-child(2) { background: #eab308; opacity: 0.85; }
.app-dots span:nth-child(3) { background: #22c55e; opacity: 0.85; }
.app-chrome-title { text-align: center; flex: 1; }
.app-chrome-body { padding: 16px; }
.agent-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.agent-pill {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--mid);
  font-weight: 500;
  white-space: nowrap;
}
.agent-pill.live { border-color: rgba(34, 197, 94, 0.4); color: #86efac; }
.agent-pill.live::before {
  content: "●";
  color: var(--live);
  margin-right: 4px;
  font-size: 7px;
  vertical-align: middle;
}
.app-preview-copy {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  padding: 8px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.app-preview-copy strong { color: var(--white); font-weight: 600; }

/* Sections */
section { padding: 80px 24px; }
.section-inner { max-width: var(--max); margin: 0 auto; }

.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}

h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: 0.03em;
}
h2 .accent { color: var(--purple-bright); }
h2 .purp { color: var(--purple); }

.section-headline h2 { margin-bottom: 6px; }
.section-subhead {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.78rem, 1.55vw, 0.92rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin: 0 0 16px 0;
  line-height: 1.35;
  max-width: 46em;
}
.section-subhead .purp { color: var(--purple); }

.section-lead {
  color: var(--mid);
  max-width: 700px;
  margin-bottom: 36px;
  font-size: 1.04rem;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: rgba(124, 58, 237, 0.35); }
.card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 800;
}
.card .sub {
  display: block;
  font-size: 12px;
  color: var(--purple);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
}
.card p { color: var(--mid); font-size: 14px; line-height: 1.65; }

.bg-dim { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Platform feature grid (matches ORION nav) */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.plat-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px;
}
.plat-item strong { display: block; color: var(--white); font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.plat-item span { font-size: 11px; color: var(--muted); line-height: 1.4; }
@media (min-width: 720px) {
  .platform-grid--compact { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .platform-grid--compact { grid-template-columns: repeat(3, 1fr); }
}

/* CTA */
.cta-band {
  text-align: center;
  padding: 88px 24px;
  background: linear-gradient(180deg, var(--purple-dim) 0%, transparent 55%),
    var(--bg);
  border-top: 1px solid var(--border);
}
.cta-band p { color: var(--mid); max-width: 560px; margin: 0 auto 24px; }
.hero-ctas--center { justify-content: center; }
.cta-band .hero-ctas { margin-top: 8px; }

/* Footer */
.site-footer {
  padding: 40px 24px 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
.site-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.site-footer-copy {
  flex: none;
  min-width: 0;
  max-width: 56rem;
  line-height: 1.55;
  text-align: center;
}
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--link); }
.site-footer .footer-domain { text-decoration: none; word-break: break-all; }
.site-footer .footer-domain:hover { text-decoration: underline; }
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Release-status pill (near hero CTAs) */
.release-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
  font-size: 12px;
  font-family: ui-monospace, monospace;
  margin-bottom: 20px;
}
.release-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 10px var(--live);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ORION tier cards (Quick / Standard / Heavy) */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.tier-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}
.tier-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--purple);
  border-radius: var(--radius) 0 0 var(--radius);
}
.tier-card .tier-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}
.tier-card .tier-role {
  font-size: 11px;
  color: var(--purple-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.tier-card p { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* Pricing section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 32px;
  margin-bottom: 24px;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-card.featured {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 0 32px rgba(124, 58, 237, 0.15);
  position: relative;
}
.price-card.featured::after {
  content: "Core subscription";
  position: absolute;
  top: -10px; left: 24px;
  background: var(--purple);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.price-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-card .price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}
.price-card .price .unit {
  font-size: 0.85rem;
  color: var(--mid);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-left: 6px;
}
.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.price-card ul li {
  font-size: 13.5px;
  color: var(--mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple-bright);
  font-weight: 700;
}
.price-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.price-note strong { color: var(--white); font-weight: 600; }

/* System requirements grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 28px;
}
@media (min-width: 960px) {
  .spec-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .spec-check-panel {
    grid-column: span 2;
  }
}
@media (max-width: 959px) {
  .spec-check-panel {
    grid-column: 1 / -1;
  }
}
.spec {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.spec-check-panel {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.spec-check-panel .spec-label { margin-bottom: 6px; }
.spec-check-heading {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px 0;
}
.spec-check-lead {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0 0 8px 0;
  max-width: 42ch;
}
.spec-check-browser-hint {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  margin: 0 0 14px 0;
  max-width: 52ch;
  opacity: 0.95;
}
.spec-check-browser-hint em { font-style: italic; color: var(--mid); }
.spec-check-btn {
  font-size: 14px;
  padding: 11px 20px;
  width: 100%;
  max-width: 220px;
}
@media (min-width: 500px) {
  .spec-check-btn { width: auto; }
}
.spec-check-result {
  margin-top: 14px;
  width: 100%;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--mid);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.spec-check-result[hidden] { display: none !important; }
.spec-check-verdict {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.spec-check-verdict.match-ok { color: #86efac; }
.spec-check-verdict.match-warn { color: #facc15; }
.spec-check-verdict.match-bad { color: #f87171; }
.spec-check-verdict.match-neutral { color: var(--purple-bright); }
.spec-check-lines { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 4px; }
.spec-check-lines li { font-size: 12.5px; }
.spec-check-lines .ok { color: #a7f3d0; }
.spec-check-lines .warn { color: #fde68a; }
.spec-check-lines .bad { color: #fecaca; }
.spec-check-foot {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.45;
}
.spec .spec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
}
.spec .spec-value {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}
.spec .spec-detail {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* v1.3 Roadmap cards */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.road-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.2s;
}
.road-card:hover { border-color: rgba(124, 58, 237, 0.4); }
.road-card .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(124, 58, 237, 0.12);
  color: var(--purple-bright);
  border: 1px solid rgba(124, 58, 237, 0.35);
  margin-bottom: 12px;
}
.road-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--white);
}
.road-card p { color: var(--mid); font-size: 13.5px; line-height: 1.65; }

/* Roadmap — tabbed live release + future versions */
.roadmap-tabs { margin-top: 28px; }
.roadmap-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.roadmap-tab {
  font-family: "Barlow", system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--mid);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.roadmap-tab:hover { color: var(--white); }
.roadmap-tab[aria-selected="true"] {
  color: var(--white);
  border-color: rgba(124, 58, 237, 0.45);
  background: rgba(124, 58, 237, 0.12);
  box-shadow: 0 0 22px rgba(124, 58, 237, 0.12);
}
.roadmap-tabpanel {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  text-align: left;
}
.roadmap-tabpanel[hidden] { display: none !important; }
.roadmap-live-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin: 0 0 12px 0;
}
.roadmap-live-h {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 10px 0;
  text-transform: none;
}
.roadmap-live-sub {
  color: var(--mid);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 0 22px 0;
}
.roadmap-live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.roadmap-live-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 18px 16px;
}
.roadmap-live-card .tag { margin-bottom: 10px; }
.roadmap-live-card-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 8px 0;
}
.roadmap-live-card p {
  color: var(--mid);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.roadmap-live-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.roadmap-future-ver {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0 0 8px 0;
}
.roadmap-outcome {
  font-size: 14px;
  color: var(--purple-bright);
  margin: 0 0 14px 0;
  line-height: 1.5;
}
.roadmap-future-purpose,
.roadmap-future-theme {
  font-size: 13.5px;
  color: var(--mid);
  margin: 0 0 8px 0;
  line-height: 1.55;
}
.roadmap-future-sections {
  display: grid;
  gap: 14px;
  margin: 18px 0 20px 0;
}
.roadmap-future-block {
  border-left: 3px solid rgba(124, 58, 237, 0.45);
  padding-left: 14px;
}
.roadmap-future-block h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 6px 0;
}
.roadmap-future-block p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}
.roadmap-future-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.roadmap-future-prove {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.roadmap-timeline-strip {
  list-style: none;
  margin: 22px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.roadmap-timeline-strip strong { color: var(--white); }

/* FAQ (details/summary) — heading column matches list width */
#faq .section-label,
#faq .section-inner > h2 {
  max-width: 820px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.faq-list {
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  width: 100%;
  text-align: left;
}
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] { border-color: rgba(124, 58, 237, 0.4); }
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--white);
  font-size: 14.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--purple);
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 20px 18px;
  color: var(--mid);
  font-size: 14px;
  line-height: 1.65;
}
.faq-item .faq-body p + p { margin-top: 10px; }

/* Match centered FAQ column; block centered, copy still left-aligned */
#faq .section-explainer {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
#faq .section-explainer .price-services-summary,
#faq .section-explainer .price-services-details-body {
  text-align: left;
}
/* First row: explainer (left) + “Still need assistance?” (right), same 820px rail as .faq-list */
#faq .faq-footer {
  max-width: 820px;
  width: 100%;
  margin: 32px auto 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
#faq .faq-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 1.25rem;
  row-gap: 0.5rem;
}
#faq .faq-footer__explainer {
  flex: 1 1 12rem;
  min-width: 0;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
#faq .faq-footer__assist {
  flex: 0 0 auto;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--link) !important;
  text-decoration: none !important;
  padding: 6px 0 4px;
  line-height: 1.4;
  text-align: right;
  max-width: 100%;
  align-self: flex-start;
  white-space: nowrap;
}
#faq .faq-footer__assist:hover {
  color: var(--link-hover) !important;
  text-decoration: underline !important;
}
@media (max-width: 520px) {
  #faq .faq-footer__row { flex-direction: column; }
  #faq .faq-footer__assist {
    align-self: flex-end;
    white-space: normal;
  }
}

.legal-page { padding: 100px 24px 60px; max-width: 720px; margin: 0 auto; }
.legal-page h1 { font-size: 1.9rem; margin-bottom: 8px; }
.legal-page .meta { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.1rem; margin: 32px 0 12px; }
.legal-page p, .legal-page li { color: var(--mid); margin-bottom: 12px; font-size: 15px; }
.legal-page ul { margin-left: 1.2rem; margin-bottom: 16px; }
/* —— CLEANai (LVLUP AI) — tech × nature hero, hydro ledger, impact —— */
body.cleanai-landing { background: var(--bg); }
.cleanai-main {
  padding: 0;
  margin: 0;
  min-height: 60vh;
}
.cleanai-hero {
  position: relative;
  padding: 88px 20px 100px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(6, 182, 212, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse 80% 50% at 20% 50%, rgba(16, 185, 129, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 100% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 45%),
    linear-gradient(180deg, #04070a 0%, #06120f 50%, #0a0f0c 100%);
  border-bottom: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.35);
}
.cleanai-hero__bokeh,
.cleanai-hero__bokeh::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.cleanai-hero__bokeh {
  width: min(95vw, 520px);
  height: min(95vw, 520px);
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(16, 185, 129, 0.12) 100%);
}
.cleanai-hero__bokeh::after {
  width: 220px;
  height: 220px;
  top: 50%;
  right: 5%;
  left: auto;
  background: rgba(34, 211, 153, 0.18);
  filter: blur(56px);
}
/* Tech: grid + scan. Nature: aurora + orbs. No camo-style repeat. */
.cleanai-hero__atmos {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cleanai-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(90deg, rgba(6, 182, 212, 0.25) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 182, 212, 0.25) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 100% 85% at 50% 10%, #000, transparent 72%);
}
.cleanai-hero__aurora {
  position: absolute;
  inset: -20% -20% 0;
  background:
    conic-gradient(from 180deg at 50% 120%, rgba(0, 0, 0, 0) 0deg, rgba(16, 185, 129, 0.12) 120deg, rgba(6, 182, 212, 0.1) 200deg, rgba(0, 0, 0, 0) 360deg);
  opacity: 0.5;
  filter: blur(2px);
}
.cleanai-hero__scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent, transparent 3px, rgba(0, 255, 200, 0.028) 3px, rgba(0, 255, 200, 0.028) 4px);
  mix-blend-mode: overlay;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 75%, transparent);
}
.cleanai-hero__orbs { position: absolute; inset: 0; }
.cleanai-hero__orbs i {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 231, 255, 0.18) 0%, transparent 65%);
  filter: blur(18px);
  mix-blend-mode: screen;
}
.cleanai-hero__orbs .o1 { width: 180px; height: 180px; top: 12%; left: 8%; animation: cleanai-orb 14s ease-in-out infinite; }
.cleanai-hero__orbs .o2 { width: 120px; height: 120px; bottom: 30%; right: 12%; animation: cleanai-orb 12s ease-in-out infinite 2s; }
.cleanai-hero__orbs .o3 { width: 100px; height: 100px; top: 40%; right: 28%; opacity: 0.6; animation: cleanai-orb 16s ease-in-out infinite 1s; }
@keyframes cleanai-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6px, -8px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .cleanai-hero__orbs i { animation: none; }
}
.cleanai-hero__inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.cleanai-back {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #86efac !important;
  text-decoration: none !important;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.cleanai-back:hover { color: #d1fae5 !important; }
.cleanai-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a7f3d0;
  margin: 0 0 1rem;
}
.cleanai-badge__sep { color: rgba(255, 255, 255, 0.35); font-weight: 500; }
.cleanai-badge--gold {
  color: #fde68a;
  text-shadow: 0 0 32px rgba(250, 204, 21, 0.35);
  letter-spacing: 0.24em;
}
.cleanai-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f0fdf4;
  margin: 0 0 0.6em;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.cleanai-hero__lead {
  max-width: 44rem;
  margin: 0 auto 0.45em;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(209, 250, 229, 0.95);
  font-weight: 600;
}
.cleanai-hero__arrow {
  color: #22d3a8;
  font-weight: 800;
  margin: 0 0.1em;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}
.cleanai-hero__hype {
  display: block;
  margin-top: 0.4em;
  color: #fef9c3;
  font-size: 1.02em;
  letter-spacing: 0.02em;
  text-shadow: 0 0 32px rgba(250, 204, 21, 0.15);
}
.cleanai-hero__follow {
  max-width: 40rem;
  margin: 0.6em auto 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(209, 250, 229, 0.8);
}
.cleanai-hero__tag {
  display: block;
  margin-top: 1.25em;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.7);
}
.cleanai-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 0;
  z-index: 0;
  opacity: 0.4;
  color: #064e3b;
}
.cleanai-hero__wave svg { display: block; width: 100%; height: 40px; }
@media (min-width: 700px) {
  .cleanai-hero { padding: 100px 28px 120px; }
  .cleanai-hero__wave svg { height: 56px; }
}
/* Body column */
.cleanai-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 20px 80px;
  box-sizing: content-box;
}
/* CLEANai hydro ledger: tank + WUE / Wh model */
.cleanai-hydro-block {
  margin: 0 0 3rem;
}
.cleanai-hydro-block h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ecfdf5;
  margin: 0 0 0.35em;
  text-align: center;
}
.cleanai-hydro-block h2 em {
  color: #5ee9d4;
  font-style: normal;
  font-weight: 900;
  text-shadow: 0 0 24px rgba(6, 182, 212, 0.3);
}
.cleanai-hydro-block .cleanai-hint {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 46rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.cleanai-hydro {
  position: relative;
  max-width: 100%;
  padding: 0;
  background:
    linear-gradient(165deg, rgba(2, 26, 24, 0.6) 0%, rgba(4, 8, 18, 0.85) 100%);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 24px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.cleanai-hydro::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.4), #34d399, rgba(6, 182, 212, 0.4), transparent);
  opacity: 0.7;
}
.cleanai-hydro__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem 2.25rem;
  padding: 1.5rem 1.4rem 1.25rem;
  border-bottom: 1px solid rgba(6, 182, 212, 0.12);
}
.cleanai-hydro__tank {
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.45));
}
.cleanai-hydro__tankpair {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem 1.75rem;
  flex: 0 1 auto;
}
.cleanai-hydro__tankcell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.cleanai-hydro__tankcap {
  font-size: 11.5px;
  font-weight: 700;
  color: #a7e8d0;
  letter-spacing: 0.04em;
  margin: 0;
  font-family: ui-monospace, monospace, system-ui;
}
.cleanai-hydro__tankcap--zero { color: #6ee7b0; }
.cleanai-tank { display: block; }
.cleanai-tank__fill {
  transition: y 1.1s cubic-bezier(0.2, 0.85, 0.2, 1), height 1.1s cubic-bezier(0.2, 0.85, 0.2, 1);
}
.cleanai-hydro__kpi { min-width: 0; max-width: 20rem; text-align: left; }
.cleanai-hydro__kpi-pri { margin: 0 0 0.3em; line-height: 1.15; }
.cleanai-hydro__num { font-family: "Barlow Condensed", sans-serif; font-size: clamp(2.2rem, 4.5vw, 3rem); font-weight: 800; color: #5ee9d4; }
.cleanai-hydro__u { font-size: 1.5rem; color: #a7f3d0; font-weight: 700; margin-left: 0.08em; }
.cleanai-hydro__kpi-what { display: block; font-size: 0.4em; font-weight: 600; color: #a8e6c8; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2em; }
.cleanai-hydro__kpi-sec { font-size: 12.5px; color: var(--muted); margin: 0.3em 0; line-height: 1.45; }
.cleanai-hydro__kpi-sec em { color: #86a8a0; }
.cleanai-hydro__snum { color: #86efac; font-weight: 800; }
.cleanai-compare {
  padding: 0.5rem 1.4rem 0.1rem;
}
.cleanai-compare__head { font-size: 12px; font-weight: 700; color: #a8a39a; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 0.6rem; }
.cleanai-compare__row { display: flex; flex-direction: column; gap: 0.5rem; margin: 0 0 0.2rem; }
.cleanai-compare__item { padding: 0.5rem 0.65rem; border-radius: 8px; }
.cleanai-compare__item--cloud { background: rgba(0, 0, 0, 0.35); border: 1px solid rgba(113, 113, 120, 0.35); }
.cleanai-compare__item--safe { background: rgba(6, 78, 59, 0.2); border: 1px solid rgba(16, 185, 129, 0.35); }
.cleanai-compare__r { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em; color: #b8b3ab; }
.cleanai-compare__r b { font-size: 13.5px; color: #e8e4dc; letter-spacing: 0.04em; }
.cleanai-compare__bar { height: 8px; border-radius: 6px; background: rgba(0, 0, 0, 0.4); margin-top: 0.4rem; position: relative; overflow: hidden; }
.cleanai-compare__bar i { display: block; height: 100%; background: linear-gradient(90deg, #64748b, #94a3b8); border-radius: 5px; transition: width 1.1s cubic-bezier(0.2, 0.85, 0.2, 1); }
.cleanai-compare__bar--good i {
  background: linear-gradient(90deg, #059669, #34d399, #5ee9d4);
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.3);
}
.cleanai-hydro__params {
  margin: 0.75rem 1.4rem 0;
  padding: 0.8rem 0.85rem 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(52, 211, 153, 0.1);
  border-radius: 10px;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--muted);
}
.cleanai-hydro__params > div { display: grid; grid-template-columns: 9rem 1fr; gap: 0.5rem 0.8rem; align-items: start; }
.cleanai-hydro__params dt {
  color: #7dd3c0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10.5px;
  margin: 0;
}
.cleanai-hydro__params dd { margin: 0; }
.cleanai-hydro__params code { font-size: 10.5px; color: #c4b8a8; }
.cleanai-hydro__disclaimer {
  margin: 0.55rem 1.4rem 1.1rem;
  font-size: 10.5px;
  line-height: 1.5;
  color: rgba(160, 158, 152, 0.9);
  letter-spacing: 0.02em;
  text-align: left;
  border-top: 1px solid rgba(6, 182, 212, 0.12);
  padding-top: 0.7rem;
}
@media (max-width: 800px) {
  .cleanai-compare__r { flex-wrap: wrap; }
  .cleanai-hydro__kpi { text-align: center; max-width: 100%; }
  .cleanai-hydro__top { padding-left: 1rem; padding-right: 1rem; }
  .cleanai-hydro__params > div { grid-template-columns: 1fr; }
  .cleanai-hydro__params dt { margin-bottom: -0.2rem; }
}
/* Data center “truth” grid */
.cleanai-storm {
  margin: 0 0 2.5rem;
}
.cleanai-storm h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fef3c7;
  margin: 0 0 0.2em;
  text-align: center;
}
.cleanai-storm__sub {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 44rem;
  margin: 0 auto 1.4rem;
}
.cleanai-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cleanai-facts li {
  margin: 0;
  padding: 1.1rem 0.9rem 1.15rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.cleanai-facts h3 {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6ee7a0;
  margin: 0 0 0.45em;
  line-height: 1.25;
}
.cleanai-facts p {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--mid);
  margin: 0;
}
@media (max-width: 800px) {
  .cleanai-facts { grid-template-columns: 1fr; }
}
/* Pillars (LVLUP promise) */
.cleanai-pillars h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ecfdf5;
  margin: 2.5rem 0 0.2em;
  text-align: center;
}
.cleanai-pillars > p.cleanai-pillars__sub {
  text-align: center;
  font-size: 14px;
  color: var(--mid);
  margin: 0 0 1.5rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.cleanai-point {
  position: relative;
  margin: 0 0 1.15rem;
  padding: 1.15rem 1.15rem 1.15rem 1.1rem;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.08) 0%, rgba(0, 0, 0, 0.15) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-left: 3px solid rgba(52, 211, 153, 0.6);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.cleanai-point h2 {
  font-size: 1.05rem;
  margin: 0 0 0.4em;
  color: #e0f7ed;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-transform: none;
  font-family: "Barlow", sans-serif;
}
.cleanai-point p:last-child { margin-bottom: 0; }
.cleanai-point p { line-height: 1.6; }
.cleanai-cta {
  margin-top: 2.25rem;
  padding: 1.3rem 1.35rem;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(16, 185, 129, 0.1) 0%, rgba(124, 58, 237, 0.12) 100%);
  border: 1px solid rgba(34, 197, 94, 0.28);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}
.cleanai-cta p { margin: 0 0 0.65em; color: var(--mid); font-size: 14.5px; }
.cleanai-cta p:last-child { margin-bottom: 0; }
.cleanai-cta a { color: var(--link) !important; font-weight: 600; }
.cleanai-cta strong { color: #d1fae5; }
.back-link { display: inline-block; margin-bottom: 32px; font-weight: 600; color: var(--purple) !important; }
.back-link:hover { color: var(--link) !important; }

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-blue { width: 100%; }
  .closing-band-premium { max-width: 100%; }
  .closing-band .closing-band-premium .btn-premium--sentence {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}

/* ==========================================================================
   v2 polish — hero grid, animated mock, reveals, sticky CTA, how-it-works
   ========================================================================== */

/* Hero: grid + ORION-only glows (overrides solid hero fill above) */
body.ai-lvlup-site .hero {
  background:
    radial-gradient(ellipse 70% 50% at 30% 0%, rgba(124, 58, 237, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 42% at 88% 18%, rgba(167, 139, 250, 0.08), transparent 55%),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--bg);
}
body.ai-lvlup-site .hero::after { display: none; }

/* Section gradient divider */
.bg-dim {
  position: relative;
}
.bg-dim::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(124, 58, 237, 0.5) 50%, transparent 100%);
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Card glow on hover */
.card, .road-card, .tier-card, .price-card, .spec, .plat-item {
  transition: border-color 0.2s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.card:hover, .road-card:hover, .roadmap-live-card:hover, .tier-card:hover, .price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(124, 58, 237, 0.25);
}
.plat-item:hover { border-color: rgba(124, 58, 237, 0.3); background: var(--card); }
.spec:hover { border-color: rgba(124, 58, 237, 0.35); }

/* ==========================================================================
   Animated ORION mock (hero)
   ========================================================================== */
.orion-mock {
  background: linear-gradient(180deg, #0d0d12 0%, var(--bg3) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(124, 58, 237, 0.25), 0 0 48px rgba(124, 58, 237, 0.08);
  max-width: 780px;
  margin: 0 auto;
}
.orion-mock-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: #08080c;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
}
.orion-mock-dots { display: flex; gap: 6px; }
.orion-mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.orion-mock-dots span:nth-child(1) { background: #ef4444; }
.orion-mock-dots span:nth-child(2) { background: #eab308; }
.orion-mock-dots span:nth-child(3) { background: #22c55e; }
.orion-mock-title { flex: 1; text-align: center; letter-spacing: 0.04em; }
.orion-mock-title strong { color: var(--white); font-weight: 600; }
.orion-mock-heartbeat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #86efac;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.orion-mock-heartbeat::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 10px var(--live);
  animation: pulse 1.4s ease-in-out infinite;
}

.orion-mock-body {
  padding: 18px 20px 22px;
}

/* Prompt row */
.orion-prompt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 8px;
  margin-bottom: 16px;
}
.orion-prompt .label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--purple);
  padding-top: 3px;
}
.orion-prompt .text {
  color: var(--white);
  font-size: 14px;
  font-family: ui-monospace, monospace;
  line-height: 1.55;
}
.orion-prompt .text::after {
  content: "▎";
  color: var(--purple-bright);
  margin-left: 2px;
  animation: caret 1s steps(1) infinite;
}
@keyframes caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Plan banner */
.orion-plan-banner {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  padding-left: 2px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.orion-plan-banner.on { opacity: 1; }
.orion-plan-banner .commander {
  color: var(--purple-bright);
  font-weight: 600;
}

/* Task list */
.orion-tasks {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.orion-task {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-family: ui-monospace, monospace;
  font-size: 12.5px;
  color: var(--mid);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.25s, background 0.25s;
}
.orion-task.shown {
  opacity: 1;
  transform: translateX(0);
}
.orion-task .idx {
  color: var(--muted);
  font-weight: 600;
  min-width: 18px;
}
.orion-task .tlabel { flex: 1; }
.orion-task .agent {
  font-size: 10px;
  color: var(--purple);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 4px;
  background: rgba(124, 58, 237, 0.08);
}
.orion-task .status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-width: 70px;
  text-align: right;
}
.orion-task[data-state="queued"]    .status { color: var(--muted); }
.orion-task[data-state="queued"]    .status::before { content: "◌ QUEUED"; }
.orion-task[data-state="running"]   { border-color: rgba(124, 58, 237, 0.5); background: rgba(124, 58, 237, 0.08); }
.orion-task[data-state="running"]   .status { color: var(--purple-bright); }
.orion-task[data-state="running"]   .status::before { content: "● RUNNING"; animation: pulse 1.2s ease-in-out infinite; }
.orion-task[data-state="done"]      { border-color: rgba(34, 197, 94, 0.45); background: rgba(34, 197, 94, 0.04); }
.orion-task[data-state="done"]      .status { color: #86efac; }
.orion-task[data-state="done"]      .status::before { content: "✓ DONE"; }
.orion-task[data-state="flagged"]   { border-color: rgba(234, 179, 8, 0.5); background: rgba(234, 179, 8, 0.05); }
.orion-task[data-state="flagged"]   .status { color: #facc15; }
.orion-task[data-state="flagged"]   .status::before { content: "△ DRIFT GUARD"; }

/* Footer row inside mock */
.orion-mock-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.orion-mock-footer .done-counter strong {
  color: #86efac;
  font-weight: 700;
}
.orion-mock-footer .slot-tag {
  color: var(--purple-bright);
  font-weight: 600;
}

/* ==========================================================================
   How it works (3-step strip)
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 34px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(124, 58, 237, 0.4) 25%,
    rgba(167, 139, 250, 0.35) 50%,
    rgba(34, 197, 94, 0.3) 78%,
    transparent 100%);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px 22px;
  text-align: center;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--purple);
  margin-bottom: 14px;
}
.step:nth-child(1) .num { border-color: rgba(124, 58, 237, 0.45); color: var(--purple); }
.step:nth-child(2) .num { border-color: rgba(167, 139, 250, 0.5); color: var(--purple-bright); }
.step:nth-child(3) .num { border-color: rgba(34, 197, 94, 0.45); color: #86efac; }
.step h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--white);
}
.step p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

/* ==========================================================================
   Redesigned pricing — hero card + secondary tile
   ========================================================================== */
.pricing-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-top: 36px;
  align-items: start;
}
@media (min-width: 861px) {
  .pricing-layout { align-items: stretch; }
  .price-hero { align-self: start; }
  .price-side-column {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    min-height: 0;
  }
  .price-support {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 860px) {
  .pricing-layout { grid-template-columns: 1fr; }
  .price-support { flex: 0 0 auto; }
}
.price-hero {
  position: relative;
  background:
    radial-gradient(circle at 85% 0%, rgba(124, 58, 237, 0.22), transparent 55%),
    linear-gradient(180deg, #14141c 0%, #0f0f14 100%);
  border: 1px solid rgba(124, 58, 237, 0.45);
  border-radius: 14px;
  padding: 32px 32px 28px;
  overflow: hidden;
}
.price-hero::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28), transparent 70%);
  pointer-events: none;
}
.price-hero > * { position: relative; z-index: 1; }
.price-hero .kicker {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-bright);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.price-hero .price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.price-hero .price-big {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 5.2rem;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
}
.price-hero .price-unit {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--mid);
}
.price-hero .price-strap {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 24px;
}
.price-hero .price-strap strong { color: var(--white); }
.price-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 0 0 26px;
  padding: 0;
}
@media (max-width: 600px) { .price-features { grid-template-columns: 1fr; } }
.price-features li {
  font-size: 13.5px;
  color: var(--mid);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--purple-bright);
  font-weight: 800;
}
.price-fineprint {
  font-size: 11px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 18px;
}
.price-fineprint strong { color: var(--white); font-weight: 600; }

/* Primary CTA + “How … works” on one row; explainer body drops below the row */
.price-cta-pair {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px 14px;
  width: 100%;
  margin-top: 2px;
}
.price-cta-pair > .btn-primary,
.price-cta-pair > .btn-secondary { flex: 0 0 auto; }
details.price-inline-details,
details.price-inline-details.section-explainer {
  margin: 0 0 0 auto;
  padding: 0;
  max-width: none;
  min-width: 0;
  flex: 0 1 12rem;
  border-top: 0;
  align-self: center;
}
details.price-inline-details[open] {
  flex: 1 0 100%;
  margin-top: 6px;
  margin-left: 0;
  align-self: stretch;
}
details.price-inline-details[open] .price-services-details-body {
  padding-top: 8px;
}
/* Subscription card: primary → Premium upsell → “How … works” */
.price-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}
.price-hero-ctas > .btn-primary { flex: 0 0 auto; }
.price-hero-ctas .btn-premium--sentence {
  text-transform: none;
  letter-spacing: 0.04em;
}
@media (min-width: 540px) {
  .price-hero-ctas { align-items: center; }
}
.price-hero-ctas details.price-inline-details,
.price-hero-ctas details.price-inline-details.section-explainer {
  margin: 0;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  flex: 0 0 auto;
  align-self: stretch;
  text-align: center;
}
.price-hero-ctas .price-inline-details .price-services-summary { text-align: center; }
.price-hero-ctas .price-inline-details[open] .price-services-details-body { text-align: left; }
.price-hero-ctas details.price-inline-details[open] { margin-top: 0; }
@media (max-width: 520px) {
  .price-cta-pair { flex-direction: column; align-items: stretch; }
  details.price-inline-details,
  details.price-inline-details.section-explainer { margin-left: 0; flex: 1 1 auto; max-width: 100%; }
}
@media (max-width: 520px) {
  .price-hero-ctas { align-items: stretch; }
  .price-hero-ctas .btn-primary,
  .price-hero-ctas .btn-premium--sentence { width: 100%; text-align: center; }
}
.price-hero .price-cta-pair { margin-top: 4px; }
.price-hero .price-fineprint { margin-top: 16px; }

.price-support {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}
.price-support-head { display: block; }
.price-support-head .kicker { margin-bottom: 6px; }
.price-support-head h3 { margin: 0 0 8px; }
.price-support-deck {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.5;
  margin: 0 0 12px;
}
.price-support-deck strong { color: var(--white); }
.price-support-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-support-row {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(124, 58, 237, 0.4);
  border-radius: 8px;
  padding: 10px 12px 10px 11px;
}
.price-support-row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 4px;
}
.price-support .price-support-name {
  font-family: "Barlow", system-ui, sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 12.5px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  flex: 1 1 8rem;
  min-width: 0;
}
.price-support-amount {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--purple-bright);
  white-space: nowrap;
  flex-shrink: 0;
}
.price-support-amount .per {
  font-size: 0.58em;
  font-weight: 600;
  font-family: Inter, sans-serif;
  color: var(--text-secondary);
  margin-left: 0.15em;
  letter-spacing: 0.02em;
  text-transform: none;
}
.price-support-desc {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.5;
  margin: 0;
}
.price-support-checkout {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--purple-light) !important;
  text-decoration: none !important;
}
.price-support-checkout:hover {
  color: var(--purple-bright) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}
.price-support-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.price-support-hint {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 10px;
  font-family: ui-monospace, monospace;
  letter-spacing: 0.04em;
}
.price-support-hint strong { color: #a0a0b0; }
.price-support .kicker {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
}
.price-support h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-support .rate {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--white);
}
.price-support .rate .unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid);
  margin-left: 6px;
}
.price-support-cta { margin-top: 0; }
.price-support .price-cta-pair { margin-top: 0; }

/* Right column: Services & add-ons, then LVLUP Premium (gold) stacked */
.price-side-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  align-self: stretch;
}
@media (max-width: 860px) {
  .price-side-column { align-self: start; }
}

/* LVLUP Premium — gold, full width below the two pricing columns */
.price-premium {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  position: relative;
  border-radius: 14px;
  padding: 24px 26px 22px;
  background: linear-gradient(160deg, rgba(55, 45, 25, 0.55) 0%, #12100c 50%, #0c0a08 100%);
  border: 1px solid rgba(201, 162, 74, 0.55);
  box-shadow: 0 0 0 1px rgba(201, 162, 74, 0.12), 0 16px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  box-sizing: border-box;
}
@media (min-width: 861px) {
  .price-premium-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .price-premium-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .price-premium-ctas .btn-premium { flex: 0 0 auto; }
  .price-premium-ctas .btn-primary { flex: 0 0 auto; }
  .price-premium-ctas .btn-premium-ghost { flex: 0 0 auto; }
}
/* LVLUP Premium — mobile: 2×2 stats, tappable text, no horizontal overflow */
@media (max-width: 860px) {
  .price-premium {
    padding: 16px 14px 16px;
    border-radius: 12px;
    max-width: 100%;
  }
  .price-premium-eyebrow {
    letter-spacing: 0.12em;
    font-size: 10px;
    line-height: 1.35;
  }
  .price-premium-title {
    font-size: clamp(1.02rem, 4.2vw, 1.15rem);
    line-height: 1.2;
  }
  .price-premium-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }
  .price-premium-stats li {
    min-width: 0;
    padding: 8px 8px 9px;
    font-size: 10.5px;
  }
  .price-premium-stats li span { hyphens: auto; -webkit-hyphens: auto; }
  .price-premium-stats li strong {
    font-size: 1.12rem;
  }
  .price-premium-lead,
  .price-premium-bullets {
    font-size: 12px;
  }
  .price-premium-bullets {
    margin-left: 0.9em;
    word-break: break-word;
  }
  .price-premium-ctas {
    min-width: 0;
  }
  .btn-premium,
  .btn-primary.price-premium-ctas-std,
  .btn-premium-ghost {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    padding: 10px 12px;
    font-size: 11.5px;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
  }
  .price-premium-note {
    font-size: 9.5px;
    line-height: 1.45;
  }
  .price-premium-more { margin-top: 12px; padding-top: 10px; }
  .price-premium-summary { font-size: 12px; line-height: 1.3; }
  .price-premium-more-body { font-size: 11.5px; }
}
@media (max-width: 400px) {
  .price-premium-stats { grid-template-columns: 1fr; }
  .btn-premium,
  .btn-primary.price-premium-ctas-std,
  .btn-premium-ghost { font-size: 11px; }
}
.price-premium::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240, 198, 120, 0.85) 20%, rgba(201, 162, 74, 0.9) 50%, rgba(240, 198, 120, 0.85) 80%, transparent);
  pointer-events: none;
}
.price-premium-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a24a;
  margin-bottom: 6px;
}
.price-premium-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f0d7a0;
  margin: 0 0 12px;
  line-height: 1.2;
}
.price-premium-stats {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}
.price-premium-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 162, 74, 0.22);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: #a8a6a0;
  line-height: 1.35;
}
.price-premium-stats li strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #f0d7a0;
  letter-spacing: 0.02em;
}
.price-premium-stat--core {
  min-width: 0;
  display: block;
}
/* Collapsible $100 tile: collapsed height matches the other stat boxes */
.price-premium-stat-core {
  margin: 0;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
}
.price-premium-stat-core__summary {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.3em 0.5em;
  cursor: pointer;
  user-select: none;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}
.price-premium-stat-core__lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Slightly more than 2px: large-number tiles get extra “air” from 1.25rem line boxes */
  gap: 5px;
  flex: 1;
  min-width: 0;
}
/* Same grey subtext as other stat tiles (see .price-premium-stats li span) */
.price-premium-stat-core__sub {
  display: block;
  margin: 0;
  max-width: 100%;
  font-size: 11px;
  line-height: 1.35;
  color: #a8a6a0;
  letter-spacing: 0.01em;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.price-premium-stat-core__summary::-webkit-details-marker { display: none; }
/* Chevron only */
.price-premium-stat-core__summary::after {
  content: "";
  flex: 0 0 auto;
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid #c9a24a;
  border-bottom: 2px solid #c9a24a;
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
  opacity: 0.9;
  align-self: center;
  flex-shrink: 0;
}
.price-premium-stat-core[open] .price-premium-stat-core__summary::after {
  transform: rotate(225deg);
}
.price-premium-stat-core__summary:hover::after {
  border-right-color: #e8c56e;
  border-bottom-color: #e8c56e;
  opacity: 1;
}
.price-premium-stat-core__body {
  margin: 0;
  padding: 0;
}
.price-premium-stat-core__body .price-premium-stat-sep {
  margin: 2px 0 8px;
}
.price-premium-stat-core__body .price-premium-stat-subl { margin: 0 0 8px; }
.price-premium-stat-core__body .price-premium-stat-line { margin: 0; }
.price-premium-stat-headline {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  /* Closer to stat strongs’ default line box so the grey sub doesn’t read “higher” */
  line-height: 1.3;
  color: #f0d7a0;
  text-transform: none;
  letter-spacing: 0.02em;
  margin: 0;
  text-wrap: balance;
}
.price-premium-stat-h1 { color: #f0d7a0; }
.price-premium-stat-locked { color: #c9a24a; }
.price-premium-stat-subl {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: #a8a49c;
  letter-spacing: 0.02em;
}
.price-premium-stat--core p.price-premium-stat-subl strong,
.price-premium-stat--core p.price-premium-stat-line strong {
  font-family: "Barlow", sans-serif;
  font-size: inherit;
  color: #e8e4dc;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.price-premium-stat--core p.price-premium-stat-subl strong.em-rate {
  color: #f0d7a0;
  font-size: 1.05em;
  letter-spacing: 0.04em;
}
.price-premium-stat--core p.price-premium-stat-subl strong.em-rate-std {
  color: #c0bbb3;
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.price-premium-stat-sep {
  height: 0;
  margin: 10px 0 8px;
  border: 0;
  border-top: 1px solid rgba(201, 162, 74, 0.32);
}
.price-premium-stat-line {
  display: block;
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: #a8a49c;
  letter-spacing: 0.02em;
}
.price-premium-stat-line strong { font-size: inherit; color: #e8e4dc; }
.price-premium-stat-who {
  display: block;
  color: #c9a24a;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Barlow", sans-serif;
  margin-bottom: 5px;
}
.price-premium-stat-subl .em-rate {
  color: #f0d7a0;
  font-weight: 800;
  font-size: 1.05em;
  letter-spacing: 0.04em;
}
.price-premium-stat-subl .em-rate-std {
  color: #c0bbb3;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media (min-width: 500px) {
  .price-premium-stat-headline { font-size: 0.9rem; }
}
@media (max-width: 860px) {
  .price-premium-stat-subl { font-size: 10.5px; }
  .price-premium-stat-who { font-size: 9.5px; }
  .price-premium-stat-line { font-size: 10.5px; }
  .price-premium-stat-headline { font-size: 0.88rem; }
  .price-premium-stat-core__sub { font-size: 10.5px; }
}
@media (max-width: 400px) {
  .price-premium-stat-who { letter-spacing: 0.06em; }
  .price-premium-stat-h1, .price-premium-stat-locked { display: block; }
  .price-premium-stat-locked { margin-top: 2px; }
}
/* Collapsed detail block: lead + bullets (default closed) */
.price-premium-extras {
  margin: 14px 0 0;
  border-top: 1px solid rgba(201, 162, 74, 0.2);
  padding-top: 10px;
}
.price-premium-extras-summary {
  cursor: pointer;
  list-style: none;
  font-size: 12.5px;
  font-weight: 600;
  color: #d4a84a;
  letter-spacing: 0.04em;
  padding: 4px 0 2px;
  user-select: none;
}
.price-premium-extras-summary::-webkit-details-marker { display: none; }
.price-premium-extras-summary::after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin-left: 0.4em;
  border-right: 2px solid #c9a24a;
  border-bottom: 2px solid #c9a24a;
  transform: rotate(45deg);
  vertical-align: 0.1em;
  transition: transform 0.2s ease;
}
.price-premium-extras[open] .price-premium-extras-summary::after {
  transform: rotate(225deg);
  vertical-align: 0.05em;
}
.price-premium-extras-summary:hover { color: #e8c56e; }
.price-premium-extras-body {
  padding: 8px 0 4px;
  margin: 0;
}
.price-premium-extras-body .price-premium-lead { margin-top: 4px; }
.price-premium-lead {
  font-size: 12.5px;
  color: #c4c0b8;
  line-height: 1.6;
  margin: 0 0 10px;
}
.price-premium-bullets {
  margin: 0 0 12px 1.1em;
  padding: 0;
  font-size: 12.5px;
  color: #a8a6a0;
  line-height: 1.6;
}
.price-premium-bullets li { margin-bottom: 8px; }
.price-premium-bullets li:last-child { margin-bottom: 0; }
.price-premium-bullets strong { color: #e8e4dc; }
.price-premium-ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 16px;
}
/* Purple escape hatch: size line with the gold/ghost pair in the Premium block */
.price-premium-ctas .btn-primary.price-premium-ctas-std {
  font-size: 12.5px;
  padding: 10px 16px;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.3;
  box-shadow: 0 2px 18px rgba(124, 58, 237, 0.32);
  white-space: normal;
  text-align: center;
}
/* go / not-interested: traffic-light style for decision psychology */
.price-premium-ctas .btn-premium.price-premium-cta--go {
  /* Darker enough top band that light label reads like the red CTA (white / off-white) */
  background: linear-gradient(180deg, #2db85c 0%, #16a34a 48%, #0f6b32 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.42) !important;
  color: #faf7f5 !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
}
.price-premium-ctas .btn-premium.price-premium-cta--go:hover {
  background: linear-gradient(180deg, #34c965 0%, #22a34a 50%, #15803d 100%) !important;
  filter: brightness(1.04) saturate(1.05);
  color: #fff !important;
  transform: translateY(-1px);
}
.price-premium-ctas .btn-primary.price-premium-ctas-std.price-premium-cta--decline {
  background: linear-gradient(180deg, #f87171 0%, #dc2626 55%, #b91c1c 100%) !important;
  box-shadow: 0 2px 22px rgba(220, 38, 38, 0.4) !important;
  color: #faf7f5 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.price-premium-ctas .btn-primary.price-premium-ctas-std.price-premium-cta--decline:hover {
  background: linear-gradient(180deg, #fb7185 0%, #ef4444 55%, #dc2626 100%) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 16px;
  border-radius: 6px;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #0c0a08 !important;
  background: linear-gradient(180deg, #e8c56e 0%, #c9a24a 100%) !important;
  box-shadow: 0 4px 18px rgba(201, 162, 74, 0.35);
  border: 1px solid rgba(255, 230, 170, 0.35);
  transition: filter 0.2s, transform 0.2s;
}
.btn-premium:hover {
  filter: brightness(1.06);
  color: #0a0907 !important;
  transform: translateY(-1px);
}
.btn-premium-ghost {
  border-color: rgba(201, 162, 74, 0.4) !important;
  color: #f0d7a0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.btn-premium-ghost:hover {
  color: #fff2d0 !important;
  background: rgba(201, 162, 74, 0.12) !important;
  border-color: rgba(201, 162, 74, 0.55) !important;
}
.price-premium-note {
  font-size: 10.5px;
  color: #6e6a62;
  line-height: 1.55;
  margin: 12px 0 0;
  font-family: ui-monospace, monospace;
  letter-spacing: 0.03em;
}
.price-premium-note strong { color: #9d8f78; }
.price-premium-more {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 162, 74, 0.25);
}
.price-premium-summary {
  cursor: pointer;
  list-style: none;
  font-size: 12.5px;
  font-weight: 600;
  color: #d4a84a;
  letter-spacing: 0.04em;
  padding: 4px 0 2px;
  user-select: none;
}
.price-premium-summary::-webkit-details-marker { display: none; }
.price-premium-summary::after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin-left: 0.35em;
  border-right: 2px solid #c9a24a;
  border-bottom: 2px solid #c9a24a;
  transform: rotate(45deg);
  vertical-align: 0.15em;
  transition: transform 0.2s ease;
}
.price-premium-more[open] .price-premium-summary::after {
  transform: rotate(225deg);
  vertical-align: 0.05em;
}
.price-premium-summary:hover { color: #e8c56e; }
.price-premium-more-body {
  padding: 6px 0 0;
  font-size: 12px;
  color: #9d9a94;
  line-height: 1.65;
}
.price-premium-more-body p { margin: 0 0 0.75em; }
.price-premium-more-body p:last-child { margin-bottom: 0; }
.price-premium-more-body strong { color: #d8d4cc; }
@media (prefers-reduced-motion: reduce) {
  .btn-premium { transition: none; }
  .price-premium-summary::after { transition: none; }
}

/* Inline explainer: full-width section footers (same chevron + body as add-ons) */
details.section-explainer {
  margin-top: 32px;
  max-width: 50rem;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
/* #faq: border lives on .faq-footer; not twice on the inner <details> */
#faq .faq-footer details.faq-footer__explainer {
  margin-top: 0;
  max-width: none;
  width: 100%;
  border-top: 0;
  padding-top: 0;
}
/* Nested explainer: subscription note inside #pricing hero column (no double top border gap) */
.price-hero .section-explainer {
  max-width: none;
  margin-top: 20px;
}

.price-services-details {
  margin-top: 4px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.price-services-summary,
.section-explainer > .price-services-summary {
  cursor: pointer;
  list-style: none;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--link);
  letter-spacing: 0.04em;
  padding: 6px 0 4px;
  user-select: none;
}
.price-services-summary::-webkit-details-marker,
.section-explainer .price-services-summary::-webkit-details-marker { display: none; }
.price-services-summary::after,
.section-explainer > .price-services-summary::after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin-left: 0.35em;
  border-right: 2px solid var(--link);
  border-bottom: 2px solid var(--link);
  transform: rotate(45deg);
  vertical-align: 0.15em;
  transition: transform 0.2s ease;
}
.price-services-details[open] .price-services-summary::after,
.section-explainer[open] > .price-services-summary::after {
  transform: rotate(225deg);
  vertical-align: 0.05em;
}
.price-services-summary:hover,
.section-explainer > .price-services-summary:hover { color: var(--link-hover); }
.price-services-details-body,
.section-explainer .price-services-details-body {
  padding: 8px 0 4px;
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.65;
}
.price-services-details-body p { margin: 0 0 0.9em; }
.price-services-details-body p:last-child { margin-bottom: 0; }
.price-services-details-body strong { color: var(--white); font-weight: 600; }
.section-explainer .price-services-details-body p { margin: 0 0 0.9em; }
.section-explainer .price-services-details-body p:last-child { margin-bottom: 0; }
.section-explainer .price-services-details-body strong { color: var(--white); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .price-services-summary::after,
  .section-explainer > .price-services-summary::after { transition: none; }
}

/* ==========================================================================
   Closing CTA band (replaces duplicate #download section)
   ========================================================================== */
.closing-band {
  text-align: center;
  padding: 96px 24px 108px;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(124, 58, 237, 0.25), transparent 55%),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.closing-band h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 14px;
}
.closing-band p {
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 1.02rem;
}
.closing-band-premium {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  margin: 14px auto 0;
}
.closing-band .btn-premium--sentence {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 14px;
  padding: 12px 28px;
}
.closing-domain {
  display: inline-block;
  margin-top: 24px;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.closing-domain strong { color: var(--white); }

/* ==========================================================================
   Sticky footer CTA
   ========================================================================== */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(24px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 18px;
  background: rgba(14, 14, 20, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(124, 58, 237, 0.45);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 32px rgba(124, 58, 237, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 90;
  max-width: calc(100vw - 32px);
}
.sticky-cta.on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.sticky-cta-text {
  font-size: 13px;
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}
.sticky-cta-text .price-inline {
  color: var(--purple-bright);
  font-family: ui-monospace, monospace;
  font-weight: 700;
  margin-left: 6px;
}
.sticky-cta .btn-sticky {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--purple-light);
  color: #0a0a0f !important;
  font-weight: 800;
  font-size: 12.5px;
  border-radius: 999px;
  text-decoration: none !important;
  letter-spacing: 0.02em;
}
.sticky-cta .btn-sticky:hover { filter: brightness(1.08); }
.sticky-cta-close {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  padding: 0 4px;
  line-height: 1;
}
.sticky-cta-close:hover { color: var(--white); }
@media (max-width: 600px) {
  .sticky-cta-text { font-size: 12px; }
  .sticky-cta .btn-sticky { padding: 7px 12px; font-size: 12px; }
}

