/* =====================================================
   NootiGO Landing — Lovable-Style Redesign
   Colors: #00b0f0 (primary), #08080b (dark)
   ===================================================== */

:root {
    --primary: #00b0f0;
    --primary-light: #33c4f5;
    --primary-dark: #0090cc;
    --primary-glow: rgba(0,176,240,0.35);
    --primary-10: rgba(0,176,240,0.10);
    --primary-20: rgba(0,176,240,0.20);
    --dark: #08080b;
    --dark-100: #0e0e12;
    --dark-200: #16161b;
    --dark-300: #1c1c22;
    --white: #ffffff;
    --muted: #888899;
    --muted-light: #a0a0b0;
    --border: rgba(255,255,255,0.10);
    --border-light: rgba(255,255,255,0.06);
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --glow: 0 0 40px rgba(0,176,240,0.35), 0 0 80px rgba(0,176,240,0.12);
    --glow-lg: 0 0 60px rgba(0,176,240,0.45), 0 0 120px rgba(0,176,240,0.18);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.35s var(--ease);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- Utility ---- */
.text--accent { color: var(--primary); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
}
.btn--primary { background: var(--primary); color: var(--dark); }
.btn--primary:hover { transform: scale(1.05); }
.btn--outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn--outline:hover { background: rgba(0,176,240,0.1); }
.btn--lg { padding: 16px 38px; font-size: 0.9rem; }
.btn--full { width: 100%; }
.btn--glow { box-shadow: var(--glow); }
.btn--glow:hover { box-shadow: var(--glow-lg); }

/* ---- Section ---- */
.section { position: relative; z-index: 10; padding: 96px 24px; }
.section--base { background: var(--dark); }
.section--alt { background: var(--dark-100); }
.section__container { max-width: 1152px; margin: 0 auto; }
.section__tag {
    display: block;
    text-align: center;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section__tag--light { color: var(--white); }
.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.15;
}
.section__subtitle {
    text-align: center;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 64px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
}
.nav--scrolled {
    background: rgba(8,8,11,0.88);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
}
.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo { height: 26px; }
.nav__links { display: flex; gap: 32px; }
.nav__link {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
}
.nav__link:hover { color: var(--primary); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__cta-link {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav__cta-link:hover { color: var(--primary); }
.nav__cta-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: all 0.3s;
}
.nav__cta-btn:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: var(--glow);
}
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
}
.nav__hamburger-line {
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s var(--ease);
    transform-origin: center;
}

/* ========== FULLSCREEN MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
}
.mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
}
.mobile-menu__bg {
    position: absolute;
    inset: 0;
    background: rgba(8,8,11,0.96);
    backdrop-filter: blur(30px);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.mobile-menu.is-open .mobile-menu__bg { opacity: 1; }
.mobile-menu__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 24px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s var(--ease) 0.1s;
}
.mobile-menu.is-open .mobile-menu__content {
    transform: translateY(0);
    opacity: 1;
}
.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}
.mobile-menu__logo { height: 28px; }
.mobile-menu__close {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: none;
    color: var(--white);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.mobile-menu__close:hover { border-color: var(--primary); color: var(--primary); }
.mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}
.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.3s;
}
.mobile-menu__link:hover { color: var(--primary); }
.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}
.mobile-menu__footer {
    margin-top: 24px;
    text-align: center;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--dark), var(--dark-100), var(--dark-200));
}

/* BG Video */
.hero__bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero__bg-video video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.18;
}
.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,8,11,0.55), rgba(8,8,11,0.75), var(--dark));
}

/* Watermark */
.hero__watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}
.hero__watermark span {
    font-family: var(--font-display);
    font-size: 20vw;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.03;
    filter: blur(2px);
}

/* Glow orbs */
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
}
.hero__orb--1 {
    width: 350px; height: 350px;
    background: var(--primary);
    bottom: -50px; right: -50px;
    opacity: 0.35;
    animation: pulse-glow 6s ease-in-out infinite;
}
.hero__orb--2 {
    width: 500px; height: 400px;
    background: var(--primary-light);
    top: -80px; left: -100px;
    opacity: 0.20;
    animation: pulse-glow 8s ease-in-out infinite 3s;
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.1); }
}

/* Hero main */
.hero__main {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 20px 64px;
    max-width: 800px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0,176,240,0.3);
    background: rgba(0,176,240,0.05);
    backdrop-filter: blur(8px);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

/* Product wrap + pills + glow */
.hero__product-wrap {
    position: relative;
    width: 220px;
    margin-bottom: 36px;
    z-index: 20;
}
.hero__product-img {
    position: relative;
    z-index: 3;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(0,176,240,0.35));
    animation: product-float 6s ease-in-out infinite;
}
@keyframes product-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

/* Animated glow behind product */
.hero__product-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 280px; height: 280px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0,176,240,0.30) 0%, rgba(0,176,240,0.08) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glow-breathe 4s ease-in-out infinite;
}
.hero__product-glow-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 200px; height: 200px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0,176,240,0.15);
    border-radius: 50%;
    z-index: 2;
    animation: ring-expand 5s ease-in-out infinite;
}
@keyframes glow-breathe {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}
@keyframes ring-expand {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.3); }
}

