:root {
  --bg: #070909;
  --bg2: #0d1010;
  --panel: #111515;
  --panel2: #0b0f0d;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --txt: #f6f8f5;
  --muted: #aeb8b1;
  --muted2: #859087;
  --green: #00e110;
  --green2: #00f572;
  --shadow: 0 25px 90px rgba(0, 0, 0, 0.4);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 5%, rgba(0, 225, 16, 0.1), transparent 22rem),
    radial-gradient(
      circle at 15% 35%,
      rgba(0, 245, 114, 0.04),
      transparent 22rem
    ),
    var(--bg);
  color: var(--txt);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.lightbox-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
img,
video {
  max-width: 100%;
}
button {
  color: inherit;
}
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}

.nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(18px);
  background: rgba(7, 9, 9, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: 130px;
  height: auto;
  object-fit: contain;
}
.nav-cta {
  border: 1px solid var(--line);
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  transition: 0.2s ease;
}
.nav-cta:hover {
  border-color: rgba(0, 245, 114, 0.45);
  background: rgba(0, 245, 114, 0.05);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(0, 245, 114, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 114, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -200px;
  top: 120px;
  border: 1px solid rgba(0, 245, 114, 0.12);
  box-shadow: 0 0 140px rgba(0, 225, 16, 0.06) inset;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 55px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy {
  min-width: 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ebffef;
  border: 1px solid rgba(0, 245, 114, 0.58);
  background: linear-gradient(
    90deg,
    rgba(0, 225, 16, 0.18),
    rgba(0, 245, 114, 0.11)
  );
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  box-shadow:
    0 0 9px rgba(0, 245, 114, 0.26),
    0 0 22px rgba(0, 225, 16, 0.14),
    0 0 38px rgba(0, 245, 114, 0.07),
    inset 0 0 12px rgba(0, 245, 114, 0.05);
  text-shadow: 0 0 7px rgba(0, 245, 114, 0.2);
  transition: 0.25s ease;
}
.eyebrow:hover {
  border-color: rgba(0, 245, 114, 0.78);
  box-shadow:
    0 0 12px rgba(0, 245, 114, 0.34),
    0 0 28px rgba(0, 225, 16, 0.19),
    0 0 48px rgba(0, 245, 114, 0.09),
    inset 0 0 14px rgba(0, 245, 114, 0.07);
}
.eyebrow i {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  background: var(--green2);
  border-radius: 50%;
  box-shadow:
    0 0 6px rgba(0, 245, 114, 1),
    0 0 13px rgba(0, 245, 114, 0.7),
    0 0 22px rgba(0, 225, 16, 0.32);
}
h1 {
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin: 24px 0 25px;
  max-width: 980px;
}
.accent {
  color: var(--green2);
}
.lead {
  font-size: clamp(18px, 2vw, 24px);
  color: #c5cec7;
  max-width: 760px;
  margin: 0 0 34px;
}
.actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 17px 24px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: #041108;
  box-shadow: 0 10px 36px rgba(0, 245, 114, 0.18);
}
.btn-primary:hover {
  box-shadow: 0 12px 42px rgba(0, 245, 114, 0.26);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line);
}
.btn-secondary:hover {
  border-color: rgba(0, 245, 114, 0.35);
  background: rgba(0, 245, 114, 0.04);
}
.micro {
  margin-top: 17px;
  color: #8d9990;
  font-size: 13px;
  max-width: 770px;
}
.hero-card {
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card:before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(0, 245, 114, 0.08);
  filter: blur(15px);
}
.kicker,
.section-kicker {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #93a095;
}
.section-kicker {
  display: inline-block;
  color: #8cffb3;
  font-weight: 800;
  margin-bottom: 14px;
}
.big-stat {
  font-size: 58px;
  letter-spacing: -0.06em;
  font-weight: 900;
  margin: 8px 0 0;
  color: var(--green2);
}
.stat-desc {
  font-size: 16px;
  color: #b3bdb6;
  margin-bottom: 26px;
}
.mini-list {
  display: grid;
  gap: 10px;
}
.mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dfe4df;
  font-size: 14px;
}
.dot {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 245, 114, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green2);
  font-size: 12px;
}

