/*
 * Willappy Marketing Pages — Stylesheet
 * Enqueued via functions.php on pages using the "Willappy Blank" template.
 *
 * File location: /wp-content/themes/YOUR-THEME/willappy-styles.css
 * (or /wp-content/themes/YOUR-CHILD-THEME/willappy-styles.css)
 */

/* ── GOOGLE FONTS are loaded via functions.php enqueue — see snippet ── */

/* ── CSS VARIABLES ── */
:root {
    --red: #e8294a;
    --red-soft: #ff4d6d;
    --red-pale: rgba(232, 41, 74, 0.12);
    --dark: #0e0c0d;
    --dark-2: #161214;
    --dark-3: #1e1820;
    --text: #f0e8ec;
    --text-muted: #a08898;
    --border: rgba(232, 41, 74, 0.15);
}

/* ── RESET (scoped to willappy pages) ── */
.willappy-blank-page *,
.willappy-blank-page *::before,
.willappy-blank-page *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.willappy-blank-page {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* Override WordPress body defaults */
.willappy-blank-page body,
.willappy-blank-page {
    background-color: var(--dark) !important;
}

/* ── FORCE TEXT VISIBILITY — overrides WordPress/theme defaults ── */
.willappy-blank-page,
.willappy-blank-page p,
.willappy-blank-page h1,
.willappy-blank-page h2,
.willappy-blank-page h3,
.willappy-blank-page h4,
.willappy-blank-page h5,
.willappy-blank-page h6,
.willappy-blank-page span,
.willappy-blank-page div,
.willappy-blank-page li,
.willappy-blank-page a {
    color: var(--text);
}

/* Muted text elements */
.willappy-blank-page .w-hero-subtitle,
.willappy-blank-page .w-page-subtitle,
.willappy-blank-page .w-pillar-desc,
.willappy-blank-page .w-step-content p,
.willappy-blank-page .w-perk p,
.willappy-blank-page .w-story-body p,
.willappy-blank-page .w-value-desc,
.willappy-blank-page .w-community-bio,
.willappy-blank-page .w-benefit-desc,
.willappy-blank-page .w-who-desc,
.willappy-blank-page .w-faq-a,
.willappy-blank-page .w-contact-card p,
.willappy-blank-page .w-form-note,
.willappy-blank-page .w-footer-copy,
.willappy-blank-page .w-activity-item,
.willappy-blank-page .w-card-stat,
.willappy-blank-page .w-stat-label,
.willappy-blank-page .w-footer-links a,
.willappy-blank-page .w-nav-links a,
.willappy-blank-page .w-breadcrumb,
.willappy-blank-page .w-response-note,
.willappy-blank-page .w-showcase-text p,
.willappy-blank-page .w-problem > div > p {
    color: var(--text-muted) !important;
}

/* Red accent elements — keep red */
.willappy-blank-page .w-section-label,
.willappy-blank-page .w-hero-eyebrow,
.willappy-blank-page .w-card-tag,
.willappy-blank-page .w-community-role,
.willappy-blank-page .w-stat-num,
.willappy-blank-page .w-sport-asterisk,
.willappy-blank-page .w-sport-badge,
.willappy-blank-page .w-added-tab,
.willappy-blank-page .w-contact-card a,
.willappy-blank-page .w-pillar-name,
.willappy-blank-page .w-verified-badge,
.willappy-blank-page .w-sport-footnote span {
    color: var(--red) !important;
}

/* White on red buttons */
.willappy-blank-page .w-btn-primary,
.willappy-blank-page .w-nav-cta,
.willappy-blank-page .w-submit-btn {
    color: white !important;
}

/* Ghost button */
.willappy-blank-page .w-btn-ghost {
    color: var(--text-muted) !important;
}

/* Nav links hover */
.willappy-blank-page .w-nav-links a:hover,
.willappy-blank-page .w-nav-links a.current,
.willappy-blank-page .w-footer-links a:hover {
    color: var(--text) !important;
}

/* Headings always bright */
.willappy-blank-page .w-hero-title,
.willappy-blank-page .w-page-title,
.willappy-blank-page .w-section-title,
.willappy-blank-page .w-story-aside-title,
.willappy-blank-page .w-story-body h3,
.willappy-blank-page .w-pillar-name,
.willappy-blank-page .w-value-title,
.willappy-blank-page .w-who-title,
.willappy-blank-page .w-benefit-title,
.willappy-blank-page .w-step-content h3,
.willappy-blank-page .w-perk h4,
.willappy-blank-page .w-faq-q,
.willappy-blank-page .w-contact-card h4,
.willappy-blank-page .w-community-name,
.willappy-blank-page .w-card-name,
.willappy-blank-page .w-logo,
.willappy-blank-page .w-footer-logo {
    color: var(--text) !important;
}

/* Italic red on titles */
.willappy-blank-page .w-hero-title em,
.willappy-blank-page .w-page-title em,
.willappy-blank-page h1 em,
.willappy-blank-page h2 em,
.willappy-blank-page h3 em {
    color: var(--red) !important;
    font-style: italic;
}

/* Strong inside story */
.willappy-blank-page .w-story-body p strong {
    color: var(--text) !important;
}

/* ── NAV ── */
.w-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(14, 12, 13, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.w-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.w-logo span { color: var(--red); }

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

.w-nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.w-nav-links a:hover,
.w-nav-links a.current { color: var(--text); }

.w-nav-cta {
    background: var(--red);
    color: white;
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.w-nav-cta:hover { background: var(--red-soft); transform: translateY(-1px); color: white; }

/* ── BUTTONS ── */
.w-btn-primary {
    background: var(--red);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.w-btn-primary:hover { background: var(--red-soft); transform: translateY(-2px); color: white; }

.w-btn-ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 0.9rem 2rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.w-btn-ghost:hover { border-color: var(--red); color: var(--text); }

/* ── SHARED LAYOUT UTILITIES ── */
.w-section-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.w-section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--red);
}

.w-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.w-breadcrumb {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.w-breadcrumb a { color: var(--red); text-decoration: none; }

/* ── SHARED FOOTER ── */
.w-footer {
    padding: 2.5rem 3rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.w-footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text);
    text-decoration: none;
}

.w-footer-logo span { color: var(--red); }

.w-footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.w-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

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

.w-footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ── HOME PAGE ── */
.w-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(to right,
            rgba(14,12,13,0.97) 0%,
            rgba(14,12,13,0.92) 38%,
            rgba(14,12,13,0.55) 65%,
            rgba(14,12,13,0.15) 100%
        ),
        linear-gradient(to bottom,
            rgba(14,12,13,0.5) 0%,
            transparent 20%,
            transparent 80%,
            rgba(14,12,13,0.8) 100%
        ),
        url('hero-bg.jpg'); /* ← Replace with your creator's photo URL */
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.w-hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,41,74,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.w-hero::after {
    content: '';
    position: absolute;
    bottom: -10%; left: 20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,41,74,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.w-hero-left {
    max-width: 580px;
    animation: wFadeUp 0.8s ease-out both;
    position: relative;
    z-index: 1;
}

.w-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: wFadeUp 0.8s 0.2s ease-out both;
    position: relative;
    z-index: 1;
}

.w-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.5rem;
}

.w-hero-eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--red);
}

