/* ============================================
   VYVE — FULL VISUAL OVERHAUL
   Vibrant, 3D, Alive
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #08070e;
    --bg-card: rgba(255, 255, 255, 0.04);
    --text: #f4f0ff;
    --text-dim: #9b95b0;
    --cyan: #00e5ff;
    --purple: #b14aed;
    --pink: #ff2d87;
    --orange: #ff6b35;
    --lime: #a3f75f;
    --gold: #ffc857;
    --blue: #4d7cfe;
    --grad-hero: linear-gradient(135deg, #ff2d87, #b14aed, #4d7cfe, #00e5ff);
    --grad-card: linear-gradient(135deg, rgba(177, 74, 237, 0.15), rgba(0, 229, 255, 0.08));
    --grad-btn: linear-gradient(135deg, #ff2d87, #b14aed);
    --font: 'Outfit', sans-serif;
    --font-display: 'Syne', sans-serif;
    --radius: 20px;
    --radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============ GRAIN ============ */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px;
}

/* ============ HIGH-PERFORMANCE MESH BG ============ */
.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: 
        radial-gradient(at 0% 0%, rgba(177, 74, 237, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 229, 255, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 45, 135, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(255, 107, 53, 0.08) 0px, transparent 50%),
        var(--bg);
}

/* Subtle Glow for sections */
.section-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(177, 74, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ============ FLOATING 3D SHAPES ============ */
.float-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.float-shapes .shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: shapeFloat 15s ease-in-out infinite;
}

.float-shapes .shape.circle {
    border-radius: 50%;
}

.float-shapes .shape.s1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 8%;
    border-color: rgba(177, 74, 237, 0.3);
    animation-delay: 0s;
    animation-duration: 18s;
    transform: rotateX(45deg) rotateZ(45deg);
}

.float-shapes .shape.s2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    border-color: rgba(0, 229, 255, 0.25);
    animation-delay: -4s;
    animation-duration: 22s;
}

.float-shapes .shape.s3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 25%;
    border-color: rgba(255, 45, 135, 0.3);
    animation-delay: -8s;
    animation-duration: 16s;
    transform: rotate(30deg);
}

.float-shapes .shape.s4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 25%;
    border-color: rgba(163, 247, 95, 0.2);
    animation-delay: -12s;
    animation-duration: 20s;
    border-radius: 30%;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }

    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(20px) rotate(180deg);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-15px) rotate(270deg);
        opacity: 0.7;
    }
}

/* ============ TYPOGRAPHY ============ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

.text-gradient {
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradShift 12s ease infinite;
}

@keyframes gradShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-transform: uppercase;
}

.btn-primary {
    background: var(--grad-btn);
    color: #fff;
    box-shadow: 0 8px 32px rgba(255, 45, 135, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 45, 135, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--grad-hero);
    border-radius: inherit;
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover::after {
    opacity: 0.6;
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--cyan);
    background: rgba(0, 229, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.15);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(255, 45, 135, 0.3);
    }

    50% {
        box-shadow: 0 8px 48px rgba(255, 45, 135, 0.5);
    }
}

.pulse-btn {
    animation: pulse 3s infinite;
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    padding: 130px 2rem 80px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(0, 229, 255, 0.08);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.hero h1,
.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6.5rem) !important;
    line-height: 1.0 !important;
    margin-bottom: 1.5rem !important;
    font-family: var(--font-display) !important;
    font-weight: 800 !important;
}

.hero-manifesto {
    margin-bottom: 3rem;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--text-dim);
    line-height: 2;
}

.hero-manifesto strong {
    color: var(--text);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ SECTION LABELS ============ */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    background: rgba(177, 74, 237, 0.1);
    border: 1px solid rgba(177, 74, 237, 0.2);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

/* ============ SERVICE CARD V2 — 3D TILT ============ */
.service-card-v2 {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card-v2 .card-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s;
    filter: brightness(0.5) saturate(1.2);
}

.service-card-v2:hover .card-bg-img {
    transform: scale(1.12);
    filter: brightness(0.4) saturate(1.4);
}