/* Floating pills */
.hero__pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(14,14,18,0.85);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 25;
    animation: pill-float 5s ease-in-out infinite;
}
.hero__pill i { color: var(--primary); font-size: 0.95rem; }
.hero__pill--1 { top: 5%; right: -60%; animation-delay: 0s; }
.hero__pill--2 { bottom: 35%; left: -65%; animation-delay: 1.5s; }
.hero__pill--3 { bottom: 5%; right: -55%; animation-delay: 3s; }
@keyframes pill-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero title */
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 9vw, 6rem);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    text-shadow: 0 0 60px rgba(0,176,240,0.12);
}
.hero__title-accent {
    color: var(--primary);
}

.hero__desc {
    color: var(--muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.hero__desc strong { color: var(--white); }

/* Stats */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
}
.hero__stat { text-align: center; }
.hero__stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
}
.hero__stat-unit {
    font-size: 1rem;
    color: var(--primary);
}
.hero__stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 2px;
}
.hero__stat-sep {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero CTA */
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Side decorations */
.hero__side-left, .hero__side-right {
    display: none;
    position: absolute;
}
.hero__side-left {
    bottom: 96px;
    left: -280px;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
    text-align: left;
}
.hero__side-right {
    right: -260px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}
.hero__side-right p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--primary-light);
}

/* ========== PROOF BAR ========== */
.proof-bar {
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-light);
    padding: 24px;
    background: rgba(14,14,18,0.5);
}
.proof-bar__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px;
}
.proof-bar__item {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    cursor: default;
    transition: color 0.3s;
}
.proof-bar__item:hover { color: rgba(255,255,255,0.7); }

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--dark-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.5s;
}
.feature-card:hover { border-color: rgba(0,176,240,0.35); }
.feature-card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--primary-10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.3s;
}
.feature-card:hover .feature-card__icon { background: var(--primary-20); }
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-weight: 600; font-size: 1.05rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

/* ========== BANNER AD ========== */
.banner-ad { position: relative; z-index: 10; line-height: 0; }
.banner-ad a { display: block; }
.banner-ad img { width: 100%; height: auto; transition: transform 0.6s var(--ease); }
.banner-ad:hover img { transform: scale(1.02); }

/* ========== EXPERIENCE / VIDEO SECTION ========== */
.experience-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: center;
}

/* Video player */
.vid-wrap {
    position: relative;
    width: 434px;
    flex-shrink: 0;
}
.vid-player {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--dark-300);
    border: 2px solid rgba(0,176,240,0.12);
    box-shadow: 0 0 60px rgba(0,176,240,0.10), 0 30px 80px rgba(0,0,0,0.5);
    cursor: pointer;
}
.vid-player__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.5s var(--ease);
}
.vid-player__poster.is-hidden { opacity: 0; pointer-events: none; }
.vid-player__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Loader */
.vid-player__loader {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8,8,11,0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.vid-player__loader.is-loading { opacity: 1; }
.vid-player__spinner {
    width: 44px; height: 44px;
    border: 3px solid rgba(255,255,255,0.12);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Play btn */
.vid-player__play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(0,176,240,0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 0 30px rgba(0,176,240,0.4);
    transition: all 0.35s var(--ease);
    opacity: 0;
}
.vid-player:hover .vid-player__play-btn,
.vid-player__play-btn.is-paused { opacity: 1; }
.vid-player__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
    box-shadow: var(--glow-lg);
}

/* Audio toggle */
.vid-player__audio-btn {
    position: absolute;
    bottom: 52px; right: 14px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 50px;
    background: rgba(14,14,18,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    cursor: pointer;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}
.vid-player__audio-btn i { font-size: 1.1rem; color: var(--primary); transition: transform 0.3s var(--ease-bounce); }
.vid-player__audio-btn:hover { background: rgba(0,176,240,0.15); border-color: rgba(0,176,240,0.3); }
.vid-player__audio-btn:hover i { transform: scale(1.15); }
.vid-player__audio-btn.is-unmuted { background: rgba(0,176,240,0.18); border-color: rgba(0,176,240,0.3); }

/* Progress */
.vid-player__progress {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 5;
    height: 4px;
    background: rgba(255,255,255,0.1);
}
.vid-player__progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 0 2px 2px 0;
    transition: width 0.15s linear;
    box-shadow: 0 0 8px rgba(0,176,240,0.4);
}

/* Experience features */
.experience-content { display: flex; flex-direction: column; gap: 28px; }
.experience-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.experience-feat__icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary-10);
    border: 1px solid var(--primary-20);
    font-size: 1.2rem;
    color: var(--primary);
}
.experience-feat h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.experience-feat p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ========== QUALITY / PRODUCT GRID ========== */
.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 64px;
}
.quality-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--dark-200);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
}
.quality-card:hover { border-color: rgba(0,176,240,0.3); }
.quality-card__icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--primary-10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
}
.quality-card h4 { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.quality-card p { color: var(--muted); font-size: 0.85rem; }

.price-block { text-align: center; }
.price-block__label { color: var(--muted); font-size: 0.85rem; margin-bottom: 8px; }
.price-block__value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* ========== INGREDIENTS ========== */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ingredient-card {
    background: var(--dark-200);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.3s;
}
.ingredient-card:hover {
    border-color: var(--primary-20);
    background: rgba(0,176,240,0.04);
    transform: translateY(-4px);
}
.ingredient-card--featured {
    background: rgba(0,176,240,0.06);
    border-color: rgba(0,176,240,0.15);
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 36px 32px;
}
.ingredient-card--featured .ingredient-card__icon { width: 64px; height: 64px; flex-shrink: 0; margin-bottom: 0; }
.ingredient-card__icon { width: 40px; height: 40px; color: var(--primary); margin-bottom: 16px; }
.ingredient-card__icon svg { width: 100%; height: 100%; }
.ingredient-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.ingredient-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ========== AFFILIATE (original preserved) ========== */
.affiliate {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.affiliate__bg { position: absolute; inset: 0; }
.affiliate__hex { position: absolute; inset: 0; width: 100%; height: 100%; }
.affiliate__glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,176,240,0.1) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
}
.affiliate__content { position: relative; text-align: center; z-index: 1; }
.affiliate__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.affiliate__desc {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.8;
}
.affiliate__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 48px;
}
.affiliate__feature { text-align: center; }
.affiliate__feature-icon {
    width: 60px; height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--primary-10);
    border: 1px solid var(--primary-20);
    font-size: 1.5rem;
    color: var(--primary);
}
.affiliate__feature h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.affiliate__feature p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ========== FOOTER ========== */
.footer {
    position: relative;
    z-index: 10;
    padding: 60px 0 30px;
    background: var(--dark-100);
    border-top: 1px solid var(--border-light);
}
.footer__container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}
.footer__logo { height: 32px; margin-bottom: 16px; }
.footer__tagline { color: var(--muted); font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col h5 {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--white);
}
.footer__col a {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
    padding: 4px 0;
    transition: color 0.3s;
}
.footer__col a:hover { color: var(--primary); }
.footer__bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
    text-align: center;
}
.footer__bottom p { color: var(--muted); font-size: 0.78rem; line-height: 1.6; }
.footer__disclaimer { margin-top: 12px; }
.footer__disclaimer small { color: rgba(255,255,255,0.2); font-size: 0.7rem; }

