/* ==============================
   Root & Resets
   ============================== */
:root {
  --clr1: #2EFFA2;
  --clr2: #00A3FF;
  --bg: #070B14;
  --bg-secondary: #0A1020;
  --bg-card: rgba(12, 18, 35, 0.8);
  --text: #F0F0F0;
  --radius: 12px;
  --easing: .3s ease-out;
  --pricing-shadow: 0 8px 30px rgba(0,0,0,0.7);
}

html, body {
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
html {
  font-family: 'Sora', sans-serif;
  font-size: clamp(14px, 1vw + 0.5rem, 16px);
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(46, 255, 162, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 163, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 60% 80%, rgba(46, 255, 162, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Animated Background Orbs */
.bg-orbs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrb 20s ease-in-out infinite;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 255, 162, 0.15) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.12) 0%, transparent 70%);
  top: 40%;
  right: -15%;
  animation-delay: -7s;
  animation-duration: 25s;
}
.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 255, 162, 0.1) 0%, transparent 70%);
  bottom: -5%;
  left: 30%;
  animation-delay: -14s;
  animation-duration: 22s;
}
@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -40px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(40px, 30px) scale(1.02);
  }
}

/* Utility */
.wrap       { max-width: 1100px; width: 90%; margin: 0 auto; }
.flex       { display: flex; }
.jc-between { justify-content: space-between; }
.ai-center  { align-items: center; }
.gap-md     { gap: .75rem; }

/* Ensure all sections are above background */
section, header, footer {
  position: relative;
  z-index: 1;
}
.gap-lg     { gap: 1.25rem; }
.grid-auto  { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.grid-price { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }

/* ==============================
   Header
   ============================== */
.site-header {
  position: relative;
  z-index: 100;
  background: rgba(5,11,23,0.8);
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  overflow: hidden;
}
@media (min-width: 769px) {
  .site-header { height: 80px; }
}
@media (max-width: 768px) {
  .site-header { height: 60px; }
}
.header-inner {
  padding: .75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.logo img {
  display: block;
  width: 40px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .logo img { width: 32px; }
}
.site-title {
  font-weight: 300;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  text-decoration: none;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
.main-nav a {
  font-weight: 300;
  font-size: .85rem;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  opacity: .85;
  transition: opacity .2s;
}
.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
}

/* Mobile burger */
@media (max-width: 800px) {
  .burger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none;
    width: 36px;
    height: 36px;
    z-index: 200;
    cursor: pointer;
  }
}
.burger-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.burger span { display: none; }

/* ==============================
   Hero
   ============================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 2rem 0 4rem;
}
@media (max-width: 800px) {
  .hero {
    min-height: auto;
    padding: 3rem 0 4rem;
  }
  .hero-grid { gap: 1rem; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/backgrounds/bg-hero_mobile.jpg") center/cover no-repeat;
  opacity: .5;
  z-index: 0;
}
@media (min-width: 801px) {
  .hero-bg {
    background: url("../assets/backgrounds/bg-hero.jpg") center/cover no-repeat;
  }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero-copy {
  position: relative;
  z-index: 5;
}
.neon-h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  background: linear-gradient(90deg, var(--clr1), var(--clr2) 40%, var(--clr1) 80%);
  background-size: 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 8s linear infinite;
}
@keyframes glow { to { background-position: 400%; } }
.lead {
  font-size: 1rem;
  margin: 1.25rem 0;
  max-width: 480px;
  opacity: .9;
}
.ghost {
  width: clamp(320px, 45vw, 600px);
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(-16px); } }
.cube {
  position: absolute;
  opacity: .6;
  animation: spin 20s linear infinite, drift 7s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes spin { to { transform: rotateZ(360deg); } }
@keyframes drift { 50% { transform: translateY(-8px); } }
.cube-1 { width: 100px; bottom: 0; left: 12%; display: none; }
.cube-2 { width: 75px; top: 15%; right: 45%; }
.cube-3 { width: 130px; bottom: 8%; right: 0; }
@media (max-width: 800px) {
  .cube-1 { display: block; width: 54px; bottom: 5%; left: 0; }
  .cube-2 { width: 38px; top: 100%; right: 40%; }
  .cube-3 { width: 72px; bottom: 10%; right: 0; }
}
/* ==============================
   Buttons
   ============================== */
.btn {
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,.1);
  color: var(--clr1);
  transition: background .2s, box-shadow .2s;
}
/* center content */
.cta-group .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.cta-group .btn:hover {
  background: rgba(255,255,255,.2);
}

