@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Montserrat:wght@700;900&family=Poppins:wght@300&display=swap');

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #19e2cf;
    --accent-glow: rgba(25, 226, 207, 0.4);
    --secondary-bg: #090909;
    --card-bg: #050505;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    -webkit-text-size-adjust: 100%;
}

main {
    width: 100%;
    overflow-x: hidden;
}

header {
    padding: 2rem;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.site-header .main-logo-full {
    height: clamp(46px, 6vw, 74px);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.site-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav a:hover {
    color: var(--accent-color);
}

.site-nav .nav-account {
    border: 1px solid rgba(255,255,255,0.36);
    border-radius: 999px;
    padding: 0.65rem 1rem;
}

.coaching-invite {
    min-height: 78vh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: stretch;
    background: #f3efe8;
    color: #111;
}

.coaching-invite-image {
    min-height: 620px;
    overflow: hidden;
}

.coaching-invite-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.coaching-invite-copy {
    align-self: center;
    max-width: 620px;
    padding: clamp(3rem, 8vw, 8rem);
}

.coaching-invite .eyebrow {
    color: #b84232;
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    margin-bottom: 1.25rem;
}

.coaching-invite h2 {
    color: #111;
    font-size: clamp(2.35rem, 4.5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-align: left;
    margin-bottom: 1.5rem;
}

.coaching-invite p {
    color: #46413c;
    max-width: 500px;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.primary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 1rem 1.35rem;
    font-weight: 900;
}

.primary-link:hover i {
    transform: translateX(4px);
}

.primary-link i {
    transition: transform 180ms ease;
}

.logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.main-logo-full {
    height: clamp(60px, 8vw, 100px);
    width: auto;
    object-fit: contain;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 6rem 1.5rem 2rem 1.5rem;
    background-color: var(--bg-color);
    overflow: visible;
}

@media (min-width: 769px) {
    .hero {
        justify-content: flex-start;
        padding-top: 16rem; /* Prevent overlap with the absolute header on desktop */
    }
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    container-type: size;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 60%),
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.85)), 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><rect width="40" height="40" fill="none" class="grid"/><path d="M0 40 L40 40 L40 0" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    background-size: cover, cover, auto;
    pointer-events: none;
    z-index: 2;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100cqw, 177.77cqh);
    height: max(56.25cqw, 100cqh);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #000000, transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    z-index: 2;
    position: relative;
    overflow: visible;
}

.share-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 999;
    border-radius: 999px;
    box-shadow: 0 0 16px var(--accent-glow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: unset;
    opacity: 1;
    pointer-events: auto;
}

.share-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 22px var(--accent-glow);
}

.share-fab.copied {
    color: #00ff99;
    border-color: #00ff99;
    box-shadow: 0 0 18px rgba(0, 255, 153, 0.5);
}

.instacart-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    z-index: 1200;
}

.instacart-modal.show {
    display: flex;
}

.instacart-modal-card {
    width: min(100%, 460px);
    max-height: min(760px, calc(100svh - 2.5rem));
    overflow: auto;
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid rgba(0, 255, 255, 0.22);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 28px rgba(0, 255, 255, 0.12);
    padding: 1.4rem;
    position: relative;
}

.instacart-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 255, 0.22);
    background: transparent;
    color: var(--accent-color);
    cursor: pointer;
}

.instacart-modal-kicker {
    color: var(--accent-color);
    font-size: 0.72rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.instacart-modal h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    margin-bottom: 0.7rem;
}

.instacart-modal-copy {
    color: #b2c0c0;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.instacart-modal-section-label {
    color: var(--accent-color);
    font-size: 0.72rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.instacart-modal-query {
    border: 1px solid rgba(0, 255, 255, 0.18);
    background: rgba(0, 255, 255, 0.05);
    color: #fff;
    border-radius: 12px;
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.instacart-modal-list {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 1rem;
}

.instacart-ingredient {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #f5f8f8;
    text-decoration: none;
    font-size: 0.9rem;
}

.instacart-ingredient::before {
    content: '';
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border: 1px solid var(--accent-color);
}

.instacart-ingredient span {
    flex: 1;
}

.instacart-ingredient strong {
    color: var(--accent-color);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.instacart-ingredient:hover span {
    color: var(--accent-color);
}

.instacart-modal-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.magic-bar-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.magic-bar-wrapper {
    position: relative;
    width: 100%;
}

.magic-bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 4rem 1.5rem 2rem;
    border-radius: 100px;
    color: #fff;
    font-size: 1.25rem;
    backdrop-filter: blur(10px);
    line-height: 1.2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    caret-color: var(--accent-color);
}

.magic-bar:focus {
    caret-color: var(--accent-color);
}

.voice-btn {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
}

.voice-btn:hover {
    color: var(--accent-color);
}

.voice-btn.recording {
    color: var(--accent-color);
    animation: pulseMic 1.5s infinite;
}

@keyframes pulseMic {
    0% { transform: translateY(-50%) scale(1); text-shadow: 0 0 0 rgba(0, 255, 255, 0); }
    50% { transform: translateY(-50%) scale(1.2); text-shadow: 0 0 10px var(--accent-color); }
    100% { transform: translateY(-50%) scale(1); text-shadow: 0 0 0 rgba(0, 255, 255, 0); }
}

.magic-bar.recording {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
}

@media (max-width: 768px) {
    .magic-bar-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .magic-bar {
        padding: 1.25rem 2rem; /* Restore padding since mic is moved */
        font-size: 1.1rem;
    }

    .voice-btn {
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--accent-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .voice-btn.recording {
        animation: pulseMicMobile 1.5s infinite;
        background: var(--accent-color);
        color: #000;
        border-color: var(--accent-color);
    }

    @keyframes pulseMicMobile {
        0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4); }
        70% { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(0, 255, 255, 0); }
        100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
    }
}

.magic-bar::placeholder {
    color: #555;
    font-weight: 400;
}

.magic-bar:hover {
    border-color: #444;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05), 0 4px 30px rgba(0, 0, 0, 0.5);
}

.magic-bar:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 25px var(--accent-glow), inset 0 0 10px rgba(0, 255, 255, 0.1);
    transform: none;
}

