/**
 * Premium Design System
 * Awwwards-level craftsmanship
 * Zero libraries, pure artistry
 */

/* ============================================
   1. ORGANIC TEXTURE & DEPTH
   ============================================ */

/* Premium Grain Texture */
.grain-texture {
    position: relative;
}

.grain-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

/* Organic Floating Glows - Theme Aware */
.organic-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-1) 0%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
    animation: float-glow 20s ease-in-out infinite;
    will-change: transform;
}

.organic-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--glow-2) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: float-glow 15s ease-in-out infinite reverse;
    will-change: transform;
}

.organic-glow-3 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--glow-3) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
    animation: float-glow 18s ease-in-out infinite;
    animation-delay: 3s;
    will-change: transform;
}

@keyframes float-glow {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg); 
    }
    33% { 
        transform: translate(30px, -30px) scale(1.1) rotate(5deg); 
    }
    66% { 
        transform: translate(-20px, 20px) scale(0.9) rotate(-5deg); 
    }
}

/* Premium Layered Shadows */
.premium-shadow {
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.02),
        0 4px 8px rgba(0, 0, 0, 0.03),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 16px 32px rgba(0, 0, 0, 0.05);
}

.premium-shadow-sm {
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.01),
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 4px 8px rgba(0, 0, 0, 0.03);
}

.premium-shadow-lg {
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.03),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 16px 32px rgba(0, 0, 0, 0.06),
        0 32px 64px rgba(0, 0, 0, 0.08);
}

.premium-shadow-hover {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-shadow-hover:hover {
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.03),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 16px 32px rgba(0, 0, 0, 0.06),
        0 32px 64px rgba(var(--primary-rgb), 0.12);
    transform: translateY(-4px);
}

/* Frosted Glass Effect */
.frosted-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.frosted-glass-light {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   2. FLUID TYPOGRAPHY & WHITESPACE
   ============================================ */

/* Fluid Heading Scales */
.fluid-heading-xl {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.fluid-heading-lg {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.fluid-heading-md {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.fluid-heading-sm {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Fluid Body Text */
.fluid-text-lg {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.fluid-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.fluid-text-sm {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    line-height: 1.6;
    letter-spacing: 0.015em;
}

/* Breathing Space Utilities */
.breathing-space-sm {
    padding: clamp(1rem, 2vw, 1.5rem);
}

.breathing-space {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.breathing-space-lg {
    padding: clamp(2rem, 4vw, 4rem);
}

/* ============================================
   3. PREMIUM MICRO-INTERACTIONS
   ============================================ */

/* Animated Underline */
.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-50%);
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animated-underline:hover::after {
    width: 100%;
}

/* Animated Underline (Left to Right) */
.animated-underline-ltr {
    position: relative;
    display: inline-block;
}

.animated-underline-ltr::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animated-underline-ltr:hover::after {
    width: 100%;
}

/* Premium Button */
.premium-button {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-button:hover::before {
    opacity: 1;
}

.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.3);
}

.premium-button:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Magnetic Button Effect */
.magnetic-button {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Icon Pulse Animation */
@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.icon-container:hover .icon-pulse {
    animation: icon-pulse 1s ease-in-out infinite;
}

/* Smooth Scale on Hover */
.hover-scale {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* Smooth Lift on Hover */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-6px);
}

/* ============================================
   4. SCROLL REVEAL & FLOW
   ============================================ */

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal from Left */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal from Right */
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal Scale */
.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Delay */
.reveal:nth-child(1), .reveal-left:nth-child(1), .reveal-right:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2), .reveal-left:nth-child(2), .reveal-right:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3), .reveal-left:nth-child(3), .reveal-right:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4), .reveal-left:nth-child(4), .reveal-right:nth-child(4) { transition-delay: 0.4s; }
.reveal:nth-child(5), .reveal-left:nth-child(5), .reveal-right:nth-child(5) { transition-delay: 0.5s; }
.reveal:nth-child(6), .reveal-left:nth-child(6), .reveal-right:nth-child(6) { transition-delay: 0.6s; }
.reveal:nth-child(7), .reveal-left:nth-child(7), .reveal-right:nth-child(7) { transition-delay: 0.7s; }
.reveal:nth-child(8), .reveal-left:nth-child(8), .reveal-right:nth-child(8) { transition-delay: 0.8s; }

/* Asymmetric Section Breaks */
.asymmetric-break-top {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

.asymmetric-break-bottom {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.asymmetric-break-both {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

/* Diagonal Section Break */
.diagonal-break {
    clip-path: polygon(0 0, 100% 0, 100% 98%, 0 100%);
}

/* ============================================
   5. PREMIUM CARD STYLES
   ============================================ */

.premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 16px 32px rgba(0, 0, 0, 0.06),
        0 32px 64px rgba(var(--primary-rgb), 0.1);
    border-color: rgba(var(--primary-rgb), 0.2);
}

/* ============================================
   6. UTILITY CLASSES
   ============================================ */

/* Smooth Transitions */
.transition-smooth {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.transition-smooth-slow {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.transition-smooth-fast {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Gradient Text - Theme Aware */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtle Border Glow - Theme Aware */
.border-glow {
    position: relative;
}

.border-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(var(--primary-rgb), 0);
    transition: border-color 0.5s ease;
    pointer-events: none;
}

.border-glow:hover::after {
    border-color: rgba(var(--primary-rgb), 0.3);
}


/* ============================================
   7. ENHANCED ELEGANCE & REFINEMENT
   ============================================ */

/* Soft Glow on Hover - More Subtle */
.soft-glow-hover {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.soft-glow-hover:hover {
    box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.15);
    filter: brightness(1.02);
}

/* Elegant Border Gradient */
.elegant-border {
    position: relative;
    border: 1px solid transparent;
    background: linear-gradient(var(--surface), var(--surface)) padding-box,
                linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05)) border-box;
    border-radius: 24px;
}

/* Refined Glass Card */
.refined-glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Smooth Image Reveal */
.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal img {
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s ease;
    filter: brightness(0.95) saturate(0.9);
}

.image-reveal:hover img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.05);
}

/* Elegant Overlay Gradient */
.elegant-overlay {
    position: relative;
}

.elegant-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.03) 0%,
        transparent 50%,
        rgba(var(--primary-rgb), 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.elegant-overlay:hover::after {
    opacity: 1;
}

/* Refined Typography */
.refined-heading {
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.refined-body {
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle Shimmer Effect */
@keyframes subtle-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.subtle-shimmer {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(var(--primary-rgb), 0.03) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: subtle-shimmer 8s ease-in-out infinite;
}

/* Elegant Divider */
.elegant-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--outline-variant) 20%,
        var(--outline) 50%,
        var(--outline-variant) 80%,
        transparent 100%
    );
    border: none;
}

/* Refined Shadow Layers */
.refined-shadow {
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.015),
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 4px 8px rgba(0, 0, 0, 0.025),
        0 8px 16px rgba(0, 0, 0, 0.03),
        0 16px 32px rgba(0, 0, 0, 0.035);
}