/* Glass style for Pricing & Guide */
.btn--glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.6rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: background .3s, box-shadow .3s;
}
.btn--glass::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 60%;
  background: rgba(255,255,255,0.2);
  transform: rotate(25deg);
  filter: blur(8px);
  opacity: 0;
  transition: opacity .3s;
}
.btn--glass:hover::before {
  opacity: 1;
}
.btn--pricing {
  color: var(--clr1);
}
.btn--guide {
  color: var(--clr2);
}
.btn--glass:hover {
  text-decoration: none;
}

/* Discord button */
.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #5865F2;
  color: #FFF;
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}
.discord-btn:hover {
  background: #4752C4;
}
.discord-btn:hover, .discord-btn:focus {
  text-decoration: none;
}
.btn-icon {
  width: 26px;
  height: 26px;
  margin-right: .5rem;
}

/* Responsive: three equal CTA columns on desktop */
@media (min-width: 801px) {
  .cta-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
  }
  .cta-group .btn { width: 100%; }
}

/* Mobile tweaks: more padding inside Discord button */
@media (max-width: 800px) {
  .discord-btn {
    padding: .8rem 1.2rem;
  }
}

/* ==============================
   Features Section
   ============================== */
.features-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
.features-bg {
  display: none;
}
.features-section .wrap {
  position: relative;
  z-index: 1;
}
.features-heading {
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.features-heading .static-text,
.features-heading .gradient-text {
  font-size: 2rem;
}
.features-heading .static-text {
  color: var(--text);
  font-weight: 400;
}
.features-heading .gradient-text {
  font-weight: 600;
  background: linear-gradient(90deg, var(--clr1), var(--clr2));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: slideBg 4s linear infinite;
}
@keyframes slideBg { to { background-position: 200%; } }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform .3s;
}
.feature-card:hover {
  transform: translateY(-6px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px var(--clr1));
}
.feature-card h3 {
  font-weight: 600;
  margin-bottom: .5rem;
}
.feature-card p {
  font-size: .9rem;
  opacity: .85;
}

/* ==============================
   How It Works Section
   ============================== */
.how-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}
.how-bg {
  /* rimosso bg-image per estetica */
  background: none;
}
@media (min-width: 801px) {
  .how-bg {
    background: none;
  }
}
.how-section .wrap {
  position: relative;
  z-index: 1;
}
.how-heading {
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.how-heading .static-text,
.how-heading .gradient-text {
  font-size: 2rem;
}
.how-heading .static-text {
  color: var(--text);
  font-weight: 400;
}
.how-heading .gradient-text {
  font-weight: 700;
  background: linear-gradient(90deg, var(--clr1), var(--clr2));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: slideBg 4s linear infinite;
}
.how-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
/* Terminal */
.how-terminal {
  background-color: rgba(0,0,0,0.9);
  background-image: url("../assets/backgrounds/bg-terminal_mobile.jpg");
  background-size: cover;
  background-position: center;
  border: 2px solid var(--clr1);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.7), inset 0 0 10px rgba(0,0,0,0.7);
  padding: 3rem 1.5rem 1.5rem;
  margin: 0 auto;
  font-family: 'Source Code Pro', monospace;
  font-size: .9rem;
  line-height: 1.4;
  color: var(--text);
  width: 100%;
  max-width: 600px;
  height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
@media (min-width: 801px) {
  .how-terminal {
    background-image: url("../assets/backgrounds/bg-terminal.jpg");
  }
}
.how-terminal::-webkit-scrollbar {
  width: 8px;
}
.how-terminal::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
}
.how-terminal::-webkit-scrollbar-thumb {
  background: var(--clr1);
  border-radius: 4px;
}
.term-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  position: absolute;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.1);
  padding: .5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius) var(--radius) 0 0;
}
.dot { width:14px; height:14px; border-radius:50%; border:1px solid rgba(255,255,255,0.6); }
.dot1 { background: var(--clr1); }
.dot2 { background: var(--clr2); }
.dot3 { background: var(--text); }
.term-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--text);
}
/* Flowchart */
.flowchart {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity .5s ease-in-out .3s;
}
.flow-node {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--text);
  font-size: .9rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.arrow { color: var(--clr1); font-size:1.5rem; }
@media (max-width:800px) {
  .how-terminal { height:180px; }
  .flow-node { font-size:.8rem; padding:.5rem; }
  .arrow { font-size:1.2rem; }
}