.magic-bar.thinking {
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { box-shadow: 0 0 10px var(--accent-glow); border-color: var(--accent-color); }
    50% { box-shadow: 0 0 30px var(--accent-glow); border-color: white; }
    100% { box-shadow: 0 0 10px var(--accent-glow); border-color: var(--accent-color); }
}

.section {
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
}

.goal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.goal-card {
    background: var(--card-bg);
    border: 1px solid #1a1a1a;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, transparent, var(--accent-color), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(transparent, transparent) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.goal-card:hover {
    transform: translateY(-8px);
    background: #0d0d0d;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.goal-card:hover::before {
    opacity: 1;
}

.goal-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    transition: color 0.4s ease;
}

.goal-card:hover i {
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-glow);
}

.goal-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.goal-card h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.logic-section {
    background: #000000;
    position: relative;
    padding: 8rem 1.5rem;
    overflow: hidden;
}

.logic-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logic-visual {
    flex: 1;
    min-width: 300px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.logic-text {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.logic-text p {
    color: #aaa;
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto;
}

.rec-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.rec-filter {
    background: #0f0f0f;
    color: #fff;
    border: 1px solid #222;
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.rec-filter:hover,
.rec-filter.active {
    color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.08);
}

.recommendations {
    display: none;
    margin-top: 4rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    overflow: visible;
}

.rec-card {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.rec-card.show {
    opacity: 1;
    transform: translateY(0);
}

.rec-card.shared {
    border-color: var(--accent-color);
    box-shadow: 0 0 24px var(--accent-glow);
}

.rec-card.dropdown-active {
    z-index: 25;
}

.rec-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
}

.rec-card h4 {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 700;
}

.rec-card .food-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.rec-card p {
    color: #888;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.rec-footer {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    border-top: 1px solid #222;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.rec-share {
    margin-left: auto;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px var(--accent-glow);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rec-share:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 18px var(--accent-glow);
}

.rec-share.copied {
    color: #00ff99;
    border-color: #00ff99;
    box-shadow: 0 0 18px rgba(0, 255, 153, 0.5);
}

.rec-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    width: 100%;
}

.rec-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.rec-action:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

.rec-dropdown {
    position: relative;
    flex: 1;
    min-width: 170px;
}

.rec-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
}

.rec-dropdown-toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rec-dropdown-caret {
    transition: transform 0.2s ease;
}

.rec-dropdown.open .rec-dropdown-caret {
    --arrow-rotation: -90deg;
    transform: rotate(var(--arrow-rotation));
}

.rec-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.65rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    background: rgba(5, 5, 5, 0.96);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 22px rgba(0, 255, 255, 0.1);
    z-index: 40;
}

.rec-dropdown.open .rec-dropdown-menu {
    display: flex;
}

.rec-dropdown-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.7rem 0.95rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.rec-dropdown-item:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

.rec-dropdown-item.loading {
    opacity: 0.8;
    pointer-events: none;
}

.rec-recipe-toggle.open {
    background: rgba(0, 255, 255, 0.12);
}

.rec-recipe {
    margin-top: 1rem;
    border: 1px solid #1f2b2b;
    border-radius: 10px;
    background: rgba(0, 255, 255, 0.04);
    padding: 0.9rem;
    display: none;
}

.rec-recipe.show {
    display: block;
}

