﻿:root {
  --bg: #040607;
  --bg-2: #07100c;
  --panel: rgba(8, 15, 18, 0.78);
  --panel-solid: #081012;
  --line: rgba(120, 255, 170, 0.22);
  --line-strong: rgba(120, 255, 170, 0.52);
  --text: #f5fbf7;
  --muted: #aab9b3;
  --soft: #d7e2dd;
  --green: #43e77f;
  --green-2: #0ebc69;
  --blue: #3478ff;
  --blue-2: #23b7ff;
  --danger: #07110e;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(5, 11, 12, 0.94), rgba(2, 4, 6, 1) 38%),
    repeating-linear-gradient(90deg, rgba(67, 231, 127, 0.035) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(0deg, rgba(52, 120, 255, 0.028) 0 1px, transparent 1px 86px),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 58%);
  z-index: -2;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: calc(100% - 32px);
  max-width: 1180px;
  height: 72px;
  margin: 0 auto;
  padding: 0 4px;
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.top-cta {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 8, 9, 0.64);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  height: 44px;
  padding: 0 14px 0 9px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: #021008;
  background: linear-gradient(135deg, var(--green), var(--blue-2));
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 8px;
  border-radius: 999px;
}

.nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--text);
}

.top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #031108;
  background: linear-gradient(135deg, var(--green), #92ff98);
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 42px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), rgba(52, 120, 255, 0.55), transparent);
}

.hero-grid,
.section,
.comparison-section,
.process-section,
.offer-section,
.faq-section,
.footer {
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
}

.hero-copy {
  padding: 34px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Archivo Black", "Manrope", sans-serif;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: 4.8rem;
  line-height: 0.98;
  overflow-wrap: normal;
}

.headline-accent {
  display: block;
  color: var(--green);
  text-shadow: 0 0 34px rgba(67, 231, 127, 0.24);
}

h2 {
  margin-bottom: 18px;
  font-size: 3.25rem;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--soft);
  font-size: clamp(1.03rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #041008;
  background: linear-gradient(135deg, #7cff98, var(--green-2));
  box-shadow: 0 18px 52px rgba(67, 231, 127, 0.26);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.button-icon {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.button-icon::before,
.button-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.button-icon::before {
  left: 3px;
  top: 8px;
  width: 12px;
  height: 2px;
}

.button-icon::after {
  right: 2px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}

.hero-art {
  display: flex;
  justify-content: flex-end;
}

.product-shell {
  position: relative;
  width: min(740px, 100%);
  margin-right: -46px;
  filter: drop-shadow(0 34px 90px rgba(52, 120, 255, 0.24)) drop-shadow(0 18px 58px rgba(67, 231, 127, 0.12));
}

.product-shell::before {
  display: none;
}

.product-shell img {
  width: 100%;
  max-height: 760px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.video-section {
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 0 72px;
}

.video-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.video-heading p {
  max-width: 680px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(120, 255, 170, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(52, 120, 255, 0.36);
  border-radius: 8px;
  transform: translate(10px, 10px);
  z-index: -1;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08) 0 14%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.18) 100%);
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.video-play-overlay::before {
  content: "";
  position: absolute;
  width: clamp(118px, 15vw, 188px);
  height: clamp(118px, 15vw, 188px);
  border-radius: 50%;
  background: rgba(67, 231, 127, 0.1);
  box-shadow: 0 0 80px rgba(67, 231, 127, 0.28), 0 0 140px rgba(52, 120, 255, 0.2);
}

.play-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(86px, 10vw, 128px);
  height: clamp(86px, 10vw, 128px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: linear-gradient(135deg, #67ff91 0%, #18d66d 46%, #3478ff 100%);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.48), 0 0 42px rgba(67, 231, 127, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: clamp(17px, 2vw, 24px) solid transparent;
  border-bottom: clamp(17px, 2vw, 24px) solid transparent;
  border-left: clamp(28px, 3.1vw, 42px) solid #031108;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.18));
}

.video-play-overlay:hover .play-icon,
.video-play-overlay:focus-visible .play-icon {
  transform: scale(1.06);
  box-shadow: 0 26px 92px rgba(0, 0, 0, 0.54), 0 0 58px rgba(67, 231, 127, 0.46);
}

.video-frame.video-started .video-play-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020506;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #07100c;
}

.ticker-inner {
  display: flex;
  width: max-content;
  min-width: 100%;
  justify-content: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 16px 24px;
}

.ticker span {
  color: #c9ffd4;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: 96px 0 46px;
}

.section-tight {
  padding-top: 92px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading p {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.align-left p {
  margin-left: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 198px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(6, 11, 13, 0.72);
}

.feature-card-accent {
  border-color: rgba(67, 231, 127, 0.5);
  background:
    linear-gradient(145deg, rgba(67, 231, 127, 0.15), rgba(52, 120, 255, 0.08)),
    rgba(6, 11, 13, 0.78);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--green);
  font-weight: 900;
}

.check-list,
.mini-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.mini-list li {
  position: relative;
  padding-left: 32px;
  color: var(--soft);
  line-height: 1.65;
}

.check-list li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 16px;
  height: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--green), var(--blue-2));
  box-shadow: 0 0 22px rgba(67, 231, 127, 0.28);
}

.comparison-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  padding: 76px 0 96px;
}

.comparison-copy {
  max-width: 560px;
}

.comparison-copy h2 {
  max-width: 560px;
}

