@import url('/public/css/xplug-responsive.css');

/**
 * Xplug Thesis Page Styles
 * a16z research memo style - premium essay UI
 */

.xplug-thesis-container {
    max-width: 840px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 100vh;
}

.xplug-thesis-header {
    margin-bottom: 5rem;
    text-align: center;
}

.xplug-thesis-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.98);
}

.xplug-thesis-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin-bottom: 2rem;
}

.xplug-thesis-intro {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4rem;
}

.xplug-thesis-section {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.xplug-thesis-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.xplug-thesis-section-heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.015em;
}

.xplug-thesis-section-body {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

.xplug-thesis-section-body p {
    margin-bottom: 1.5rem;
}

.xplug-thesis-callout {
    border-left: 3px solid rgba(34, 197, 94, 0.6);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.xplug-thesis-cta-container {
    text-align: center;
    margin-top: 6rem;
    margin-bottom: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.xplug-thesis-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.xplug-thesis-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.xplug-thesis-cta:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.2);
    transform: translateY(-1px);
}

.xplug-thesis-cta:hover::before {
    opacity: 1;
}

.xplug-thesis-cta:focus {
    outline: 2px solid rgba(255, 255, 255, 0.4);
    outline-offset: 2px;
}

.xplug-thesis-cta > * {
    position: relative;
    z-index: 1;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .xplug-thesis-section {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