/* ==============================
   Success Section
   ============================== */
.success-section {
  position: relative;
  padding: 4rem 1rem;
  overflow: hidden;
}
.success-bg {
  background: none;
}
@media (min-width:801px) {
  .success-bg { background: none; }
}
.success-section .wrap { position: relative; z-index:1; }
.success-heading {
  text-align: center;
  margin-bottom:2rem;
  text-transform: uppercase;
}
.success-heading .static-text,
.success-heading .gradient-text { font-size:2rem; }
.success-heading .static-text {
  color: var(--text);
  font-weight:400;
}
.success-heading .gradient-text {
  font-weight:700;
  background: linear-gradient(90deg, var(--clr1), var(--clr2));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: slideBg 4s linear infinite;
}
/* Slider wrapper */
.success-slider {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.5rem;
  margin-bottom:1rem;
}
.success-slider button {
  background:transparent;
  border:2px solid var(--clr1);
  color:var(--clr1);
  width:3rem;
  height:3rem;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  border-radius:8px;
  cursor:pointer;
  transition: background .2s ease, color .2s ease, transform .1s ease;
}
.success-slider button:hover {
  background:var(--clr1);
  color:var(--bg);
  transform: translateX(2px) scale(1.1);
  background: linear-gradient(90deg, var(--clr2), var(--clr1));
}
.success-slider button.prev:hover {
  transform: translateX(-2px) scale(1.1);
}
/* Slides */
.slides {
  display:flex;
  gap:1.5rem;
  overflow:hidden;
  width:100%;
  max-width:1000px;
  margin:0 auto;
}
.success-img {
  flex: 0 0 auto;
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.success-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(46, 255, 162, 0.3);
}
@media (min-width:801px) {
  .slides { gap: 1.5rem; }
  .success-img {
    width: 220px;
    height: 140px;
  }
}
@media (max-width:800px) {
  .success-img {
    width: 160px;
    height: 100px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.active .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav svg {
  width: 24px;
  height: 24px;
}
.lightbox-nav:hover {
  background: var(--clr1);
  border-color: var(--clr1);
  color: var(--bg);
}
.lightbox-prev {
  left: 1.5rem;
}
.lightbox-next {
  right: 1.5rem;
}
@media (max-width: 600px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-nav svg {
    width: 20px;
    height: 20px;
  }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

/* ==============================
   Pricing Section
   ============================== */
.pricing {
  position: relative;
  overflow: visible;
  padding: 4rem 0;
}
.pricing-bg {
  display: none;
}
.pricing .wrap{ position:relative; z-index:1; }
.pricing-heading {
  text-align:center;
  margin-bottom:2.5rem;
  text-transform:uppercase;
}
.pricing-heading .static-text,
.pricing-heading .gradient-text {
  font-size:2.2rem; line-height:1.2;
}
.pricing-heading .static-text {
  color:var(--text); font-weight:400;
}
.pricing-heading .gradient-text {
  font-weight:700;
  background:linear-gradient(90deg, var(--clr1), var(--clr2));
  background-clip:text; -webkit-background-clip:text;
  color:transparent; animation:slideBg 4s linear infinite;
}
.pricing-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:2rem;
}
.pricing-card {
  position:relative;
  display:flex; flex-direction:column; justify-content:space-between;
  background:rgba(255,255,255,0.05);
  border-radius:var(--radius);
  padding:2rem 1.5rem;
  overflow:hidden;
  box-shadow:var(--pricing-shadow), inset 0 0 20px rgba(0,0,0,0.6);
  transition:transform .3s ease, box-shadow .3s ease;
}
.pricing-card::before {
  content:'';
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:120%; height:4px;
  background:linear-gradient(90deg, var(--clr1), var(--clr2));
}
.pricing-card:hover {
  transform:translateY(-8px);
  box-shadow:0 12px 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(0,0,0,0.6);
}
.pricing-card h3 {
  font-weight:700; font-size:1.4rem; color:var(--text);
  margin-bottom:.5rem; text-transform:uppercase;
}
.pricing-card .price {
  font-weight:600; font-size:1.2rem; color:var(--clr1);
  margin-bottom:1rem;
}
.pricing-card .divider {
  width:50px; height:2px; background:var(--clr1);
  margin:.5rem auto 1.5rem;
}
.pricing-card ul {
  list-style:none; margin-bottom:1.5rem;
}
.pricing-card li {
  display:flex; align-items:center; font-size:.95rem;
  color:var(--text); margin:.6rem 0;
}
.pricing-card li.locked { opacity:.4; }
.pricing-card li img {
  width:18px; height:18px; margin-right:.75rem;
}
.pricing-card .btn {
  margin-top:auto;
  padding:.75rem 1.5rem;
  border-radius:var(--radius);
  font-weight:600; font-size:.95rem;
  text-transform:uppercase;
  color:var(--bg);
  background:linear-gradient(90deg, var(--clr1), var(--clr2));
  box-shadow:0 4px 15px rgba(0,0,0,0.5);
  transition:opacity .2s, transform .2s;
}
.pricing-card .btn:hover {
  opacity:.95; transform:translateY(-2px);
}
@media(max-width:800px){
  .pricing-grid { grid-template-columns:1fr; }
}
/* ==============================
   FAQ Section
   ============================== */
.faqs {
  position:relative; padding:4rem 0; overflow:hidden;
}
.faq-bg {
  display: none;
}
.faqs .wrap { position:relative; z-index:1; }
.faq-heading {
  text-align:center; margin-bottom:2rem; text-transform:uppercase;
}
.faq-heading .static-text,
.faq-heading .gradient-text { font-size:2rem; }
.faq-heading .static-text {
  color:var(--text); font-weight:400;
}
.faq-heading .gradient-text {
  font-weight:700;
  background:linear-gradient(90deg, var(--clr1), var(--clr2));
  background-clip:text; -webkit-background-clip:text;
  color:transparent; animation:slideBg 4s linear infinite;
}
.accordion-wrapper {
  display:grid; gap:1rem; margin-top:2rem;
}
.accordion-wrapper details {
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:var(--radius);
  padding:1rem; backdrop-filter:blur(8px);
}
.accordion-wrapper summary {
  font-weight:600; font-size:1rem; cursor:pointer;
  position:relative; color:var(--text);
}
.accordion-wrapper summary::-webkit-details-marker { display:none; }
.accordion-wrapper summary::after {
  content:'▾'; position:absolute; right:1rem; top:.9rem;
  transition:transform .3s;
}
.accordion-wrapper details[open] summary::after {
  transform:rotate(180deg);
}
.accordion-wrapper .content {
  margin-top:.75rem; color:var(--text);
  font-size:.95rem; line-height:1.4;
}

/* ==============================
   Contacts Section
   ============================== */
.contacts-section {
  position:relative; padding:4rem 0; overflow:hidden;
}
.contacts-bg {
  display: none;
}
.contacts-section .wrap { position:relative; z-index:1; }
.contacts-heading {
  text-align:center; margin-bottom:2rem; text-transform:uppercase;
}
.contacts-heading .static-text,
.contacts-heading .gradient-text { font-size:2rem; }
.contacts-heading .static-text {
  color:var(--text); font-weight:400;
}
.contacts-heading .gradient-text {
  font-weight:700;
  background:linear-gradient(90deg, var(--clr1), var(--clr2));
  background-clip:text; -webkit-background-clip:text;
  color:transparent; animation:slideBg 4s linear infinite;
}
.contacts-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:1.5rem;
}
.contact-card {
  background:rgba(255,255,255,0.05);
  padding:1.5rem; border-radius:var(--radius);
  text-align:center; backdrop-filter:blur(8px);
  transition:transform .3s;
}
.contact-card:hover { transform:translateY(-6px); }
.contact-icon {
  width:48px; height:48px; margin-bottom:1rem;
  filter:drop-shadow(0 0 6px var(--clr1));
}
.contact-card h3 {
  font-weight:600; font-size:1.1rem; margin-bottom:.5rem;
}
.contact-card a {
  color:var(--clr1); text-decoration:none; font-weight:500;
}
@media(max-width:800px){
  .contacts-grid { grid-template-columns:1fr!important; }
  .contact-card{
    overflow-wrap:break-word; word-break:break-word; hyphens:auto;
  }
}

/* ==============================
   Footer
   ============================== */
.site-footer {
  background:rgba(5,11,23,0.9); padding:1rem 0;
}
.site-footer .wrap {
  display:flex; justify-content:space-between; align-items:center;
}
.site-footer p {
  font-size:.85rem; opacity:.8;
}
.footer-links {
  display:flex; list-style:none; gap:1rem;
}
.footer-link {
  color:var(--text); text-decoration:none; font-size:.85rem; opacity:.8;
}
.footer-link:hover { opacity:1; }
@media(max-width:800px){
  .site-footer .wrap {
    flex-direction:column; gap:.5rem; text-align:center;
  }
}

/* ────────────────────────────────────────────────────────────────
   MOBILE NAV TOGGLE & OVERRIDES
───────────────────────────────────────────────────────────────── */
@media (max-width: 800px) {
  /* Burger always on top */
  .burger {
    position: relative!important;
    z-index: 300!important;
    display: flex!important;
  }
  .site-header {
    overflow: visible!important;
  }
  /* Slide nav in/out */
  .main-nav {
    position: absolute;
    top: 100%; right: 0;
    width: 220px; max-width: 80%;
    background: rgba(5,11,23,0.95);
    backdrop-filter: blur(10px);
    transform: translateX(100%)!important;
    transition: transform var(--easing)!important;
    z-index: 250!important;
  }
  .main-nav.active {
    transform: translateX(0)!important;
  }
  .main-nav ul {
    flex-direction: column!important;
    padding:1rem!important;
    gap:1rem!important;
  }
  .main-nav li { margin:.5rem 0!important; }
}

/* Override terminal height, success images & pricing on mobile */
@media (max-width:800px) {
  .how-terminal { height:180px!important; }
  .pricing-grid { grid-template-columns:1fr!important; }

  /* Re-style mobile buttons */
  .btn--glass {
    background:rgba(255,255,255,0.1)!important;
    backdrop-filter:blur(8px)!important;
    border:1px solid rgba(255,255,255,0.2)!important;
  }
  .btn--glass.pricing-btn { color:var(--clr1)!important; }
  .btn--glass.guide-btn   { color:var(--clr2)!important; }
  .discord-btn {
    background:#5865F2!important; color:#FFF!important;
  }
}

/* Desktop re-show nav & hide burger */
@media (min-width:801px) {
  .burger { display:none!important; }
  .main-nav {
    display:flex!important;
    position:static!important;
    flex-direction:row!important;
    background:none!important;
    backdrop-filter:none!important;
    padding:0!important;
  }
  /* Ensure desktop glass buttons are correct */
  .btn--glass {
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,0.2);
  }
  .btn--glass.pricing-btn:hover::before,
  .btn--glass.guide-btn:hover::before { opacity:1; }
  .discord-btn { background:#5865F2; }
  .discord-btn:hover { background:#4752C4; }
}

/* ==============================
   NEW HERO CTA STYLES
   ============================== */
.cta-group-new {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 10;
}

.discord-btn-large {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #5865F2;
  color: #FFF;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}
.discord-btn-large:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(88, 101, 242, 0.5);
}
.btn-icon-large {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.discord-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.discord-text strong {
  font-size: 1.1rem;
  font-weight: 700;
}
.discord-text small {
  font-size: 0.85rem;
  opacity: 0.85;
  font-weight: 400;
}

.secondary-cta {
  display: flex;
  gap: 0.75rem;
}
.secondary-cta .btn {
  flex: 1;
  text-align: center;
}

@media (max-width: 800px) {
  .discord-btn-large {
    padding: 0.9rem 1.2rem;
  }
  .btn-icon-large {
    width: 32px;
    height: 32px;
  }
  .discord-text strong {
    font-size: 1rem;
  }
  .discord-text small {
    font-size: 0.75rem;
  }
}

/* ==============================
   NEW FEATURES COLUMNS STYLES
   ============================== */
.features-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.features-column {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.features-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.column-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.column-header h3 {
  width: 100%;
  margin-top: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.column-desc {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--clr1);
  font-weight: 700;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.badge-sol {
  background: linear-gradient(135deg, #9945FF, #14F195);
  color: #FFF;
}
.badge-bsc {
  background: linear-gradient(135deg, #F0B90B, #F8D12F);
  color: #1E2026;
}
.badge-poly {
  background: linear-gradient(135deg, #0066FF, #00AAFF);
  color: #FFF;
}

/* Polymarket Partner Styling */
.features-column-partner {
  border: 2px solid #0066FF;
  position: relative;
}
.partner-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #0066FF, #00AAFF);
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.column-icon-poly {
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.column-icon-poly .polymarket-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.column-icon-chain {
  background: linear-gradient(135deg, rgba(46,255,162,0.15), rgba(0,212,255,0.15));
}
.column-icon-chain svg {
  filter: drop-shadow(0 0 8px rgba(46,255,162,0.4));
}

@media (max-width: 800px) {
  .features-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .features-column {
    padding: 1.25rem;
  }
  .column-header h3 {
    font-size: 1.1rem;
  }
  .feature-list li {
    font-size: 0.9rem;
  }
}

/* ==============================
   NEW PRICING STYLES (2 CARDS)
   ============================== */
.pricing-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 1rem;
  align-items: stretch;
}

.pricing-card-featured {
  position: relative;
  border: 2px solid var(--clr1);
  box-shadow: 0 8px 30px rgba(46, 255, 162, 0.15), var(--pricing-shadow);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--clr1), var(--clr2));
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.price-period {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.8;
}

.btn-icon-sm {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

.pricing-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 800px) {
  .pricing-grid-2 {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .pricing-card-featured {
    order: -1;
  }
}

/* ==============================
   UNIFIED SECTION STYLES
   ============================== */
.section-heading {
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 2rem;
}
.section-heading .static-text {
  color: var(--text);
  font-weight: 400;
}
.section-heading .gradient-text {
  font-weight: 700;
  background: linear-gradient(90deg, var(--clr1), var(--clr2));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.section-subtext {
  text-align: center;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* ==============================
   HERO STATS
   ============================== */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr1);
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

/* ==============================
   TRUST BADGES
   ============================== */
.trust-section {
  padding: 2.5rem 0;
  background: rgba(10, 20, 40, 0.5);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.trust-badge:hover {
  opacity: 1;
}
.trust-badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--clr1);
  flex-shrink: 0;
}
.trust-badge span {
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .trust-badges {
    gap: 1.5rem 2rem;
  }
  .trust-badge span {
    font-size: 0.8rem;
  }
}
@media (max-width: 800px) {
  .trust-section {
    display: none;
  }
}
@media (max-width: 800px) {
  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }
  .stat-number {
    font-size: 1.25rem;
  }
  .stat-label {
    font-size: 0.65rem;
  }
}

/* ==============================
   FEATURES ENHANCED
   ============================== */
.features-section {
  padding: 5rem 0;
}
.column-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  padding: 12px;
  background: linear-gradient(135deg, rgba(46,255,162,0.2), rgba(0,163,255,0.2));
  border-radius: 12px;
  color: var(--clr1);
}
.column-icon svg {
  width: 100%;
  height: 100%;
}
.column-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.features-column h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
svg.feature-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-right: 0.75rem;
  stroke: var(--clr1);
  opacity: 0.9;
}
.feature-list li {
  display: flex;
  align-items: center;
  padding-left: 0;
}
.feature-list li::before {
  display: none;
}

/* ==============================
   HOW IT WORKS - STEPS
   ============================== */
.how-section {
  padding: 5rem 0;
  background: transparent;
  overflow: hidden;
}

/* Timeline Container */
.steps-timeline {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 0;
}

/* Connecting Line */
.timeline-line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--clr1), var(--clr2), var(--clr1));
  transform: translateY(-50%);
  opacity: 0.2;
  z-index: 0;
}

/* Step Card */
.step-card-wow {
  position: relative;
  flex: 1;
  max-width: 300px;
  background: rgba(10, 15, 25, 0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.step-card-wow:hover {
  transform: translateY(-8px);
  border-color: var(--clr1);
}
.step-card-wow:hover .step-pulse {
  animation: pulseRing 1s ease-out infinite;
}

/* Glow Effect */
.step-glow {
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--clr1), var(--clr2));
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  filter: blur(30px);
  transition: opacity 0.4s;
}
.step-card-wow:hover .step-glow {
  opacity: 0.15;
}

/* Step Number */
.step-number-wow {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--clr1), var(--clr2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(46, 255, 162, 0.4);
}
.step-number-wow span {
  color: var(--bg);
  font-weight: 800;
  font-size: 1.3rem;
  z-index: 2;
}
.step-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--clr1);
  opacity: 0;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Step Icon */
.step-icon-wow {
  width: 70px;
  height: 70px;
  margin: 1rem auto 1.5rem;
  background: rgba(46, 255, 162, 0.1);
  border: 1px solid rgba(46, 255, 162, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.step-card-wow:hover .step-icon-wow {
  background: rgba(46, 255, 162, 0.15);
  border-color: rgba(46, 255, 162, 0.4);
  transform: scale(1.1);
}
.step-icon-wow svg {
  width: 36px;
  height: 36px;
  stroke: var(--clr1);
}
.step-icon-profit {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.2);
}
.step-icon-profit svg {
  stroke: #FFD700;
}

/* Step Content */
.step-content-wow h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.step-content-wow p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Time Indicator */
.step-time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(46, 255, 162, 0.1);
  border: 1px solid rgba(46, 255, 162, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr1);
}
.step-time svg {
  stroke: var(--clr1);
}
.step-time-profit {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.2);
  color: #FFD700;
}
.step-time-profit svg {
  stroke: #FFD700;
}

