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

/* =====================
   ACCESSIBILITY UTILITIES
   ===================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 12px 20px;
    background: #1a73e8;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.15s;
}
.skip-link:focus { top: 0; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1, h2 {
    font-family: 'Poppins', system-ui, sans-serif;
    letter-spacing: -0.5px;
}

html {
    overflow-x: hidden;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #ffffff;
    color: #222222;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

main {
    width: 100%;
}


.logo {
    width: auto;
    height: 70%;
    max-width: 90%;
    object-fit: contain;
    z-index: 20;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
    margin-top: -15px;
}

/* =====================
   SPLASH SCREEN
   ===================== */
#splash-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgb(15, 181, 253), rgb(116, 196, 251), rgb(165, 211, 249), rgb(205, 226, 247), rgb(242, 242, 244));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}


/* =====================
   HEADER BAR
   ===================== */
.header-bar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 940px;
    height: 44px;
    border-radius: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    padding: 0 24px;
    box-sizing: border-box;

    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid transparent;
    box-shadow: none;

    transition: background 0.35s ease,
                backdrop-filter 0.35s ease,
                -webkit-backdrop-filter 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.header-bar.scrolled {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-color: rgba(26, 115, 232, 0.18);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

.header-bar.scrolled .nav-links a {
    color: #1a73e8;
}
.header-bar.scrolled .nav-links a:hover {
    background: rgba(26, 115, 232, 0.08);
}
.header-bar.scrolled #auth-btn {
    color: #1a73e8;
}

.spacer { flex: 1; }

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.4px;
    padding: 7px 14px;
    border-radius: 8px;
    transition: background 0.2s;
}
.nav-links a:hover {
    background: rgba(255, 255, 255, 0.10);
}

/* <picture> wrappers must not affect grid/flex layout — img stays the box */
picture { display: contents; }