.w-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.w-hero-title em { font-style: italic; color: var(--red); }

.w-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 460px;
    font-weight: 300;
}

.w-hero-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.w-hero-photo-credit {
    position: absolute;
    bottom: 1.5rem; right: 1.5rem;
    font-size: 0.72rem;
    color: rgba(240,232,236,0.45);
    letter-spacing: 0.04em;
    z-index: 2;
    transition: color 0.2s;
}

.w-hero-photo-credit:hover { color: rgba(240,232,236,0.8); }
.w-hero-photo-credit a { color: inherit; text-decoration: none; }
.w-hero-photo-credit a:hover { color: var(--red); }

/* Hero cards */
.w-hero-visual { position: relative; width: 420px; height: 520px; }

.w-hero-card {
    position: absolute;
    background: rgba(30,24,32,0.85);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
}

.w-hero-card-main  { width: 300px; top: 0; right: 0; }
.w-hero-card-sec   { width: 220px; bottom: 40px; left: 0; }

.w-card-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #ff8fa3);
    margin-bottom: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}

.w-card-name  { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.w-card-tag   { font-size: 0.78rem; color: var(--red); font-weight: 500; }
.w-card-stat  { margin-top: 1rem; font-size: 0.82rem; color: var(--text-muted); }
.w-card-stat strong {
    color: var(--text);
    font-size: 1.4rem;
    display: block;
    font-family: 'Playfair Display', serif;
}

.w-pillars-row { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.w-pillar-tag {
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Stats bar */
.w-stats-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--dark);
}

.w-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--red);
    display: block;
}