.rec-recipe h5 {
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.rec-recipe p {
    margin: 0 0 0.7rem 0;
    font-size: 0.84rem;
    color: #b9c7c7;
    line-height: 1.5;
}

.rec-recipe p:last-child {
    margin-bottom: 0;
}

footer {
    padding: 4rem 1.5rem;
    background: #000;
    border-top: 1px solid #111;
    text-align: center;
}

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

footer .logo-center {
    justify-content: center;
    margin-bottom: 2rem;
}

.email-capture {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.email-capture input {
    flex: 1;
    padding: 1.2rem;
    background: #0a0a0a;
    border: 1px solid #333;
    color: white;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.email-capture input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.email-capture button {
    padding: 0 2.5rem;
    background: var(--text-color);
    color: var(--bg-color);
    border: 1px solid var(--text-color);
    font-weight: 900;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.email-capture button:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .logic-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .logic-visual,
    .logic-text {
        min-width: unset;
        width: 100%;
    }

    .logic-text h2 {
        text-align: center;
    }

    .logic-text p {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .logic-section {
        padding: 5rem 1.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem 1rem;
    }

    .site-header {
        align-items: flex-start;
    }

    .site-nav {
        gap: 0.65rem;
    }

    .site-nav a:first-child {
        display: none;
    }

    .site-nav .nav-account {
        padding: 0.55rem 0.75rem;
        font-size: 0.68rem;
    }

    .main-logo-full {
        height: clamp(60px, 15vw, 90px);
    }

    .hero {
        padding: 7rem 1rem 3rem 1rem;
        min-height: 100svh;
    }

    h1 {
        font-size: clamp(1.8rem, 8vw, 3rem);
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
        padding: 0 0.5rem;
    }

    .hero-content {
        width: 100%;
    }

    .share-fab {
        right: 0.9rem;
        bottom: 0.9rem;
    }

    .rec-dropdown {
        min-width: 100%;
    }

    .rec-dropdown-menu {
        position: static;
        margin-top: 0.55rem;
    }

    .magic-bar {
        font-size: 16px;
        padding: 1.2rem 1.5rem;
    }

    .rec-filters {
        margin-top: 1.75rem;
        margin-bottom: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
        overflow: visible;
        padding-bottom: 0;
    }

    .rec-filter {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 140px;
        text-align: center;
        padding: 0.65rem 0.9rem;
    }


    .recommendations {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        gap: 1.25rem;
    }

    .rec-card {
        padding: 1.75rem 1.5rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .goal-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .goal-card {
        padding: 1.75rem 1rem;
    }

    .goal-card i {
        font-size: 2.25rem;
    }

    .goal-card h3 {
        font-size: 1rem;
    }

    .logic-section {
        padding: 4rem 1rem;
    }

    .logic-container {
        flex-direction: column;
        gap: 2rem;
    }

    .logic-visual,
    .logic-text {
        min-width: unset;
        width: 100%;
    }

    .logic-text h2 {
        text-align: center;
    }

    .logic-text p {
        max-width: 100%;
        font-size: 1rem;
        margin: 0 auto;
        text-align: center;
    }

    footer {
        padding: 3rem 1rem;
    }

    .coaching-invite {
        grid-template-columns: 1fr;
    }

    .coaching-invite-image {
        min-height: 62svh;
    }

    .coaching-invite-copy {
        padding: 3.5rem 1.25rem 4.5rem;
    }

    .footer-content p {
        font-size: 0.8rem;
    }

    .email-capture {
        flex-direction: column;
        gap: 0.75rem;
    }

    .email-capture button {
        padding: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: clamp(1.6rem, 9vw, 2.5rem);
    }

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

    .goal-card {
        padding: 1.5rem;
    }

    .magic-bar {
        font-size: 0.9rem;
        padding: 1rem 1.25rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .rec-card .food-name {
        font-size: 1.2rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* 2026 sales-page art direction */
.sales-page {
    --turquoise: #19e2cf;
    --turquoise-deep: #0cb9aa;
    --ink: #050505;
    --paper: #ffffff;
    --muted: #9ca7a6;
    background: var(--ink);
    color: var(--paper);
}

.sales-page main {
    overflow: clip;
}

.sales-page .sales-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    padding: 1.15rem clamp(1rem, 4vw, 4rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.sales-page .site-header .main-logo-full {
    height: clamp(48px, 5vw, 68px);
}

.sales-page .site-nav {
    gap: clamp(0.75rem, 2vw, 1.8rem);
}

.sales-page .site-nav a {
    color: var(--paper);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.sales-page .site-nav a:hover {
    color: var(--turquoise);
}

.sales-page .site-nav .nav-account {
    border-color: var(--turquoise);
    background: var(--turquoise);
    color: var(--ink);
    padding: 0.75rem 1rem;
}

.sales-page .site-nav .nav-account:hover {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--ink);
}

.sales-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    isolation: isolate;
    background: #0a0a0a;
}

.sales-hero-image,
.sales-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.sales-hero-image {
    z-index: -3;
    object-fit: cover;
    object-position: center center;
    animation: heroImageIn 1100ms cubic-bezier(.2,.7,.2,1) both;
}

.sales-hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.82) 37%, rgba(0, 0, 0, 0.35) 66%, rgba(0, 0, 0, 0.16) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, transparent 32%);
}

.sales-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: var(--turquoise);
}

.sales-hero-inner {
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: clamp(8.5rem, 15vh, 12rem) clamp(1.25rem, 7vw, 7rem) 5.5rem;
}

.sales-kicker {
    color: var(--turquoise);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    line-height: 1.3;
    margin-bottom: 1.15rem;
}

.sales-hero h1 {
    max-width: 830px;
    margin: 0 0 1.35rem;
    color: var(--paper);
    font-family: var(--font-heading);
    font-size: clamp(3.35rem, 7.7vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.86;
    text-transform: uppercase;
}

.sales-hero h1 .hero-line-accent {
    color: var(--turquoise);
}

.sales-hero h1 .hero-line {
    display: block;
}

.sales-hero h1 .hero-word {
    white-space: nowrap;
}

.sales-hero-copy {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2.1rem;
}

.sales-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    min-height: 54px;
    padding: 0.9rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 0;
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.sales-button:hover {
    transform: translateY(-3px);
}

.sales-button-primary {
    background: var(--turquoise);
    border-color: var(--turquoise);
}

.sales-button-primary:hover {
    background: var(--paper);
    border-color: var(--paper);
}

.sales-button-ghost {
    background: rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.48);
    color: var(--paper);
    backdrop-filter: blur(8px);
}

.sales-button-ghost:hover {
    border-color: var(--turquoise);
    color: var(--turquoise);
}

.sales-button-light {
    background: var(--paper);
    border-color: var(--paper);
}

.sales-button-light:hover {
    background: var(--turquoise);
    border-color: var(--turquoise);
}

.hero-reassurance {
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.82rem;
}

.hero-reassurance span {
    color: var(--turquoise);
    font-weight: 900;
    margin-right: 0.35rem;
}

.hero-scroll {
    position: absolute;
    right: clamp(1.25rem, 4vw, 4rem);
    bottom: 2.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--paper);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-decoration: none;
}

.hero-scroll i {
    color: var(--turquoise);
    animation: arrowDrop 1.8s ease-in-out infinite;
}

.hero-enter {
    animation: heroTextIn 720ms cubic-bezier(.2,.7,.2,1) both;
}

.hero-enter:nth-child(2) { animation-delay: 90ms; }
.hero-enter:nth-child(3) { animation-delay: 170ms; }
.hero-enter:nth-child(4) { animation-delay: 250ms; }
.hero-enter:nth-child(5) { animation-delay: 330ms; }

@keyframes heroImageIn {
    from { opacity: 0; transform: scale(1.045); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes arrowDrop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.meal-proof {
    min-height: 860px;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(440px, 1.1fr);
    background: var(--paper);
    color: var(--ink);
}

.meal-proof-media {
    position: relative;
    min-height: 720px;
    overflow: hidden;
}

.meal-proof-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}

.meal-proof:hover .meal-proof-media img {
    transform: scale(1.025);
}

.image-tag {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 1rem 1.2rem;
    background: var(--turquoise);
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.17em;
}

.meal-proof-copy {
    align-self: center;
    max-width: 760px;
    padding: clamp(4rem, 8vw, 8rem);
}

.sales-page h2 {
    margin: 0 0 1.35rem;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 5.4rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.98;
    text-align: left;
    text-transform: none;
}

.meal-proof-copy .sales-kicker,
.membership-section .sales-kicker {
    color: var(--turquoise-deep);
}

.section-lead {
    max-width: 650px;
    color: #3f4948;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.7;
}

.benefit-list {
    margin: 2.5rem 0;
    border-top: 1px solid #cbd2d1;
}

.benefit-list > div {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid #cbd2d1;
}

.benefit-list span {
    color: var(--turquoise-deep);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 900;
}

.benefit-list p {
    color: #394140;
    line-height: 1.55;
}

.benefit-list strong {
    color: var(--ink);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--turquoise-deep);
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.meal-assistant {
    padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem);
    background: var(--turquoise);
    color: var(--ink);
}

.assistant-heading {
    max-width: 1160px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2rem, 7vw, 7rem);
    align-items: end;
}

.assistant-heading .sales-kicker {
    grid-column: 1 / -1;
    color: var(--ink);
    margin-bottom: -0.65rem;
}

.assistant-heading h2 {
    margin: 0;
}

.assistant-heading > p:last-child {
    max-width: 480px;
    color: rgba(0, 0, 0, 0.72);
    font-size: 1.05rem;
}

.assistant-tool {
    max-width: 1160px;
    margin: 0 auto;
    padding: clamp(1.2rem, 3vw, 2.4rem);
    background: var(--ink);
}

.sales-page .magic-bar-container {
    max-width: none;
}

.sales-page .magic-bar {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0;
    box-shadow: none;
}

.sales-page .magic-bar:hover,
.sales-page .magic-bar:focus {
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(25, 226, 207, 0.16);
}

.sales-page .rec-filters {
    justify-content: flex-start;
    margin: 1.2rem 0 0;
}

.sales-page .rec-filter {
    border-radius: 0;
    border-color: rgba(255, 255, 255, 0.23);
}

.sales-page .rec-filter:hover,
.sales-page .rec-filter.active {
    color: var(--turquoise);
    border-color: var(--turquoise);
    box-shadow: none;
}

.goal-shortcuts {
    display: grid;
    grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
    align-items: center;
    gap: 1.25rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.goal-shortcuts > p {
    margin: 0;
    color: #899593;
    font-size: 0.72rem;
    line-height: 1.35;
}

.goal-shortcuts > p strong,
.goal-shortcuts > p span {
    display: block;
}

.goal-shortcuts > p strong {
    margin-bottom: 0.2rem;
    color: var(--turquoise);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.goal-shortcut-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.goal-shortcut {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 0.7rem;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: var(--paper);
    font: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease;
}

.goal-shortcut:last-child {
    border-right: 0;
}

.goal-shortcut i {
    color: var(--turquoise);
}

.goal-shortcut:hover,
.goal-shortcut.active {
    background: var(--turquoise);
    color: var(--ink);
}

.goal-shortcut:hover i,
.goal-shortcut.active i {
    color: var(--ink);
}

.sales-page .recommendations {
    margin-top: 2rem;
}

.sales-page .rec-card {
    border-radius: 0;
    border-color: rgba(255, 255, 255, 0.2);
}

.goal-section {
    padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5rem);
    background: var(--ink);
}

.goal-heading {
    max-width: 740px;
    margin-bottom: 4rem;
}

.goal-heading > p:last-child {
    max-width: 560px;
    color: var(--muted);
}

.sales-page .goal-grid {
    max-width: 1400px;
    margin: 0 auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.sales-page .goal-card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6rem clamp(1.1rem, 2.2vw, 2rem) 2rem;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    background: transparent;
    color: var(--paper);
    text-align: left;
}

.sales-page .goal-card:last-child {
    border-right: 0;
}

.sales-page .goal-card::before {
    inset: 0;
    border-radius: 0;
    padding: 0;
    background: var(--turquoise);
    mask: none;
    -webkit-mask: none;
    opacity: 0;
    z-index: -1;
}

.sales-page .goal-card:hover {
    transform: translateY(-8px);
    background: var(--turquoise);
    color: var(--ink);
    box-shadow: none;
}

.sales-page .goal-card:hover::before {
    opacity: 1;
}

.goal-number {
    margin-bottom: auto;
    color: var(--turquoise);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 900;
}

.sales-page .goal-card:hover .goal-number,
.sales-page .goal-card:hover i {
    color: var(--ink);
    text-shadow: none;
}

.sales-page .goal-card i {
    margin: 0 0 1rem;
    color: var(--turquoise);
    font-size: 2rem;
}

.sales-page .goal-card h3 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.1rem, 1.7vw, 1.45rem);
    text-transform: none;
}

.sales-page .goal-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.sales-page .goal-card:hover p {
    color: rgba(0, 0, 0, 0.72);
}

.community-proof {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 6rem);
    padding: clamp(5rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
    overflow: hidden;
    background: #030706;
    color: var(--paper);
    border-top: 1px solid rgba(25, 226, 207, 0.22);
}

.community-proof-copy {
    max-width: 610px;
}

.community-proof-copy h2 {
    margin-bottom: 1.4rem;
}

.community-proof-copy > p:not(.sales-kicker) {
    max-width: 520px;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.community-link {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--turquoise);
    color: var(--paper);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 180ms ease, gap 180ms ease;
}

.community-link:hover {
    gap: 1.55rem;
    color: var(--turquoise);
}

.trainer-profile-free {
    display: grid;
    gap: 0.38rem;
    max-width: 540px;
    margin-top: 1.7rem;
    padding: 1.1rem 0 1.1rem 1.1rem;
    border-left: 4px solid var(--turquoise);
}

.trainer-profile-free strong {
    color: var(--turquoise);
    font-family: var(--heading);
    font-size: clamp(1.28rem, 2vw, 1.8rem);
    line-height: 1;
    letter-spacing: -0.025em;
}

.trainer-profile-free span {
    max-width: 470px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    line-height: 1.55;
}

.community-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.7rem;
}