.service-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(177, 74, 237, 0.1), rgba(0, 229, 255, 0.05));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card-v2:hover::before {
    opacity: 1;
}

.service-card-v2::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(8, 7, 14, 0.98) 0%,
            rgba(8, 7, 14, 0.7) 35%,
            rgba(8, 7, 14, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.service-card-v2 .card-inner {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.service-card-v2 .card-inner h3,
.service-card-v2 .card-inner h4 {
    font-family: var(--font-display);
    margin-bottom: 0.6rem;
    font-size: 1.5rem;
}

.service-card-v2 .card-inner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card-v2 .card-inner ul {
    color: rgba(255, 255, 255, 0.5);
}

.service-card-v2 .card-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: var(--cyan);
}

.service-card-v2:hover .card-arrow {
    transform: translateX(10px);
}

.service-card-v2:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    border-color: rgba(177, 74, 237, 0.3);
    box-shadow:
        0 30px 80px rgba(177, 74, 237, 0.15),
        0 0 0 1px rgba(177, 74, 237, 0.1);
}

/* Card stat */
.card-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    backdrop-filter: blur(10px);
}

/* ============ SERVICES GRID ============ */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem;
}

/* ============ STATS ============ */
.formula-stats {
    display: grid;
    gap: 1rem;
}

.formula-stat {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(5px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.formula-stat:hover {
    transform: translateX(8px);
    box-shadow: -4px 0 20px rgba(177, 74, 237, 0.1);
}

.formula-stat h3 {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
}

.formula-stat p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin: 0;
}

/* ============ PROBLEM LIST ============ */
.problem-list {
    padding: 0;
    margin-bottom: 2rem;
}

.problem-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--text-dim);
    font-size: 1.05rem;
}

/* ============ FEATURE TAGS ============ */
.community-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: all 0.3s;
}

.feature-tag:hover {
    border-color: var(--pink);
    color: var(--pink);
    background: rgba(255, 45, 135, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 45, 135, 0.1);
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-6px) rotateX(2deg);
    border-color: rgba(255, 45, 135, 0.3);
    box-shadow: 0 20px 50px rgba(255, 45, 135, 0.1);
}

/* ============ CONTENT GRID ============ */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

/* ============ HEADER ============ */
.vyve-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 7, 14, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0.8rem 2rem;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .vyve-header { padding: 0.5rem 1.5rem; }
    .signup-page, .dashboard-tab { padding-top: 100px !important; }
}

.vyve-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* LOGO — BIG */
.vyve-logo img {
    height: 120px !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
    transition: all 0.3s;
    filter: drop-shadow(0 0 20px rgba(177, 74, 237, 0.2));
}

.vyve-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.vyve-links a {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.vyve-links a:hover {
    opacity: 1;
    color: var(--cyan);
}

.vyve-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-btn);
    transition: width 0.3s;
}

.vyve-links a:hover::after {
    width: 100%;
}

.vyve-cta {
    background: var(--grad-btn);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 45, 135, 0.25);
}

.vyve-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 45, 135, 0.4);
}

/* Hamburger */
.vyve-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.vyve-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Drawer */
.vyve-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.vyve-drawer.active {
    right: 0;
}

.vyve-drawer a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    opacity: 0.8;
    transition: all 0.3s;
}

.vyve-drawer a:hover {
    opacity: 1;
    color: var(--pink);
}

