/* =====================================================
   VELLEX MEDS — LANDING · OBSIDIAN LUXE PALETTE
   Escenciales.txt: #0A0A0A #D4AF37 #1C1C1E #F2F2F7
   ===================================================== */
:root {
    --ob: #0A0A0A;
    --gg: #1C1C1E;
    --gold: #D4AF37;
    --glite: #E8C84A;
    --sv: #F2F2F7;
    --wh: #FFFFFF;
    --bord: rgba(212, 175, 55, .15);
    --bords: rgba(255, 255, 255, .06);
    --ease: cubic-bezier(.16, 1, .3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--ob);
    color: var(--sv);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 3px
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px
}

/* ── UTILS ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.gold-grad {
    background: linear-gradient(135deg, var(--gold), var(--glite) 50%, #B8962E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal-up.vis {
    opacity: 1;
    transform: none
}

/* ── SCROLL BAR ── */
#scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--glite));
    width: 0%;
    z-index: 10000;
    transition: width .1s linear
}

/* ── CURSOR MOLECULAR ── */
#mol-cursor {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: left .15s ease, top .15s ease;
    will-change: left, top;
}

/* ── CANVAS ── */
#anti-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .35
}

/* ── NAVBAR ── */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 10, .65);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--bords);
    transition: background .3s
}

#nav.scrolled {
    background: rgba(10, 10, 10, .95);
    border-bottom-color: var(--bord)
}

.nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.n-logo {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 0
}

.nl-v {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 900
}

.nl-e {
    color: var(--wh);
    font-size: 1.5rem;
    font-weight: 900
}

.nl-l {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 900
}

.n-logo em {
    font-style: normal;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--gold);
    opacity: .75;
    margin-left: .4rem;
    text-transform: uppercase
}

.n-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    list-style: none
}

.n-links a {
    color: rgba(242, 242, 247, .7);
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s
}

.n-links a:hover {
    color: var(--gold)
}

.n-cta {
    background: linear-gradient(135deg, var(--gold), #B8962E) !important;
    color: var(--ob) !important;
    padding: .45rem 1.1rem;
    border-radius: 999px;
    font-weight: 700 !important;
    font-size: .8rem !important;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s
}

.n-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, .35)
}

/* ---- NAV DROPDOWN ---- */
.nav-dropdown {
    position: relative;
}

.nav-dropbtn {
    cursor: pointer;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--bords);
    min-width: 220px;
    border-radius: 8px;
    padding: 0.5rem 0;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-dropdown-content li {
    width: 100%;
}

.nav-dropdown-content a {
    display: block;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    color: rgba(242, 242, 247, 0.7);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.nav-dropdown-content a:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.n-ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px
}

.n-ham span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--sv);
    border-radius: 2px;
    transition: all .3s
}

.n-ham.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.n-ham.open span:nth-child(2) {
    opacity: 0
}

.n-ham.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* ── BUTTONS ── */
.btn-g {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--gold), #B8962E);
    color: var(--ob);
    border: none;
    padding: .85rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s
}

.btn-g:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, .42)
}

.btn-g.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1rem
}

.btn-o {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--sv);
    border: 1px solid rgba(242, 242, 247, .22);
    padding: .85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: border-color .3s, background .3s, transform .3s
}

.btn-o:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, .06);
    transform: translateY(-2px)
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 100px 1.5rem 80px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: translateX(calc((1200px - 100vw)/2));
    /* Center relative to max-width */
}

@media (max-width: 1200px) {
    .hero-video {
        transform: none;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgba(10, 10, 10, 0.65);
    z-index: -1;
    transform: translateX(calc((100% - 100vw)/2));
}

.hero-grid-lines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(rgba(212, 175, 55, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, .03) 1px, transparent 1px);
    background-size: 60px 60px
}

.h-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none
}

.h-orb1 {
    width: 550px;
    height: 550px;
    background: rgba(212, 175, 55, .1);
    top: -15%;
    left: -10%;
    animation: drA 20s ease-in-out infinite alternate
}

.h-orb2 {
    width: 420px;
    height: 420px;
    background: rgba(212, 175, 55, .07);
    bottom: -10%;
    right: -5%;
    animation: drB 25s ease-in-out infinite alternate
}

.h-orb3 {
    width: 280px;
    height: 280px;
    background: rgba(180, 120, 30, .05);
    top: 45%;
    left: 55%;
    animation: drA 18s ease-in-out infinite alternate-reverse
}

@keyframes drA {
    to {
        transform: translate(50px, 70px) scale(1.15)
    }
}

@keyframes drB {
    to {
        transform: translate(-60px, 40px) scale(1.1)
    }
}

.hero-center {
    position: relative;
    z-index: 2
}

.h-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(212, 175, 55, .08);
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--gold);
    padding: .32rem .9rem;
    margin-bottom: 1.5rem
}

.h-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: blink 2s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.h-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.2rem
}

/* Word mask reveal */
.word-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom
}