section {
  padding: 105px 0;
}
.dark-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090c0b;
}
.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 45px;
  align-items: end;
  margin-bottom: 44px;
}
.section-head-single {
  display: block;
  margin-bottom: 25px;
}
h2 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0;
}
.section-head p {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
  margin: 0 0 5px;
}

.numbers-strip {
  padding: 28px 0 34px;
  background: linear-gradient(180deg, #080b09, #070909);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.number-card {
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  min-width: 0;
}
.number-card strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}
.number-card span {
  display: block;
  margin-top: 8px;
  color: #8f9b92;
  font-size: 12px;
}
.source-note {
  color: #667169;
  font-size: 11px;
  margin-top: 13px;
}
.source-note-inline {
  display: block;
  margin-top: 14px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 245px;
}
.n {
  font-size: 20px;
  color: var(--green2);
  letter-spacing: 0.09em;
  font-weight: 800;
}
.card h3 {
  font-size: 25px;
  letter-spacing: -0.035em;
  margin: 46px 0 10px;
}
.card p {
  color: #9eaaa1;
  margin: 0;
}

.steps {
  display: grid;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 95px 1fr 1fr;
  gap: 26px;
  padding: 33px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.step:first-child {
  border-top: 0;
}
.step-num {
  font-size: 25px;
  color: var(--green2);
  font-weight: 800;
}
.step h3 {
  font-size: 28px;
  margin: 0;
  letter-spacing: -0.03em;
}
.step p {
  color: var(--muted);
  margin: 0;
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr 620px;
  gap: 48px;
  align-items: center;
}
.authority-copy {
  padding: 12px 0;
}
.authority-copy p {
  color: var(--muted);
  font-size: 18px;
  max-width: 680px;
}
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.recognition {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.025);
}
.recognition b {
  display: block;
  font-size: 20px;
  color: #fff;
}
.recognition span {
  display: block;
  font-size: 12px;
  color: #8f9b92;
  margin-top: 4px;
}
.forbes-card {
  margin: 0;
  width: 100%;
  max-width: 620px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(0, 245, 114, 0.045),
      transparent 55%
    ),
    #0d1110;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  overflow: visible;
}

.forbes-card img {
  display: block;
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  justify-self: center;
  align-self: center;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.forbes-card figcaption {
  width: 100%;
  max-width: 450px;
  padding: 30px 0 8px;
  display: flex;
  flex-direction: column;
  align-self: center;
  overflow: visible;
}

.forbes-card strong {
  display: block;
  width: 100%;
  margin-top: 12px;
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #fff;
}
.forbes-card small {
  display: block;
  width: 100%;
  margin-top: 16px;
  color: #8e9a91;
  font-size: 14px;
  line-height: 1.65;
}

.ecosystem {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.eco {
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  transition: 0.2s ease;
  min-height: 150px;
}
.eco:hover {
  border-color: rgba(0, 245, 114, 0.38);
  transform: translateY(-3px);
  background: rgba(0, 245, 114, 0.035);
}
.eco b {
  font-size: 19px;
}
.eco p {
  color: #95a098;
  font-size: 14px;
  margin: 7px 0 0;
}

.social-section {
  overflow: hidden;
}
.social-head {
  align-items: start;
}
.proof-shell {
  position: relative;
  border: 1px solid rgba(0, 245, 114, 0.2);
  border-radius: 34px;
  background: linear-gradient(145deg, #0d1210, #080b09);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}
.proof-stage {
  position: relative;
  aspect-ratio: 16/9;
  background: #020302;
}
.proof-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 0.8s ease,
    transform 1.1s ease;
  pointer-events: none;
}
.proof-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.proof-image-button {
  border: 0;
  background: none;
  padding: 0;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  display: block;
}
.proof-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proof-stage:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(6, 9, 7, 0.6), transparent);
}
.proof-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
}
.proof-category {
  display: inline-block;
  color: var(--green2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 850;
}
.proof-info h3 {
  margin: 4px 0 0;
  font-size: 28px;
  letter-spacing: -0.035em;
}
.proof-info p {
  margin: 2px 0 0;
  color: #839087;
  font-size: 13px;
}
.proof-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.proof-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #101512;
  cursor: pointer;
  transition: 0.2s;
}
.proof-arrow:hover {
  border-color: rgba(0, 245, 114, 0.45);
  background: rgba(0, 245, 114, 0.06);
}
.proof-counter {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 66px;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  color: #d9e0da;
}
.proof-counter em {
  font-style: normal;
  color: #566058;
}
.proof-progress {
  height: 3px;
  background: #182019;
}
.proof-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--green2));
  transition: width 0.12s linear;
}
.social-disclaimer {
  margin-top: 14px;
  color: #6f7a72;
  font-size: 11px;
  max-width: 900px;
}

