/* ═══════════════════════════════════════════════════════
   ROOTS TONIC — WHOLESALE LANDING PAGE
   Design System: Dark Premium with Gold Accents
   ═══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    /* Brand Colors */
    --clr-gold: #C8A45C;
    --clr-gold-light: #E8D5A0;
    --clr-gold-dark: #9B7D3C;
    --clr-green: #2D5016;
    --clr-green-light: #4A7A2E;

    /* Neutrals */
    --clr-bg: #0A0A0A;
    --clr-bg-elevated: #141414;
    --clr-bg-card: #1A1A1A;
    --clr-bg-card-hover: #222222;
    --clr-border: rgba(200, 164, 92, 0.15);
    --clr-border-strong: rgba(200, 164, 92, 0.3);

    /* Text */
    --clr-text: #FFFFFF;
    --clr-text-muted: #A0A0A0;
    --clr-text-subtle: #6B6B6B;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --nav-height: 72px;

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 200ms;
    --duration-normal: 400ms;
    --duration-slow: 600ms;
}

/* ─── RESET ─── */
*, *::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(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ─── UTILITY ─── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

em {
    font-style: normal;
    color: var(--clr-gold);
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all var(--duration-normal) var(--ease-out);
    background: transparent;
}

.nav--solid {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--clr-border);
}

.nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    transition: color var(--duration-fast) ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-gold);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover {
    color: var(--clr-text);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--clr-gold);
    color: var(--clr-bg) !important;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all var(--duration-fast) ease;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--clr-gold-light);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

video.hero__bg-img {
    object-fit: contain;
    object-position: center;
    transform: scale(1.05); /* Slight scale to reduce letterboxing */
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, 
            rgba(10,10,10,0.3) 0%, 
            rgba(10,10,10,0.1) 30%, 
            rgba(10,10,10,0.15) 50%,
            rgba(10,10,10,0.6) 75%, 
            rgba(10,10,10,0.92) 100%
        ),
        linear-gradient(90deg,
            rgba(10,10,10,0.3) 0%,
            transparent 50%,
            rgba(10,10,10,0.3) 100%
        );
}

.hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: var(--space-md);
    gap: var(--space-lg);
}

/* ─── LEFT: Title & Branding ─── */
.hero__left {
    text-align: left;
    max-width: 520px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(200, 164, 92, 0.15);
    border: 1px solid rgba(200, 164, 92, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-md);
    animation: fadeInDown 0.8s var(--ease-out) 0.2s both;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 50%, var(--clr-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero__tagline {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: var(--clr-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero__sub {
    font-size: 0.95rem;
    color: var(--clr-gold-light);
    font-weight: 500;
    animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}

/* ─── RIGHT: Countdown & CTA ─── */
.hero__right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* ─── COUNTDOWN ─── */
.countdown {
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.countdown__label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
}

.countdown__blocks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown__block {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(200, 164, 92, 0.2);
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    min-width: 72px;
    backdrop-filter: blur(10px);
}

.countdown__number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    color: var(--clr-text);
}

.countdown__unit {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.countdown__sep {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-gold);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.countdown__date {
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* ─── HERO CTA ─── */
.hero__cta {
    animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

/* ─── SCROLL HINT ─── */
.hero__scroll-hint {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--clr-text-subtle);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeIn 1s var(--ease-out) 1.5s both;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--clr-gold) 0%, transparent 100%);
    animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
    color: var(--clr-bg);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 164, 92, 0.35);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--full {
    width: 100%;
}

.btn--glow {
    box-shadow: 0 0 20px rgba(200, 164, 92, 0.2);
}

.btn--glow:hover {
    box-shadow: 0 0 40px rgba(200, 164, 92, 0.4);
}

.btn__arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--duration-fast) ease;
}

.btn:hover .btn__arrow {
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl);
}

.section-header__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-gold);
    background: rgba(200, 164, 92, 0.1);
    border: 1px solid rgba(200, 164, 92, 0.2);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: var(--space-md);
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.section-header__desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   THE OPPORTUNITY
   ═══════════════════════════════════════════════════════ */
.opportunity-scroll-wrapper {
    position: relative;
    height: 250vh;
    background: var(--clr-bg);
}

.opportunity {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: var(--space-3xl) 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.opportunity__track {
    display: flex;
    gap: var(--space-lg);
    width: max-content;
    padding: 0 var(--space-md);
    will-change: transform;
}

.opportunity__card {
    width: 350px;
    flex-shrink: 0;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.opportunity__card--video {
    padding: 0;
    width: 450px;
    background: #050505;
    display: flex;
}

.opportunity__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.opportunity__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-dark));
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.opportunity__card:hover {
    border-color: var(--clr-border-strong);
    background: var(--clr-bg-card-hover);
    transform: translateY(-4px);
}

.opportunity__card:hover::before {
    opacity: 1;
}

.opportunity__card-icon {
    font-size: 2.2rem;
    margin-bottom: var(--space-md);
}

