/* ========================
   VARIABLES & RESET
======================== */
:root {
    --pink: #FF2DD4;
    --pink-hover: #e000bd;
    --black: #0a0a0a;
    --near-black: #111111;
    --white: #ffffff;
    --off-white: #fafaf8;
    --muted: #999999;
    --border: #e8e8e8;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ========================
   LAYOUT
======================== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================
   TYPOGRAPHY
======================== */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1.25rem;
}

.section-label--light {
    color: rgba(255, 45, 212, 0.65);
}

.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: 0.02em;
}

.section-heading.light {
    color: var(--white);
}

.pink-word {
    color: var(--pink);
}

/* ========================
   BUTTONS
======================== */
.btn {
    display: inline-block;
    padding: 0.85rem 2.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.btn-pink {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

.btn-pink:hover {
    background: var(--pink-hover);
    border-color: var(--pink-hover);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-dark:hover {
    background: var(--pink);
    border-color: var(--pink);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

/* ========================
   NAV
======================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 68px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--pink);
}

/* ========================
   HERO
======================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 80px;
    background: var(--white);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pink);
}

.hero-content {
    max-width: 740px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2.5rem;
    padding: 0.45rem 1.1rem;
    border: 1px solid var(--border);
}

.hero-logo {
    width: min(460px, 70vw);
    height: auto;
    margin: 0 auto 2rem;
}

.hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 7.5vw, 6rem);
    line-height: 0.92;
    letter-spacing: 0.03em;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.05rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 2.75rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    color: var(--muted);
    animation: bounce 2s infinite;
}

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

/* ========================
   STATS BAR
======================== */
.stats-bar {
    background: var(--near-black);
    display: flex;
    justify-content: center;
}

.stat {
    flex: 1;
    max-width: 285px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.75rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.75rem;
    line-height: 1;
    color: var(--pink);
    display: block;
}

.stat-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.45rem;
    display: block;
}

/* ========================
   HOW IT WORKS
======================== */
.how-it-works {
    padding: 7rem 0;
    background: var(--off-white);
    text-align: center;
}

.gtg-image {
    width: min(620px, 85vw);
    height: auto;
    margin: 1rem auto 4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    text-align: left;
}

.step-card {
    padding: 2.5rem 2.25rem;
    background: var(--white);
}

.step-card--highlight {
    background: var(--pink);
}

.step-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 1rem;
}

.step-card--highlight .step-num {
    color: rgba(255, 255, 255, 0.5);
}

.step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.75rem;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--black);
    margin-bottom: 1rem;
}

.step-card--highlight .step-title {
    color: var(--white);
}

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

.step-card--highlight p {
    color: rgba(255, 255, 255, 0.85);
}

/* ========================
   THE OAT
======================== */
.the-oat {
    padding: 7rem 0;
    background: var(--near-black);
}

.oat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.oat-text-col .section-heading {
    margin-bottom: 1.75rem;
}

.oat-body {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2.25rem;
}

.oat-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.oat-features li {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
    padding-left: 1.5rem;
    position: relative;
}

.oat-features li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--pink);
}

.flavours-heading {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 1.5rem;
}

.flavour {
    padding: 1.35rem 1.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 0.75rem;
    transition: border-color 0.25s;
    cursor: default;
}

.flavour:hover {
    border-left-color: var(--pink);
}

.flavour--featured {
    border-left-color: var(--pink);
    background: rgba(255, 45, 212, 0.08);
}

.flavour-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.45rem;
}

.flavour-macros {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.38);
}

/* ========================
   GOAT SECTION
======================== */
.goat-section {
    padding: 7rem 0;
    background: var(--white);
    text-align: center;
}

.goat-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.75rem;
}

.goat-image {
    width: min(660px, 88vw);
    height: auto;
}

.goat-copy {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4.25rem);
    line-height: 1.1;
    color: var(--black);
    letter-spacing: 0.025em;
}

/* ========================
   THE SPOON
======================== */
.the-spoon {
    padding: 7rem 0;
    background: var(--white);
    overflow: hidden;
}

.spoon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.spoon-text-col .section-heading {
    margin-bottom: 1.75rem;
}

.spoon-body {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #666;
    margin-bottom: 2.75rem;
}

.spoon-editions {
    display: flex;
    gap: 2rem;
    align-items: flex-end;
}

.spoon-edition {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.4;
    transition: opacity 0.25s;
    cursor: pointer;
}

.spoon-edition:hover,
.spoon-edition--active {
    opacity: 1;
}

.spoon-thumb {
    width: 64px;
    height: auto;
    mix-blend-mode: multiply;
}

.spoon-edition-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
}

.spoon-edition--active .spoon-edition-label {
    color: var(--pink);
}

.spoon-hero-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spoon-hero-img {
    width: min(280px, 70vw);
    height: auto;
    mix-blend-mode: multiply;
    transform: rotate(12deg);
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.12));
    transition: transform 0.4s ease;
}

.spoon-hero-img:hover {
    transform: rotate(6deg) scale(1.04);
}

/* ========================
   FIND US
======================== */
.find-us {
    padding: 7rem 0;
    background: var(--off-white);
    text-align: center;
}

.find-us .section-heading {
    margin-bottom: 1rem;
}

.find-us-sub {
    font-size: 0.98rem;
    color: #666;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 3.5rem;
}

.gym-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.gym-badge {
    padding: 0.65rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.2s;
}

.gym-badge:hover {
    background: var(--black);
    color: var(--white);
}

.gym-badge--more {
    border-color: var(--pink);
    color: var(--pink);
    background: transparent;
}

.gym-badge--more:hover {
    background: var(--pink);
    color: var(--white);
}

.waitlist-block {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.waitlist-intro {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.waitlist-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.waitlist-form {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    margin-bottom: 1rem;
}

.waitlist-fields {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.waitlist-row {
    display: flex;
}

.waitlist-input {
    flex: 1;
    padding: 0.85rem 1.1rem;
    border: 2px solid var(--black);
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.waitlist-row + .waitlist-row .waitlist-input {
    border-top: none;
}

.waitlist-row .waitlist-input + .waitlist-input {
    border-left: none;
}

.waitlist-input:focus {
    border-color: var(--pink);
    position: relative;
    z-index: 1;
}

.waitlist-input::placeholder {
    color: #aaa;
}

.waitlist-submit {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.15;
    padding: 0 2rem;
    min-width: 160px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: normal;
    text-align: center;
    align-self: stretch;
}

.waitlist-submit:hover {
    background: var(--pink);
    border-color: var(--pink);
}

.waitlist-footer {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.75;
}

/* ========================
   FOOTER
======================== */
.footer {
    background: var(--near-black);
    padding: 3.5rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--pink);
    letter-spacing: 0.06em;
    line-height: 1;
}

.footer-links {
    display: flex;
    gap: 2.25rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

.footer-copy {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 900px) {
    .oat-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

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

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

    .spoon-hero-col {
        order: -1;
    }

    .spoon-hero-img {
        width: min(200px, 50vw);
        transform: rotate(12deg);
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

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

    .stats-bar {
        flex-wrap: wrap;
    }

    .stat {
        min-width: 50%;
        flex: 0 0 50%;
        max-width: none;
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .waitlist-submit {
        padding: 1.1rem 2rem;
        min-width: unset;
        font-size: 1.4rem;
    }

    .waitlist-row {
        flex-direction: column;
    }

    .waitlist-row .waitlist-input + .waitlist-input {
        border-left: 2px solid var(--black);
        border-top: none;
    }
}