/* ========== ANIMATIONS ========== */
[data-anim] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-anim="fade-right"] { transform: translateX(-30px); }
[data-anim="fade-left"]  { transform: translateX(30px); }
[data-anim].is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}
.features-grid [data-anim]:nth-child(2) { transition-delay: 0.1s; }
.features-grid [data-anim]:nth-child(3) { transition-delay: 0.2s; }
.features-grid [data-anim]:nth-child(4) { transition-delay: 0.3s; }

/* ========== RESPONSIVE ========== */
@media (min-width: 769px) {
    .hero__side-left, .hero__side-right { display: block; }
    .hero__product-wrap { width: 260px; }
}
@media (min-width: 1024px) {
    .hero__product-wrap { width: 280px; }
    .hero__pill--1 { right: -80%; }
    .hero__pill--2 { left: -80%; }
    .hero__pill--3 { right: -70%; }
}
@media (min-width: 1200px) {
    .hero__side-left { left: -340px; }
    .hero__side-right { right: -320px; }
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .vid-wrap { width: 390px; margin: 0 auto; }
    .experience-content { text-align: left; }
    .affiliate__features { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav__links, .nav__right { display: none; }
    .nav__hamburger { display: flex; }
    .hero__title { font-size: 2.6rem; }
    .hero__product-wrap { width: 180px; }
    .hero__pill { display: none; }
    .hero__side-left, .hero__side-right { display: none !important; }
    .features-grid { grid-template-columns: 1fr; }
    .quality-grid { grid-template-columns: 1fr; }
    .ingredients-grid { grid-template-columns: 1fr; }
    .ingredient-card--featured { flex-direction: column; text-align: center; }
    .affiliate__features { grid-template-columns: 1fr; }
    .affiliate { padding: 80px 0; }
    .section { padding: 80px 20px; }
    .footer__links { grid-template-columns: 1fr 1fr; }
    .hero__stats { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .hero__stat-sep { display: none; }
    .hero__cta { flex-direction: column; width: 100%; }
    .hero__cta .btn { width: 100%; }
    .vid-wrap { width: 300px; margin: 0 auto; }
    .vid-player { border-radius: 20px; }
    .vid-player__audio-btn span { display: none; }
    .vid-player__audio-btn { padding: 10px; border-radius: 50%; }
    .proof-bar__inner { gap: 16px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2.1rem; }
    .hero__product-wrap { width: 160px; }
    .footer__links { grid-template-columns: 1fr; }
    .vid-wrap { width: 100%; }
}
