:root {
  --green: #00ff2a;
  --green-2: #39ff14;
  --bg: #000;
  --card: #0a0a0a;
  --border: rgba(0, 255, 42, 0.3);
  --text: #fff;
  --muted: #b5b5b5;
  --soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 0 42px rgba(0, 255, 42, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-mark {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--green);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow);
  animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-line {
  position: absolute;
  width: min(240px, 54vw);
  height: 1px;
  margin-top: 136px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.loader-line::after {
  content: "";
  display: block;
  height: 100%;
  width: 42%;
  background: var(--green);
  box-shadow: var(--shadow);
  animation: loadSweep 1.2s ease-in-out infinite;
}

#particles,
.grid-bg,
.mouse-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#particles {
  z-index: -3;
}

.grid-bg {
  z-index: -2;
  background:
    linear-gradient(rgba(0, 255, 42, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 42, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  animation: gridMove 18s linear infinite;
}

.mouse-glow {
  z-index: -1;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 20%), rgba(0, 255, 42, 0.14), transparent 58%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  z-index: 999;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  box-shadow: var(--shadow);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.brand,
.nav-links,
.hero-actions,
.trust-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--green);
  background: rgba(0, 255, 42, 0.08);
  box-shadow: 0 0 22px rgba(0, 255, 42, 0.18);
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a,
.nav-cta {
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--green);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--green);
  background: rgba(0, 255, 42, 0.08);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 98px 0;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 48px;
  padding-top: 56px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.35rem, 8vw, 6.8rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

h3 {
  font-size: 1.16rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 670px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

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

.button.primary {
  color: #001905;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 0 32px rgba(0, 255, 42, 0.34);
}

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

.trust-row {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  perspective: 1200px;
}

.holo-stage {
  position: relative;
  min-height: 560px;
  transform-style: preserve-3d;
}

.dashboard-card,
.glass-card,
.proof-card,
.lead-form,
.comparison,
.stat-panel,
.accordion details {
  border: 1px solid rgba(0, 255, 42, 0.18);
  background: linear-gradient(145deg, rgba(10, 10, 10, 0.84), rgba(10, 10, 10, 0.54));
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.main-panel {
  position: absolute;
  inset: 74px 34px auto auto;
  width: min(430px, 90%);
  padding: 22px;
  border-radius: 8px;
  transform: rotateX(58deg) rotateZ(-24deg) translateZ(30px);
  animation: floatPanel 5s ease-in-out infinite;
}

.panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(0, 255, 42, 0.8);
}

.metric-line {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.metric-line p,
.metric-line strong {
  display: block;
}

.metric-line p {
  margin: 0 0 8px;
  font-size: 0.88rem;
}

.metric-line strong {
  font-size: 3.2rem;
  line-height: 1;
}

.status {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
}

.chart {
  height: 190px;
  display: flex;
  align-items: end;
  gap: 14px;
  margin-top: 34px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(0, 255, 42, 0.045);
}

.chart i {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(to top, rgba(0, 255, 42, 0.2), var(--green));
  box-shadow: 0 0 26px rgba(0, 255, 42, 0.42);
  animation: barPulse 2.8s ease-in-out infinite alternate;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 250px;
  padding: 16px;
  border-radius: 8px;
}

.float-card p {
  margin: 0;
  font-size: 0.82rem;
}

.float-card strong {
  display: block;
  margin-top: 4px;
}

.node-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #001905;
  background: var(--green);
  font-weight: 900;
}

.ai-card {
  top: 56px;
  left: 4px;
  animation: driftOne 5.4s ease-in-out infinite;
}

.lead-card {
  right: 0;
  bottom: 62px;
  animation: driftTwo 5.8s ease-in-out infinite;
}

.holo-ring {
  position: absolute;
  border: 1px solid rgba(0, 255, 42, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 46px rgba(0, 255, 42, 0.08), 0 0 42px rgba(0, 255, 42, 0.12);
}

.ring-one {
  width: 460px;
  height: 460px;
  right: 36px;
  top: 74px;
  animation: spin 18s linear infinite;
}

.ring-two {
  width: 310px;
  height: 310px;
  left: 54px;
  bottom: 40px;
  animation: spin 14s linear infinite reverse;
}

.asset-stack {
  position: absolute;
  left: 70px;
  bottom: 112px;
  display: grid;
  gap: 10px;
}

.asset-stack span {
  width: 132px;
  height: 42px;
  border: 1px solid rgba(0, 255, 42, 0.2);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(0, 255, 42, 0.2), rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 24px rgba(0, 255, 42, 0.14);
}

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.card-grid,
.proof-grid,
.skill-grid {
  display: grid;
  gap: 18px;
}

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

.glass-card,
.proof-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 8px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover,
.proof-card:hover,
.skill-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 30%, var(--green), transparent 32%),
    linear-gradient(135deg, rgba(0, 255, 42, 0.26), rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 26px rgba(0, 255, 42, 0.2);
}

.skills {
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.mentorship {
  border-radius: 50%;
}

.opportunity {
  clip-path: polygon(0 0, 100% 18%, 82% 100%, 14% 82%);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  width: 84%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: var(--shadow);
}

.timeline article {
  position: relative;
  min-height: 228px;
  padding: 82px 18px 22px;
  border: 1px solid rgba(0, 255, 42, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.timeline span {
  position: absolute;
  top: 15px;
  left: 18px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--green);
  background: #000;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.skill-grid {
  grid-template-columns: repeat(5, 1fr);
}

.skill-card {
  min-height: 108px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(0, 255, 42, 0.16);
  border-radius: 8px;
  color: var(--text);
  background: linear-gradient(145deg, rgba(0, 255, 42, 0.08), rgba(255, 255, 255, 0.035));
  font-weight: 800;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.stat-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 34px;
  border-radius: 8px;
}

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

.stat-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.stat-grid strong {
  display: block;
  color: var(--green);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.stat-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

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

.screenshot {
  height: 210px;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 255, 42, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 255, 42, 0.16), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 28px),
    #070707;
  position: relative;
  overflow: hidden;
}

.screenshot::before,
.screenshot::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: rgba(0, 255, 42, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 42, 0.18);
}

.profile-shot::before {
  width: 74px;
  height: 74px;
  left: 24px;
  top: 26px;
  border-radius: 50%;
}

.profile-shot::after {
  width: 58%;
  height: 18px;
  left: 24px;
  bottom: 44px;
}

.earnings-shot::before {
  width: 72%;
  height: 34px;
  left: 24px;
  top: 36px;
}

.earnings-shot::after {
  width: 42%;
  height: 72px;
  right: 24px;
  bottom: 28px;
}

.growth-shot::before {
  width: 50px;
  height: 130px;
  left: 34px;
  bottom: 28px;
}

.growth-shot::after {
  width: 180px;
  height: 2px;
  left: 98px;
  top: 92px;
  transform: rotate(-22deg);
}

.comparison {
  border-radius: 8px;
  overflow: hidden;
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-head {
  color: var(--green);
  font-weight: 900;
  background: rgba(0, 255, 42, 0.08);
}

.comparison-row b {
  color: var(--green);
  font-size: 1.2rem;
}

.comparison-row em {
  color: var(--muted);
  font-style: normal;
}

.lead-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}

.lead-copy {
  position: sticky;
  top: 118px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--border);
  box-shadow: 0 0 0 3px rgba(0, 255, 42, 0.12);
}

.lead-form option {
  color: #000;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  border-radius: 8px;
  overflow: hidden;
}

.accordion summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 900;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.5rem;
}

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