/* Step 3 special styling */
.step-card-wow[data-step="3"] {
  border-color: rgba(255, 215, 0, 0.2);
}
.step-card-wow[data-step="3"]:hover {
  border-color: #FFD700;
}
.step-card-wow[data-step="3"] .step-number-wow {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}
.step-card-wow[data-step="3"] .step-glow {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}

@media (max-width: 900px) {
  .steps-timeline {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
  }
  .timeline-line {
    top: 10%;
    bottom: 10%;
    left: 50%;
    right: auto;
    width: 3px;
    height: auto;
    transform: translateX(-50%);
  }
  .step-card-wow {
    max-width: 320px;
    width: 100%;
  }
}

/* ==============================
   SUCCESS SLIDER ENHANCED
   ============================== */
.success-section {
  padding: 5rem 0;
}
.slider-btn {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.slider-btn svg {
  width: 24px;
  height: 24px;
}
.slider-btn:hover {
  border-color: var(--clr1);
  color: var(--clr1);
  transform: scale(1.05);
}
.no-success-msg {
  text-align: center;
  color: var(--text);
  opacity: 0.6;
  font-size: 0.95rem;
  padding: 2rem;
}

/* ==============================
   PRICING ENHANCED
   ============================== */
.pricing {
  padding: 5rem 0;
  background: transparent;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
}
.pricing-card h3 {
  font-size: 1rem;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 1rem;
}
.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-currency {
  font-size: 1.5rem;
  font-weight: 400;
  opacity: 0.7;
}
.pricing-card .price-period {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 2rem;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.pricing-features li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--clr1);
  font-weight: 700;
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-card .btn-secondary,
.pricing-card .btn-primary {
  margin-top: auto;
}
.btn-secondary {
  display: block;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--text);
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--clr1);
  color: var(--clr1);
}
.btn-primary {
  display: block;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, var(--clr1), var(--clr2));
  color: var(--bg);
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(46,255,162,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(46,255,162,0.4);
}
.pricing-card-featured {
  border: 2px solid var(--clr1);
  background: rgba(46,255,162,0.03);
  transform: scale(1.02);
}
.recommended-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--clr1);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(46, 255, 162, 0.3);
}
.savings-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--clr1);
  font-weight: 600;
  min-height: 1.2em;
}