.shop-button {
    padding: 8px 16px;
    background: linear-gradient(160deg, #4f9cf9 0%, #1a73e8 50%, #1252c4 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(26, 115, 232, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    animation: btn-pulse 2.5s ease-in-out infinite;
    transition: transform 0.15s, box-shadow 0.3s;
}
.shop-button:hover {
    background: linear-gradient(160deg, #60a5fa 0%, #2563eb 50%, #1d4ed8 100%);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    animation-play-state: paused;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(26, 115, 232, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22); }
    50%       { box-shadow: 0 6px 28px rgba(37, 99, 235, 0.7), 0 0 50px rgba(96, 165, 250, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22); }
}

/* ── Gradient Button — animated shifting blue gradient ── */
@keyframes gradient-sweep {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-button {
    position: relative;
    color: #fff;
    text-decoration: none;
    box-shadow: none;
    background: linear-gradient(135deg, #0d47a1, #1565c0, #1a73e8, #3b82f6, #60a5fa, #3b82f6, #1a73e8, #1565c0, #0d47a1);
    background-size: 300% 100%;
    animation: gradient-sweep 3s ease infinite;
    transition: transform 0.15s, box-shadow 0.2s;
}

.gradient-button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(135deg, #60a5fa, #bae6fd, #93c5fd, #60a5fa);
    background-size: 300% 100%;
    animation: gradient-sweep 3s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 115, 232, 0.5);
}

.nav-logo {
    width: 130px;
    height: auto;
    max-height: 44px;
    object-fit: contain;
    cursor: pointer;
}

/* =====================
   HERO SECTION
   ===================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 120px 80px 200px;
    background: linear-gradient(rgb(10, 153, 236), rgb(111, 174, 239), rgb(162, 197, 241), rgb(204, 220, 243), rgb(244, 243, 245));
    box-sizing: border-box;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 28%;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
    pointer-events: none;
    z-index: 5;
}

.hero-content {
    flex: 1;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 6;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
}

.hero-blue {
    color: #ffffff;
    text-shadow: 0 4px 28px rgba(255, 255, 255, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
    display: inline-block;
}

.hero-gold {
    color: #1e40af;
    -webkit-text-fill-color: #1e40af;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin-bottom: 36px;
    text-align: center;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33%       { transform: translateY(-12px) rotate(0.8deg); }
    66%       { transform: translateY(-6px) rotate(-0.5deg); }
}

.hero-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    cursor: pointer;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.25));
    animation: hero-float 5s ease-in-out infinite;
}

.hero-image:hover {
    animation-play-state: paused;
    transform: scale(1.03);
}

/* =====================
   FLOATING POUCHES
   ===================== */
.pouch-scene {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.pouch-float {
    position: absolute;
    width: 70px;
    height: auto;
    pointer-events: auto;
    cursor: grab;
    will-change: transform;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.22));
    animation: pouchBob var(--bob-duration, 3s) ease-in-out infinite;
    animation-delay: var(--bob-delay, 0s);
    user-select: none;
    -webkit-user-drag: none;
    touch-action: none;
}

.pouch-float:active { cursor: grabbing; }

.pouch-float.is-dragging { animation-play-state: paused; }

/* Stop the orbit/bob animations while the hero is off-screen (saves CPU/battery) */
.pouch-scene.paused .ring-orbit,
.pouch-scene.paused .pouch-float { animation-play-state: paused; }

/* Orbit container — centered at can center (0×0 point), rotates whole ring */
.ring-orbit {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

@keyframes orbitCW  { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
@keyframes orbitCCW { from { transform: rotate(0deg);   } to { transform: rotate(-360deg); } }

@keyframes pouchBob {
    0%   { transform: rotate(var(--rotate, 0deg)) translateY(0px);    }
    50%  { transform: rotate(var(--rotate, 0deg)) translateY(-14px);  }
    100% { transform: rotate(var(--rotate, 0deg)) translateY(0px);    }
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(160deg, #4f9cf9 0%, #1a73e8 50%, #1252c4 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 18px rgba(26, 115, 232, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    animation: btn-pulse 2.5s ease-in-out infinite;
    transition: transform 0.15s, box-shadow 0.3s;
}
.btn-primary:hover {
    background: linear-gradient(160deg, #60a5fa 0%, #2563eb 50%, #1d4ed8 100%);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.7), 0 0 60px rgba(96, 165, 250, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    animation-play-state: paused;
}

.btn-outline {
    display: inline-block;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.28); }

.btn-white {
    display: inline-block;
    padding: 16px 36px;
    background: #fff;
    color: #1a73e8;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26, 115, 232, 0.3), 0 0 40px rgba(96, 165, 250, 0.15); }

.btn-large { padding: 18px 44px; font-size: 1.15rem; }

/* =====================
   SECTION COMMONS
   ===================== */
.section-what,
.section-how,
.section-compare,
.section-benefits,
.section-flavors,
.section-science,
.section-reviews,
.section-faq {
    width: 100%;
    padding: 100px 40px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #1a73e8;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-inner h2 {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1565c0 0%, #1e90ff 40%, #5ab4ff 72%, #1e90ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1.05rem;
    color: #555;
    max-width: 620px;
    line-height: 1.75;
    margin-bottom: 52px;
}

/* =====================
   WHAT IS ZELYTE
   ===================== */
.section-what {
    background: linear-gradient(135deg, #060f2a 0%, #0d2357 45%, #0e2f6e 100%);
    margin-top: 24px; margin-bottom: 48px; border-radius: 32px; overflow: hidden;
    margin-left: 24px; margin-right: 24px; width: calc(100% - 48px);
    position: relative;
}
.section-what::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,144,255,0.16) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}
.section-what .section-inner { position: relative; z-index: 1; }

.section-what .section-label { color: rgba(255, 255, 255, 0.65); letter-spacing: 3px; }
.section-what .section-inner h2 {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #ffffff 0%, #7dd3fc 50%, #38bdf8 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-what .section-sub { color: rgba(255, 255, 255, 0.78); max-width: 520px; }

/* Two-column header: text left, images right */
.what-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 64px;
}
.what-text-col {
    flex: 1;
    min-width: 0;
}
.what-text-col .section-sub { margin-bottom: 0; }
.what-images-col {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Tins image — screen blend removes black bg, keeps bright tins */
.what-tins-img {
    width: 240px;
    height: auto;
    mix-blend-mode: screen;
    filter: drop-shadow(0 8px 28px rgba(30,144,255,0.4));
}

/* Pouch image — slanted, glow traces the transparent pouch shape */
.what-pouch-img {
    width: 180px;
    height: auto;
    display: block;
    transform: rotate(-15deg) translateY(-20px);
    filter: drop-shadow(0 16px 48px rgba(100, 200, 255, 0.6));
}

.section-what .what-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(100, 180, 255, 0.22);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
}
.section-what .what-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 180, 255, 0.5);
    box-shadow: 0 12px 40px rgba(30, 144, 255, 0.22);
}
.section-what .what-card strong { color: #7dd3fc; }
.section-what .what-card p { color: rgba(255, 255, 255, 0.88); }

.what-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.what-card {
    background: #f6f9ff;
    border: 1px solid #e0eaff;
    border-radius: 16px;
    padding: 32px 28px;
}

.what-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.what-card strong {
    display: block;
    font-size: 1.1rem;
    color: #1e90ff;
    margin-bottom: 10px;
}

.what-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* =====================
   HOW IT WORKS
   ===================== */
.section-how {
    background-color: #001e4a;
    background-image: linear-gradient(rgba(0, 25, 60, 0.48), rgba(0, 25, 60, 0.48)), url('Ocean.jpg');
    background-image: linear-gradient(rgba(0, 25, 60, 0.48), rgba(0, 25, 60, 0.48)), -webkit-image-set(url('Ocean.webp') type('image/webp'), url('Ocean.jpg') type('image/jpeg'));
    background-image: linear-gradient(rgba(0, 25, 60, 0.48), rgba(0, 25, 60, 0.48)), image-set(url('Ocean.webp') type('image/webp'), url('Ocean.jpg') type('image/jpeg'));
    background-size: auto, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    margin: 0 24px 48px;
    width: calc(100% - 48px);
}


.glass-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 100px;
    padding: 10px 28px;
    margin-bottom: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.how-label-pill {
    display: block;
    text-align: center;
    width: fit-content;
    margin: 0 auto 14px;
}

.how-label-pill .section-label {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
    letter-spacing: 4px;
}

.steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 52px;
}

.step {
    flex: 1;
    padding: 40px 36px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.08);
}

.step-divider {
    width: 40px;
    height: 2px;
    background: #1a73e8;
    opacity: 0.25;
    align-self: center;
    flex-shrink: 0;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a73e8;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 12px;
}

.step p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* =====================
   HOW ZELYTE COMPARES
   ===================== */
.section-compare {
    background: #1a3a6e;
    border-radius: 32px;
    margin: 0 24px 48px;
    width: calc(100% - 48px);
    overflow: hidden;
}

.compare-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.compare-content-zone {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.section-compare .section-label {
    font-size: 1rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.7);
}

.section-compare .section-sub {
    color: rgba(255,255,255,0.75);
}

.compare-heading {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 10px 0 0;
    background: linear-gradient(135deg, #ffffff 0%, #c7f0ff 50%, #7dd3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cmatrix-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cmatrix {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
}

.cmat-attr-head { width: 35%; }

.cmat-col-head {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    text-align: center;
    padding: 0 16px 28px;
    line-height: 1.4;
    border-bottom: 2px solid #e8eef8;
}

.zcol-head {
    color: #1a73e8;
    font-size: 0.9rem;
}

.cmat-attr {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0d2357;
    padding: 24px 20px 24px 0;
    border-bottom: 1px solid #edf2fb;
    line-height: 1.4;
    text-align: left;
}

.cmatrix tbody td {
    text-align: center;
    padding: 20px 16px;
    border-bottom: 1px solid #edf2fb;
    vertical-align: middle;
}

.cmatrix tbody tr:last-child .cmat-attr,
.cmatrix tbody tr:last-child td { border-bottom: none; }

.zcol { background: #edf4ff; }

.cmatrix tbody tr:first-child .zcol { border-radius: 10px 10px 0 0; }
.cmatrix tbody tr:last-child .zcol { border-radius: 0 0 10px 10px; }

.cmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f59e0b;
    flex-shrink: 0;
}

.cmark::after {
    content: '✓';
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.cempty {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #dde4f0;
    flex-shrink: 0;
}

.cpartial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #dde4f0;
    flex-shrink: 0;
}

.cpartial::after {
    content: '';
    display: block;
    width: 11px;
    height: 1.5px;
    background: #bbc5d8;
    border-radius: 2px;
}

.section-compare .cmat-col-head {
    color: rgba(255,255,255,0.6);
    border-bottom-color: rgba(255,255,255,0.15);
}

.section-compare .cmat-attr {
    color: rgba(255,255,255,0.90);
    border-bottom-color: rgba(255,255,255,0.12);
}

.section-compare .cmatrix tbody td {
    border-bottom-color: rgba(255,255,255,0.10);
}

.section-compare .zcol {
    background: rgba(255,255,255,0.08);
}

.section-compare .zcol-head {
    color: #7dd3fc;
}

.section-compare .cempty,
.section-compare .cpartial {
    border-color: rgba(255,255,255,0.25);
}

.section-compare .cpartial::after {
    background: rgba(255,255,255,0.35);
}

@media (max-width: 900px) {
    .compare-heading { font-size: 2.6rem; }
}

/* =====================
   BENEFITS
   ===================== */
.section-benefits {
    background: #1a3a6e;
    border-radius: 32px;
    margin: 0 24px 48px;
    width: calc(100% - 48px);
    overflow: hidden;
    position: relative;
}

.section-benefits .section-label {
    color: #f59e0b;
}

.benefits-headline {
    background: linear-gradient(90deg, #ffffff, #c7f0ff, #5cc8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-benefits .section-sub {
    color: rgba(255,255,255,0.75);
}

.section-benefits .section-inner > h2 {
    color: unset;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, #c7f0ff 50%, #7dd3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-benefits .benefit-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-top: 3px solid #7dd3fc;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-benefits .benefit-card:hover {
    background: rgba(255,255,255,0.12);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    transform: translateY(-4px);
}

.section-benefits .benefit-card h3 { color: #ffffff; font-size: 1.2rem; }
.section-benefits .benefit-card p  { color: rgba(255,255,255,0.82); font-size: 1rem; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 52px;
}

.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid #e0eaff;
    border-top: 3px solid #1a73e8;
    transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #3a3a3a;
    font-size: 1rem;
    line-height: 1.65;
}

/* =====================
   FLAVORS
   ===================== */
.section-flavors {
    background: #ffffff;
    border-radius: 32px;
    margin: 0 24px 48px;
    width: calc(100% - 48px);
    overflow: hidden;
    position: relative;
    border: 1px solid #edf2fb;
    box-shadow: 0 2px 40px rgba(26, 115, 232, 0.07);
}
.section-flavors .section-inner { position: relative; z-index: 2; }

@keyframes fly-ltr {
    from { transform: translateX(-120px) rotate(0deg); }
    to   { transform: translateX(calc(100vw + 120px)) rotate(720deg); }
}
@keyframes fly-rtl {
    from { transform: translateX(calc(100vw + 120px)) rotate(0deg); }
    to   { transform: translateX(-120px) rotate(-720deg); }
}
.chatgpt-flyer {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.55;
    will-change: transform;
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 52px;
}

.flavors-grid--single {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}


.flavor-card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.flavor-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a73e8;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 20px;
    padding: 4px 12px;
    width: fit-content;
}

.flavor-sub {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #64748b;
    text-transform: uppercase;
    margin: -6px 0 0;
}

.flavor-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    max-width: 480px;
}

.flavor-details {
    list-style: none;
    padding: 0;
    margin: 4px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.flavor-details li {
    font-size: 0.88rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
}

.flavor-details li::before {
    content: '—';
    color: #1a73e8;
    font-weight: 700;
}

.flavor-card {
    border-radius: 20px;
    border: 2px solid #e8edf5;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #fff;
}
.flavor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 115, 232, 0.12);
    border-color: #1a73e8;
}

.flavor-card--rect {
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding: 40px 44px;
    border-radius: 16px;
    gap: 40px;
}

.flavor-card--rect .flavor-img-wrap {
    width: 260px;
    height: 260px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #f4f7fb;
}

.flavor-card--rect .flavor-img {
    object-fit: cover;
    border-radius: 16px;
}

.flavor-upcoming {
    opacity: 0.55;
    pointer-events: none;
}

.flavor-img-wrap {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flavor-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}
.flavor-card:hover .flavor-img { transform: scale(1.05); }

.flavor-img-placeholder {
    font-size: 5rem;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f7fb;
    border-radius: 50%;
}

.flavor-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e90ff;
}