.community-link-trainer {
    color: var(--turquoise);
}

.community-portrait-strip {
    min-width: 0;
    margin: 0;
}

.community-portrait-strip img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.94);
    transition: transform 800ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.community-proof:hover .community-portrait-strip img {
    transform: scale(1.018);
    filter: saturate(1.06);
}

.community-portrait-strip figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: #7e8c8a;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.community-portrait-strip figcaption strong {
    color: var(--turquoise);
}

.coach-proof {
    min-height: 820px;
    display: grid;
    grid-template-columns: minmax(420px, 1.02fr) minmax(360px, 0.98fr);
    background: var(--paper);
    color: var(--ink);
}

.coach-proof-copy {
    align-self: center;
    max-width: 790px;
    padding: clamp(4rem, 8vw, 8rem);
}

.coach-proof-copy .sales-kicker {
    color: var(--turquoise-deep);
}

.coach-features {
    display: grid;
    gap: 0;
    margin: 2rem 0 2.4rem;
    list-style: none;
    border-top: 1px solid #cad2d1;
}

.coach-features li {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 0;
    border-bottom: 1px solid #cad2d1;
    color: #35403f;
}

.coach-features i {
    color: var(--turquoise-deep);
}

.coach-features strong {
    color: var(--ink);
}

.coach-proof-media {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: #111;
}