.wm-inner {
    display: inline-block;
    transform: translateY(110%);
    animation: wordUp .9s .5s var(--ease) forwards
}

@keyframes wordUp {
    to {
        transform: translateY(0)
    }
}

.h-sub {
    font-size: clamp(.95rem, 1.8vw, 1.08rem);
    color: rgba(242, 242, 247, .62);
    max-width: 520px;
    margin-bottom: 1.5rem;
    line-height: 1.7
}

.h-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.h-tags span {
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(242, 242, 247, .4)
}

.h-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.hero-hub {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center
}

.hero-hub svg {
    width: 100%;
    max-width: 440px;
    height: auto
}

.hub-node {
    cursor: pointer;
    transition: opacity .3s
}

.hub-node:hover circle {
    stroke: #E8C84A;
    stroke-width: 2
}

/* ── STATS ── */
#stats {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    border-top: 1px solid var(--bords);
    border-bottom: 1px solid var(--bords);
    background: rgba(28, 28, 30, .5);
    backdrop-filter: blur(10px)
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem
}

.stat-b {
    text-align: center
}

.sn {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--glite));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sp {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold)
}

.stat-b small {
    display: block;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(242, 242, 247, .4);
    margin-top: .2rem
}

.stat-sep {
    width: 1px;
    height: 44px;
    background: var(--bords)
}

/* ── SECTIONS ── */
.proto-section {
    position: relative;
    z-index: 2;
    padding: 100px 0
}

.ps-alt {
    background: rgba(28, 28, 30, .35)
}

.proto-header {
    max-width: 680px;
    margin-bottom: 3.5rem
}

.sec-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, .25);
    border-radius: 999px;
    display: inline-block;
    padding: .28rem .85rem;
    background: rgba(212, 175, 55, .06);
    margin-bottom: 1rem
}

.proto-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: .9rem
}

.proto-header p {
    font-size: 1rem;
    color: rgba(242, 242, 247, .6);
    line-height: 1.75
}

/* ── PROTO CARDS ── */
.proto-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.pcard {
    background: var(--gg);
    border: 1px solid var(--bords);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: --none;
    transform-style: preserve-3d;
    transition: border-color .3s, box-shadow .3s
}

.pcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--glite));
    opacity: 0;
    transition: opacity .3s
}

.pcard:hover {
    border-color: rgba(212, 175, 55, .35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6)
}

.pcard:hover::before {
    opacity: 1
}

.pcard-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .12), transparent 70%);
    top: -60px;
    right: -60px;
    pointer-events: none;
    transition: opacity .3s;
    opacity: 0
}

.pcard:hover .pcard-glow {
    opacity: 1
}

.pcard-num {
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .2em;
    color: var(--gold);
    opacity: .5
}

.pcard-badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, .25);
    border-radius: 999px;
    padding: .18rem .65rem;
    background: rgba(212, 175, 55, .05);
    align-self: flex-start
}

.pcard h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.25
}

.pcard p {
    font-size: .86rem;
    color: rgba(242, 242, 247, .6);
    line-height: 1.7;
    flex: 1
}

.pcard-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold)
}

.pcard-price span {
    font-size: .78rem;
    font-weight: 500;
    color: rgba(212, 175, 55, .6)
}

.pcard-btn {
    display: inline-flex;
    align-items: center;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 999px;
    padding: .38rem .9rem;
    transition: background .2s, color .2s;
    align-self: flex-start
}

.pcard-btn:hover {
    background: var(--gold);
    color: var(--ob)
}

.pcard-btn.sm {
    font-size: .72rem;
    padding: .3rem .75rem
}

/* ── PARALLAX BAND ── */
.parallax-band {
    position: relative;
    overflow: hidden;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(28, 28, 30, .8), rgba(10, 10, 10, .8));
    border-top: 1px solid var(--bords);
    border-bottom: 1px solid var(--bords)
}

.pb-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: rgba(212, 175, 55, .7);
    text-align: center;
    padding: 0 2rem;
    will-change: transform
}

/* ── HSCROLL (Bioestimulación) ── */
.hscroll-wrap {
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent
}

.hscroll-wrap::-webkit-scrollbar {
    height: 3px
}

.hscroll-wrap::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px
}

.hscroll-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 1rem .5rem 1.5rem
}

.hcard {
    background: var(--gg);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 16px;
    padding: 2rem;
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s
}

.hcard:hover {
    border-color: var(--gold);
    transform: translateY(-4px)
}

.hcard-num {
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .2em;
    color: var(--gold);
    opacity: .5
}

.hcard-icon {
    font-size: 2rem;
    color: var(--gold)
}

.hcard h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.25
}

.hcard p {
    font-size: .84rem;
    color: rgba(242, 242, 247, .6);
    line-height: 1.7;
    flex: 1
}

.hcard-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold)
}

