/* ==============================================================================
   LaunchAmp - Stylesheet (assets/css/style.css)
   LaunchAmp's own design system. Deliberately distinct from Product Hunt's
   branding (colours and badge shape were changed away from theirs). Inter is
   self-hosted below — no third-party font requests, no visitor IPs sent abroad.
   ============================================================================== */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/inter-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/inter-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/inter-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/inter-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/assets/fonts/inter-800.woff2') format('woff2');
}

:root {
    --ph-orange: #3B6E64;
    --ph-orange-hover: #2F584F;
    --ph-dark: #21293C;
    --ph-text-muted: #4B587C;
    --ph-bg-light: #FAF9F8;
    --ph-border: #E8E8E8;
    --ph-card-bg: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ph-dark);
    background-color: var(--ph-bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Authentic Product Hunt Card */
.ph-card {
    background: var(--ph-card-bg);
    border: 1px solid var(--ph-border);
    border-radius: 12px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ph-card:hover {
    border-color: #D4D4D4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* LaunchAmp Upvote Badge — rounded pill, not PH's triangle-box */
.ph-upvote-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 54px;
    height: 36px;
    background: #FFFFFF;
    border: 1px solid var(--ph-border);
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 700;
    font-size: 13px;
    color: var(--ph-dark);
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.ph-upvote-box:hover {
    border-color: var(--ph-orange);
    color: var(--ph-orange);
}

.ph-upvote-box.active {
    background: var(--ph-orange);
    border-color: var(--ph-orange);
    color: #FFFFFF;
}

/* Solid Clean Typography - NO AI GRADIENTS */
h1, h2, h3, h4, h5, h6 {
    color: var(--ph-dark);
    letter-spacing: -0.02em;
}

/* Watermark Pattern */
.watermark-pattern {
    background-image: repeating-linear-gradient(-45deg, rgba(59, 110, 100, 0.08), rgba(59, 110, 100, 0.08) 15px, transparent 15px, transparent 30px);
}