.coach-proof-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}

.coach-proof:hover .coach-proof-media img {
    transform: scale(1.025);
}

.live-badge {
    position: absolute;
    left: 1.4rem;
    bottom: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 0.9rem;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.live-badge span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--turquoise);
    box-shadow: 0 0 0 6px rgba(25, 226, 207, 0.14);
    animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 5px rgba(25, 226, 207, 0.12); }
    50% { box-shadow: 0 0 0 9px rgba(25, 226, 207, 0.02); }
}

.dashboard-showcase {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem);
    background:
        radial-gradient(circle at 93% 4%, rgba(25, 226, 207, 0.19), transparent 25rem),
        var(--ink);
    color: var(--paper);
}

.dashboard-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 74%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 74%);
}

.dashboard-showcase-intro,
.dashboard-preview-grid {
    position: relative;
    z-index: 1;
}

.dashboard-showcase-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: end;
    margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.dashboard-showcase-intro h2 {
    max-width: 900px;
    margin: 0;
    color: var(--paper);
    font-size: clamp(3rem, 6.6vw, 7rem);
    line-height: .87;
    text-transform: uppercase;
}

.dashboard-showcase-pitch {
    padding-bottom: .4rem;
}

.dashboard-showcase-pitch p {
    max-width: 500px;
    margin: 0 0 1.7rem;
    color: #a7b3b2;
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.7;
}

