:root {
  --bg: #0b0b0b;
  --panel: #151515;
  --panel-soft: #101010;
  --border: #222222;
  --text: #ffffff;
  --muted: #b3b3b3;
  --muted-2: #8e98a8;
  --accent: #00ff88;
  --accent-hover: #00d977;
  --focus: #8ddcff;
  --max-width: 1160px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--accent);
  color: #06110b;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  background: rgba(11, 11, 11, .9);
  border-bottom: 1px solid rgba(34, 34, 34, .9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 154px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}

.site-nav a {
  transition: color .2s ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

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

.button-primary {
  background: var(--accent);
  color: #06110b;
}

.button-primary:hover {
  background: var(--accent-hover);
}

.button-secondary {
  background: rgba(255, 255, 255, .04);
  border-color: var(--border);
  color: var(--text);
}

.button-secondary:hover {
  border-color: #3a3a3a;
  background: rgba(255, 255, 255, .07);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  background: var(--accent);
  color: #06110b;
  font-size: .84rem;
}

.section {
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section-dark {
  background: var(--bg);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  padding: 92px 24px 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, .98) 0%, rgba(11, 11, 11, .94) 62%, rgba(11, 11, 11, .68) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-shot {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #1a1a1a;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.hero-shot-before {
  width: 46%;
  min-width: 420px;
  right: 5%;
  top: 22%;
  opacity: .72;
}

.hero-shot-after {
  width: 40%;
  min-width: 390px;
  right: 10%;
  bottom: 18%;
  opacity: .98;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 960px;
  font-size: 3.9rem;
  font-weight: 800;
}

h2 {
  font-size: 2.8rem;
  font-weight: 800;
}

h3 {
  font-size: 1.18rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-promise {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  margin: 20px 0 0;
  padding: 0 14px;
  border: 1px solid rgba(0, 255, 136, .32);
  border-radius: 8px;
  background: rgba(0, 255, 136, .08);
  color: var(--accent);
  font-weight: 800;
  line-height: 1.25;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin: 22px 0 0;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(21, 21, 21, .72);
  color: #e7e7e7;
  font-size: .9rem;
  font-weight: 700;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin: 16px 0 0;
}

.event-tags span,
.event-tags b {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: #e8e8e8;
  font-size: .78rem;
  font-weight: 800;
}

.event-tags span {
  border-color: rgba(0, 255, 136, .25);
  color: var(--accent);
  background: rgba(0, 255, 136, .06);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.micro-copy {
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: .95rem;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-pain {
  background: #0e0e0e;
  padding-top: 24px;
}

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

.pain-item {
  min-height: 174px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.pain-item span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
}

.pain-item p {
  margin: 0;
  color: #eeeeee;
  font-size: 1rem;
  font-weight: 700;
}

.section-video {
  background: var(--bg);
}

.video-shell {
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
}

.video-shell video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
  background: #050505;
}

.under-note {
  margin: 18px 0 0;
  color: var(--muted-2);
  text-align: center;
  font-weight: 700;
}

.section-result {
  background: #0e0e0e;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.comparison-panel {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.comparison-panel figcaption {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
}

.comparison-panel img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  border-radius: 6px;
  background: #1d1d1d;
}

.section-steps {
  background: var(--bg);
}

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

.step {
  min-height: 234px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 255, 136, .35);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 800;
}

.step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--accent-hover);
}

.delivery-note {
  width: fit-content;
  margin: 28px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(0, 255, 136, .26);
  border-radius: 8px;
  color: var(--accent);
  background: rgba(0, 255, 136, .06);
  font-weight: 800;
}

.section-benefits {
  background: #0e0e0e;
}

.benefits-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.benefits-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-list li {
  position: relative;
  min-height: 64px;
  padding: 19px 20px 19px 54px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  color: #efefef;
  font-weight: 700;
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}

.section-founder {
  background: #0e0e0e;
}

.founder-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 940px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.founder-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(0, 255, 136, .36);
  border-radius: 50%;
  background: #0b0b0b;
  color: var(--accent);
  font-size: 3rem;
  font-weight: 800;
}

.founder-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.founder-copy h2 {
  margin-bottom: 10px;
}

.founder-note {
  padding: 16px;
  border: 1px solid rgba(0, 255, 136, .26);
  border-radius: 8px;
  background: rgba(0, 255, 136, .06);
  color: #f3f3f3 !important;
  font-weight: 800;
}

