:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-2: #090a0d;
  --panel: rgba(20, 21, 24, 0.82);
  --panel-2: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.13);
  --line-orange: rgba(255, 122, 0, 0.42);
  --text: #f7f7f5;
  --muted: #c9c9c4;
  --soft: #8f9299;
  --orange: #ff7a00;
  --orange-2: #ffb000;
  --purple: #391966;
  --radius: 10px;
  --glow: 0 0 28px rgba(255, 122, 0, 0.45), 0 0 78px rgba(255, 122, 0, 0.18);
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 122, 0, 0.13), transparent 27rem),
    radial-gradient(circle at 82% 10%, rgba(57, 25, 102, 0.36), transparent 34rem),
    linear-gradient(180deg, var(--bg), #08090c 45%, var(--bg));
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

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

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

svg {
  display: block;
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--orange);
  color: #111;
  font-weight: 900;
  transition: transform 180ms ease;
}

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

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.lp-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 6, 0.78);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

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

.brand img,
.footer img {
  display: block;
  width: clamp(126px, 14vw, 168px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255, 122, 0, 0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--orange);
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at center, rgba(255, 176, 0, 0.45), transparent 68%);
  filter: blur(12px);
  transition: opacity 180ms ease;
}

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

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
}

.btn-primary {
  border-color: rgba(255, 176, 0, 0.75);
  background: linear-gradient(135deg, #ff8a00, #ff5d00);
  box-shadow: var(--glow);
}

.btn-outline,
.btn-ghost {
  border-color: var(--line-orange);
  background: rgba(9, 11, 15, 0.52);
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: rgba(255, 176, 0, 0.92);
  background: rgba(255, 122, 0, 0.11);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 142px 0 80px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--text);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 4.65rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.15rem;
}

h3 {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.16;
}

.hero-copy p,
.section-copy p,
.premium-panel p,
.final-card p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 22px;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-assurances li {
  position: relative;
  padding-left: 17px;
  color: var(--soft);
  font-size: 0.83rem;
  font-weight: 750;
}

.hero-assurances li::before {
  content: "";
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 122, 0, 0.55);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.project-showcase {
  display: flex;
  align-items: center;
  margin: 0;
}

.project-window {
  width: 100%;
  border: 1px solid rgba(255, 122, 0, 0.38);
  border-radius: var(--radius);
  background: #111216;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.64), 0 0 52px rgba(255, 122, 0, 0.12);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
}

.project-window-top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 10, 0.96);
}

.project-window-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.72;
}

.project-window-top strong {
  margin-left: auto;
  color: var(--soft);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.project-window img {
  display: block;
  width: 100%;
  aspect-ratio: 1440 / 1016;
  height: auto;
  object-fit: cover;
  object-position: top;
}

.project-showcase figcaption {
  position: absolute;
  right: -16px;
  bottom: 28px;
  display: grid;
  min-width: 232px;
  border: 1px solid var(--line-orange);
  border-radius: var(--radius);
  padding: 15px 17px;
  background: rgba(7, 8, 10, 0.9);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
}

.project-showcase figcaption span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-showcase figcaption strong {
  margin-top: 2px;
  font-size: 1rem;
}

.project-showcase figcaption small {
  margin-top: 3px;
  color: var(--muted);
}

.orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.orb-one {
  top: 130px;
  right: 9vw;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 35% 28%, #ffc167, var(--orange) 48%, #5b1d0d 100%);
  box-shadow: 0 0 74px rgba(255, 122, 0, 0.22);
  opacity: 0.7;
}

.orb-two {
  left: 6vw;
  bottom: 30px;
  width: 210px;
  height: 210px;
  background: rgba(57, 25, 102, 0.36);
  filter: blur(2px);
}

.proof-bar {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.proof-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px 0;
}

.proof-bar span,
.tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 122, 0, 0.28);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 122, 0, 0.08);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 850;
}

.section {
  padding: 86px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

section[id] {
  scroll-margin-top: 88px;
}

.split,
.included-grid,
.faq-grid,
.project-proof-grid,
.authority-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.real-project {
  background:
    radial-gradient(circle at 82% 50%, rgba(57, 25, 102, 0.2), transparent 26rem),
    rgba(255, 255, 255, 0.015);
}

.project-proof-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
}

.project-proof-card {
  border: 1px solid var(--line-orange);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 42px);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 122, 0, 0.16), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.project-proof-card > strong {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 1.55rem;
}

.project-proof-card p {
  color: var(--muted);
}

.project-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.project-proof-tags span {
  border: 1px solid rgba(255, 122, 0, 0.26);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 122, 0, 0.07);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
}

.cards-grid,
.examples-grid {
  display: grid;
  gap: 18px;
}

.card,
.premium-panel,
.check-panel,
.step,
.mini-example,
details,
.final-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.card,
.step,
.mini-example {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.card:hover,
.step:hover,
.mini-example:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 0, 0.5);
}