/* Guarantee Badge */
.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.25rem 2rem;
  background: rgba(46, 255, 162, 0.05);
  border: 1px solid rgba(46, 255, 162, 0.15);
  border-radius: var(--radius);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.guarantee-badge svg {
  width: 40px;
  height: 40px;
  stroke: var(--clr1);
  flex-shrink: 0;
}
.guarantee-text {
  text-align: left;
}
.guarantee-text strong {
  display: block;
  font-size: 1rem;
  color: var(--clr1);
  margin-bottom: 0.2rem;
}
.guarantee-text span {
  font-size: 0.85rem;
  opacity: 0.7;
}
@media (max-width: 500px) {
  .guarantee-badge {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  .guarantee-text {
    text-align: center;
  }
}
@media (max-width: 800px) {
  .pricing-card-featured {
    transform: scale(1);
  }
}

/* ==============================
   ROI CALCULATOR SECTION
   ============================== */
.calculator-section {
  padding: 5rem 0;
  background: rgba(8, 15, 30, 0.6);
}
.calculator-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.calculator-inputs {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.input-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.input-wrapper input[type="range"] {
  flex: 1;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  outline: none;
}
.input-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--clr1), var(--clr2));
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(46,255,162,0.4);
}
.input-wrapper input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--clr1), var(--clr2));
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.input-wrapper input[type="number"] {
  width: 100px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}