.video-proof-section {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 245, 114, 0.045),
      transparent 24rem
    ),
    var(--bg);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.video-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: #0c100e;
  transition: 0.2s ease;
}
.video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 245, 114, 0.25);
}
.video-frame {
  aspect-ratio: 16/9;
  background: #000;
}
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.video-copy {
  padding: 20px;
}
.video-copy span {
  color: var(--green2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.video-copy h3 {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 7px 0 8px;
}
.video-copy p {
  color: #8f9a92;
  font-size: 13px;
  margin: 0;
}

.profile {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
}
.profile-visual {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      circle at 72% 28%,
      rgba(0, 245, 114, 0.16) 0%,
      rgba(0, 225, 16, 0.06) 18%,
      transparent 42%
    ),
    linear-gradient(145deg, #111715 0%, #0c100f 48%, #080a09 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 25px 70px rgba(0, 0, 0, 0.25);
}
.profile-visual::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: 70px;
  right: -50px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 114, 0.16);
  box-shadow:
    0 0 0 35px rgba(0, 245, 114, 0.025),
    0 0 0 70px rgba(0, 245, 114, 0.015);
  pointer-events: none;
}
.profile-visual::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  top: 120px;
  left: 70px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 245, 114, 0.18) 0%,
    rgba(0, 245, 114, 0.04) 45%,
    transparent 70%
  );
  filter: blur(2px);
  pointer-events: none;
}
.visual-copy {
  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 38px;
  z-index: 2;
}
.visual-copy small {
  display: inline-block;
  color: var(--green2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-bottom: 12px;
}
.visual-copy h3 {
  margin: 0;
  max-width: 460px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #fff;
}
.checklist {
  display: grid;
  gap: 12px;
}
.check {
  display: flex;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}
.check span:first-child {
  color: var(--green2);
  font-weight: 900;
}
.check b {
  display: block;
}
.check em {
  display: block;
  color: #93a098;
  font-style: normal;
  font-size: 14px;
  margin-top: 3px;
}

.partnership-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}
.partnership-grid p {
  color: var(--muted);
  font-size: 17px;
  max-width: 690px;
}
.partner-line {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 25px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 245, 114, 0.2);
  border-radius: 18px;
  background: rgba(0, 245, 114, 0.035);
}
.partner-line strong {
  font-size: 20px;
}
.partner-line span {
  color: var(--green2);
  font-weight: 900;
}
.partnership-video {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: #050706;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    0 0 40px rgba(0, 245, 114, 0.04);
}

.partnership-video iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.market-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(0, 245, 114, 0.1),
      transparent 18rem
    ),
    #0c100e;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.market-card strong {
  font-size: 38px;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.market-card p {
  font-size: 15px;
}
.market-points {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.market-points span {
  padding: 9px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  color: #d7ddd8;
}

.recognition-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.recognition-journey article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.015)
  );
  min-height: 235px;
  overflow: hidden;
}
.recognition-journey article:after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  right: -36px;
  top: -30px;
  background: rgba(0, 245, 114, 0.08);
  filter: blur(4px);
}
.recognition-journey span {
  color: var(--green2);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.recognition-journey h3 {
  font-size: 24px;
  line-height: 1.08;
  margin: 50px 0 10px;
}
.recognition-journey p {
  margin: 0;
  color: #8f9a92;
  font-size: 14px;
}

.price-panel {
  border: 1px solid rgba(0, 245, 114, 0.24);
  border-radius: 36px;
  padding: 35px;
  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(0, 245, 114, 0.09),
      transparent 22rem
    ),
    #0d1110;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 35px;
  align-items: center;
}
.price-grid h2 {
  margin-top: 20px;
}
.price {
  font-size: clamp(48px, 7vw, 86px);
  letter-spacing: -0.06em;
  font-weight: 900;
  line-height: 1;
}
.price sup {
  font-size: 20px;
  letter-spacing: 0;
  color: #b3beb6;
}
.price-note {
  color: #98a49b;
  margin-top: 10px;
}
.price-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 13px;
  text-align: center;
  color: #d5dcd6;
}
.price-btn {
  margin-top: 22px;
  width: 100%;
}

