:root {
  --bg: #0b0f14;
  --panel: #0f141a;
  --border: rgba(255, 255, 255, 0.1);
  --muted: #a0a8b2;
  --text: #e9eef5;
  --green: #23d56e;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--green);
  color: #0b0f14;
  box-shadow: 0 10px 30px rgba(35, 213, 110, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.small {
  padding: 8px 14px;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 20, 0.75);
  backdrop-filter: saturate(110%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
}
.brand .spring {
  color: var(--green);
}
.brand .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 8px rgba(35, 213, 110, 0.9);
}

.brand-foot {
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
  font-size: xx-small;
}
.brand-foot .spring {
  color: var(--green);
  font-size: xx-small;
}
.brand-foot .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 8px rgba(35, 213, 110, 0.9);
  font-size: xx-small;
}

.menu {
  display: flex;
  gap: 16px;
  margin-left: auto;
}
.menu a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
}
.menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.nav-cta {
  display: flex;
  gap: 10px;
  margin-left: 10px;
}
.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 22px;
}

.hero {
  position: relative;
  text-align: center;
  padding: 2rem 1rem 4rem;
  margin-top: -40px;
}
.hero-wrap {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 80px 0 60px;
}
.hero h1 {
  font-size: clamp(60px, 1vw, 59px);
  line-height: 1.1;
  margin: 0.2em 0 0.2em;
}
.lead {
  color: var(--muted);
  max-width: 660px;
  margin: 0 0 14px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 20px;
}
.badges span {
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  color: #cbd3dc;
}
.glow {
  color: var(--green);
  text-shadow: 0 0 24px rgba(35, 213, 110, 0.45);
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-mock {
  display: block;
  width: min(560px, 90%);
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(35, 213, 110, 0.25);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-bg {
  position: absolute;
  inset: -5% -10% auto -10%;
  height: 85%;
  background: radial-gradient(
      60% 60% at 20% 20%,
      rgba(35, 213, 110, 0.55),
      rgba(35, 213, 110, 0) 60%
    ),
    radial-gradient(
      40% 40% at 85% 5%,
      rgba(90, 255, 190, 0.35),
      rgba(90, 255, 190, 0) 70%
    ),
    url("../assets/hero-bg.png") center/cover no-repeat;
  filter: blur(1px) saturate(110%);
  opacity: 0.6;
  pointer-events: none;
}
.section {
  padding: 64px 0;
}
.sec-title {
  text-align: center;
  margin: 0 0 6px;
  font-size: clamp(26px, 3.2vw, 34px);
}
.sec-sub {
  text-align: center;
  color: #a0a8b2;
  margin: 0 0 1px;
  font-size: small;
}

.section-divider {
  border: none;
  height: 2px; /* thickness of the line */
  background: var(--green); /* same color as your dot */
  box-shadow: 0 0 10px var(--green);
  margin: 3rem auto; /* space above & below */
  width: 80%; /* adjust to your layout width */
  border-radius: 999px; /* smooth edges */
}
.how {
  position: relative;
}
.how-deco {
  position: absolute;
  right: -40px;
  top: -20px;
  width: 220px;
  opacity: 0.25;
  filter: drop-shadow(0 0 20px rgba(35, 213, 110, 0.35));
  pointer-events: none;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.card {
  background: #0f141a;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.icon {
  font-size: 24px;
}
.pricing .plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.plan {
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(35, 213, 110, 0.18);
}
.plan-icon {
  font-size: 24px;
}
.plan-feats {
  list-style: none;
  padding: 0;
  margin: 10px 0 12px;
}
.plan-feats li {
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.plan-amount {
  margin-top: 10px;
  color: #65f0a6;
  font-weight: 700;
}
.block {
  width: 100%;
}
.about p {
  color: #ccd4dd;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.rule h4 {
  margin: 6px 0 6px;
}
.accordion {
  max-width: 900px;
  margin: 0 auto;
}
.acc {
  background: #0f141a;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  margin: 10px 0;
}
.acc > summary {
  cursor: pointer;
  font-weight: 600;
}
.acc > p {
  color: #cfd6df;
  margin: 8px 0 0;
}

.cta-af {
  position: relative;
  overflow: hidden;
  background: #0b0f14 url("../assets/cta-af.PNG") center/cover no-repeat;
  padding: 72px 0;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  background: #0b0f14 url("../assets/cta-city.jpg") center/cover no-repeat;
  padding: 72px 0;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(11, 15, 20, 0.55),
      rgba(11, 15, 20, 0.85)
    ),
    radial-gradient(
      50% 50% at 50% 0%,
      rgba(35, 213, 110, 0.25),
      transparent 60%
    );
}
.cta-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 26px 0;
  background: rgba(255, 255, 255, 0.02);
}
.footer-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.foot-links {
  margin-left: auto;
  display: flex;
  gap: 14px;
}
.foot-links a {
  color: #a0a8b2;
  text-decoration: none;
  font-size: xx-small;
}
.status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a9b1bb;
  font-size: xx-small;
}
.status .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5b626c;
  font-size: xx-small;
}
.status .dot.green {
  background: var(--green);
  box-shadow: 0 0 10px rgba(35, 213, 110, 0.8);
}
.fade {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade.in {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .menu {
    display: none;
  }
  .hamburger {
    display: block;
    margin-left: auto;
  }
  .hero-wrap {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing .plans {
    grid-template-columns: 1fr;
  }
  .rules-grid {
    grid-template-columns: 1fr;
  }
  .how-deco {
    display: none;
  }
  .nav-cta {
    display: none;
  }
}
/* --- Social buttons --- */
.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  position: relative;
  isolation: isolate;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.btn-social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  display: block;
}
.btn-social:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.btn-social:active {
  transform: translateY(0);
  opacity: 0.9;
}

.btn-social.tg {
  background: #2aabee;
}
.btn-social.wa {
  background: #25d366;
}
.btn-social.ig {
  background: radial-gradient(
    120% 120% at 30% 10%,
    #feda75 0%,
    #d62976 45%,
    #962fbf 70%,
    #4f5bd5 100%
  );
}

.btn-social.tg:hover {
  box-shadow: 0 8px 28px rgba(42, 171, 238, 0.45);
}
.btn-social.wa:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}
.btn-social.ig:hover {
  box-shadow: 0 8px 28px rgba(214, 41, 118, 0.45);
}

/* --- Clean 4-card pricing grid --- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 40px;
  justify-items: center;
}

.plan {
  background: #0f141a;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s ease;
  max-width: 300px;
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(35, 213, 110, 0.2);
}

/* Highlight Micro subtly */
.plan.micro {
  border: 1px solid rgba(35, 213, 110, 0.4);
  background: radial-gradient(
    circle at top,
    rgba(35, 213, 110, 0.08),
    transparent 80%
  );
  transform: scale(0.97);
}

.plan.micro:hover {
  transform: scale(1);
  box-shadow: 0 0 30px rgba(35, 213, 110, 0.2);
}

/* Basic text tuning */
.plan h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.plan p.muted {
  color: #a0a0a0;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.plan-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  line-height: 1.8;
  font-size: 0.9rem;
  color: #ccc;
}

.plan .btn {
  margin: 0.6rem 0;
}

.plan-amount {
  font-weight: 600;
  color: #1fe374;
  margin-top: 0.5rem;
}

/* Mobile fix */
@media (max-width: 768px) {
  .plan {
    max-width: 100%;
  }
}