.vyve-drawer .vyve-cta.full {
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

.menu-open .vyve-hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-open .vyve-hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-open .vyve-hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

main {
    padding-top: 130px;
}

@media (max-width:900px) {
    .vyve-links {
        display: none;
    }

    .vyve-nav .vyve-cta {
        display: none;
    }

    .vyve-hamburger {
        display: flex;
    }
}

/* ============ FOOTER ============ */
footer {
    padding: 4rem 2rem 2rem;
    background: rgba(8, 7, 14, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 4rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-col a {
    display: block;
    color: var(--text-dim);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--pink);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
}

/* ============ REVEALS ============ */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.pending {
    opacity: 0;
    transform: translateY(60px) rotateX(5deg);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

/* ============ CAFE STYLES ============ */
.cafe-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-quote {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text);
    margin-top: 2rem;
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    display: inline-block;
}

.menu-section {
    padding: 4rem 2rem;
}

.menu-section.bg-alt {
    background: rgba(255, 255, 255, 0.015);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title.text-left {
    text-align: left;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.menu-grid {
    display: grid;
    gap: 2rem;
}

.cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.menu-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.menu-card:hover {
    transform: translateY(-6px);
    border-color: var(--lime);
    box-shadow: 0 15px 40px rgba(163, 247, 95, 0.08);
}

.menu-card.low-cal {
    border-left: 4px solid var(--gold);
    background: linear-gradient(to right, rgba(255, 200, 87, 0.03), transparent);
}

.food-img-placeholder {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ingredients {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    height: 3rem;
}

.macros {
    font-family: var(--font-display);
    color: var(--gold);
    font-weight: bold;
    font-size: 0.9rem;
    background: rgba(255, 200, 87, 0.08);
    padding: 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    width: 100%;
}

.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
}

.macros-pill {
    background: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    color: var(--lime);
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    margin-left: 1rem;
}

/* Shakes */
.shake-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, var(--bg), #000);
    border-top: 1px solid rgba(0, 229, 255, 0.15);
}

.shake-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.shake-category h3 {
    color: var(--cyan);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--cyan);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.shake-item {
    margin-bottom: 2rem;
}

.shake-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.shake-macro {
    color: var(--lime);
    font-size: 0.9rem;
    font-weight: bold;
}

.coffee-bar {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius);
}

.coffee-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    color: var(--text-dim);
}

.snack-carousel {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.snack-card {
    background: var(--bg-card);
    min-width: 150px;
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border: 1px dashed var(--text-dim);
    font-weight: 600;
}

/* Pricing */
.membership {
    padding: 6rem 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.price-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(177, 74, 237, 0.1);
}

.price-card.platinum {
    border: 2px solid var(--purple);
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(177, 74, 237, 0.15);
    z-index: 10;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-btn);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.price-desc {
    color: var(--cyan);
    margin-bottom: 2rem;
    font-weight: 600;
}

.features {
    text-align: left;
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 1rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
}

.features li::before {
    content: '✓';
    color: var(--lime);
    margin-right: 10px;
    font-weight: bold;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-badges span {
    color: var(--lime);
    border: 1px solid var(--lime);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Legacy compat */
.service-card {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.4s;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(177, 74, 237, 0.3);
}

.feature-card {
    border-radius: var(--radius);
    transition: all 0.4s;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card-fitness {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(8, 7, 14, 0.9)), url('assets/card_fitness.png') no-repeat center/cover !important;
    border: 1px solid rgba(0, 229, 255, 0.4);
}

.card-nutrition {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(8, 7, 14, 0.9)), url('assets/card_nutrition.png') no-repeat center/cover !important;
    border: 1px solid rgba(163, 247, 95, 0.4);
}

.card-mind {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(8, 7, 14, 0.9)), url('assets/card_mind.png') no-repeat center/cover !important;
    border: 1px solid rgba(177, 74, 237, 0.4);
}

.card-hub {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(8, 7, 14, 0.9)), url('assets/card_hub.png') no-repeat center/cover !important;
    border: 1px solid rgba(255, 200, 87, 0.4);
}

.card-ai {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(8, 7, 14, 0.9)), url('assets/card_ai.png') no-repeat center/cover !important;
    border: 1px solid rgba(177, 74, 237, 0.4);
}

/* ============ HERO OVERRIDE ============ */
.hero {
    min-height: 95vh !important;
    padding-top: 140px !important;
}

/* ============ MOBILE ============ */
@media (max-width:768px) {
    .vyve-logo img {
        height: 80px !important;
        max-height: none !important;
    }

    .vyve-header {
        padding: 0.5rem 1rem !important;
    }

    main {
        padding-top: 100px;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .grid-split {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .hero-content h1 {
        font-size: 2.8rem !important;
    }

    .hero-manifesto {
        font-size: 1rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .mesh-bg .orb {
        opacity: 0.2;
    }
}

@media (max-width:1024px) and (min-width:769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}