.quiz-section {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(0, 245, 114, 0.04),
      transparent 18rem
    ),
    var(--bg);
}
.quiz {
  background: #0b0e0d;
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.progress {
  height: 5px;
  background: #1a211d;
  border-radius: 99px;
  overflow: hidden;
  margin: 18px 0 33px;
}
.progress > i {
  display: block;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--green), var(--green2));
  transition: 0.3s;
}
.q {
  display: none;
}
.q.active {
  display: block;
}
.q h3 {
  font-size: 32px;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}
.options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.opt {
  background: #101513;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  color: #eef3ef;
  cursor: pointer;
  text-align: left;
  transition: 0.18s;
}
.opt:hover,
.opt.selected {
  border-color: rgba(0, 245, 114, 0.56);
  background: rgba(0, 245, 114, 0.07);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
label {
  font-size: 12px;
  color: #8d9a91;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
input,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: #0e1311;
  color: #fff;
  border-radius: 14px;
  padding: 15px 16px;
  outline: none;
}
input:focus,
select:focus {
  border-color: rgba(0, 245, 114, 0.5);
}
.privacy-note {
  color: #839087;
  font-size: 12px;
  margin: 13px 0 0;
}
.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 23px;
}
.back {
  background: transparent;
  border: 0;
  color: #9aa69d;
  cursor: pointer;
  visibility: hidden;
}
.result-box {
  border: 1px solid rgba(0, 245, 114, 0.26);
  background: rgba(0, 245, 114, 0.06);
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 18px;
}
.result-box strong {
  font-size: 23px;
}
.result-box p {
  color: #acb7af;
  margin: 8px 0 0;
}
.result-explain {
  color: #9da89f;
  max-width: 720px;
}
#nextBtn {
  display: none;
}

.faq {
  display: grid;
  gap: 10px;
}
details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.02);
}
summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 750;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
details p {
  color: #9ca89f;
  margin: 0 0 20px;
}

.closing {
  text-align: center;
  padding-bottom: 150px;
}
.closing h2 {
  max-width: 930px;
  margin: 24px auto;
}
.closing p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #9da89f;
  font-size: 18px;
}
footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 100px;
  color: #77827a;
  font-size: 12px;
}
.mobile-bar {
  display: none;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  transform: translate(-50%, 20px);
  background: #eef5ef;
  color: #0a0d0b;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 80;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.22s ease;
  backdrop-filter: blur(8px);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(1180px, 94vw);
  max-height: 88vh;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.65);
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #111;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* =====================================================
   RESULTADO / WHATSAPP
   ===================================================== */
.whatsapp-result-card {
  position: relative;
  padding: 32px;
  margin-top: 18px;
  border: 1px solid rgba(0, 245, 114, 0.28);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(0, 245, 114, 0.1),
      transparent 16rem
    ),
    #0d1210;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.whatsapp-result-card h3 {
  max-width: 700px;
  margin: 5px 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.whatsapp-result-card > p {
  max-width: 690px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
}

