/* ============================================================
   Kettlebell Sport Pro — Landing Page Styles
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --accent: #CE691C;
    --accent-dim: rgba(206, 105, 28, 0.18);
    --accent-glow: rgba(206, 105, 28, 0.35);
    --bg: #161616;
    --bg-card: #1e1e1e;
    --border: rgba(255, 255, 255, 0.08);
    --text: #E3E0D0;
    --text-muted: rgba(227, 224, 208, 0.60);
    --text-faint: rgba(227, 224, 208, 0.38);
    --radius-card: 20px;
    --max-w: 1120px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu,
    Cantarell, "Noto Sans", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* ── Layout helpers ───────────────────────────────────────── */
.landing-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.section-inner {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ── Section eyebrow label ────────────────────────────────── */
.section-eyebrow {
    width: fit-content;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(206, 105, 28, 0.30);
    border-radius: 999px;
    padding: 0.22rem 0.75rem;
    margin-bottom: 1rem;
}

/* ── Store buttons ────────────────────────────────────────── */
.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.store-buttons--center {
    justify-content: center;
}

.store-btn {
    display: inline-block;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.store-btn img {
    height: 48px;
    width: auto;
}

.store-btn:hover {
    transform: translateY(-3px);
    opacity: 0.88;
}

@media (min-width: 1024px) {
    .store-btn img {
        height: 54px;
    }
}

/* ── ======================================================== */
/* ── HERO ─────────────────────────────────────────────────── */
/* ── ======================================================== */
.hero {
    padding: 2rem 0 0;
}

.hero .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.75rem;
}

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.hero-logo {
    height: 60px;
    width: auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    max-width: 680px;
}

.hero-headline {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
}

.hero-headline .accent {
    color: var(--accent);
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 520px;
}

.hero-tagline {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-available {
    font-size: 0.82rem;
    color: var(--text-faint);
    letter-spacing: 0.03em;
}

@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0 2.5rem;
    }

    .hero-headline {
        font-size: 3.75rem;
    }

    .hero-sub {
        font-size: 1.2rem;
    }

    .hero-icon {
        width: 100px;
        height: 100px;
    }

    .hero-logo {
        height: 52px;
    }
}

/* ── ======================================================== */
/* ── DOWNLOAD STRIP ───────────────────────────────────────── */
/* ── ======================================================== */
.download-strip {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.download-strip .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.download-strip h2 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.download-strip p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 380px;
}

/* ── ======================================================== */
/* ── FEATURES SECTION ─────────────────────────────────────── */
/* ── ======================================================== */
.features {
    padding: 5rem 0;
}

.features .section-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* ── Feature Card ─────────────────────────────────────────── */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    border-color: rgba(206, 105, 28, 0.30);
    box-shadow: 0 0 40px rgba(206, 105, 28, 0.08);
}

@media (min-width: 900px) {
    .feature-card {
        grid-template-columns: 1fr 1fr;
        padding: 3.5rem;
    }

    /* Alternate layout — media first */
    .feature-card.media-first .feature-copy {
        order: 2;
    }

    .feature-card.media-first .feature-media {
        order: 1;
    }
}

/* ── Feature copy ─────────────────────────────────────────── */
.feature-copy {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.feature-copy h2 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
    .feature-copy h2 {
        font-size: 2.4rem;
    }
}

.feature-copy .feature-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
}

.feature-copy p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 440px;
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.feature-bullets li {
    font-size: 0.93rem;
    color: rgba(227, 224, 208, 0.78);
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
}

.feature-bullets li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ── Feature media ────────────────────────────────────────── */
.feature-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Single screenshot */
.screenshot-single img {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    transition: transform 0.3s ease;
}

.screenshot-single img:hover {
    transform: translateY(-6px) scale(1.02);
}

/* Double screenshot (side by side / stacked) */
.screenshot-stack {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: center;
}

.screenshot-stack img {
    width: calc(50% - 0.5rem);
    max-width: 220px;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.50);
    transition: transform 0.3s ease;
}

.screenshot-stack img:nth-child(2) {
    margin-top: 2rem;
}

.screenshot-stack img:hover {
    transform: translateY(-5px) scale(1.02);
}

@media (max-width: 899px) {
    .screenshot-stack {
        flex-direction: column;
        align-items: center;
    }

    .screenshot-stack img {
        width: 70%;
        max-width: 260px;
    }

    .screenshot-stack img:nth-child(2) {
        margin-top: 0;
    }

    .screenshot-single img {
        max-width: 260px;
    }
}

/* ── ======================================================== */
/* ── COMMUNITY SECTION ────────────────────────────────────── */
/* ── ======================================================== */
.community {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}

.community .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.community h2 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.community p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 440px;
    line-height: 1.65;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
}

.social-btn:hover {
    /*transform: translateY(-3px);*/
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-btn--discord {
    background: #5865F2;
    border-color: #5865F2;
    box-shadow: 0 4px 18px rgba(88, 101, 242, 0.30);
}

.social-btn--discord:hover {
    background: #6875f5;
    border-color: #6875f5;
    box-shadow: 0 8px 28px rgba(88, 101, 242, 0.45);
}

.social-btn--instagram {
    /*width: 44px;*/
    /*background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);*/
    /*border-color: transparent;*/
    /*box-shadow: 0 4px 18px rgba(253, 29, 29, 0.25);*/
}

.social-btn--instagram:hover {
    /*background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);*/
    /*box-shadow: 0 8px 28px rgba(253, 29, 29, 0.40);*/
}

.social-btn--youtube {
    /*background: #FF0000;*/
    /*border-color: #FF0000;*/
    /*box-shadow: 0 4px 18px rgba(255, 0, 0, 0.25);*/
}

.social-btn--youtube:hover {
    /*background: #ff2a2a;*/
    /*border-color: #ff2a2a;*/
    /*box-shadow: 0 8px 28px rgba(255, 0, 0, 0.40);*/
}

.social-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* ── ======================================================== */
/* ── FINAL CTA ────────────────────────────────────────────── */
/* ── ======================================================== */
.final-cta {
    padding: 5rem 0 6rem;
    border-top: 1px solid var(--border);
}

.final-cta .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.final-cta h2 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    max-width: 540px;
}

.final-cta p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 420px;
    line-height: 1.65;
}

.final-cta .hero-available {
    font-size: 0.82rem;
    color: var(--text-faint);
}

@media (min-width: 1024px) {
    .final-cta h2 {
        font-size: 2.8rem;
    }

    .community h2 {
        font-size: 2.4rem;
    }
}

/* ── ======================================================== */
/* ── FOOTER ───────────────────────────────────────────────── */
/* ── ======================================================== */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 2rem 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-note {
    font-size: 0.8rem;
    color: var(--text-faint);
}

.footer-link {
    font-size: 0.8rem;
    color: var(--text-faint);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: var(--text-muted);
}