.w-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
    display: block;
}

.w-stat-item { text-align: center; }

/* Pillars */
.w-pillars { padding: 6rem 3rem; background: var(--dark); }

.w-pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 3rem;
}

.w-pillar-item {
    background: var(--dark-2);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
}

.w-pillar-item:hover { background: var(--dark-3); }

.w-pillar-icon  { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
.w-pillar-name  { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.w-pillar-desc  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* Sport asterisk pillar */
.w-pillar-item.w-sport {
    grid-column: 1 / -1;
    background: var(--dark-3);
    border-top: 1px dashed rgba(232,41,74,0.3);
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
}

.w-pillar-item.w-sport:hover { background: #221c20; }

.w-sport-badge {
    position: absolute;
    top: -1px; left: 2rem;
    background: var(--dark-3);
    border: 1px dashed rgba(232,41,74,0.4);
    border-top: none;
    padding: 0.2rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0 0 6px 6px;
}

.w-sport-asterisk {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.5;
    line-height: 1;
    transition: opacity 0.3s;
}

.w-pillar-item.w-sport:hover .w-sport-asterisk { opacity: 1; }

.w-sport-footnote {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(232,41,74,0.2);
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.w-sport-footnote span { color: var(--red); font-style: normal; font-weight: 700; }

/* How it works */
.w-how {
    padding: 6rem 3rem;
    background: var(--dark-2);
}

.w-how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.w-steps { display: flex; flex-direction: column; gap: 2rem; }

.w-step { display: flex; gap: 1.5rem; align-items: flex-start; }

.w-step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--red-pale);
    line-height: 1;
    min-width: 50px;
    transition: color 0.3s;
}

.w-step:hover .w-step-num { color: var(--red); }
.w-step-content h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; }
.w-step-content p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

.w-how-visual {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.w-how-visual::before {
    content: '';
    position: absolute;
    top: -30%; right: -20%;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(232,41,74,0.1) 0%, transparent 70%);
}

.w-profile-preview {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem;
    background: var(--dark-2);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.w-profile-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #ff8fa3);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

.w-profile-info .w-pname   { font-weight: 600; font-size: 0.9rem; }
.w-profile-info .w-phandle { font-size: 0.78rem; color: var(--text-muted); }

.w-activity-feed { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }

.w-activity-item {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--dark-2);
    border-radius: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.w-activity-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* Creator strip */
.w-creator-strip {
    padding: 5rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    border-top: 1px solid var(--border);
    background: var(--dark);
}

.w-creator-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3vw,2.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.w-creator-strip h2 em { font-style: italic; color: var(--red); }
.w-creator-strip > div > p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; font-weight: 300; margin-bottom: 2rem; }

.w-perks { display: flex; flex-direction: column; gap: 1rem; }

.w-perk {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.2s;
}

.w-perk:hover { border-color: var(--red); }
.w-perk-icon { font-size: 1.4rem; flex-shrink: 0; }
.w-perk h4   { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.w-perk p    { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; font-weight: 300; }

/* Final CTA */
.w-final-cta {
    padding: 8rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.w-final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(232,41,74,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.w-final-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 900; line-height: 1.05; margin-bottom: 1.5rem; position: relative; }
.w-final-cta h2 em { font-style: italic; color: var(--red); }
.w-final-cta > p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2.5rem; font-weight: 300; position: relative; }
.w-free-note { margin-top: 1rem; font-size: 0.82rem; color: var(--text-muted); }

/* ── ABOUT PAGE ── */
.w-page-header {
    padding: 10rem 3rem 5rem;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.w-page-header::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,41,74,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.w-page-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem,6vw,6rem); font-weight: 900; line-height: 1.0; letter-spacing: -0.02em; max-width: 700px; }
.w-page-title em { font-style: italic; color: var(--red); }
.w-page-subtitle { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; max-width: 480px; margin-top: 1.5rem; }

.w-story {
    padding: 4rem 3rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
    background: var(--dark);
}

.w-story-sticky { position: sticky; top: 6rem; }
.w-story-aside-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; }
.w-story-aside-title em { font-style: italic; color: var(--red); }

