:root {
  --bg: #050a12;
  --bg-soft: #07111d;
  --surface: #0d1825;
  --surface-2: #111f30;
  --surface-3: #16283b;
  --blue: #0878ff;
  --blue-2: #00b7ff;
  --cyan: #6ee7ff;
  --lime: #a4b21f;
  --text: #f8fbff;
  --muted: #b8c7d8;
  --dark: #06101b;
  --line: rgb(255 255 255 / 0.11);
  --line-strong: rgb(110 231 255 / 0.32);
  --shadow: 0 24px 80px rgb(0 0 0 / 0.36);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 22% 8%, rgb(0 183 255 / .16), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgb(8 120 255 / .18), transparent 30rem),
    linear-gradient(90deg, rgb(255 255 255 / .025) 1px, transparent 1px),
    linear-gradient(0deg, rgb(255 255 255 / .018) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
  color: var(--text);
  font-family: "Manrope", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 300;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--cyan);
  color: var(--dark);
  padding: 10px 16px;
  font-weight: 900;
  transition: transform .2s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  border-bottom: 1px solid transparent;
  transition: background .22s var(--ease), border-color .22s var(--ease), backdrop-filter .22s var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-visible {
  background: rgb(5 10 18 / .82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: 162px;
}

.brand-logo img {
  width: 162px;
  max-height: 52px;
  object-fit: contain;
}

.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a {
  white-space: nowrap;
  transition: color .18s var(--ease);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  padding: 13px 18px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white;
  box-shadow: 0 16px 40px rgb(8 120 255 / .28);
}

.btn-secondary {
  background: rgb(255 255 255 / .06);
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-large {
  min-height: 56px;
  padding-inline: 22px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgb(255 255 255 / .06);
  color: var(--text);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  background: rgb(0 0 0 / .52);
}

.menu-backdrop.is-open {
  display: block;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 140;
  width: min(390px, 88vw);
  padding: 22px;
  background: #07101b;
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform .24s var(--ease);
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.mobile-panel img {
  width: 150px;
}

.mobile-close,
.gallery-controls button,
.lightbox-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgb(255 255 255 / .06);
  color: var(--text);
  font-weight: 900;
}

.mobile-links {
  display: grid;
  gap: 12px;
}

.mobile-links a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 850;
}

.mobile-links a:last-child {
  border: 0;
  color: var(--cyan);
}

.hero {
  position: relative;
  padding: 124px 0 70px;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 84px 4% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(110 231 255 / .5), transparent);
}

.hero::after {
  right: 8%;
  top: 108px;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgb(110 231 255 / .18);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}

