:root {
  color-scheme: dark;
  --bg: #07101f;
  --bg-soft: #0c1830;
  --panel: #101d38;
  --panel-2: #13274a;
  --text: #f7fbff;
  --muted: #b8c7d9;
  --cyan: #5ef7ff;
  --green: #73ff91;
  --yellow: #ffcf48;
  --orange: #ff8b3d;
  --line: rgba(147, 237, 255, 0.22);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 4%, rgba(94, 247, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 86% 20%, rgba(255, 207, 72, 0.12), transparent 20rem),
    linear-gradient(180deg, #07101f 0%, #09162b 42%, #06101d 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--yellow);
  color: #06101d;
  border-radius: var(--radius);
  font-weight: 800;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(7, 16, 31, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #06101d;
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #101018;
  box-shadow: 0 12px 30px rgba(255, 151, 61, 0.24);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-small {
  min-height: 40px;
  padding: 9px 13px;
  background: rgba(115, 255, 145, 0.14);
  border-color: rgba(115, 255, 145, 0.36);
  color: var(--green);
}

.btn-full {
  width: 100%;
}

.hero {
  min-height: calc(100svh - 68px);
  display: grid;
  align-items: center;
  padding: 56px 0 44px;
  overflow: hidden;
}

.hero-grid,
.split,
.buy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-subtitle,
.lead {
  color: #dff7ff;
  font-size: clamp(18px, 2.4vw, 23px);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.badges span,
.product-tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(94, 247, 255, 0.08);
  color: #dffcff;
  font-size: 14px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
}

.hero-visual img,
.visual-frame,
.studio-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.hero-banner img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.copy-block p {
  color: var(--muted);
}

.progress-path,
.timeline,
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.progress-path {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.progress-path li,
.timeline li,
.steps li,
.card,
.price-card,
.compare > div,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
}

.progress-path li {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-weight: 950;
  text-align: center;
}

.visual-frame {
  padding: 12px;
}

.copy-block {
  max-width: 620px;
}

.cards {
  display: grid;
  gap: 16px;
}

.learn-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.card {
  padding: 22px;
}

.card img {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

.card p,
.card li,
.compare li,
.faq-list p,
.site-footer,
.legal p,
.legal li {
  color: var(--muted);
}

.card ul,
.compare ul,
.check-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.card li,
.compare li,
.check-list li {
  position: relative;
  padding-left: 24px;
  margin: 8px 0;
}

.card li::before,
.compare li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(115, 255, 145, 0.75);
}

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

.timeline li {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  font-weight: 900;
}

.timeline span,
.steps span {
  color: var(--yellow);
  font-size: 26px;
  font-weight: 950;
}

.two-cols {
  columns: 2;
  column-gap: 28px;
}

.product {
  background: linear-gradient(145deg, rgba(94, 247, 255, 0.12), rgba(255, 207, 72, 0.08));
}

.product-creatives {
  background: rgba(255, 255, 255, 0.025);
  border-block: 1px solid var(--line);
}

.creative-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr 0.78fr;
  align-items: stretch;
  gap: 16px;
}

.creative-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.creative-card img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
}

.creative-cover img {
  object-position: center top;
}

.creative-sheet img,
.creative-ad img {
  aspect-ratio: 1 / 1;
}

.creative-card figcaption {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: #dff7ff;
  font-size: 14px;
  font-weight: 800;
  background: rgba(5, 11, 21, 0.88);
}

.studio-band {
  display: grid;
  grid-template-columns: minmax(220px, 420px) 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  padding: 18px;
}

.studio-band p {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}

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

.compare > div {
  padding: 22px;
}

.trust-box {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(115, 255, 145, 0.35);
  border-radius: var(--radius);
  background: rgba(115, 255, 145, 0.08);
}

.trust-box p {
  margin: 8px 0 0;
}

.buy {
  background: linear-gradient(180deg, rgba(94, 247, 255, 0.07), rgba(255, 207, 72, 0.04));
  border-block: 1px solid var(--line);
}

.price-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(19, 39, 74, 0.96), rgba(16, 29, 56, 0.96));
}

.regular-price {
  margin: 18px 0 0;
  color: var(--muted);
  text-decoration: line-through;
}

.sale-price {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 950;
  line-height: 1;
}

.sale-price small {
  color: var(--muted);
  font-size: 18px;
}

.microcopy,
.config-warning {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.config-warning {
  color: #ffd166;
}

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

.steps li {
  min-height: 132px;
  padding: 22px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

.final-cta {
  padding: 78px 0;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(115, 255, 145, 0.12), rgba(255, 207, 72, 0.12)),
    #0a1529;
  border-top: 1px solid var(--line);
}

.final-cta p {
  max-width: 660px;
  margin: 16px auto 24px;
  color: #dff7ff;
  font-size: 20px;
}

.site-footer {
  padding: 36px 0;
  background: #050b15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.7fr;
  gap: 28px;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: #dffcff;
  text-decoration: underline;
  text-decoration-color: rgba(94, 247, 255, 0.4);
}

.disclaimer {
  font-size: 13px;
}

.floating-whatsapp,
.to-top {
  position: fixed;
  z-index: 70;
  right: 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  box-shadow: var(--shadow);
}

.floating-whatsapp {
  bottom: 18px;
  min-height: 48px;
  padding: 13px 16px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #06101d;
  font-weight: 950;
}

.to-top {
  display: none;
  bottom: 76px;
  width: 46px;
  height: 46px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.to-top.visible {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.legal-page {
  background: var(--bg);
}

.legal {
  max-width: 820px;
  padding: 56px 0 80px;
}

.legal h1 {
  font-size: clamp(34px, 6vw, 56px);
}

.legal h2 {
  margin-top: 34px;
  font-size: 28px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--cyan);
  font-weight: 900;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 16px 24px;
    background: rgba(7, 16, 31, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .split,
  .buy-grid,
  .studio-band {
    grid-template-columns: 1fr;
  }

  .learn-grid,
  .req-grid,
  .timeline,
  .steps,
  .creative-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .progress-path {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding-top: 36px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-actions,
  .hero-actions .btn,
  .btn-full {
    width: 100%;
  }

  .badges span {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .learn-grid,
  .req-grid,
  .timeline,
  .steps,
  .faq-list,
  .compare,
  .creative-grid,
  .footer-grid,
  .progress-path {
    grid-template-columns: 1fr;
  }

  .two-cols {
    columns: 1;
  }

  .studio-band p {
    font-size: 20px;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    text-align: center;
  }

  .to-top {
    bottom: 82px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