.opportunity__card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.opportunity__card-desc {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   PRODUCT SPOTLIGHT
   ═══════════════════════════════════════════════════════ */
.spotlight {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg-elevated);
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 164, 92, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.spotlight__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.spotlight__images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-md);
    align-items: end;
}

.spotlight__img-primary {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid var(--clr-border);
}

.spotlight__img-primary img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.spotlight__img-primary:hover img {
    transform: scale(1.05);
}

.spotlight__img-secondary {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid var(--clr-border);
    transform: translateY(-40px);
}

.spotlight__img-secondary img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    transition: transform var(--duration-slow) var(--ease-out);
}

.spotlight__img-secondary:hover img {
    transform: scale(1.05);
}

.spotlight__info {
    padding-left: var(--space-lg);
}

.spotlight__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.spotlight__desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.spotlight__badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: var(--space-lg);
}

.spotlight__badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.spotlight__badge-icon {
    color: var(--clr-green-light);
    font-weight: 700;
    font-size: 1rem;
}

.spotlight__ingredients {
    background: rgba(200, 164, 92, 0.06);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.spotlight__ingredients h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-xs);
}

.spotlight__ingredients p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   WHOLESALE PRICING
   ═══════════════════════════════════════════════════════ */
.pricing {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg);
}

.pricing__card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border-strong);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
}

.pricing__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-gold-dark), var(--clr-gold), var(--clr-gold-dark));
}

.pricing__card-header {
    text-align: center;
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    background: linear-gradient(180deg, rgba(200, 164, 92, 0.08) 0%, transparent 100%);
}

.pricing__card-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
    display: block;
}

.pricing__card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing__card-currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-gold);
}

.pricing__card-amount {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing__card-period {
    font-size: 1rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    margin-left: 4px;
}

.pricing__card-body {
    padding: var(--space-lg);
}

.pricing__breakdown {
    margin-bottom: var(--space-lg);
}

.pricing__breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

.pricing__breakdown-label {
    color: var(--clr-text-muted);
}

.pricing__breakdown-value {
    font-weight: 600;
    color: var(--clr-text);
}

.pricing__breakdown-row--highlight .pricing__breakdown-value {
    color: var(--clr-gold);
    font-size: 1.1rem;
}

.pricing__breakdown-row--profit {
    background: rgba(45, 80, 22, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.8rem;
    margin: 0.5rem -0.8rem;
    border-bottom: none;
}

.pricing__breakdown-row--profit .pricing__breakdown-label {
    color: var(--clr-green-light);
    font-weight: 600;
}

.pricing__breakdown-row--profit .pricing__breakdown-value {
    color: var(--clr-green-light);
    font-weight: 800;
    font-size: 1.15rem;
}

.pricing__breakdown-divider {
    height: 1px;
    background: var(--clr-border-strong);
    margin: var(--space-sm) 0;
}

/* Margin Visual */
.pricing__margin-visual {
    margin-bottom: var(--space-lg);
}

.pricing__margin-bar {
    height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.pricing__margin-fill {
    height: 100%;
    width: var(--margin-pct);
    background: linear-gradient(90deg, var(--clr-green), var(--clr-green-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-sm);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    min-width: 120px;
    animation: fillBar 1.5s var(--ease-out) both;
}

@keyframes fillBar {
    from { width: 0; }
}

.pricing__margin-note {
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    text-align: center;
}

/* Shipping */
.pricing__shipping {
    background: rgba(200, 164, 92, 0.06);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.pricing__shipping h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.pricing__shipping p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.pricing__card-footer {
    padding: 0 var(--space-lg) var(--space-lg);
}

/* ═══════════════════════════════════════════════════════
   WHY ROOTS TONIC
   ═══════════════════════════════════════════════════════ */
.why {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg-elevated);
}

.why__layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    align-items: center;
}

.why__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.why__desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.why__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--clr-border);
}

.why__stat {
    text-align: center;
}

.why__stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--clr-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.why__stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
}

.why__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid var(--clr-border);
}

.why__image video {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: #050505;
    transition: transform var(--duration-slow) var(--ease-out);
}

.why__image:hover video {
    transform: scale(1.05);
}

.why__image-badge {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.why__image-badge span {
    display: block;
    font-weight: 700;
    color: var(--clr-text);
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════
   WAITING LIST FORM
   ═══════════════════════════════════════════════════════ */
.waitlist {
    padding: var(--space-3xl) 0;
    background: var(--clr-bg);
    position: relative;
}

.waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}

.waitlist__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.waitlist__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.waitlist__desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.waitlist__perks {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.waitlist__perks li {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.waitlist__perk-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.waitlist__perks li strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.waitlist__perks li p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* Form */
.waitlist__form-wrapper {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-md));
}

.waitlist__form {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border-strong);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.waitlist__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-gold-dark), var(--clr-gold), var(--clr-gold-dark));
}

.waitlist__form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
}

.waitlist__form-sub {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--clr-text-muted);
    margin-bottom: var(--space-xs);
}