.whatsapp-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.whatsapp-benefits span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d9e5dc;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.btn-whatsapp {
  background: linear-gradient(90deg, #00d95f, #00f572);
  color: #041108;
  box-shadow: 0 10px 36px rgba(0, 245, 114, 0.2);
}

.btn-whatsapp:hover {
  box-shadow: 0 12px 42px rgba(0, 245, 114, 0.3);
}

.whatsapp-result-card small {
  display: block;
  margin-top: 13px;
  color: #718077;
  font-size: 11px;
}
/* =====================================================
   ESCOLHA FINAL - ATIVAÇÃO OU WHATSAPP
   ===================================================== */

.final-decision-card {
  margin-top: 20px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(0, 245, 114, 0.08),
      transparent 20rem
    ),
    #0d1110;
}

.final-decision-card h3 {
  margin: 4px 0 12px;
  max-width: 780px;
  font-size: clamp(27px, 3.5vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.final-decision-card > p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 26px;
}

.final-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 760px;
}

.final-actions .btn {
  width: 100%;
}

/* WhatsApp como segundo CTA */
.btn-whatsapp-outline {
  color: #eaffee;
  background: rgba(0, 245, 114, 0.055);
  border: 1px solid rgba(0, 245, 114, 0.38);
  box-shadow: inset 0 0 18px rgba(0, 245, 114, 0.025);
  transition: 0.2s ease;
}

.btn-whatsapp-outline:hover {
  color: #041108;
  background: linear-gradient(90deg, var(--green), var(--green2));
  border-color: transparent;
  box-shadow: 0 10px 32px rgba(0, 245, 114, 0.2);
}

.whatsapp-icon {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green2);
  box-shadow: 0 0 8px rgba(0, 245, 114, 0.8);
}

.btn-whatsapp-outline:hover .whatsapp-icon {
  background: #041108;
  box-shadow: none;
}

/* Informação abaixo dos botões */

.decision-help {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
  max-width: 760px;
}