.icon,
.step strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.card p,
.step p,
.mini-example p,
details p,
.footer p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  justify-items: center;
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.included {
  background:
    radial-gradient(circle at 20% 36%, rgba(255, 122, 0, 0.1), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(57, 25, 102, 0.24), transparent 30rem);
}

.premium-panel {
  position: relative;
  min-height: 420px;
  padding: clamp(28px, 5vw, 48px);
  overflow: hidden;
}

.premium-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffc167, var(--orange) 52%, #4c1709);
  box-shadow: 0 0 44px rgba(255, 122, 0, 0.32);
}

.panel-label {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid var(--line-orange);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.premium-panel .btn {
  margin-top: 16px;
}

.check-panel {
  padding: clamp(26px, 4vw, 38px);
}

.check-panel ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-panel li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 0 12px rgba(255, 122, 0, 0.55);
}

.scope-note {
  margin: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 18px;
  color: var(--soft);
  font-size: 0.88rem;
}

.authority {
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 122, 0, 0.1), transparent 26rem),
    radial-gradient(circle at 88% 20%, rgba(57, 25, 102, 0.21), transparent 28rem);
}

.authority-grid {
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
}

.authority-photo {
  position: relative;
  width: min(100%, 430px);
  justify-self: center;
  border: 1px solid var(--line-orange);
  border-radius: var(--radius);
  background: #111216;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.54), 0 0 42px rgba(255, 122, 0, 0.12);
  overflow: hidden;
}

.authority-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
}

.authority-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 5, 6, 0.72), transparent 42%);
}

.authority-photo span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.authority-copy h3 {
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 1.85rem;
}

.authority-role {
  margin-bottom: 18px;
  color: var(--text);
  font-weight: 850;
}

.authority-copy > p:not(.authority-role) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.authority-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.authority-points li {
  position: relative;
  padding-left: 23px;
  color: var(--muted);
}

.authority-points li::before {
  content: "";
  position: absolute;
  top: 0.47em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 122, 0, 0.48);
}

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

.examples {
  background: rgba(255, 255, 255, 0.018);
}

.faq-grid {
  align-items: start;
}

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

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

details p {
  margin: 14px 0 0;
}

.final-cta {
  padding: 72px 0;
}

.final-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  border-color: var(--line-orange);
  background:
    radial-gradient(circle at 88% 50%, rgba(255, 122, 0, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    var(--panel);
}

.final-card h2 {
  margin-bottom: 14px;
}

.final-support {
  display: block;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 850;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 42px 0 28px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer a {
  color: var(--orange);
  font-weight: 850;
}

.footer small {
  display: block;
  max-width: 640px;
  margin-top: 8px;
  color: var(--soft);
  font-size: 0.76rem;
}

.copyright {
  margin: 28px 0 0;
  color: var(--soft);
  font-size: 0.86rem;
  text-align: center;
}

.mobile-whatsapp {
  display: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split,
  .included-grid,
  .faq-grid,
  .project-proof-grid,
  .authority-grid,
  .final-card {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

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

  .hero-assurances {
    justify-content: center;
  }

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

  .project-window {
    transform: none;
  }

  .project-proof-grid,
  .authority-grid {
    gap: 38px;
  }

  .authority-copy {
    text-align: center;
  }

  .authority-copy > p,
  .authority-points {
    margin-inline: auto;
  }

  .authority-points {
    width: fit-content;
    text-align: left;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 620px);
  }

  body {
    padding-bottom: 72px;
  }

  .nav {
    min-height: 76px;
    gap: 12px;
  }

  .brand img {
    width: 118px;
  }

  .nav .btn {
    min-height: 42px;
    padding: 11px 14px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 58px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .final-card .btn,
  .premium-panel .btn {
    width: 100%;
  }

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

  .project-window-top {
    height: 36px;
  }

  .project-showcase figcaption {
    right: 10px;
    bottom: 8px;
    left: 10px;
    min-width: 0;
    padding: 12px 14px;
  }

  .hero-assurances {
    display: grid;
    justify-content: center;
    gap: 8px;
    text-align: left;
  }

  .project-proof-card {
    padding: 24px;
  }

  .project-proof-tags {
    align-items: stretch;
    flex-direction: column;
  }

  .project-proof-tags span {
    text-align: center;
  }

  .authority-photo {
    width: min(100%, 340px);
  }

  .section {
    padding: 64px 0;
  }

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

  .proof-bar .container,
  .tags {
    justify-content: flex-start;
  }

  .proof-bar span,
  .tags span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 60;
    right: 14px;
    bottom: 12px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 1px solid rgba(255, 176, 0, 0.78);
    border-radius: 999px;
    padding: 13px 18px;
    background: linear-gradient(135deg, #ff8a00, #ff5d00);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.64), var(--glow);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 900;
    text-align: center;
  }
}

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

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