.section-pricing {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 432px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.price-card.featured {
  border-color: rgba(0, 255, 136, .48);
  background: #122018;
}

.badge {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--accent);
  color: #06110b;
  font-size: .78rem;
  font-weight: 800;
}

.price {
  margin: 18px 0;
  color: var(--text);
  font-size: 2rem;
  font-weight: 800;
}

.price span {
  display: block;
  margin-top: 6px;
  color: var(--muted-2);
  font-size: .92rem;
  font-weight: 800;
}

.price-card p:not(.price) {
  margin: 0 0 20px;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  color: #ededed;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 18px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.price-card .button {
  margin-top: auto;
}

.pricing-note {
  width: fit-content;
  margin: 24px auto 0;
  color: var(--muted-2);
  font-weight: 700;
  text-align: center;
}

.section-form {
  background: #0e0e0e;
}

.form-shell {
  max-width: 900px;
  min-height: 800px;
  margin: 18px auto 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
}

.form-actions {
  margin-top: -12px;
}

.form-shell iframe {
  display: block;
  width: 100%;
  min-height: 800px;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
}

.form-help,
.form-fallback {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.form-trust {
  width: fit-content;
  margin: 18px auto 0 !important;
  padding: 12px 14px;
  border: 1px solid rgba(0, 255, 136, .26);
  border-radius: 8px;
  background: rgba(0, 255, 136, .06);
  color: #f2f2f2 !important;
  font-weight: 800;
}

.form-fallback {
  margin-top: 8px;
  color: var(--muted-2);
  font-size: .92rem;
}

.form-help .text-link,
.form-fallback .text-link {
  display: inline;
  margin-top: 0;
}

.section-faq {
  background: #0e0e0e;
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.section-final {
  background: var(--bg);
  text-align: center;
}

.final-inner {
  max-width: 760px;
}

.final-inner p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.14rem;
}

.centered-actions {
  justify-content: center;
}

.site-footer {
  padding: 32px 24px 96px;
  border-top: 1px solid var(--border);
  background: #080808;
  color: var(--muted-2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner div {
  display: flex;
  gap: 18px;
}

.footer-inner .text-link {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: var(--accent);
  color: #06110b;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .38);
  font-weight: 800;
  transition: background-color .2s ease, transform .2s ease;
}

.whatsapp-float:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.whatsapp-float span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #06110b;
  color: var(--accent);
  font-size: .72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

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

@media (max-width: 980px) {
  .site-header {
    padding: 14px 20px;
  }

  .site-nav {
    display: none;
  }

  h1 {
    max-width: 720px;
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-shot-before {
    right: -14%;
    width: 70%;
    min-width: 360px;
  }

  .hero-shot-after {
    right: -8%;
    width: 68%;
    min-width: 340px;
  }

  .pain-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .founder-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand img {
    width: 126px;
  }

  .button-small {
    min-height: 38px;
    padding: 0 12px;
    font-size: .76rem;
  }

  .section {
    padding: 74px 18px;
  }

  .hero {
    min-height: auto;
    padding: 82px 18px 28px;
  }

  .hero::after {
    background: rgba(11, 11, 11, .82);
  }

  .hero-shot-before {
    display: none;
  }

  .hero-shot-after {
    right: -42%;
    bottom: 15%;
    width: 116%;
    min-width: 420px;
    opacity: .42;
  }

  h1 {
    font-size: 2.1rem;
  }

  .hero-promise {
    min-height: auto;
    margin-top: 14px;
    padding: 8px 10px;
    font-size: .9rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero .micro-copy {
    display: none;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .actions .button {
    width: 100%;
  }

  .trust-strip {
    gap: 8px;
  }

  .trust-strip span {
    min-height: 32px;
    padding: 0 10px;
    font-size: .78rem;
  }

  .event-tags {
    display: none;
  }

  .pain-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pain-item,
  .step {
    min-height: auto;
  }

  .comparison-panel img {
    height: 220px;
  }

  .video-shell {
    padding: 8px;
  }

  .founder-card {
    padding: 22px;
  }

  .founder-avatar {
    width: 88px;
    height: 88px;
    font-size: 2.4rem;
  }

  .form-shell,
  .form-shell iframe {
    min-height: 900px;
  }

  .form-shell {
    padding: 8px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding-right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