.flavor-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}

.flavor-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    background: #eef4fd;
    color: #1a73e8;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}
.flavor-badge.available {
    background: #1a73e8;
    color: #fff;
}

/* =====================
   SCIENCE / INGREDIENTS
   ===================== */
.section-science {
    background: #1a4ab5;
    position: relative;
}

.section-science .section-label { color: rgba(255, 255, 255, 0.7); }
.section-science .section-inner > h2 { color: #fff; -webkit-text-fill-color: #fff; background: none; }
.section-science .section-sub { color: rgba(255, 255, 255, 0.7); }

.section-science .ingredient-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.section-science .ingredient-card strong { color: #7eb3ff; }
.section-science .ingredient-card p { color: rgba(255, 255, 255, 0.7); }

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.ingredient-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid #dce8fb;
}

.ingredient-card strong {
    display: block;
    font-size: 1rem;
    color: #1a73e8;
    margin-bottom: 8px;
    font-weight: 700;
}

.ingredient-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =====================
   REVIEWS
   ===================== */
.section-reviews { background: #fff; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.review-card {
    background: #f6f9ff;
    border: 1px solid #dce8fb;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.review-card strong {
    color: #1a73e8;
    font-size: 0.85rem;
    font-weight: 700;
}

/* =====================
   FAQ
   ===================== */
.section-faq { background: linear-gradient(135deg, #1252c4 0%, #1e90ff 100%); }
.section-faq .section-label { color: rgba(255, 255, 255, 0.7); }
.section-faq .section-inner > h2 { color: #fff; -webkit-text-fill-color: #fff; background: none; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 52px;
    max-width: 760px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    padding: 24px 28px;
}

.faq-item strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.65;
}

.faq-more-btn {
    margin-top: 40px;
    background: #fff;
    color: #1252c4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.faq-more-btn:hover {
    background: #f0f5ff;
    color: #1252c4;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* =====================
   BUNDLE PACKS
   ===================== */
.section-bundles {
    background: #0d2357;
    width: calc(100% - 48px);
    padding: 100px 40px;
    border-radius: 32px;
    overflow: hidden;
    margin: 0 24px 48px;
    position: relative;
}

.section-bundles .section-inner,
.section-story .story-inner {
    position: relative;
    z-index: 1;
}

.section-bundles .section-label { color: rgba(255, 255, 255, 0.7); }
.section-bundles .section-inner > h2 { background: linear-gradient(135deg, #ffffff 0%, #c7f0ff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-bundles .section-sub { color: rgba(255, 255, 255, 0.72); }

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 52px;
    align-items: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.bundle-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 44px 32px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.bundle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(26, 115, 232, 0.12);
}

.bundle-card:not(.bundle-featured) {
    margin-top: 24px;
    margin-bottom: 24px;
}

@keyframes bundle-glow {
    0%, 100% { box-shadow: 0 20px 52px rgba(26, 115, 232, 0.38); }
    50%       { box-shadow: 0 24px 72px rgba(26, 115, 232, 0.6), 0 0 60px rgba(96, 165, 250, 0.22); }
}

.bundle-featured {
    background: linear-gradient(160deg, #0d47a1, #1565c0, #1a73e8, #3b82f6, #1a73e8, #1565c0, #0d47a1);
    background-size: 300% 100%;
    border-color: transparent;
    padding: 72px 36px 56px;
    animation: gradient-sweep 5s ease infinite, bundle-glow 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.bundle-featured:hover {
    transform: translateY(-10px);
}

@keyframes badge-shimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.bundle-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ffa500, #ffdd57, #ffc200, #ffdd57, #ffa500);
    background-size: 200% 100%;
    animation: badge-shimmer 2.5s linear infinite;
    color: #111;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 3px 14px rgba(255, 194, 0, 0.5);
}

.bundle-qty {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}
.bundle-featured .bundle-qty { color: rgba(255, 255, 255, 0.72); }

.bundle-name {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.bundle-featured .bundle-name { color: #fff; }

.bundle-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px;
}

.bundle-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.bundle-featured .bundle-price { color: #fff; }

.bundle-per {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}
.bundle-featured .bundle-per { color: rgba(255, 255, 255, 0.65); }

.bundle-savings {
    background: #dcfce7;
    color: #166534;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}
.bundle-savings-best {
    background: #bbf7d0;
    color: #14532d;
}
.bundle-featured .bundle-savings {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.bundle-pouches {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}
.bundle-featured .bundle-pouches { color: rgba(255, 255, 255, 0.6); }

.bundle-features {
    list-style: none;
    padding: 16px 0 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.bundle-features li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.90);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.bundle-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    color: #60a5fa;
}
.bundle-featured .bundle-features { border-top-color: rgba(255, 255, 255, 0.22); }
.bundle-featured .bundle-features li { color: rgba(255, 255, 255, 0.88); }
.bundle-featured .bundle-features li svg { color: #fff; }

.bundle-cta {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.bundle-cta-white {
    background: #fff;
    color: #1a73e8;
    transition: transform 0.15s, box-shadow 0.2s, color 0.15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.bundle-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    color: #0d5bb8;
    background: #f0f4ff;
}

.bundle-cta-gradient {
    background: linear-gradient(135deg, #0d47a1, #1565c0, #1a73e8, #3b82f6, #60a5fa, #3b82f6, #1a73e8, #1565c0, #0d47a1);
    background-size: 300% 100%;
    animation: gradient-sweep 3s ease infinite;
    color: #fff;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(26, 115, 232, 0.45);
}
.bundle-cta-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26, 115, 232, 0.6);
    background: linear-gradient(135deg, #0d47a1, #1565c0, #1a73e8, #3b82f6, #60a5fa, #3b82f6, #1a73e8, #c97e0a);
    background-size: 300% 100%;
}

.bundles-grid .reveal-left.in-view  { transition-delay: 0s; }
.bundles-grid .reveal-up.in-view    { transition-delay: 0.14s; }
.bundles-grid .reveal-right.in-view { transition-delay: 0.28s; }

/* =====================
   FINAL CTA
   ===================== */
.section-cta {
    width: 100%;
    padding: 120px 40px;
    background: linear-gradient(135deg, #1a73e8, #0d5bb8);
    text-align: center;
}

.section-cta .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-label { color: rgba(255, 255, 255, 0.65); }

.section-cta h2 {
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.85) !important;
    text-align: center;
}

/* =====================
   EMAIL SIGNUP
   ===================== */
.section-email-signup {
    background: #ffffff;
    width: calc(100% - 48px);
    padding: 100px 40px;
    text-align: center;
    border-radius: 32px;
    margin: 0 24px 48px;
    overflow: hidden;
    border: 1px solid #edf2fb;
    box-shadow: 0 2px 40px rgba(26, 115, 232, 0.07);
}

.section-email-signup .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.email-signup-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.email-signup-input {
    padding: 16px 24px;
    font-size: 1.05rem;
    font-family: inherit;
    color: #1a73e8;
    font-weight: 600;
    background: #fff;
    border: 3px solid #1a73e8;
    border-radius: 10px;
    outline: 2px solid transparent;
    width: 340px;
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.35), inset 0 1px 3px rgba(26, 115, 232, 0.08);
    transition: border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
}

.email-signup-input::placeholder {
    color: #1a73e8;
    opacity: 0.75;
    font-weight: 500;
}

.email-signup-input:focus {
    border-color: #0d5bb8;
    box-shadow: 0 0 0 5px rgba(26, 115, 232, 0.25), 0 4px 20px rgba(26, 115, 232, 0.3);
    outline: 3px solid #0d5bb8;
    outline-offset: 2px;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: #111;
    padding: 60px 40px 40px;
    width: 100%;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-legal {
    color: #555;
    font-size: 0.78rem;
    max-width: 600px;
    line-height: 1.6;
}

/* =====================
   PRODUCT IMAGE (crispy-mint page)
   ===================== */
.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
#product-link:hover .product-image { transform: scale(1.05); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
    .hero-section {
        flex-direction: column;
        padding: 120px 32px 60px;
        text-align: center;
        gap: 40px;
    }
    .hero-ctas { justify-content: center; }
    .hero-content { max-width: 100%; }
    .hero-content h1 { font-size: 2.4rem; }

    .what-cards,
    .benefits-grid,
    .flavors-grid,
    .ingredients-grid,
    .reviews-grid,
    .bundles-grid { grid-template-columns: 1fr; }

    .bundle-featured { padding: 44px 32px 36px; }

    .steps { flex-direction: column; }
    .step-divider { width: 2px; height: 32px; align-self: center; }


    .section-inner h2 { font-size: 1.9rem; }
    .section-cta h2 { font-size: 2rem; }
    .nav-links { display: none; }

    /* Navbar: wider and taller so logo + shop button have room */
    .header-bar {
        width: 92%;
        max-width: none;
        padding: 0 18px;
        height: 44px;
    }

    /* Show pouch animation on mobile — overflow:hidden on hero clips it naturally */
    .pouch-scene { display: block; }

    .section-what { margin-top: 16px; }
    .what-header { flex-direction: column; gap: 32px; margin-bottom: 40px; }
    .what-images-col { justify-content: center; }
    .what-tins-img { width: 150px; }
    .what-pouch-img { width: 130px; transform: rotate(-12deg) translateY(-10px); }
    .section-what .section-inner h2 { font-size: 2.2rem; }
}

@media (max-width: 600px) {
    .shop-button { font-size: 0; padding: 8px 12px; }
    .shop-button::after { content: "Shop"; font-size: 0.88rem; font-weight: 600; }

    .section-what,
    .section-how,
    .section-compare,
    .section-benefits,
    .section-flavors,
    .section-science,
    .section-reviews,
    .section-faq,
    .section-bundles,
    .section-email-signup { padding: 72px 20px; }

    .hero-section {
        padding: 100px 20px 48px;
        min-height: auto;
    }
    .section-cta { padding: 80px 20px; }

    /* Hero: ensure product image is visible and properly sized */
    .hero-image-wrap {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-image { max-width: 100%; }

    /* Slightly smaller heading and badge on small phones */
    .hero-content h1 { font-size: 2rem; }
    .hero-badge { font-size: 0.65rem; letter-spacing: 0.6px; }

    /* Hero CTA buttons: stack on very narrow screens */
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Section headings */
    .section-inner h2 { font-size: 1.55rem; }
    .section-cta h2 { font-size: 1.6rem; }

    /* Card padding tightening */
    .step { padding: 28px 20px; }
    .faq-item { padding: 18px 20px; }
    .benefit-card { padding: 24px 20px; }
    .what-card { padding: 24px 20px; }
    .ingredient-card { padding: 20px; }
    .review-card { padding: 24px 20px; }

    /* Flavor card: switch to column on narrow screens */
    .flavor-card--rect {
        flex-direction: column;
        padding: 28px 20px;
        text-align: center;
        align-items: center;
        gap: 20px;
    }
    .flavor-card--rect .flavor-img-wrap {
        width: 200px;
        height: 200px;
        flex-shrink: 1;
    }
    .flavor-badge { align-self: center; }
}

/* =====================
   SCROLL ANIMATIONS
   ===================== */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    will-change: opacity, transform;
}
.reveal-up    { transform: translateY(50px);  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal-left  { transform: translateX(-80px); transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1); }
.reveal-right { transform: translateX(80px);  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1); }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* stagger on entry only — exit is always instant (delay: 0s default) */
.what-cards .reveal-left.in-view  { transition-delay: 0s; }
.what-cards .reveal-up.in-view    { transition-delay: 0.12s; }
.what-cards .reveal-right.in-view { transition-delay: 0.24s; }

.benefits-grid .reveal-left.in-view:nth-child(1)  { transition-delay: 0s; }
.benefits-grid .reveal-up.in-view:nth-child(2)    { transition-delay: 0.1s; }
.benefits-grid .reveal-right.in-view:nth-child(3) { transition-delay: 0.2s; }
.benefits-grid .reveal-left.in-view:nth-child(4)  { transition-delay: 0.1s; }
.benefits-grid .reveal-up.in-view:nth-child(5)    { transition-delay: 0.2s; }
.benefits-grid .reveal-right.in-view:nth-child(6) { transition-delay: 0.3s; }

.ingredients-grid .reveal-left.in-view:nth-child(1)  { transition-delay: 0s; }
.ingredients-grid .reveal-up.in-view:nth-child(2)    { transition-delay: 0.1s; }
.ingredients-grid .reveal-right.in-view:nth-child(3) { transition-delay: 0.2s; }
.ingredients-grid .reveal-left.in-view:nth-child(4)  { transition-delay: 0.1s; }
.ingredients-grid .reveal-up.in-view:nth-child(5)    { transition-delay: 0.2s; }
.ingredients-grid .reveal-right.in-view:nth-child(6) { transition-delay: 0.3s; }

.flavors-grid .reveal-left.in-view  { transition-delay: 0s; }
.flavors-grid .reveal-up.in-view    { transition-delay: 0.12s; }
.flavors-grid .reveal-right.in-view { transition-delay: 0.24s; }

.reviews-grid .reveal-left.in-view  { transition-delay: 0s; }
.reviews-grid .reveal-up.in-view    { transition-delay: 0.14s; }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-ticker {
    background: #1a73e8;
    height: 56px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-inner {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 28s linear infinite;
    cursor: default;
    user-select: none;
}

.marquee-inner:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Poppins', system-ui, sans-serif;
    padding: 0 8px;
}

.marquee-dot {
    color: #1a73e8;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: 700;
}

/* ── Our Story ── */
.section-story {
    padding: 120px 60px;
    background: #ffffff;
    overflow: hidden;
    border-radius: 32px;
    margin: 0 24px 48px;
    width: calc(100% - 48px);
    position: relative;
    border: 1px solid #edf2fb;
    box-shadow: 0 2px 40px rgba(26, 115, 232, 0.07);
}

.story-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-inner::before {
    content: '\201C';
    position: absolute;
    top: -60px;
    left: -10px;
    font-size: 22rem;
    font-family: 'Poppins', sans-serif;
    color: #0d2357;
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.story-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 20px;
}

.section-story h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(135deg, #1565c0 0%, #1e90ff 40%, #5ab4ff 72%, #1e90ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.story-sub {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a73e8;
    font-style: italic;
    line-height: 1.45;
    margin-bottom: 32px;
}

.story-body p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 18px;
}

.story-closing {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0d2357;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(26, 115, 232, 0.15);
    letter-spacing: -0.2px;
}

.story-founder {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(26, 115, 232, 0.15);
}

.founder-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d2357;
    margin: 0;
}

.founder-title {
    font-size: 0.95rem;
    color: #666;
    margin: 4px 0 0;
}

.story-visual {
    width: 440px;
    flex-shrink: 0;
}

.story-img-wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #eef4ff, #dde9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 5;
}

.story-img-wrap img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.story-text.reveal-left.in-view    { transition-delay: 0s; }
.story-visual.reveal-right.in-view { transition-delay: 0.15s; }

@media (max-width: 960px) {
    .story-inner {
        flex-direction: column;
        gap: 48px;
    }
    .story-visual {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .section-story {
        padding: 72px 20px;
    }
    .story-sub {
        font-size: 1rem;
    }
    .story-body p {
        font-size: 0.97rem;
    }
}

/* ============================================================
   INGREDIENTS SECTION
   ============================================================ */
.section-ingredients {
    background: #0d2357;
    padding: 100px 24px;
    color: #fff;
    text-align: center;
}

.section-ingredients h2 {
    color: #fff;
    margin-bottom: 8px;
}

.section-ingredients .section-sub {
    color: rgba(255,255,255,0.7);
    margin-bottom: 60px;
}

.gold-text {
    background: linear-gradient(135deg, #ffe066, #ffc200, #ffdd57, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ingredients-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.ingredients-labels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    max-width: 260px;
}

.ingredients-labels--left .ing-callout {
    border-right: 2px dashed #1a73e8;
    border-left: none;
    text-align: right;
    border-radius: 12px 0 0 12px;
}

.ingredients-labels--right .ing-callout {
    border-left: 2px dashed #1a73e8;
    border-right: none;
    border-radius: 0 12px 12px 0;
}

.ing-callout {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    border-radius: 12px;
    line-height: 1.3;
}

.ingredients-img-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredients-img-wrap img {
    max-width: 220px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(26,115,232,0.3));
}

.ingredients-list-mobile {
    display: none;
    list-style: none;
    padding: 0;
    margin: 32px auto 0;
    max-width: 480px;
    flex-direction: column;
    gap: 12px;
}

.ingredients-list-mobile .ing-callout {
    border-radius: 12px;
    border-left: 2px dashed #1a73e8;
    border-right: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ============================================================
   UGC VIDEO WALL
   ============================================================ */
.section-ugc {
    background: #f6f9ff;
    padding: 100px 24px;
}

.section-ugc h2 {
    color: #222222;
    margin-bottom: 0;
}

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.ugc-card {
    background: linear-gradient(160deg, #0d47a1, #1a73e8 50%, #3b82f6);
    border-radius: 16px;
    aspect-ratio: 9 / 16;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ugc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
    border-radius: inherit;
}

.ugc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26,115,232,0.35);
}

.ugc-play {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s, transform 0.2s;
}

.ugc-card:hover .ugc-play {
    background: rgba(255,255,255,0.28);
    transform: scale(1.08);
}

.ugc-play svg {
    fill: #fff;
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.ugc-username {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    z-index: 1;
    font-family: 'Poppins', system-ui, sans-serif;
}

/* ============================================================
   SUBSCRIBE & SAVE
   ============================================================ */
.section-subscribe {
    background: #0d2357;
    padding: 100px 24px;
}

.subscribe-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 52px 48px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    text-align: center;
}

.subscribe-card h2 {
    color: #fff;
    margin-bottom: 12px;
}

.subscribe-card > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.subscribe-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 36px 0;
}

.subscribe-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Poppins', system-ui, sans-serif;
}

.pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    flex-shrink: 0;
}

.pill-icon svg {
    width: 16px;
    height: 16px;
}

/* ============================================================
   BESTSELLERS GRID
   ============================================================ */
.section-bestsellers {
    background: #ffffff;
    padding: 100px 24px;
}

.section-bestsellers h2 {
    color: #222222;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.bestsellers-grid .flavor-card--coming-soon {
    opacity: 0.5;
    pointer-events: auto;
}

.flavor-img-placeholder-bs {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,115,232,0.08);
    border-radius: 50%;
}

/* ============================================================
   MOBILE RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 768px) {
    /* Ingredients */
    .ingredients-diagram {
        display: none;
    }
    .ingredients-list-mobile {
        display: flex;
    }

    /* UGC grid → horizontal scroll */
    .ugc-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        margin-top: 36px;
        scrollbar-width: none;
    }
    .ugc-grid::-webkit-scrollbar { display: none; }
    .ugc-card {
        flex: 0 0 80vw;
        scroll-snap-align: start;
    }

    /* Subscribe */
    .subscribe-card {
        padding: 36px 24px;
    }
    .subscribe-pills {
        gap: 10px;
    }

    /* Bestsellers → horizontal scroll */
    .bestsellers-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        scrollbar-width: none;
    }
    .bestsellers-grid::-webkit-scrollbar { display: none; }
    .bestsellers-grid .flavor-card {
        flex: 0 0 80vw;
        scroll-snap-align: start;
    }
}
.reviews-grid .reveal-right.in-view { transition-delay: 0.28s; }

