/* ==============================
   Root & Resets
   ============================== */
:root {
  --clr1: #2EFFA2;
  --clr2: #00A3FF;
  --bg: #050B17;
  --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;
}
html {
  font-family: 'Sora', sans-serif;
  font-size: clamp(14px, 1vw + 0.5rem, 16px);
}
body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* 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; }
.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;
  height: 68vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
@media (max-width: 800px) {
  .hero {
    height: 60vh;
    padding: 2rem 0;
  }
  .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;
  }
}
.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: -1;
}
@keyframes spin { to { transform: rotateZ(360deg); } }
@keyframes drift { 50% { transform: translateY(-8px); } }
.cube-1 { width: 100px; bottom: 0; left: 12%; }
.cube-2 { width: 75px; top: 15%; right: 45%; }
.cube-3 { width: 130px; bottom: 8%; right: 0; }
@media (max-width: 800px) {
  .cube-1 { 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 {
  position: absolute;
  inset: 0;
  background: url("../assets/backgrounds/bg-features_mobile.jpg") center/cover no-repeat;
  opacity: .5;
  z-index: 0;
}
@media (min-width: 801px) {
  .features-bg {
    background: url("../assets/backgrounds/bg-features.jpg") center/cover no-repeat;
  }
}
.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:100%;
  max-width:300px;
  height:auto;
  border-radius:var(--radius);
  box-shadow:0 4px 15px rgba(0,0,0,0.5);
}
@media (min-width:801px) {
  .slides { gap:2rem; }
  .success-img {
    width:calc((100%/3) - (2rem*2/3));
    max-width:none;
  }
}

/* ==============================
   Pricing Section
   ============================== */
.pricing {
  position: relative;
  overflow:hidden;
  padding:4rem 0;
}
.pricing-bg {
  position:absolute;
  inset:0;
  background:url("../assets/backgrounds/bg-pricing_mobile.jpg") center/cover no-repeat;
  opacity:.5;
  z-index:0;
}
@media(min-width:801px){
  .pricing-bg{ background:url("../assets/backgrounds/bg-pricing.jpg") center/cover no-repeat; }
}
.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 {
  position:absolute; inset:0;
  background:url("../assets/backgrounds/bg-faq_mobile.jpg") center/cover no-repeat;
  opacity:.5; z-index:0;
}
@media(min-width:801px){
  .faq-bg{ background:url("../assets/backgrounds/bg-faq.jpg") center/cover no-repeat; }
}
.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 {
  position:absolute; inset:0;
  background:url("../assets/backgrounds/bg-contacts_mobile.jpg") center/cover no-repeat;
  opacity:.5; z-index:0;
}
@media(min-width:801px){
  .contacts-bg{ background:url("../assets/backgrounds/bg-contacts.jpg") center/cover no-repeat; }
}
.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; }
  .success-img  { max-width:100%!important; height:auto!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; }
}
