/* ============================================================
   NEXO THEME — ne- prefix
   Palette: Purple #a855f7, Cyan #06b6d4 | Space Grotesk + Syne
   Signature: glassmorphism cards, gradient text, 3-tier VIP cards
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {--ne_muted:     #94a3b8;--ne_glow-p:    0 0 30px rgba(168,85,247,.25);--ne_r:         10px;--ne_glass:     rgba(255,255,255,.05);--ne_purple-dk: #7c3aed;--ne_shadow:    0 8px 32px rgba(0,0,0,.5);--ne_purple:    #a855f7;--ne_glow-c:    0 0 30px rgba(6,182,212,.25);--ne_text:      #e2e8f0;--ne_r-lg:      16px;--ne_cyan:      rgba(6,182,212,1);--ne_cyan-lt:   #67e8f9;--ne_white:     #ffffff;--ne_bg:        #060610;--ne_glass-bd:  rgba(255,255,255,.1);--ne_bg2:       #0d0d20}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {padding: 0;margin: 0;box-sizing: border-box}
html { scroll-behavior: smooth; }
body {line-height: 1.6;color: var(--ne_text);font-size: 16px;background: var(--ne_bg);font-family: 'Space Grotesk', sans-serif;overflow-x: hidden;min-height: 100vh;user-select:auto;pointer-events:auto}
img {height: auto;max-width: 100%;display: block}
a {text-decoration: none;color: var(--ne_cyan)}
a:hover { text-decoration: underline; }

/* ── Background orbs ────────────────────────────────────────── */
body::before,
body::after {z-index: 0;pointer-events: none;content: '';position: fixed;border-radius: 50%}
body::before {width: 600px;left: -200px;background: radial-gradient(circle, rgba(168,85,247,.15) 0%, transparent 70%);height: 600px;top: -200px}
body::after {bottom: -150px;background: radial-gradient(circle, rgba(6,182,212,.12) 0%, transparent 70%);right: -150px;height: 500px;width: 500px}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {color: var(--ne_white);font-weight: 700;font-family: 'Syne', sans-serif;line-height: 1.15}
h1 {font-size: clamp(2.2rem, 5vw, 3.8rem);font-weight: 800}
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
p  { color: var(--ne_text); }

/* Gradient text utility */
.ne-grad {-webkit-text-fill-color: transparent;background-image: linear-gradient(135deg, var(--ne_purple) 0%, var(--ne_cyan) 100%);background-clip: text;color: transparent;-webkit-background-clip: text}

/* ── Layout ─────────────────────────────────────────────────── */
.ne-container {max-width: 1160px;padding: 0 20px;width: 100%;margin: 0 auto;position: relative;z-index: 1}
.ne-section   { padding: 80px 0; }

/* ── Glass card mixin ───────────────────────────────────────── */
.ne-glass {border: 1px solid var(--ne_glass-bd);-webkit-backdrop-filter: blur(12px);border-radius: var(--ne_r-lg);backdrop-filter: blur(12px);background: var(--ne_glass)}

/* ── Nav ────────────────────────────────────────────────────── */
.ne-nav {top: 0;border-bottom: 1px solid var(--ne_glass-bd);z-index: 100;backdrop-filter: blur(16px);position: sticky;-webkit-backdrop-filter: blur(16px);background: rgba(6,6,16,.85)}
.ne-nav__inner {display: flex;padding: 0 20px;max-width: 1160px;height: 64px;margin: 0 auto;align-items: center;justify-content: space-between}
.ne-nav__logo {align-items: center;font-family: 'Syne', sans-serif;gap: 6px;font-size: 1.5rem;font-weight: 800;display: flex}
.ne-nav__logo-text { color: var(--ne_white); }
.ne-nav__logo-dot {height: 8px;border-radius: 50%;width: 8px;background: linear-gradient(135deg, var(--ne_purple), var(--ne_cyan))}
.ne-nav__links {gap: 28px;display: flex;list-style: none}
.ne-nav__links a {font-size: .88rem;color: var(--ne_muted);font-weight: 500;transition: color .2s;letter-spacing: .02em}
.ne-nav__links a:hover {color: var(--ne_white);text-decoration: none}
.ne-nav__cta {transition: opacity .2s, transform .2s;padding: 9px 22px;font-weight: 600;color: var(--ne_white) !important;font-size: .85rem;background: linear-gradient(135deg, var(--ne_purple), var(--ne_cyan));border-radius: 50px}
.ne-nav__cta:hover {text-decoration: none;transform: translateY(-1px);opacity: .9}
.ne-burger {gap: 5px;padding: 4px;display: none;border: none;cursor: pointer;flex-direction: column;background: none}
.ne-burger span {background: var(--ne_text);height: 2px;display: block;width: 24px;transition: all .3s}

