/**
 * Page Sections — Stats, Steps, Why, App, DJ CTA, About, Events, Mission
 * @copyright     cliqable.com
 * @project       DJCliq
 * @version       0.1.1
 * @author        Strange Shapes Studio
 * @author_url    https://www.strangeshapesstudio.com
 * @developer     Strange Shapes Studio
 * @developer_url info@strangeshapes.com
 * @file          css/sections.css
 */

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
    background: var(--dark-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}
.stats-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange);
    line-height: 1;
    -webkit-text-fill-color: var(--orange);
}
.stat-label {
    font-family: var(--font-cond);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey-3);
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* ── How It Works / Steps ────────────────────────────────── */
.how-it-works { background: var(--black); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.step-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    opacity: 0;
    transition: opacity var(--transition);
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(216,91,0,0.3);
    box-shadow: var(--glow-orange);
}
.step-card:hover::before { opacity: 1; }
.step-num {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 1rem; right: 1.5rem;
    user-select: none;
}
.step-icon {
    width: 56px; height: 56px;
    background: rgba(216,91,0,0.12);
    border: 1px solid rgba(216,91,0,0.25);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--orange);
}
.step-icon svg { width: 28px; height: 28px; }
.step-card h3  { margin-bottom: 0.75rem; color: var(--white); }
.step-card p   { color: var(--grey-2); line-height: 1.65; }

/* ── Why DJCliq ──────────────────────────────────────────── */
.why-cliq { background: var(--black); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.why-text h2   { margin-bottom: 1.25rem; }
.why-text p    { color: var(--grey-2); margin-bottom: 1.5rem; line-height: 1.75; }
.why-list      { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.why-list li   {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}
.why-list li svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.video-placeholder-card {
    aspect-ratio: 16/10;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
}
.vp-badge {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(216,91,0,0.1);
    border: 1px solid rgba(216,91,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}
.vp-badge svg { width: 36px; height: 36px; }
.vp-label {
    color: var(--grey-3);
    font-family: var(--font-cond);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
}
.vp-label em { color: var(--grey-3); font-style: italic; opacity: 0.7; }

/* ── App Teaser ──────────────────────────────────────────── */
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.app-mockups   { position: relative; height: 460px; }
.phone-mockup  {
    position: absolute;
    width: 220px;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
}
.phone-mockup-back  { top: 0; left: 0; transform: rotate(-6deg); opacity: 0.6; }
.phone-mockup-front {
    top: 40px; left: 60px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7), var(--glow-orange);
    border-color: rgba(216,91,0,0.3);
}
.phone-screen {
    aspect-ratio: 9/19;
    background: var(--charcoal);
    border-radius: 22px;
    overflow: hidden;
}
.app-screen-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--grey-3);
    font-family: var(--font-cond);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.app-screen-placeholder svg { width: 32px; height: 32px; opacity: 0.3; }
.app-text h2       { margin-bottom: 1.25rem; }
.app-text > p      { color: var(--grey-2); margin-bottom: 1.5rem; line-height: 1.75; }
.app-features      { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.app-features li   {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}
.app-features li::before { content: '▸'; color: var(--orange); flex-shrink: 0; }
.app-store-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── DJ CTA ──────────────────────────────────────────────── */
.dj-cta { background: var(--black); }
.dj-cta-inner {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 2rem;
    overflow: hidden;
}
.dj-cta-glow {
    position: absolute;
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(216,91,0,0.2), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.dj-cta-inner h2    { margin-bottom: 1.25rem; }
.dj-cta-inner > p   { color: var(--grey-2); margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.75; }
.dj-cta-perks       {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.perk {
    font-family: var(--font-cond);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(253,169,0,0.25);
    color: var(--gold);
    background: rgba(253,169,0,0.06);
}

/* ── About Page ──────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-photo-placeholder {
    aspect-ratio: 4/3;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--grey-3);
    text-align: center;
    padding: 2rem;
    font-family: var(--font-cond);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
.about-photo-placeholder svg { width: 56px; height: 56px; opacity: 0.3; }
.about-text h2   { margin-bottom: 1rem; }
.about-text p    { color: var(--grey-2); margin-bottom: 1rem; line-height: 1.75; }
.about-lead      { font-size: 1.1rem; color: rgba(255,255,255,0.75) !important; }
.about-vetting   {
    margin: 1.5rem 0 2rem;
    padding: 1.5rem;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    border-radius: var(--radius);
}
.about-vetting h3  { font-size: 1.1rem; margin-bottom: 0.75rem; }
.vetting-list      { display: flex; flex-direction: column; gap: 0.4rem; }
.vetting-list li   { color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 0.6rem; }
.vetting-check     { color: var(--orange); font-weight: bold; }

/* ── Mission quote ───────────────────────────────────────── */
.mission       { background: var(--dark-2); }
.mission-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-mark    { width: 48px; height: 36px; color: var(--orange); opacity: 0.4; margin: 0 auto 1.5rem; }
blockquote     {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.25;
    margin-bottom: 1rem;
}
cite {
    color: var(--grey-3);
    font-style: normal;
    font-family: var(--font-cond);
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

/* ── Events grid ─────────────────────────────────────────── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}
.event-tile {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
    cursor: default;
}
.event-tile:hover { border-color: rgba(216,91,0,0.35); transform: translateY(-3px); }
.event-icon  { font-size: 2rem; }
.event-name  {
    font-family: var(--font-cond);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--grey-2);
}