.hscroll-hint {
    text-align: center;
    font-size: .75rem;
    color: rgba(242, 242, 247, .3);
    letter-spacing: .08em;
    margin-top: .8rem;
    display: none
}

@media(max-width:768px) {
    .hscroll-hint {
        display: block
    }
}

/* ── DRA PANEL ── */
#dra-panel {
    position: relative;
    z-index: 2;
    padding: 80px 0
}

.dra-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(28, 28, 30, .9), rgba(20, 16, 8, .95));
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 20px;
    padding: 3rem
}

.dra-avatar {
    position: relative;
    flex-shrink: 0
}

.dra-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, .4);
    animation: rotRing 8s linear infinite
}

@keyframes rotRing {
    to {
        transform: rotate(360deg)
    }
}

.dra-initials {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gg);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold)
}

.dra-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: .7rem
}

.dra-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: .7rem
}

.dra-content p {
    color: rgba(242, 242, 247, .65);
    margin-bottom: 1.5rem;
    line-height: 1.7
}

/* ── CTA ── */
#cta {
    position: relative;
    z-index: 2;
    padding: 120px 0;
    text-align: center;
    overflow: hidden
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto
}

.cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin: 1rem 0
}

.cta-inner p {
    color: rgba(242, 242, 247, .65);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 1.2rem;
    line-height: 1.75
}

.cta-inner blockquote {
    font-style: italic;
    color: rgba(212, 175, 55, .6);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    border-left: 2px solid rgba(212, 175, 55, .3);
    padding-left: 1rem;
    text-align: left;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

/* ── FOOTER ── */
#foot {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--bords);
    padding: 40px 0 30px
}

.foot-top {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    margin-bottom: .5rem
}

.foot-logo {
    display: flex;
    align-items: baseline;
    font-size: 1.5rem;
    font-weight: 900
}

.foot-logo em {
    font-style: normal;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--gold);
    opacity: .7;
    margin-left: .3rem;
    text-transform: uppercase
}

.foot-tag {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(242, 242, 247, .3);
    margin-bottom: 1.2rem
}

.foot-legal p {
    font-size: .72rem;
    color: rgba(242, 242, 247, .28);
    line-height: 1.75;
    margin-bottom: .5rem
}

/* ── WA FLOAT ── */
#wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: .6rem;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    padding: .75rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, .35);
    transition: transform .3s var(--ease), box-shadow .3s;
    animation: fabIn .6s 1.2s both
}

@keyframes fabIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

#wa-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 45px rgba(37, 211, 102, .5)
}

/* ── EXIT POPUP ── */
#xoverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 1998;
    backdrop-filter: blur(6px)
}

#xpop {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1999;
    background: var(--gg);
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    text-align: center
}

#xpop.show,
#xoverlay.show {
    display: block
}

.xpop-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--gold);
    text-transform: uppercase
}

#xpop h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: .7rem 0
}

#xpop p {
    font-size: .9rem;
    color: rgba(242, 242, 247, .65);
    margin-bottom: 1.5rem
}

#xpop strong {
    color: var(--gold)
}

#xclose {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(242, 242, 247, .35);
    font-size: 1.1rem;
    cursor: pointer
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    #hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 1.5rem 60px
    }

    .hero-hub {
        display: none
    }

    .h-btns,
    .h-tags {
        justify-content: center
    }

    .h-sub {
        margin: 0 auto 1.5rem
    }

    .dra-card {
        grid-template-columns: 1fr;
        text-align: center
    }

    .dra-avatar {
        margin: 0 auto
    }
}

@media(max-width:768px) {
    .n-ham {
        display: flex
    }

    .n-links {
        display: none;
        flex-direction: column;
        gap: .5rem;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, .97);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem 2rem;
        border-bottom: 1px solid var(--bords);
        z-index: 998
    }

    .n-links.open {
        display: flex
    }

    .n-links a {
        font-size: 1rem;
        padding: .35rem 0
    }

    .n-cta {
        align-self: flex-start;
        margin-top: .4rem
    }

    .nav-dropdown-content {
        position: static;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0.5rem;
        margin-left: 1rem;
        border-left: 1px solid var(--bords);
        border-radius: 0;
    }

    .nav-dropdown:hover .nav-dropdown-content {
        display: flex;
        flex-direction: column;
    }

    .proto-cards {
        grid-template-columns: 1fr
    }

    .stats-row {
        gap: 1rem
    }

    .stat-sep {
        display: none
    }

    .h-btns {
        flex-direction: column;
        align-items: center
    }

    .cta-btns {
        flex-direction: column;
        align-items: center
    }

    .dra-card {
        padding: 2rem 1.5rem
    }

    #wa-fab span {
        display: none
    }

    #wa-fab {
        border-radius: 50%;
        padding: .85rem
    }
}

@media(max-width:480px) {
    .h-title {
        font-size: clamp(2.2rem, 8vw, 3rem)
    }

    .h-badge {
        font-size: .62rem
    }

    .pcard {
        padding: 1.5rem
    }
}