.comparison-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.comparison-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(67, 231, 127, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(67, 231, 127, 0.12), rgba(52, 120, 255, 0.045)),
    rgba(6, 11, 13, 0.68);
}

.comparison-card-win {
  border-color: rgba(67, 231, 127, 0.34);
}

.comparison-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #031108;
  font-size: 0.78rem;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #19d47b);
  box-shadow: 0 0 28px rgba(67, 231, 127, 0.26);
}

.comparison-card h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.comparison-card > div {
  min-width: 0;
}

.comparison-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.48;
  overflow-wrap: break-word;
}

.comparison-media {
  position: relative;
  isolation: isolate;
  margin-right: clamp(-28px, -2vw, 0px);
  filter: drop-shadow(0 34px 90px rgba(52, 120, 255, 0.2));
}

.comparison-media::before {
  content: "";
  position: absolute;
  inset: 12% 4% 6%;
  z-index: -1;
  background:
    radial-gradient(circle at 68% 50%, rgba(52, 120, 255, 0.26), transparent 42%),
    radial-gradient(circle at 24% 56%, rgba(255, 63, 40, 0.14), transparent 36%);
  filter: blur(34px);
}

.comparison-media img {
  width: 100%;
  min-width: min(640px, 100%);
  border-radius: 0;
}
.process-section {
  padding: 70px 0 82px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  min-height: 214px;
  padding: 28px;
  border-left: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, rgba(67, 231, 127, 0.08), rgba(52, 120, 255, 0.035)),
    rgba(255, 255, 255, 0.025);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #041008;
  background: var(--green);
  font-weight: 900;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: 92px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-box {
  padding: 30px;
  border: 1px solid rgba(120, 255, 170, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(67, 231, 127, 0.14), rgba(52, 120, 255, 0.06)),
    rgba(8, 16, 18, 0.95);
  box-shadow: var(--shadow);
}

.price-label {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.price-box strong {
  display: block;
  margin: 10px 0 12px;
  font-family: "Archivo Black", "Manrope", sans-serif;
  font-size: 5.9rem;
  line-height: 0.9;
}

.price-box .button {
  width: 100%;
  margin: 10px 0 16px;
}

.price-box small {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.faq-section {
  padding: 54px 0 98px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  color: var(--text);
  cursor: pointer;
  font-size: 1.16rem;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 720px;
  padding: 0 0 24px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  margin: 0;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .topbar {
    height: 64px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid,
  .comparison-section,
  .offer-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    display: contents;
  }

  h1 {
    max-width: 760px;
    font-size: 3.9rem;
  }

  h2 {
    font-size: 2.72rem;
  }

  .hero-art {
    justify-content: flex-start;
    order: 2;
  }

  .hero-copy h1 {
    order: 1;
  }

  .hero-text {
    order: 3;
  }

  .hero-actions {
    order: 4;
  }

  .product-shell {
    width: min(620px, 100%);
  }

  .product-shell img {
    max-height: 520px;
  }

  .comparison-media {
    justify-self: center;
    width: min(680px, 100%);
    margin-right: 0;
    order: 3;
  }

  .comparison-media img {
    min-width: 0;
  }

  .comparison-section {
    align-items: start;
    row-gap: 0;
  }

  .comparison-copy {
    display: contents;
  }

  .comparison-copy > .eyebrow {
    order: 1;
  }

  .comparison-copy > h2 {
    order: 2;
  }

  .comparison-copy > p:not(.eyebrow) {
    order: 4;
  }

  .comparison-points {
    order: 5;
  }

  .feature-grid,
  .comparison-points,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .comparison-section,
  .process-section,
  .offer-section,
  .video-section {
    padding: 64px 0;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .topbar,
  .hero-grid,
  .section,
  .comparison-section,
  .process-section,
  .offer-section,
  .faq-section,
  .footer,
  .video-section {
    width: calc(100% - 48px);
    max-width: 440px;
  }

  .brand {
    max-width: 152px;
  }

  .top-cta {
    display: none;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.08;
    margin-bottom: 0;
  }

  h2 {
    font-size: 2.15rem;
    line-height: 1.05;
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .hero-actions {
    margin-bottom: 0;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .feature-card,
  .process-step,
  .price-box {
    padding: 22px;
  }

  .comparison-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .comparison-card span {
    width: 34px;
    height: 34px;
    font-size: 0.7rem;
  }

  .comparison-card h3 {
    font-size: 0.96rem;
  }

  .comparison-card p {
    font-size: 0.88rem;
  }

  .hero {
    padding: 34px 0 28px;
  }

  .hero-grid {
    gap: 22px;
    text-align: center;
  }

  .video-section,
  .section,
  .process-section,
  .offer-section,
  .faq-section {
    padding: 40px 0;
  }

  .footer {
    padding: 24px 0 34px;
  }

  .section-tight {
    padding-top: 34px;
    padding-bottom: 18px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .comparison-section {
    padding: 32px 0 46px;
  }

  .comparison-copy > h2 {
    margin-bottom: 18px;
  }

  .comparison-copy > p:not(.eyebrow) {
    margin-bottom: 0;
  }

  .comparison-points {
    margin-top: 24px;
  }

  .comparison-media {
    width: 94%;
    margin: 0 auto 24px;
  }

  .product-shell {
    margin: 0 auto;
  }

  .price-box strong {
    font-size: 4.3rem;
  }

  .ticker-inner {
    justify-content: flex-start;
    overflow-x: auto;
  }
}