.dashboard-showcase-pitch .sales-button {
    width: max-content;
}

.dashboard-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.2rem, 2.5vw, 2.5rem);
}

.dashboard-preview-card {
    min-width: 0;
    margin: 0;
    padding: clamp(1.1rem, 2.2vw, 2rem);
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(8, 12, 12, .8);
    box-shadow: 0 30px 70px rgba(0,0,0,.36);
    transition: border-color 220ms ease, transform 220ms ease;
}

.dashboard-preview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(25, 226, 207, .72);
}

.dashboard-preview-copy {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: .7rem;
    min-height: 164px;
    padding-bottom: 1.4rem;
}

.dashboard-preview-number,
.dashboard-preview-copy p {
    color: var(--turquoise);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .15em;
}

.dashboard-preview-copy p {
    margin: .12rem 0 .65rem;
}

.dashboard-preview-copy h3 {
    margin: 0 0 .7rem;
    color: var(--paper);
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.6vw, 2.5rem);
    line-height: .98;
}

.dashboard-preview-copy div > span {
    display: block;
    max-width: 560px;
    color: #93a09f;
    font-size: .9rem;
    line-height: 1.55;
}

.dashboard-browser-frame {
    overflow: hidden;
    border: 1px solid #3a4746;
    background: #0a0d0d;
    box-shadow: 0 18px 35px rgba(0,0,0,.34);
}

.dashboard-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 12px;
    border-bottom: 1px solid #33403f;
    background: #18201f;
}

.dashboard-browser-bar > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #687473;
}

.dashboard-browser-bar > span:first-child {
    background: var(--turquoise);
}

.dashboard-browser-bar small {
    margin-left: auto;
    color: #8e9a99;
    font-size: .52rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.dashboard-browser-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.dashboard-preview-card:hover .dashboard-browser-frame img {
    transform: scale(1.015);
}

.dashboard-preview-card figcaption {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding-top: 1rem;
    color: #c3cccb;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dashboard-preview-card figcaption i {
    color: var(--turquoise);
}

.membership-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.75fr) minmax(500px, 1.25fr);
    gap: clamp(3rem, 7vw, 7rem);
    padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem);
    background: #f7fafa;
    color: var(--ink);
}

.membership-intro {
    align-self: start;
    position: sticky;
    top: 2rem;
}

.membership-list {
    border-top: 1px solid #aeb9b8;
}

.membership-row {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: 150px;
    padding: 1.25rem;
    border-bottom: 1px solid #aeb9b8;
    color: var(--ink);
    text-decoration: none;
    transition: background 200ms ease, color 200ms ease, padding 200ms ease;
}

