/**
 * HoneyRuns v2 — Refined Design System
 * Apple-esque elegance. Additive on top of main.css.
 * Linked after styles/main.css in indexv2.html only.
 */

/* ============================================================================
   TYPOGRAPHY OVERRIDES — lighter weights, tighter tracking
   ============================================================================ */

h1 { font-weight: 500 !important; letter-spacing: -0.04em; }
h2 { font-weight: 500 !important; letter-spacing: -0.03em; }
h3 { font-weight: 500 !important; letter-spacing: -0.025em; }
h4, h5 { font-weight: 500 !important; }


/* ============================================================================
   SCROLL REVEAL SYSTEM
   ============================================================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* ============================================================================
   SECTION CATEGORY LABELS
   ============================================================================ */

.section-label {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    margin-bottom: 1rem;
    display: block;
}


/* ============================================================================
   HERO DASHBOARD — fade in on load
   ============================================================================ */

#runsDashboard {
    animation: slideUp 0.8s ease-out 0.3s both;
}


/* ============================================================================
   NAVIGATION REFINEMENTS
   ============================================================================ */

.v2-nav {
    border-bottom-color: rgba(0, 0, 0, 0.06) !important;
}


/* ============================================================================
   BUTTON REFINEMENTS — remove heavy shadows
   ============================================================================ */

.v2-btn-primary {
    box-shadow: none !important;
    transition: opacity 0.2s ease, transform 0.15s ease !important;
}

.v2-btn-primary:hover {
    box-shadow: none !important;
    opacity: 0.88;
    transform: translateY(-1px);
}

.v2-btn-ghost {
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.6);
    background: transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.v2-btn-ghost:hover {
    border-color: rgba(0, 0, 0, 0.35);
    color: rgba(0, 0, 0, 0.85);
}


/* ============================================================================
   STAT NUMBERS — lighter weight, tighter tracking
   ============================================================================ */

.v2-stat {
    font-weight: 500 !important;
    letter-spacing: -0.03em;
}


/* ============================================================================
   FAQ REFINEMENTS — minimal dividers
   ============================================================================ */

.v2-faq-wrapper {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.v2-faq-wrapper details {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* Remove the heavy divide-hive-100 override */
.v2-faq-wrapper.divide-y > :not([hidden]) ~ :not([hidden]) {
    border-top-color: rgba(0, 0, 0, 0.06) !important;
}


/* ============================================================================
   SECTION SPACING
   ============================================================================ */

.v2-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 1024px) {
    .v2-section {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
}

.v2-section-md {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 1024px) {
    .v2-section-md {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}


/* ============================================================================
   HERO SUBTITLE — lighter color
   ============================================================================ */

.v2-hero-subtitle {
    color: rgba(0, 0, 0, 0.75) !important;
    font-weight: 400 !important;
}


/* ============================================================================
   PARTNER LOGOS — subtle, staggered reveal
   ============================================================================ */

.v2-partner-logo {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.v2-partner-logo:hover {
    opacity: 0.85;
}


/* ============================================================================
   CTA SECTION — cleaner dark
   ============================================================================ */

.v2-cta-section {
    background: #1A1A1A !important;
}