h1 mark {
  display: inline;
  background: linear-gradient(90deg, var(--cyan), #ffffff);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

p {
  color: var(--muted);
}

.lead {
  color: var(--text);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.42;
}

.hero-benefits,
.receive-list,
.audience-panel ul,
.compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-benefits {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.hero-benefits li,
.receive-list li,
.audience-panel li,
.compare-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.hero-benefits li::before,
.receive-list li::before,
.audience-panel li::before,
.compare-card li::before {
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgb(110 231 255 / .7);
  content: "";
}

.hero-offer {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.price-box {
  display: grid;
  gap: 2px;
  min-width: 205px;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: linear-gradient(180deg, rgb(17 31 48 / .92), rgb(8 19 32 / .92));
  box-shadow: 0 20px 56px rgb(0 183 255 / .12);
}

.price-box.center {
  text-align: center;
}

.price-box span,
.price-box small {
  color: var(--muted);
  font-size: 14px;
}

.price-box strong {
  color: var(--text);
  font-size: 34px;
  line-height: 1.1;
}

.microcopy {
  margin: 18px 0 2px;
  color: var(--text);
  font-weight: 850;
}

.fineprint {
  color: #90a6bb;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.book-composition {
  position: relative;
  width: min(430px, 88vw);
  height: 520px;
}

.book-cover,
.preview-page {
  position: absolute;
  border-radius: 16px;
  filter: drop-shadow(0 34px 50px rgb(0 0 0 / .4));
}

.book-cover {
  z-index: 3;
  left: 50%;
  top: 32px;
  width: 300px;
  transform: translateX(-50%) rotate(-2deg);
}

.preview-page {
  z-index: 1;
  width: 190px;
  opacity: .88;
}

.page-left {
  left: 0;
  top: 90px;
  transform: rotate(-12deg);
}

.page-right {
  right: 0;
  top: 110px;
  transform: rotate(11deg);
}

.ad-budget-chip,
.mini-dashboard {
  position: absolute;
  z-index: 4;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgb(7 17 29 / .84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.ad-budget-chip {
  right: 10px;
  top: 36px;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
}

.ad-budget-chip strong {
  color: var(--cyan);
  font-size: 24px;
}

.mini-dashboard {
  left: 8px;
  bottom: 54px;
  width: 214px;
  padding: 16px;
}

.mini-dashboard span {
  color: var(--muted);
  font-size: 13px;
}

.mini-dashboard strong {
  display: block;
  margin: 3px 0 12px;
}

.mini-dashboard div {
  display: grid;
  gap: 7px;
}

.mini-dashboard i {
  display: block;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.mini-dashboard i:nth-child(2) {
  width: 76%;
}

.mini-dashboard i:nth-child(3) {
  width: 54%;
}

.trust-bar {
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: rgb(7 17 29 / .72);
}

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

.trust-grid article {
  min-height: 108px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(255 255 255 / .035);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 4px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.problem-layout,
.preview-layout,
.budget-layout,
.receive-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: 34px;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 104px;
}

.callout,
.section-note,
.highlight-line {
  display: block;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgb(0 183 255 / .075);
  color: var(--text);
  font-weight: 850;
}

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

.card-grid,
.benefit-grid,
.models-grid,
.comparison-grid,
.audience-grid {
  display: grid;
  gap: 16px;
}

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

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

.info-card,
.compare-card,
.model-card,
.audience-panel,
.offer-card,
.price-offer,
.checkout-summary,
.checkout-form,
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgb(17 31 48 / .9), rgb(8 19 32 / .86));
  box-shadow: 0 18px 48px rgb(0 0 0 / .22);
}

.info-card,
.compare-card,
.model-card,
.audience-panel,
.offer-card,
.price-offer,
.checkout-summary,
.checkout-form,
.step-card {
  padding: 24px;
}

.info-card span,
.model-card span,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgb(0 183 255 / .11);
  border: 1px solid var(--line-strong);
  color: var(--cyan);
  font-weight: 950;
}

.split-section,
.preview-section,
.budget-section,
.receive-section,
.checkout-section {
  background: linear-gradient(180deg, rgb(7 17 29 / .26), rgb(7 17 29 / .62));
  border-block: 1px solid var(--line);
}

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

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

.compare-card ul,
.audience-panel ul {
  display: grid;
  gap: 10px;
}

.compare-card.muted,
.audience-panel.negative {
  background: rgb(255 255 255 / .035);
}

.tag-row,
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row span,
.trust-line span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.gallery {
  display: grid;
  gap: 14px;
}

.gallery-frame {
  width: 100%;
  min-height: 520px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 18%, rgb(0 183 255 / .16), transparent 52%), rgb(7 17 29 / .86);
  display: grid;
  place-items: center;
  padding: 24px;
}

.gallery-frame img {
  max-height: 470px;
  border-radius: 14px;
  filter: drop-shadow(0 24px 44px rgb(0 0 0 / .38));
}

.gallery-controls {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
}

.gallery-controls p {
  margin: 0;
  text-align: center;
  color: var(--text);
  font-weight: 850;
}

.accordion-list,
.faq-list {
  display: grid;
  gap: 12px;
}

.accordion-item,
.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(13 24 37 / .82);
}

.accordion-trigger,
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.accordion-trigger {
  display: grid;
  grid-template-columns: 86px 1fr minmax(160px, 1.1fr) 32px;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.accordion-trigger span {
  color: var(--cyan);
  font-weight: 950;
}

.accordion-trigger small {
  color: var(--muted);
}

.accordion-trigger i,
.faq-question i {
  justify-self: end;
  font-style: normal;
  color: var(--cyan);
  font-size: 24px;
}

.accordion-panel,
.faq-panel {
  display: none;
  padding: 0 20px 20px;
}

.accordion-trigger[aria-expanded="true"] + .accordion-panel,
.faq-question[aria-expanded="true"] + .faq-panel {
  display: block;
}

.budget-layout,
.receive-layout,
.checkout-layout {
  align-items: stretch;
}

.step-list {
  display: grid;
  gap: 16px;
}

.receive-list {
  columns: 2;
  column-gap: 28px;
  margin: 22px 0;
}

.price-offer {
  display: grid;
  align-content: start;
  gap: 18px;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 850;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgb(255 255 255 / .065);
  color: var(--text);
  padding: 13px 14px;
  outline: 0;
}

.checkout-form textarea {
  min-height: 112px;
  resize: vertical;
  word-break: break-all;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgb(110 231 255 / .12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.phone-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgb(255 255 255 / .065);
  overflow: hidden;
}

.phone-field input {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.phone-prefix {
  padding-left: 14px;
  color: var(--muted);
}

.coupon-applied,
.summary-box,
.pix-result {
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgb(0 183 255 / .07);
  padding: 16px;
}

.coupon-applied {
  display: grid;
  gap: 2px;
}

.coupon-applied span,
.coupon-applied small,
.summary-box span,
.summary-box small {
  color: var(--muted);
}

.coupon-applied strong,
.summary-box strong,
.summary-box b {
  color: var(--text);
}

.privacy-note {
  font-size: 13px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  font-weight: 850;
}

.form-message.is-error {
  color: #ffb4c4;
}

.form-message.is-success {
  color: #94ffcf;
}

.pix-result {
  display: grid;
  gap: 14px;
}

.pix-result[hidden] {
  display: none;
}

.pix-result img {
  width: 260px;
  height: 260px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 14px;
  background: white;
  padding: 8px;
}

.site-footer {
  padding: 54px 0 84px;
  border-top: 1px solid var(--line);
  background: #040810;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.footer-logo {
  width: 156px;
  margin-bottom: 16px;
}

.legal {
  max-width: 780px;
  color: #8ea3b7;
  font-size: 13px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
  color: var(--muted);
}

.sticky-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 110;
  display: none;
  transform: translateY(140%);
  transition: transform .22s var(--ease);
}

.sticky-mobile-cta.is-visible {
  transform: translateY(0);
}

.sticky-mobile-cta .btn {
  width: 100%;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgb(0 0 0 / .82);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 82vh;
  border-radius: 16px;
}

.lightbox p {
  margin: 12px 0 0;
  color: var(--text);
  font-weight: 850;
}

.lightbox-close {
  position: absolute;
  right: 18px;
  top: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

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

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

@media (max-width: 1060px) {
  .desktop-nav,
  .nav-shell > .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-shell {
    grid-template-columns: 170px 1fr;
  }

  .hero-grid,
  .problem-layout,
  .preview-layout,
  .budget-layout,
  .receive-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

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

  .hero-visual {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container,
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding: 104px 0 48px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(28px, 8.5vw, 40px);
  }

  .hero-offer,
  .price-box,
  .hero-offer .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .book-composition {
    height: 430px;
  }

  .book-cover {
    width: 245px;
  }

  .preview-page {
    width: 150px;
  }

  .ad-budget-chip {
    right: 0;
    top: 8px;
  }

  .mini-dashboard {
    left: 0;
    bottom: 28px;
    width: 190px;
  }

  .trust-grid,
  .card-grid,
  .benefit-grid,
  .models-grid,
  .comparison-grid,
  .audience-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .accordion-trigger {
    grid-template-columns: 1fr 32px;
    gap: 8px 12px;
  }

  .accordion-trigger span,
  .accordion-trigger strong,
  .accordion-trigger small {
    grid-column: 1;
  }

  .accordion-trigger i {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .receive-list {
    columns: 1;
  }

  .gallery-frame {
    min-height: 420px;
  }

  .gallery-frame img {
    max-height: 370px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-cta {
    display: block;
  }

  .site-footer {
    padding-bottom: 104px;
  }
}

@media (max-width: 380px) {
  .container,
  .nav-shell {
    width: min(100% - 22px, var(--max));
  }

  .brand-logo,
  .brand-logo img {
    width: 142px;
  }

  .btn {
    padding-inline: 14px;
  }

  .price-box strong {
    font-size: 30px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .book-cover {
    width: 220px;
  }

  .preview-page {
    width: 132px;
  }
}

/* V5: audience-first commercial variation */
.v5-hero h1 mark {
  color: #06131f;
  background: linear-gradient(135deg, #67e8f9 0%, #22d3ee 42%, #a7f3d0 100%);
  border-radius: 8px;
  padding: 0 .14em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.inline-price {
  display: inline-block;
  color: #fef3c7;
  text-shadow: 0 0 26px rgba(251, 191, 36, .34);
  white-space: nowrap;
}

.v5-hero-visual {
  isolation: isolate;
}

.audience-radar {
  position: absolute;
  top: 16px;
  right: 8px;
  z-index: 5;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, .34);
  background: radial-gradient(circle, rgba(34, 211, 238, .24) 0 2px, transparent 3px), radial-gradient(circle, rgba(34, 211, 238, .10) 0 30%, transparent 31%), rgba(2, 8, 23, .58);
  box-shadow: 0 24px 54px rgba(34, 211, 238, .18), inset 0 0 0 34px rgba(34, 211, 238, .055), inset 0 0 0 72px rgba(34, 211, 238, .035);
  pointer-events: none;
}

.audience-radar::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto 50%;
  width: 46%;
  height: 2px;
  background: linear-gradient(90deg, rgba(34, 211, 238, .9), transparent);
  transform-origin: left center;
  animation: radarSweep 6s linear infinite;
}

.audience-radar strong {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #dffcff;
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}

.radar-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a7f3d0;
  box-shadow: 0 0 18px rgba(167, 243, 208, .8);
}

.radar-dot.d1 { top: 54px; left: 74px; }
.radar-dot.d2 { top: 82px; right: 46px; }
.radar-dot.d3 { bottom: 72px; left: 48px; }
.radar-dot.d4 { bottom: 54px; right: 72px; }

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

.v5-example-grid .info-card,
.v5-openings .info-card,
.v5-path .step-card,
.v5-models .model-card,
.content-section .accordion-item {
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(9, 24, 40, .64), rgba(4, 12, 23, .46));
  border-width: 1px 0 0;
  box-shadow: none;
}

.v5-example-grid .info-card,
.v5-path .step-card {
  border-left: 3px solid rgba(34, 211, 238, .72);
}

.v5-openings .info-card span,
.benefit-grid .info-card span {
  color: #67e8f9;
}

.v5-path {
  display: grid;
  gap: 12px;
}

.v5-path .step-card {
  padding: 18px 20px;
}

.v5-models .model-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px 16px;
  align-items: start;
}

.v5-models .model-card span {
  grid-row: span 2;
}

.v5-models .model-card p strong {
  color: #e2f7ff;
  font-weight: 900;
}

.highlight-line {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #06131f;
  background: linear-gradient(135deg, #67e8f9, #a7f3d0);
  font-weight: 900;
}

.legal-section {
  padding: 40px 0 64px;
  background: rgba(2, 6, 23, .72);
}

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

.legal-grid article {
  border-top: 1px solid rgba(148, 163, 184, .24);
  padding-top: 18px;
  color: var(--muted);
}

.legal-grid h2 {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .audience-radar {
    width: 176px;
    height: 176px;
    right: -8px;
    top: 2px;
  }

  .audience-radar strong {
    font-size: 12px;
    left: 18px;
    right: 18px;
  }
}

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

@media (max-width: 640px) {
  .audience-radar {
    transform: scale(.82);
    transform-origin: top right;
  }

  .v5-models .model-card {
    grid-template-columns: 46px 1fr;
  }

  .highlight-line {
    border-radius: 8px;
  }
}


/* Funnel trust blocks - shared across LP versions */
.funnel-trust-section {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(180deg, rgba(2, 8, 23, .88), rgba(6, 18, 32, .78));
}

.funnel-trust-grid {
  display: grid;
  grid-template-columns: .82fr 1.08fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.funnel-trust-grid > article {
  border: 1px solid rgba(148, 163, 184, .2);
  border-top-color: rgba(34, 211, 238, .46);
  border-radius: 8px;
  padding: 24px;
  background: rgba(8, 20, 35, .58);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .18);
}

.funnel-trust-grid h2,
.funnel-trust-grid h3 {
  margin: 0 0 12px;
  color: var(--text, #f8fafc);
}

.funnel-trust-grid p,
.funnel-trust-grid li {
  color: var(--muted, #b6c2d2);
}

.funnel-trust-grid ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.funnel-trust-grid li + li {
  margin-top: 8px;
}

.funnel-badge {
  display: inline-grid;
  place-items: center;
  min-width: 76px;
  height: 76px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #06131f;
  background: linear-gradient(135deg, #67e8f9, #a7f3d0);
  font-weight: 1000;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(34, 211, 238, .22);
}

.promo-note {
  display: block;
  margin-top: 6px;
  color: var(--muted, #b6c2d2);
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .funnel-trust-grid {
    grid-template-columns: 1fr;
  }
}