.membership-row:hover,
.membership-row.featured:hover {
    background: var(--ink);
    color: var(--paper);
    padding-left: 1.7rem;
}

.membership-row.featured {
    background: var(--turquoise);
}

.membership-index {
    color: var(--turquoise-deep);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 900;
}

.membership-row.featured .membership-index {
    color: var(--ink);
}

.membership-row strong,
.membership-row small {
    display: block;
}

.membership-row strong {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 1;
}

.membership-row small {
    margin-top: 0.55rem;
    color: #596362;
    font-size: 0.88rem;
}

.membership-row:hover small {
    color: #b7c1c0;
}

.membership-label {
    grid-column: 2;
    width: max-content;
    margin-top: -0.4rem;
    padding: 0.3rem 0.45rem;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.membership-row:hover .membership-label {
    background: var(--turquoise);
    color: var(--ink);
}

.membership-arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
    font-size: 1.5rem;
    transition: transform 180ms ease;
}

.membership-row:hover .membership-arrow {
    transform: translate(4px, -4px);
    color: var(--turquoise);
}

.final-sale {
    min-height: 82svh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 8vw, 8rem);
    background: var(--ink);
    color: var(--paper);
}

.final-sale h2 {
    max-width: 1000px;
    font-size: clamp(3.1rem, 9vw, 9rem);
    line-height: 0.84;
    text-transform: uppercase;
}

.final-sale h2 span {
    color: var(--turquoise);
}

.final-sale > p:not(.sales-kicker) {
    max-width: 580px;
    margin: 0 0 2rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.sales-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem 3rem;
    align-items: end;
    padding: 3rem clamp(1.25rem, 5vw, 5rem);
    border-top: 4px solid var(--turquoise);
    background: var(--ink);
    text-align: left;
}

.sales-footer .main-logo-full {
    height: 62px;
}

.sales-footer > p {
    color: var(--muted);
}

.footer-links {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    gap: 1.4rem;
}

.footer-links a {
    color: var(--paper);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--turquoise);
}