.input-wrapper input[type="number"]:focus {
  outline: none;
  border-color: var(--clr1);
}
.timeframe-buttons,
.scenario-buttons {
  display: flex;
  gap: 0.75rem;
}
.timeframe-btn,
.scenario-btn {
  flex: 1;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.timeframe-btn:hover,
.scenario-btn:hover {
  border-color: rgba(46,255,162,0.5);
}
.timeframe-btn.active,
.scenario-btn.active {
  background: linear-gradient(135deg, var(--clr1), var(--clr2));
  border-color: transparent;
  color: var(--bg);
  font-weight: 700;
}
.calculator-results {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.result-card {
  text-align: center;
  padding: 1.5rem;
}
.result-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.result-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}
.result-highlight {
  background: rgba(46,255,162,0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(46,255,162,0.3);
}
.result-highlight .result-value {
  color: var(--clr1);
  font-size: 2.2rem;
}
.result-percentage {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr1);
  margin-top: 0.25rem;
}
.calculator-disclaimer {
  font-size: 0.75rem;
  opacity: 0.5;
  text-align: center;
  font-style: italic;
}
@media (max-width: 700px) {
  .calculator-container {
    padding: 1.5rem;
  }
  .calculator-results {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  .timeframe-buttons,
  .scenario-buttons {
    flex-wrap: wrap;
  }
  .timeframe-btn,
  .scenario-btn {
    flex: 1 1 calc(50% - 0.5rem);
  }
}

/* ==============================
   PRESALE BANNER (Non-intrusive)
   ============================== */
.presale-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 15, 25, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(46, 255, 162, 0.2);
  padding: 0.75rem 1rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.presale-banner.active {
  transform: translateY(0);
}
.presale-banner-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.presale-banner-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.presale-badge-soft {
  background: rgba(46, 255, 162, 0.15);
  color: var(--clr1);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.presale-banner-text {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.9;
}
.presale-banner-text strong {
  color: var(--clr1);
}
.presale-banner-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.presale-countdown-mini {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.7;
  font-family: 'Source Code Pro', monospace;
}
.presale-countdown-mini span {
  color: var(--clr1);
  font-weight: 600;
}
.presale-banner-btn {
  background: linear-gradient(90deg, var(--clr1), var(--clr2));
  color: var(--bg);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.presale-banner-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.presale-banner-close {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.5;
  padding: 0.25rem;
  line-height: 1;
  transition: opacity 0.2s;
}
.presale-banner-close:hover {
  opacity: 1;
}
@media (max-width: 700px) {
  .presale-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .presale-banner-left {
    flex-direction: column;
    gap: 0.5rem;
  }
  .presale-banner-right {
    width: 100%;
    justify-content: center;
  }
  .presale-countdown-mini {
    display: none;
  }
}

/* ==============================
   FAQ ENHANCED
   ============================== */
.faqs {
  padding: 5rem 0;
}
.accordion-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

/* ==============================
   FOOTER ENHANCED
   ============================== */
.site-footer {
  background: rgba(5, 10, 20, 0.8);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo span {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
}
.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.7;
}
.footer-links-group h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--clr1);
}
.footer-links-group ul {
  list-style: none;
}
.footer-links-group li {
  margin-bottom: 0.6rem;
}
.footer-links-group a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-links-group a:hover {
  opacity: 1;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  transition: all 0.2s;
}
.social-links a:hover {
  background: rgba(46,255,162,0.2);
  transform: translateY(-2px);
}
.social-links img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.6;
}
@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
}