.decision-help > div {
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.decision-help strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.decision-help span {
  display: block;
  margin-top: 3px;
  color: #7f8b82;
  font-size: 12px;
}

@media (max-width: 1050px) {
  .numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .authority-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .forbes-card {
    width: min(100%, 720px);
    justify-self: center;
    grid-template-columns: minmax(260px, 320px) 1fr;
  }
  .recognition-journey {
    grid-template-columns: 1fr 1fr;
  }
  .partnership-grid {
    grid-template-columns: 1fr;
  }
  .partnership-video {
    width: 100%;
    max-width: 900px;

    justify-self: center;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .section-head,
  .profile,
  .price-grid,
  .partnership-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 125px;
  }
  .hero-card {
    max-width: 520px;
  }
  .cards,
  .ecosystem {
    grid-template-columns: 1fr 1fr;
  }
  .step {
    grid-template-columns: 60px 1fr;
  }
  .step p {
    grid-column: 2;
  }
  .profile-visual {
    min-height: 420px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .video-frame {
    aspect-ratio: auto;
    min-height: 250px;
  }
  .forbes-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .forbes-card img {
    width: 100%;
    max-height: 520px;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 26px, var(--max));
  }
  .nav-inner {
    height: 64px;
  }
  .nav-cta {
    display: none;
  }
  .brand-logo {
    width: 115px;
  }
  section {
    padding: 78px 0;
  }
  .hero {
    padding-top: 110px;
  }
  h1 {
    font-size: 54px;
  }
  .eyebrow {
    font-size: 10.5px;
    padding: 8px 11px;
    letter-spacing: 0.045em;
    max-width: 100%;
  }
  .lead {
    font-size: 18px;
  }
  .actions .btn {
    width: 100%;
  }
  .hero-card {
    padding: 23px;
  }
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .number-card strong {
    font-size: 24px;
  }
  .cards,
  .ecosystem,
  .options,
  .form-grid,
  .price-features {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .card {
    min-height: 210px;
  }
  .step {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
  .step h3 {
    font-size: 24px;
  }
  .recognition-grid {
    grid-template-columns: 1fr;
  }
  .forbes-card {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 20px;
    gap: 24px;
    border-radius: 26px;
  }
  .forbes-card img {
    width: 100%;
    max-width: 420px;
    justify-self: center;
  }
  .forbes-card figcaption {
    padding: 4px 2px 8px;
  }
  .forbes-card strong {
    font-size: 28px;
    max-width: none;
  }
  .forbes-card small {
    max-width: none;
  }
  .proof-info {
    align-items: flex-end;
    padding: 16px;
  }
  .proof-info h3 {
    font-size: 21px;
  }
  .proof-nav {
    gap: 6px;
  }
  .proof-arrow {
    width: 38px;
    height: 38px;
  }
  .proof-counter {
    font-size: 12px;
    min-width: 52px;
  }
  .video-card {
    display: block;
  }
  .video-frame {
    aspect-ratio: 16/9;
    min-height: 0;
  }
  .profile-visual {
    min-height: 390px;
    border-radius: 26px;
  }
  .profile-visual::before {
    width: 190px;
    height: 190px;
    top: 45px;
    right: -65px;
  }
  .profile-visual::after {
    width: 70px;
    height: 70px;
    top: 90px;
    left: 35px;
  }
  .visual-copy {
    left: 25px;
    right: 25px;
    bottom: 28px;
  }
  .visual-copy h3 {
    font-size: 30px;
    line-height: 1.08;
  }
  .recognition-journey {
    grid-template-columns: 1fr;
  }
  .partnership-video {
    border-radius: 22px;
  }
  .quiz {
    padding: 22px;
    border-radius: 28px;
  }
  .q h3 {
    font-size: 27px;
  }
  .mobile-bar {
    display: block;
    position: fixed;
    z-index: 60;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(7, 9, 9, 0.9);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
  }
  .mobile-bar .btn {
    width: 100%;
    padding: 14px;
  }
  footer {
    padding-bottom: 110px;
  }
  .lightbox {
    padding: 18px;
  }
  .lightbox-close {
    top: 12px;
    right: 12px;
  }
  .whatsapp-result-card {
    padding: 22px;
    border-radius: 22px;
  }
  .whatsapp-result-card h3 {
    font-size: 29px;
  }
  .btn-whatsapp {
    width: 100%;
  }
  .final-decision-card {
    padding: 22px;
    border-radius: 22px;
  }
  .final-actions {
    grid-template-columns: 1fr;
  }
  .decision-help {
    grid-template-columns: 1fr;
  }
}

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

/* --- Prova social: filtros + métrica do case --- */
.proof-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: -18px 0 18px;
}
.proof-filter {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: #aab5ad;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: 0.2s ease;
}
.proof-filter:hover {
  border-color: rgba(0, 245, 114, 0.38);
  color: #eaffef;
  background: rgba(0, 245, 114, 0.045);
}
.proof-filter.is-active {
  color: #061008;
  border-color: transparent;
  background: linear-gradient(90deg, var(--green), var(--green2));
  box-shadow: 0 0 16px rgba(0, 245, 114, 0.16);
}
.proof-shell {
  isolation: isolate;
}
.proof-glow {
  position: absolute;
  z-index: -1;
  width: 56%;
  height: 42%;
  left: 22%;
  top: -20%;
  border-radius: 50%;
  background: rgba(0, 245, 114, 0.11);
  filter: blur(65px);
  pointer-events: none;
}
.proof-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.75fr) auto;
}
.proof-person {
  min-width: 0;
}
.proof-metric {
  padding: 12px 16px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-width: 0;
}
.proof-metric small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #738078;
  font-weight: 800;
}
.proof-metric strong {
  display: block;
  margin-top: 3px;
  color: #f3fff6;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.proof-slide.is-filtered-out {
  display: none;
}

@media (max-width: 760px) {
  .proof-info {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .proof-metric {
    grid-column: 1/-1;
    grid-row: 2;
    border: 0;
    border-top: 1px solid var(--line);
    padding: 13px 0 0;
    margin-top: 2px;
  }
  .proof-nav {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (max-width: 620px) {
  .proof-filters {
    flex-wrap: nowrap;
    overflow: auto;
    padding-bottom: 6px;
    margin-top: -10px;
    scrollbar-width: none;
  }
  .proof-filters::-webkit-scrollbar {
    display: none;
  }
  .proof-filter {
    flex: 0 0 auto;
  }
  .proof-info {
    padding: 16px;
  }
  .proof-metric strong {
    font-size: 16px;
  }
}