.sales-footer small {
    grid-column: 1 / -1;
    color: #677170;
    font-size: 0.7rem;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .sales-page .site-nav a[href="#meal-planning"],
    .sales-page .site-nav a[href="#membership"] {
        display: none;
    }

    .meal-proof,
    .coach-proof,
    .membership-section,
    .community-proof {
        grid-template-columns: 1fr;
    }

    .dashboard-showcase-intro {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .dashboard-showcase-pitch .sales-button {
        width: max-content;
    }

    .dashboard-preview-copy {
        min-height: 190px;
    }

    .community-portrait-strip {
        width: min(100%, 980px);
        justify-self: center;
    }

    .meal-proof-media,
    .coach-proof-media {
        min-height: 64svh;
    }

    .meal-proof-copy,
    .coach-proof-copy {
        max-width: none;
        padding: 4rem clamp(1.25rem, 7vw, 4rem);
    }

    .assistant-heading {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sales-page .goal-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sales-page .goal-card:nth-child(2) {
        border-right: 0;
    }

    .membership-intro {
        position: static;
    }
}

@media (max-width: 680px) {
    .sales-page .sales-header {
        padding: 0.9rem 1rem;
    }

    .sales-page .site-header {
        align-items: center;
    }

    .sales-page .site-header .main-logo-full {
        height: 44px;
    }

    .sales-page .site-nav a[href="coaching.html?signin=1"] {
        display: none;
    }

    .sales-page .site-nav .nav-account {
        display: inline-flex;
        padding: 0.65rem 0.75rem;
        font-size: 0.61rem;
    }

    .sales-hero {
        min-height: 820px;
        align-items: flex-end;
    }

    .sales-hero-image {
        object-position: 58% center;
    }

    .sales-hero-shade {
        background:
            linear-gradient(0deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.78) 48%, rgba(0,0,0,.24) 100%),
            linear-gradient(90deg, rgba(0,0,0,.35), transparent);
    }

    .sales-hero-inner {
        padding: 8rem 1.15rem 5.6rem;
    }

    .sales-hero h1 {
        width: 100%;
        min-width: 0;
        font-size: clamp(2.65rem, 12.8vw, 4rem);
        line-height: 0.88;
        max-width: 100%;
    }

    .sales-hero h1 .hero-line-accent {
        display: block;
        max-width: 100%;
    }

    .sales-hero h1 .hero-word {
        display: block;
        width: fit-content;
        max-width: 100%;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .sales-button {
        width: 100%;
    }

    .hero-scroll {
        display: none;
    }

    .meal-proof-media,
    .coach-proof-media {
        min-height: 64svh;
    }

    .sales-page h2 {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .meal-assistant,
    .goal-section,
    .community-proof,
    .dashboard-showcase,
    .membership-section {
        padding: 4rem 1rem;
    }

    .dashboard-showcase-intro {
        gap: 1.6rem;
        margin-bottom: 2.8rem;
    }

    .dashboard-showcase-intro h2 {
        font-size: clamp(2.6rem, 12vw, 4.8rem);
    }

    .dashboard-showcase-pitch .sales-button {
        width: 100%;
    }

    .dashboard-preview-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-preview-copy {
        min-height: 0;
    }

    .community-proof {
        gap: 2.6rem;
    }

    .community-portrait-strip {
        width: 100%;
        margin-left: 0;
    }

    .community-portrait-strip figcaption {
        width: 100%;
        margin-left: 0;
    }

    .assistant-tool {
        padding: 1rem;
    }

    .sales-page .magic-bar-wrapper {
        gap: 0.8rem;
    }

    .sales-page .voice-btn {
        width: 48px;
        height: 48px;
    }

    .sales-page .rec-filter {
        min-width: 0;
        flex: 1 1 calc(33.333% - 0.55rem);
    }

    .goal-shortcuts {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .goal-shortcut-list {
        grid-template-columns: 1fr 1fr;
    }

    .goal-shortcut:nth-child(2) {
        border-right: 0;
    }

    .goal-shortcut:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .sales-page .goal-grid {
        grid-template-columns: 1fr;
    }

    .sales-page .goal-card,
    .sales-page .goal-card:nth-child(2) {
        min-height: 260px;
        border-right: 0;
    }

    .membership-row {
        min-height: 128px;
        padding-inline: 0.8rem;
    }

    .membership-label {
        display: none;
    }

    .final-sale {
        min-height: 72svh;
        padding: 5rem 1.15rem;
    }

    .final-sale h2 {
        font-size: clamp(3rem, 16vw, 5.2rem);
    }

    .sales-footer {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-links {
        grid-column: 1;
        grid-row: auto;
        flex-wrap: wrap;
    }

    .sales-footer small {
        grid-column: 1;
    }
}

@media (max-width: 420px) {
    .sales-page .sales-header {
        padding-inline: 0.75rem;
    }

    .sales-page .site-header {
        gap: 0.55rem;
    }

    .sales-page .site-header .main-logo-full {
        height: 38px;
        max-width: 132px;
    }

    .sales-page .site-nav .nav-account {
        padding: 0.58rem 0.65rem;
        font-size: 0.56rem;
        letter-spacing: 0.055em;
        text-align: center;
    }

    .sales-hero-inner {
        padding-inline: 0.9rem;
    }

    .sales-hero h1 {
        font-size: clamp(2.35rem, 12.2vw, 3.2rem);
        letter-spacing: -0.065em;
    }

    .sales-kicker {
        letter-spacing: 0.16em;
    }

    .sales-page h2 {
        font-size: clamp(2.1rem, 10vw, 3rem);
        overflow-wrap: anywhere;
    }

    .meal-assistant,
    .goal-section,
    .community-proof,
    .dashboard-showcase,
    .membership-section {
        padding-inline: 0.8rem;
    }

    .dashboard-preview-card {
        padding: .75rem;
    }

    .dashboard-preview-copy {
        grid-template-columns: 32px minmax(0, 1fr);
        padding: .4rem .15rem 1.1rem;
    }

    .dashboard-preview-copy h3 {
        font-size: clamp(1.5rem, 7.5vw, 2rem);
    }

    .dashboard-preview-copy div > span {
        font-size: .83rem;
    }

    .dashboard-browser-bar {
        height: 29px;
        padding-inline: 9px;
    }

    .dashboard-browser-bar small {
        font-size: .46rem;
    }

    .dashboard-preview-card figcaption {
        font-size: .62rem;
        letter-spacing: .06em;
    }

    .assistant-tool {
        padding: 0.8rem;
    }

    .sales-page .magic-bar {
        padding-inline: 1rem;
        font-size: 0.98rem;
    }

    .sales-page .rec-filters {
        gap: 0.45rem;
    }

    .sales-page .rec-filter {
        padding-inline: 0.45rem;
        font-size: 0.66rem;
        letter-spacing: 0.09em;
    }

    .goal-shortcut {
        min-width: 0;
        padding-inline: 0.55rem;
        font-size: 0.76rem;
    }

    .community-portrait-strip figcaption {
        flex-direction: column;
        gap: 0.3rem;
        letter-spacing: 0.07em;
    }

    .meal-proof-copy,
    .coach-proof-copy {
        padding-inline: 1rem;
    }

    .coach-proof-media img {
        object-position: 48% center;
    }

    .membership-row {
        gap: 0.65rem;
    }

    .membership-row h3 {
        font-size: clamp(1.2rem, 7vw, 1.7rem);
    }

    .final-sale {
        padding-inline: 0.9rem;
    }

    .final-sale h2 {
        font-size: clamp(2.75rem, 15vw, 4.2rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sales-page *,
    .sales-page *::before,
    .sales-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}