/* ==============================
   SCROLL ANIMATIONS
   ============================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ==============================
   BACK TO TOP BUTTON
   ============================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--clr1), var(--clr2));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(46, 255, 162, 0.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(46, 255, 162, 0.5);
}
.back-to-top svg {
  width: 24px;
  height: 24px;
  color: var(--bg);
}
@media (max-width: 600px) {
  .back-to-top {
    bottom: 5rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
}

/* ==============================
   COOKIE CONSENT BANNER
   ============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 15, 25, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cookie-text {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.9;
  flex: 1;
}
.cookie-text a {
  color: var(--clr1);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.cookie-btn-accept {
  background: linear-gradient(90deg, var(--clr1), var(--clr2));
  color: var(--bg);
}
.cookie-btn-accept:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text);
}
.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* ==============================
   NEWSLETTER SECTION
   ============================== */
.newsletter-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, transparent, rgba(46, 255, 162, 0.03));
}
.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-container h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, var(--clr1), var(--clr2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.newsletter-container p {
  color: var(--text);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 450px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-input:focus {
  outline: none;
  border-color: var(--clr1);
  background: rgba(255, 255, 255, 0.08);
}
.newsletter-btn {
  padding: 0.9rem 1.75rem;
  background: linear-gradient(90deg, var(--clr1), var(--clr2));
  border: none;
  border-radius: 8px;
  color: var(--bg);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.newsletter-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(46, 255, 162, 0.3);
}
.newsletter-note {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 1rem;
}
@media (max-width: 500px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-btn {
    width: 100%;
  }
}