.w-quote-block { border-left: 2px solid var(--red); padding-left: 1.5rem; margin-top: 2rem; }
.w-quote-block blockquote { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--text-muted); line-height: 1.6; }

.w-story-body { display: flex; flex-direction: column; gap: 2rem; }
.w-story-body p { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; }
.w-story-body p strong { color: var(--text); font-weight: 600; }
.w-story-body h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--text); margin-top: 1rem; }

.w-values { padding: 6rem 3rem; background: var(--dark-2); }

.w-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 3rem;
}

.w-value-item { background: var(--dark-2); padding: 2.5rem 2rem; transition: background 0.3s; }
.w-value-item:hover { background: var(--dark-3); }
.w-value-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--red-pale); margin-bottom: 1rem; transition: color 0.3s; }
.w-value-item:hover .w-value-num { color: var(--red); }
.w-value-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.w-value-desc  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

.w-community { padding: 6rem 3rem; background: var(--dark); }

.w-community-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.w-community-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
}

.w-community-card:hover { border-color: var(--red); transform: translateY(-3px); }
.w-community-card.w-sport-card { border-style: dashed; position: relative; }

.w-community-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #ff8fa3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.w-community-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.w-community-role { font-size: 0.78rem; color: var(--red); font-weight: 500; margin-bottom: 0.75rem; }
.w-community-bio  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; font-weight: 300; }

.w-added-tab {
    position: absolute;
    top: -1px; right: 1rem;
    background: var(--dark-2);
    border: 1px dashed rgba(232,41,74,0.4);
    border-top: none;
    padding: 0.15rem 0.6rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0 0 5px 5px;
}

/* ── CONTACT PAGE ── */
.w-contact-grid {
    padding: 4rem 3rem 8rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
    background: var(--dark);
}

.w-contact-options { position: sticky; top: 6rem; }

.w-contact-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s, transform 0.2s;
}

.w-contact-card:hover { border-color: var(--red); transform: translateX(4px); }
.w-contact-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.w-contact-icon { font-size: 1.4rem; }
.w-contact-card h4 { font-size: 0.95rem; font-weight: 600; }
.w-contact-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; font-weight: 300; }
.w-contact-card a  { color: var(--red); text-decoration: none; font-size: 0.85rem; font-weight: 500; display: inline-block; margin-top: 0.5rem; transition: opacity 0.2s; }
.w-contact-card a:hover { opacity: 0.8; }

.w-response-note { margin-top: 2rem; padding: 1.25rem 1.5rem; background: var(--red-pale); border: 1px solid var(--border); border-radius: 8px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.w-response-note strong { color: var(--text); }

.w-contact-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 0.5rem; }
.w-contact-form-wrap h2 em { font-style: italic; color: var(--red); }
.w-contact-form-wrap > p { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; margin-bottom: 2rem; }

.w-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.w-form-group { margin-bottom: 1.25rem; }

.w-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.w-input, .w-textarea, .w-select {
    width: 100%;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.85rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.2s;
    outline: none;
    appearance: none;
}

.w-input:focus, .w-textarea:focus { border-color: var(--red); }
.w-input::placeholder, .w-textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.w-textarea { height: 140px; resize: vertical; line-height: 1.6; }

.w-subject-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }

.w-subject-tag {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.w-subject-tag:hover, .w-subject-tag.active { border-color: var(--red); color: var(--red); background: var(--red-pale); }

.w-submit-btn {
    background: var(--red);
    color: white;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.w-submit-btn:hover { background: var(--red-soft); transform: translateY(-2px); }
.w-form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center; line-height: 1.5; }

.w-success-state {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.w-success-state .icon { font-size: 3rem; margin-bottom: 1rem; }
.w-success-state h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 0.75rem; }
.w-success-state p  { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; }

.w-faq { padding: 6rem 3rem; background: var(--dark-2); }

.w-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

.w-faq-item { background: var(--dark-3); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; transition: border-color 0.2s; }
.w-faq-item:hover { border-color: var(--red); }
.w-faq-q { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.w-faq-a { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ── CREATOR PAGE ── */
.w-creator-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 3rem 5rem;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.w-creator-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(232,41,74,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.w-problem {
    padding: 6rem 3rem;
    background: var(--dark-2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.w-problem h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3vw,2.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; }
.w-problem h2 em { font-style: italic; color: var(--red); }
.w-problem > div > p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; margin-bottom: 1rem; }

.w-problem-list { display: flex; flex-direction: column; gap: 1rem; }

.w-problem-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--dark-3);
    border-radius: 8px;
    border-left: 2px solid var(--red);
}

.w-problem-item .icon { font-size: 1.3rem; flex-shrink: 0; }
.w-problem-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.w-problem-item p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; font-weight: 300; }

.w-benefits { padding: 6rem 3rem; background: var(--dark); }

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

.w-benefit-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
}

