:root {
  --bg: #030503;
  --panel: #090d0a;
  --text: #fff;
  --muted: #b7c0b8;
  --green: #63e012;
  --blue: #159df5;
  --purple: #cc35e9;
  --orange: #ff9d0b;
  --line: rgba(255, 255, 255, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 50% 0, #0b190d 0, #030503 38%, #020302 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
}

.narrow {
  width: min(900px, calc(100% - 28px));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 5, 3, .78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 255px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.top-cta,
.primary-btn {
  background: linear-gradient(135deg, #79ef22, #2fa900);
  box-shadow: 0 0 28px rgba(99, 224, 18, .25);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  padding: 64px 0 70px;
  overflow: hidden;
}

.hero-glow {
  pointer-events: none;
  position: absolute;
  width: 700px;
  height: 700px;
  background: #3cff0016;
  filter: blur(90px);
  border-radius: 50%;
  right: -250px;
  top: -180px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  grid-template-areas: "copy image";
  gap: 48px;
  align-items: center;
}

.hero-copy {
  grid-area: copy;
}

.hero-image-wrap {
  grid-area: image;
  position: relative;
  border-radius: 26px;
  padding: 2px;
  background: linear-gradient(135deg, #8cff20, #005aff, #ff1b72);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 50px rgba(77, 255, 0, .1);
}

.hero-image-link {
  display: block;
  border-radius: 24px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hero-image-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.hero-image-link:hover .hero-image {
  transform: scale(1.015);
}

.hero-image {
  display: block;
  width: 100%;
  border-radius: 24px;
  max-height: 680px;
  object-fit: cover;
  object-position: top;
  transition: transform .25s ease;
}

.eyebrow {
  display: inline-block;
  color: #8ff23e;
  font-weight: 900;
  letter-spacing: .16em;
  font-size: .78rem;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: .95;
  margin: 18px 0 22px;
  letter-spacing: -.055em;
}

.hero-copy>p {
  font-size: 1.16rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 580px;
}

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

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
}

.secondary-btn {
  padding: 14px 22px;
  border: 1px solid rgba(255, 215, 0, .55);
  border-radius: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #030503;
  box-shadow: 0 0 28px rgba(255, 215, 0, .35);
}

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #d8dfd9;
  font-size: .88rem;
  font-weight: 700;
}

.actions-section {
  padding: 74px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 10px 0;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.stack {
  display: grid;
  gap: 18px;
}

.action-card {
  --accent: var(--green);
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(110deg, color-mix(in srgb, var(--accent) 12%, #080b09), #050706 70%);
  border: 1px solid color-mix(in srgb, var(--accent) 58%, transparent);
  box-shadow: inset 0 0 42px color-mix(in srgb, var(--accent) 6%, transparent), 0 14px 35px rgba(0, 0, 0, .28);
  transition: .22s ease;
}

.action-card:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 42px color-mix(in srgb, var(--accent) 9%, transparent), 0 18px 48px rgba(0, 0, 0, .4), 0 0 26px color-mix(in srgb, var(--accent) 14%, transparent);
}

.action-card.blue {
  --accent: var(--blue);
}

.action-card.purple {
  --accent: var(--purple);
}

.action-card.orange {
  --accent: var(--orange);
}

.icon-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  background: color-mix(in srgb, var(--accent) 23%, #060806);
  border: 1px solid var(--accent);
  box-shadow: 0 0 25px color-mix(in srgb, var(--accent) 24%, transparent);
}

.card-copy h3 {
  margin: 0 0 7px;
  font-size: 1.65rem;
}

.card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.card-button {
  min-width: 190px;
  text-align: center;
  padding: 15px 18px;
  border-radius: 11px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 82%, white 2%), color-mix(in srgb, var(--accent) 62%, black));
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.card-button b {
  font-size: 1.55rem;
  margin-left: 10px;
}

.benefits {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050805;
  padding: 34px 0;
}

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

.benefits-grid div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.benefits-grid div:last-child {
  border: 0;
}

.benefits-grid strong {
  font-size: 1rem;
}

.benefits-grid span {
  font-size: .85rem;
  color: var(--muted);
}

footer {
  padding: 38px 0;
  background: #020302;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  width: 210px;
  max-height: 58px;
  object-fit: contain;
}

.footer-inner p {
  color: #889189;
  font-size: .85rem;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #28d146;
  font-size: 1.7rem;
  z-index: 60;
  box-shadow: 0 10px 35px rgba(40, 209, 70, .45);
}

.visit-counter {
  text-align: center;
  margin-top: 14px;
  color: #889189;
  font-size: .85rem;
  letter-spacing: .02em;
}

.visit-counter strong {
  color: var(--green);
  font-weight: 800;
}

@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "copy";
  }

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

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

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-image-wrap {
    max-width: 720px;
    margin: auto;
  }

  .action-card {
    grid-template-columns: 74px 1fr;
  }

  .icon-circle {
    width: 66px;
    height: 66px;
  }

  .card-button {
    grid-column: 1/-1;
    width: 100%;
  }

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

  .benefits-grid div:nth-child(2) {
    border-right: 0;
  }
}

@media(max-width:600px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .topbar-inner {
    height: 68px;
  }

  .logo {
    width: 190px;
  }

  .top-cta {
    display: none;
  }

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

  .hero h1 {
    font-size: 2.72rem;
  }

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

  .hero-actions {
    display: grid;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-image {
    border-radius: 18px;
  }

  .hero-image-wrap {
    border-radius: 20px;
  }

  .hero-image-link {
    border-radius: 18px;
  }

  .actions-section {
    padding: 52px 0;
  }

  .action-card {
    grid-template-columns: 58px 1fr;
    gap: 15px;
    padding: 18px;
    border-radius: 17px;
  }

  .icon-circle {
    width: 54px;
    height: 54px;
    font-size: 1.45rem;
  }

  .card-copy h3 {
    font-size: 1.25rem;
  }

  .card-copy p {
    font-size: .9rem;
  }

  .card-button {
    min-width: 0;
    padding: 14px;
  }

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

  .benefits-grid div {
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .floating-wa {
    right: 14px;
    bottom: 14px;
  }
}