.accordion p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  width: 100%;
  padding: 116px max(16px, calc((100% - 1180px) / 2));
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 255, 42, 0.24), transparent 34%),
    linear-gradient(180deg, transparent, rgba(0, 255, 42, 0.05));
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
}

.final-cta p {
  margin: 20px auto 28px;
}

.pulse {
  animation: neonPulse 2.4s ease-in-out infinite;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: #001905;
  background: var(--green);
  font-weight: 900;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

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

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.28s;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes loadSweep {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(260%);
  }
}

@keyframes gridMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 64px 64px;
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: rotateX(58deg) rotateZ(-24deg) translate3d(0, 0, 30px);
  }
  50% {
    transform: rotateX(58deg) rotateZ(-24deg) translate3d(0, -16px, 42px);
  }
}

@keyframes driftOne {
  0%,
  100% {
    transform: translate3d(0, 0, 80px);
  }
  50% {
    transform: translate3d(10px, -14px, 80px);
  }
}

@keyframes driftTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 76px);
  }
  50% {
    transform: translate3d(-12px, 12px, 76px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes barPulse {
  to {
    filter: brightness(1.45);
  }
}

@keyframes neonPulse {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(0, 255, 42, 0.32);
  }
  50% {
    box-shadow: 0 0 54px rgba(0, 255, 42, 0.55);
  }
}

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

  .hero,
  .lead-section,
  .stat-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .holo-stage {
    min-height: 490px;
  }

  .lead-copy {
    position: static;
  }

  .card-grid.four,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline,
  .skill-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    display: none;
  }

  .comparison {
    overflow-x: auto;
  }

  .comparison-head,
  .comparison-row {
    min-width: 720px;
  }
}

@media (max-width: 640px) {
  .nav {
    width: calc(100% - 20px);
    margin-top: 10px;
    gap: 10px;
    padding: 10px;
  }

  .brand span:last-child {
    max-width: 142px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    padding: 10px 12px;
  }

  .section {
    width: calc(100% - 24px);
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    gap: 18px;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
  }

  .holo-stage {
    min-height: 430px;
    overflow: hidden;
  }

  .main-panel {
    inset: 72px 30px auto auto;
    width: 82%;
    transform: rotateX(48deg) rotateZ(-14deg) translateZ(20px);
  }

  .metric-line strong {
    font-size: 2.4rem;
  }

  .float-card {
    width: 220px;
  }

  .lead-card {
    bottom: 14px;
  }

  .ring-one {
    width: 300px;
    height: 300px;
    right: 22px;
  }

  .ring-two {
    width: 210px;
    height: 210px;
    left: 18px;
  }

  .card-grid.four,
  .proof-grid,
  .timeline,
  .skill-grid,
  .lead-form,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .comparison-head,
  .comparison-row {
    min-width: 0;
    grid-template-columns: 1fr 0.46fr 0.9fr;
    gap: 8px;
    padding: 12px;
    font-size: 0.82rem;
  }

  .comparison-row b,
  .comparison-row em,
  .comparison-head span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .glass-card,
  .proof-card {
    min-height: auto;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
}

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