.w-benefit-card:hover { border-color: var(--red); transform: translateY(-4px); }
.w-benefit-icon  { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
.w-benefit-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.75rem; }
.w-benefit-desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

.w-showcase { padding: 6rem 3rem; background: var(--dark-2); }

.w-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.w-profile-mockup { background: var(--dark-3); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }

.w-profile-header {
    background: linear-gradient(135deg, var(--dark-3), rgba(232,41,74,0.1));
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 1.25rem;
}

.w-big-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #ff8fa3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; flex-shrink: 0;
}

.w-profile-meta .name { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.2rem; }
.w-profile-meta .handle { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }

.w-verified-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: var(--red-pale);
    border: 1px solid var(--red);
    color: var(--red);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.72rem; font-weight: 600;
}

.w-profile-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.w-p-stat strong { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text); display: block; }
.w-p-stat span   { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.w-profile-links { padding: 1.25rem 2rem; display: flex; flex-direction: column; gap: 0.5rem; }

.w-link-row {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    background: var(--dark-2);
    border-radius: 6px;
    font-size: 0.82rem; color: var(--text-muted);
}

.w-link-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

.w-showcase-text h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
.w-showcase-text h3 em { font-style: italic; color: var(--red); }
.w-showcase-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }

.w-feature-list { display: flex; flex-direction: column; gap: 0.75rem; }
.w-feature-row  { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text-muted); }
.w-feature-row::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }

.w-who { padding: 6rem 3rem; background: var(--dark); }

.w-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 3rem;
}

.w-who-item { background: var(--dark-2); padding: 2.5rem 2rem; transition: background 0.3s; }
.w-who-item:hover { background: var(--dark-3); }
.w-who-item.w-sport-who {
    grid-column: 1 / -1;
    background: var(--dark-3);
    border-top: 1px dashed rgba(232,41,74,0.3);
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.w-who-emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.w-who-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.w-who-desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ── ANIMATIONS ── */
@keyframes wFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.w-animate { animation: wFadeUp 0.7s ease-out both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .w-community-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .w-nav { padding: 1rem 1.5rem; }
    .w-nav-links { display: none; }

    .w-hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; background-position: center; }
    .w-hero-right { display: none; }

    .w-stats-bar { grid-template-columns: repeat(2, 1fr); padding: 2rem 1.5rem; }
    .w-pillars { padding: 4rem 1.5rem; }
    .w-pillar-grid { grid-template-columns: repeat(2, 1fr); }
    .w-pillar-item.w-sport { grid-template-columns: auto 1fr; }

    .w-how { padding: 4rem 1.5rem; }
    .w-how-grid { grid-template-columns: 1fr; gap: 2rem; }

    .w-creator-strip { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
    .w-final-cta { padding: 5rem 1.5rem; }

    .w-page-header { padding: 7rem 1.5rem 3rem; }
    .w-story { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem 4rem; }
    .w-story-sticky { position: static; }
    .w-values { padding: 4rem 1.5rem; }
    .w-values-grid { grid-template-columns: 1fr; }
    .w-community { padding: 4rem 1.5rem; }
    .w-community-grid { grid-template-columns: repeat(2, 1fr); }

    .w-creator-hero { padding: 7rem 1.5rem 3rem; }
    .w-problem { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }
    .w-benefits { padding: 4rem 1.5rem; }
    .w-benefits-grid { grid-template-columns: 1fr; }
    .w-showcase { padding: 4rem 1.5rem; }
    .w-showcase-grid { grid-template-columns: 1fr; }
    .w-who { padding: 4rem 1.5rem; }
    .w-who-grid { grid-template-columns: 1fr; }

    .w-contact-grid { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem 5rem; }
    .w-contact-options { position: static; }
    .w-form-row { grid-template-columns: 1fr; }
    .w-faq { padding: 4rem 1.5rem; }
    .w-faq-grid { grid-template-columns: 1fr; }

    .w-footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
    .w-footer-links { justify-content: center; }
}