/* ── Hero ────────────────────────────────────────────────────── */
.ne-hero {position: relative;padding: 80px 0 70px}
.ne-hero__inner {align-items: center;gap: 60px;display: grid;grid-template-columns: 1fr 420px}
.ne-hero__eyebrow {align-items: center;font-weight: 600;letter-spacing: .06em;background: rgba(168,85,247,.1);margin-bottom: 20px;border: 1px solid rgba(168,85,247,.25);gap: 8px;display: inline-flex;border-radius: 50px;padding: 5px 16px;color: var(--ne_purple);font-size: .78rem;text-transform: uppercase}
.ne-hero__h1 { margin-bottom: 18px; }
.ne-hero__lead {max-width: 500px;color: var(--ne_muted);font-size: 1.08rem;margin-bottom: 32px}
.ne-hero__actions {display: flex;margin-bottom: 40px;flex-wrap: wrap;gap: 14px}
.ne-hero__trust {flex-wrap: wrap;gap: 20px;display: flex}
.ne-hero__trust-item {display: flex;align-items: center;color: var(--ne_muted);gap: 5px;font-size: .82rem}
.ne-hero__trust-item::before {font-weight: 700;color: var(--ne_cyan);content: '✓'}

/* Rating glass card */
.ne-rating-card {text-align: center;padding: 28px;box-shadow: var(--ne_glow-p)}
.ne-rating-card__score {margin-bottom: 4px;font-weight: 800;font-size: 4.5rem;line-height: 1;font-family: 'Syne', sans-serif}
.ne-rating-card__max {color: var(--ne_muted);font-size: 1.2rem;margin-bottom: 12px}
.ne-rating-card__stars {color: #fbbf24;margin-bottom: 14px;letter-spacing: 4px;font-size: 1.4rem}
.ne-rating-card__label {margin-bottom: 20px;color: var(--ne_muted);font-size: .82rem}
.ne-rating-rows {text-align: left;display: flex;flex-direction: column;gap: 10px}
.ne-rating-row {display: flex;align-items: center;font-size: .85rem;gap: 10px}
.ne-rating-row__name {flex-shrink: 0;width: 100px;color: var(--ne_muted)}
.ne-rating-row__bar {height: 5px;border-radius: 3px;background: rgba(255,255,255,.1);flex: 1}
.ne-rating-row__fill {height: 100%;border-radius: 3px;background: linear-gradient(90deg, var(--ne_purple), var(--ne_cyan))}
.ne-rating-row__val {font-weight: 600;text-align: right;font-size: .82rem;width: 32px;color: var(--ne_white)}

/* ── Buttons ─────────────────────────────────────────────────── */
.ne-btn {text-decoration: none !important;align-items: center;cursor: pointer;display: inline-flex;font-size: .95rem;gap: 8px;padding: 14px 28px;border-radius: 50px;border: none;transition: all .2s;font-weight: 600;font-family: 'Space Grotesk', sans-serif}
.ne-btn--primary {background: linear-gradient(135deg, var(--ne_purple) 0%, var(--ne_cyan) 100%);box-shadow: var(--ne_glow-p);color: var(--ne_white)}
.ne-btn--primary:hover {transform: translateY(-2px);box-shadow: 0 8px 30px rgba(168,85,247,.4);opacity: .9}
.ne-btn--ghost {color: var(--ne_text);backdrop-filter: blur(8px);background: var(--ne_glass);border: 1px solid var(--ne_glass-bd)}
.ne-btn--ghost:hover {color: var(--ne_purple);border-color: var(--ne_purple)}
.ne-btn--sm {padding: 9px 20px;font-size: .85rem}
.ne-btn--full {justify-content: center;width: 100%}

/* ── Feature Cards ───────────────────────────────────────────── */
.ne-features { position: relative; }
.ne-features__head {text-align: center;margin-bottom: 48px}
.ne-features__head p {margin-top: 10px;color: var(--ne_muted)}
.ne-features__grid {grid-template-columns: repeat(3, 1fr);gap: 20px;display: grid}
.ne-feat-card {transition: transform .2s, box-shadow .2s;padding: 28px 24px}
.ne-feat-card:hover {box-shadow: var(--ne_glow-p);transform: translateY(-4px)}
.ne-feat-card__icon {margin-bottom: 18px;border-radius: var(--ne_r);width: 50px;align-items: center;justify-content: center;font-size: 1.6rem;display: flex;background: linear-gradient(135deg, rgba(168,85,247,.2), rgba(6,182,212,.2));height: 50px}
.ne-feat-card__title {font-weight: 700;font-family: 'Syne', sans-serif;font-size: 1.15rem;color: var(--ne_white);margin-bottom: 10px}
.ne-feat-card__text {font-size: .9rem;color: var(--ne_muted);line-height: 1.65}

/* ── VIP Tiers ────────────────────────────────────────────────── */
.ne-vip { position: relative; }
.ne-vip__head {margin-bottom: 48px;text-align: center}
.ne-vip__head p {color: var(--ne_muted);margin-top: 10px}
.ne-vip__grid {gap: 22px;display: grid;grid-template-columns: repeat(3, 1fr);align-items: start}
.ne-vip-card {transition: transform .2s;position: relative;overflow: hidden;padding: 32px 24px}
.ne-vip-card:hover { transform: translateY(-5px); }
.ne-vip-card--featured {box-shadow: var(--ne_glow-p), 0 0 0 1px var(--ne_purple);border-color: var(--ne_purple) !important}
.ne-vip-card--featured::before {top: 0;text-align: center;font-weight: 700;position: absolute;background: linear-gradient(135deg, var(--ne_purple), var(--ne_cyan));right: 0;padding: 6px;font-size: .65rem;color: var(--ne_white);left: 0;content: 'MAIS POPULAR';letter-spacing: .12em}
.ne-vip-card--featured .ne-vip-card__inner { padding-top: 14px; }
.ne-vip-card__inner {flex-direction: column;gap: 12px;display: flex}
.ne-vip-card__tier {display: inline-flex;gap: 6px;align-items: center;text-transform: uppercase;letter-spacing: .1em;font-weight: 700;font-size: .75rem}
.ne-vip-card--silver .ne-vip-card__tier { color: #94a3b8; }
.ne-vip-card--gold   .ne-vip-card__tier { color: var(--ne_purple); }
.ne-vip-card--black  .ne-vip-card__tier { color: var(--ne_cyan); }
.ne-vip-card__bonus {font-weight: 800;font-family: 'Syne', sans-serif;font-size: 2.2rem;line-height: 1}
.ne-vip-card__bonus-sub {margin-top: 2px;font-size: .82rem;color: var(--ne_muted)}
.ne-vip-card__features {flex-direction: column;margin: 4px 0;gap: 8px;list-style: none;display: flex}
.ne-vip-card__features li {align-items: center;display: flex;color: var(--ne_muted);gap: 8px;font-size: .88rem}
.ne-vip-card__features li::before {font-weight: 700;flex-shrink: 0;color: var(--ne_cyan);content: '✓'}

/* ── FAQ ─────────────────────────────────────────────────────── */
.ne-faq { position: relative; }
.ne-faq__head {text-align: center;margin-bottom: 48px}
.ne-faq__head p {color: var(--ne_muted);margin-top: 10px}
.ne-faq__list {flex-direction: column;margin: 0 auto;max-width: 760px;display: flex;gap: 10px}
.ne-faq-item {overflow: hidden;border-radius: var(--ne_r);transition: border-color .2s;border: 1px solid var(--ne_glass-bd);background: var(--ne_glass)}
.ne-faq-item:focus-within { border-color: var(--ne_purple); }
.ne-faq-item__q {background: none;border: none;font-family: 'Space Grotesk', sans-serif;cursor: pointer;align-items: center;display: flex;padding: 18px 22px;justify-content: space-between;font-size: .98rem;color: var(--ne_white);width: 100%;gap: 16px;text-align: left;font-weight: 600}
.ne-faq-item__q:hover { color: var(--ne_cyan); }
.ne-faq-item__icon {font-size: .75rem;color: var(--ne_purple);height: 24px;flex-shrink: 0;justify-content: center;display: flex;transition: transform .3s;border-radius: 50%;border: 1px solid var(--ne_glass-bd);width: 24px;align-items: center}
.ne-faq-item[data-open] .ne-faq-item__icon { transform: rotate(180deg); }
.ne-faq-item__a {max-height: 0;padding: 0 22px;transition: max-height .35s ease, padding .35s ease;overflow: hidden}
.ne-faq-item[data-open] .ne-faq-item__a {max-height: 400px;padding: 0 22px 18px}
.ne-faq-item__a p {color: var(--ne_muted);font-size: .9rem;line-height: 1.7}

/* ── Payments ────────────────────────────────────────────────── */
.ne-payments__head {margin-bottom: 40px;text-align: center}
.ne-payments__head p {color: var(--ne_muted);margin-top: 10px}
.ne-pay-grid {display: grid;gap: 14px;grid-template-columns: repeat(5, 1fr)}
.ne-pay-card {transition: transform .2s, box-shadow .2s;text-align: center;padding: 20px 14px}
.ne-pay-card:hover {transform: translateY(-3px);box-shadow: var(--ne_glow-c)}
.ne-pay-card__icon {font-size: 1.8rem;margin-bottom: 8px}
.ne-pay-card__name {color: var(--ne_text);font-weight: 600;font-size: .8rem}
.ne-pay-card__time {margin-top: 4px;color: var(--ne_muted);font-size: .72rem}

/* ── CTA section ─────────────────────────────────────────────── */
.ne-cta-section {position: relative;overflow: hidden;padding: 80px 0;text-align: center}
.ne-cta-section::before {position: absolute;background: radial-gradient(ellipse at center, rgba(168,85,247,.18) 0%, transparent 70%);pointer-events: none;inset: 0;content: ''}
.ne-cta-section__border {margin: 0 auto;max-width: 700px;padding: 50px 40px;box-shadow: var(--ne_glow-p)}
.ne-cta-section h2 { margin-bottom: 14px; }
.ne-cta-section p {margin-right: auto;color: var(--ne_muted);font-size: 1.05rem;max-width: 500px;margin-bottom: 28px;margin-left: auto}
.ne-cta-section .ne-btn--primary {font-size: 1.05rem;padding: 16px 36px}

/* ── Footer ─────────────────────────────────────────────────── */
.ne-footer {position: relative;border-top: 1px solid var(--ne_glass-bd);padding: 54px 0 28px;background: rgba(6,6,16,.95)}
.ne-footer__grid {gap: 40px;margin-bottom: 44px;display: grid;grid-template-columns: 1.5fr 1fr 1fr 1fr}
.ne-footer__logo {margin-bottom: 14px;font-family: 'Syne', sans-serif;font-weight: 800;font-size: 1.5rem}
.ne-footer__desc {line-height: 1.65;color: var(--ne_muted);font-size: .85rem}
.ne-footer__col h4 {letter-spacing: .1em;text-transform: uppercase;font-size: .72rem;color: var(--ne_muted);font-weight: 700;margin-bottom: 14px}
.ne-footer__col ul {list-style: none;display: flex;flex-direction: column;gap: 8px}
.ne-footer__col ul a {font-size: .88rem;color: var(--ne_muted);transition: color .2s}
.ne-footer__col ul a:hover {color: var(--ne_white);text-decoration: none}
.ne-footer__bottom {display: flex;flex-wrap: wrap;align-items: center;padding-top: 22px;justify-content: space-between;border-top: 1px solid var(--ne_glass-bd);gap: 12px}
.ne-footer__copy {font-size: .8rem;color: var(--ne_muted)}
.ne-footer__warn {max-width: 500px;font-size: .75rem;text-align: right;color: var(--ne_muted)}

/* ── Sticky CTA ─────────────────────────────────────────────── */
.sf-sticky-cta {left: 0;bottom: 0;box-shadow: 0 -4px 20px rgba(0,0,0,.5);position: fixed;background: linear-gradient(135deg, var(--ne_purple-dk) 0%, #0e7490 100%);right: 0;transform: translateY(100%);transition: transform .4s cubic-bezier(.22,1,.36,1);z-index: 200}
.sf-sticky-cta.is-visible { transform: translateY(0); }
.sf-sticky-cta__inner {padding: 12px 20px;align-items: center;justify-content: space-between;margin: 0 auto;max-width: 1160px;display: flex;gap: 16px}
.sf-sticky-cta__text {font-weight: 600;font-size: .92rem;color: var(--ne_white)}
.sf-sticky-cta__text span { color: var(--ne_cyan-lt); }
.sf-sticky-cta__actions {display: flex;align-items: center;gap: 12px}
.sf-sticky-cta__close {font-size: 1.1rem;line-height: 1;color: rgba(255,255,255,.7);background: none;border: none;padding: 4px;cursor: pointer}
.sf-sticky-cta__close:hover { color: #fff; }

/* ── Legal pages ─────────────────────────────────────────────── */
.ne-page-hero {padding: 50px 0 40px;border-bottom: 1px solid var(--ne_glass-bd)}
.ne-page-hero__tag {font-weight: 700;text-transform: uppercase;margin-bottom: 10px;font-size: .75rem;letter-spacing: .1em;color: var(--ne_purple)}
.ne-content {max-width: 780px;margin: 0 auto}
.ne-content h2 {font-size: 1.6rem;margin: 36px 0 12px}
.ne-content h3 {margin: 28px 0 10px;font-size: 1.2rem;color: var(--ne_text)}
.ne-content p  {color: var(--ne_muted);margin-bottom: 16px}
.ne-content ul, .ne-content ol { margin: 0 0 16px 22px; }
.ne-content li {font-size: .95rem;margin-bottom: 8px;color: var(--ne_muted)}
.ne-content a  { color: var(--ne_cyan); }

/* ── Login ───────────────────────────────────────────────────── */
.ne-login-wrap {display: flex;padding: 60px 20px;min-height: 80vh;align-items: center;justify-content: center}
.ne-login-card {max-width: 440px;padding: 44px 40px;width: 100%;box-shadow: var(--ne_glow-p)}
.ne-login-card h2 {margin-bottom: 8px;text-align: center}
.ne-login-card__sub {margin-bottom: 28px;text-align: center;font-size: .92rem;color: var(--ne_muted)}
.ne-form {flex-direction: column;gap: 16px;display: flex}
.ne-form label {display: block;margin-bottom: 6px;color: var(--ne_text);font-size: .82rem;font-weight: 600}
.ne-form input {border-radius: var(--ne_r);font-family: 'Space Grotesk', sans-serif;color: var(--ne_white);border: 1px solid var(--ne_glass-bd);padding: 12px 16px;background: rgba(255,255,255,.04);width: 100%;font-size: .95rem;transition: border-color .2s}
.ne-form input:focus {border-color: var(--ne_purple);outline: none}
.ne-form__hint {margin-top: 4px;text-align: center;font-size: .78rem;color: var(--ne_muted)}

/* ── Mobile ──────────────────────────────────────────────────── */
.ne-nav__mobile { display: none; }
@media (max-width: 900px) {
  .ne-hero__inner { grid-template-columns: 1fr; }
  .ne-rating-card { max-width: 420px; }
  .ne-features__grid { grid-template-columns: repeat(2, 1fr); }
  .ne-vip__grid {grid-template-columns: 1fr;max-width: 400px;margin: 0 auto}
  .ne-pay-grid { grid-template-columns: repeat(3, 1fr); }
  .ne-footer__grid { grid-template-columns: 1fr 1fr; }
  .ne-nav__links { display: none; }
  .ne-nav__cta { display: none; }
  .ne-burger { display: flex; }
  .ne-nav__mobile {background: var(--ne_bg2);display: none;padding: 16px 20px;gap: 12px;border-top: 1px solid var(--ne_glass-bd);flex-direction: column}
  .ne-nav__mobile.is-open { display: flex; }
  .ne-nav__mobile a {border-bottom: 1px solid var(--ne_glass-bd);padding: 8px 0;font-size: .95rem;color: var(--ne_text)}
}
@media (max-width: 540px) {
  .ne-features__grid { grid-template-columns: 1fr; }
  .ne-pay-grid { grid-template-columns: repeat(2, 1fr); }
  .ne-footer__grid { grid-template-columns: 1fr; }
  .ne-cta-section__border { padding: 36px 22px; }
  .ne-login-card { padding: 28px 22px; }
}

/* siteforge-footer-overlap-guard: stable mobile footer layout + sticky CTA clearance */
:where(footer,[class*='-footer']){position:relative;overflow:visible;z-index:1}
:where([class*='footer__grid'],[class*='footer__strip'],[class*='footer__bar']){min-width:0}
:where([class*='footer__grid'],[class*='footer__strip'],[class*='footer__bar'])>*{max-width:100%;min-width:0}
:where([class*='footer__brandblock'],[class*='footer__summary'],[class*='footer__meta'],[class*='footer__copy'],[class*='footer__warn'],[class*='linkstack']){word-break:break-word;overflow-wrap:anywhere}
@media(max-width:760px){
  .sf-has-sticky-cta :where([class*='-shell']),.sf-has-sticky-cta main{padding-bottom:calc(140px + env(safe-area-inset-bottom,0px)) !important}
  .sf-has-sticky-cta main~footer,.sf-has-sticky-cta :where(footer,[class$='-footer']){padding-bottom:calc(112px + env(safe-area-inset-bottom,0px)) !important}
  :where([class*='footer__grid'],[class*='footer__strip'],[class*='footer__bar']){display:grid !important;align-items:start !important;grid-template-columns:1fr !important;gap:16px !important}
  :where([class*='footer__summary'],[class*='footer__bottom']){align-items:flex-start;text-align:left;gap:10px;display:flex;flex-direction:column}
  :where([class*='footer__brand']){float:none !important;clear:both;margin-bottom:12px;max-height:110px;max-width:110px}
}