.form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--duration-fast) ease;
    outline: none;
}

.form-input::placeholder {
    color: var(--clr-text-subtle);
}

.form-input:focus {
    border-color: var(--clr-gold);
    background: rgba(200, 164, 92, 0.06);
    box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.1);
}

.waitlist__form-note {
    margin-top: var(--space-md);
    font-size: 0.78rem;
    color: var(--clr-text-subtle);
    text-align: center;
    line-height: 1.5;
}

/* Success State */
.waitlist__success {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border-strong);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.waitlist__success-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.waitlist__success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-gold);
    margin-bottom: var(--space-sm);
}

.waitlist__success p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    padding: var(--space-xl) 0 var(--space-lg);
    background: var(--clr-bg-elevated);
    border-top: 1px solid var(--clr-border);
}

.footer__layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer__logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--space-sm);
    display: block;
}

/* ─── Trademark Centrepiece Block ─── */
.footer__trademark-block {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--clr-border);
}

.footer__trademark-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.footer__bottle-hero {
    width: 180px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200, 164, 92, 0.3);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(200, 164, 92, 0.12);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

.footer__bottle-hero:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(200, 164, 92, 0.2);
}

.footer__trademark-text {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(200, 164, 92, 0.06);
    border: 1px solid rgba(200, 164, 92, 0.25);
    border-radius: var(--radius-md);
    padding: 0.8rem 1.5rem;
    max-width: 520px;
}

.footer__tm-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
    color: var(--clr-bg);
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50%;
}

.footer__trademark {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
    font-style: italic;
    text-align: left;
}

.footer__brand-desc {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.footer__contact h4,
.footer__links h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-md);
}

.footer__contact ul,
.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.footer__contact a {
    color: var(--clr-text-muted);
    transition: color var(--duration-fast) ease;
}

.footer__contact a:hover {
    color: var(--clr-gold);
}

.footer__contact-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    transition: color var(--duration-fast) ease;
}

.footer__links a:hover {
    color: var(--clr-gold);
}

.footer__bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--clr-border);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--clr-text-subtle);
}

/* ═══════════════════════════════════════════════════════
   STICKY CTA (Mobile)
   ═══════════════════════════════════════════════════════ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: var(--space-sm);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--clr-border);
    transform: translateY(100%);
    transition: transform var(--duration-normal) var(--ease-out);
    display: none;
}

.sticky-cta--visible {
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .opportunity-scroll-wrapper {
        height: auto;
    }

    .opportunity {
        position: relative;
        height: auto;
        padding: var(--space-2xl) 0;
    }

    .opportunity__track {
        flex-direction: column;
        width: 100%;
        transform: none !important;
        padding: 0 var(--space-md);
    }

    .opportunity__card {
        width: 100%;
        max-width: none;
    }

    .opportunity__card--video {
        height: 400px;
    }

    .spotlight__layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .spotlight__info {
        padding-left: 0;
    }

    .spotlight__images {
        max-width: 600px;
        margin: 0 auto;
    }

    .why__layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .why__image {
        order: -1;
        max-height: 400px;
    }

    .waitlist__layout {
        grid-template-columns: 1fr;
    }

    .waitlist__form-wrapper {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

    .nav__links {
        gap: var(--space-sm);
    }

    .nav__link:not(.nav__link--cta) {
        display: none;
    }

    .hero__content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 var(--space-md) var(--space-lg);
    }

    .hero__right {
        align-items: flex-start;
        text-align: left;
    }

    .hero__title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .countdown__block {
        min-width: 60px;
        padding: 0.6rem 0.8rem;
    }

    .countdown__number {
        font-size: 1.6rem;
    }

    .spotlight__images {
        grid-template-columns: 1fr 1fr;
    }

    .spotlight__img-primary img {
        height: 350px;
    }

    .spotlight__img-secondary {
        transform: translateY(0);
    }

    .spotlight__img-secondary img {
        height: 350px;
    }

    .spotlight__badges {
        grid-template-columns: 1fr;
    }

    .footer__layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .sticky-cta {
        display: block;
    }

    .pricing__card-amount {
        font-size: 3.5rem;
    }

    .why__stats {
        gap: var(--space-sm);
    }

    .why__stat-number {
        font-size: 1.8rem;
    }

    .why__image video {
        height: 350px;
    }

    .waitlist__form {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.2rem;
    }

    .countdown__blocks {
        gap: 0.3rem;
    }

    .countdown__block {
        min-width: 54px;
        padding: 0.5rem 0.6rem;
    }

    .countdown__number {
        font-size: 1.4rem;
    }

    .countdown__sep {
        font-size: 1.2rem;
    }

    .pricing__card-amount {
        font-size: 3rem;
    }

    .spotlight__images {
        grid-template-columns: 1fr;
    }

    .spotlight__img-primary img,
    .spotlight__img-secondary img {
        height: 300px;
    }

    .why__stats {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}

/* ─── PREFERS REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero__bg-img {
        animation: none;
        transform: scale(1);
    }
}