.refined-shadow-hover {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.refined-shadow-hover:hover {
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 4px 8px rgba(0, 0, 0, 0.03),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 16px 32px rgba(0, 0, 0, 0.05),
        0 32px 64px rgba(var(--primary-rgb), 0.08);
    transform: translateY(-3px);
}

/* Elegant Fade In */
@keyframes elegant-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elegant-fade-in {
    animation: elegant-fade-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Soft Pulse */
@keyframes soft-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.soft-pulse {
    animation: soft-pulse 3s ease-in-out infinite;
}

/* Refined Border Radius */
.refined-radius {
    border-radius: 20px;
}

.refined-radius-lg {
    border-radius: 28px;
}

.refined-radius-xl {
    border-radius: 36px;
}

/* Elegant Spacing */
.elegant-spacing {
    padding: clamp(2rem, 5vw, 4rem);
}

.elegant-spacing-sm {
    padding: clamp(1rem, 3vw, 2rem);
}

.elegant-spacing-lg {
    padding: clamp(3rem, 7vw, 6rem);
}

/* Smooth Backdrop Blur */
.smooth-blur {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.smooth-blur-light {
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.smooth-blur-heavy {
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
}

/* Elegant Gradient Background */
.elegant-gradient-bg {
    background: linear-gradient(
        135deg,
        var(--surface-container-highest) 0%,
        var(--surface) 50%,
        var(--surface-container-high) 100%
    );
}

/* Refined Text Shadow */
.refined-text-shadow {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.refined-text-shadow-light {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* Elegant Icon Container */
.elegant-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--primary-rgb), 0.04));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.elegant-icon:hover {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--primary-rgb), 0.08));
    transform: translateY(-2px) scale(1.05);
}

/* Refined Link Hover */
.refined-link {
    position: relative;
    transition: color 0.3s ease;
}

.refined-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.refined-link:hover::after {
    width: 100%;
}

/* Elegant Badge */
.elegant-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
}

/* Smooth Transition All */
.smooth-all {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   GOOGLE TYPOGRAPHY SYSTEM
   Plus Jakarta Sans (başlık/UI) + Roboto (gövde)
   ============================================ */

/* Heading font — Plus Jakarta Sans, modern geometric */
.font-display,
h1.display, h2.display, h3.display {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
}

/* UI font — Plus Jakarta Sans */
.font-ui,
.font-dm-sans {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Body font — Roboto */
.font-inter {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ---- Page Hero Components ---- */

/* Eyebrow / label above hero titles */
.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

.page-hero-label .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

/* Main hero title — Plus Jakarta Sans */
.page-hero-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: #202124;
    margin: 0 0 20px 0;
}

/* Accent/italic version of title */
.page-hero-title em,
.page-hero-title .accent {
    font-style: italic;
    color: var(--primary);
}

/* Subtitle / description text */
.page-hero-subtitle {
    font-family: 'Roboto', -apple-system, sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    font-weight: 400;
    line-height: 1.75;
    color: #5f6368;
    max-width: 500px;
}

/* Section headings (h2, h3) — Plus Jakarta Sans */
.section-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #202124;
}

/* ---- CTA Buttons (Google Material style) ---- */
.btn-pill-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.25), 0 1px 3px rgba(var(--primary-rgb), 0.15);
}

.btn-pill-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.35);
}

.btn-pill-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #3c4043;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 13px 24px;
    border-radius: 8px;
    border: 1.5px solid rgba(60, 64, 67, 0.22);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-pill-ghost:hover {
    border-color: rgba(var(--primary-rgb), 0.45);
    color: var(--primary);
}

/* ---- Stat numbers — Plus Jakarta Sans ---- */
.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #80868b;
    margin-top: 4px;
    display: block;
}
