/* CSS Variables - Your Color Palette */
:root {
    --oxford-blue: #0a1128;
    --penn-blue: #001f54;
    --indigo-dye: #034078;
    --cerulean: #1282a2;
    --white: #fefcfb;
    --accent-orange: #ff6b35;
    --accent-red: #e63946;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global scrollbar styling - cerulean theme */
*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    background: rgba(18, 130, 162, 0.1);
    border-radius: 2px;
}

*::-webkit-scrollbar-thumb {
    background: rgba(18, 130, 162, 0.3);
    border-radius: 2px;
}

*::-webkit-scrollbar-thumb:hover {
    background: rgba(18, 130, 162, 0.5);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(18, 130, 162, 0.3) rgba(18, 130, 162, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--white);
    background-color: var(--oxford-blue);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(18, 130, 162, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.logo-icon {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin: -2px 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--cerulean);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-cta, .btn-secondary-large, .btn-cta-large {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #ff7d4d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(254, 252, 251, 0.2);
}

.btn-secondary:hover {
    background: rgba(254, 252, 251, 0.1);
    border-color: var(--white);
}

.btn-cta {
    background: var(--accent-orange);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta:hover {
    background: #ff7d4d;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.btn-cta-large {
    background: var(--accent-orange);
    color: var(--white);
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 12px;
}

.btn-cta-large:hover {
    background: #ff7d4d;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.5);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-secondary-large {
    background: rgba(254, 252, 251, 0.1);
    color: var(--white);
    border: 2px solid rgba(254, 252, 251, 0.3);
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-secondary-large:hover {
    background: rgba(254, 252, 251, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--oxford-blue) 0%, var(--penn-blue) 50%, var(--indigo-dye) 100%);
    padding: 6rem 2rem 3rem;
    overflow: hidden;
}

/* Hero Background Image */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://res.cloudinary.com/dzmsj6nwv/image/upload/v1762928223/Mines_Field_twmlae.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.85) 0%, rgba(0, 31, 84, 0.75) 50%, rgba(3, 64, 120, 0.85) 100%);
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(18,130,162,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(3, 64, 120, 0.5);
    border: 1px solid rgba(18, 130, 162, 0.5);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    animation: slideDown 1s ease-out 0.2s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title-accent {
    color: var(--accent-orange);
    display: block;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: rgba(254, 252, 251, 0.85);
    max-width: 800px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.highlight {
    color: var(--accent-orange);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Scroll indicator - hidden on desktop, shown on mobile */
.scroll-indicator {
    display: none;
}

/* Stats Section */
.stats-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(18, 130, 162, 0.2);
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(254, 252, 251, 0.7);
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--indigo-dye) 0%, var(--penn-blue) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    color: rgba(254, 252, 251, 0.7);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(254, 252, 251, 0.05);
    border: 1px solid rgba(18, 130, 162, 0.2);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(254, 252, 251, 0.08);
    border-color: var(--cerulean);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    color: rgba(254, 252, 251, 0.75);
    line-height: 1.6;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--penn-blue) 0%, var(--oxford-blue) 100%);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(254, 252, 251, 0.05);
    border: 1px solid rgba(18, 130, 162, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    background: rgba(254, 252, 251, 0.08);
    border-color: var(--cerulean);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.step-icon {
    font-size: 3.5rem;
    margin: 1rem 0 1.5rem;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.step-card p {
    color: rgba(254, 252, 251, 0.75);
    line-height: 1.6;
    font-size: 1rem;
}

.step-arrow {
    font-size: 2.5rem;
    color: var(--cerulean);
    font-weight: 300;
    flex-shrink: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--indigo-dye) 0%, var(--cerulean) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(254,252,251,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.final-cta-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(254, 252, 251, 0.85);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Audience Cards */
.audience-grid {
    grid-template-columns: repeat(3, 1fr);
}

.audience-card {
    display: flex;
    flex-direction: column;
}

.audience-card .feature-icon {
    color: var(--cerulean);
    margin-bottom: 1rem;
}

.audience-card .feature-icon svg {
    stroke: var(--cerulean);
}

.audience-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.audience-benefits li {
    color: rgba(254, 252, 251, 0.75);
    line-height: 1.5;
    font-size: 0.95rem;
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.audience-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cerulean);
}

.audience-cta {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.audience-cta:hover {
    color: #ff7d4d;
    transform: translateX(4px);
    display: inline-block;
}

/* Differentiators Section */
.differentiators-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--penn-blue) 0%, var(--indigo-dye) 100%);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.differentiator-card {
    background: rgba(254, 252, 251, 0.05);
    border: 1px solid rgba(18, 130, 162, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.differentiator-card:hover {
    border-color: var(--cerulean);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.differentiator-image-placeholder {
    background: rgba(3, 64, 120, 0.3);
    border-bottom: 1px solid rgba(18, 130, 162, 0.15);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.placeholder-label {
    color: rgba(254, 252, 251, 0.4);
    font-size: 0.9rem;
    font-weight: 500;
    font-style: italic;
}

.differentiator-text {
    padding: 1.75rem 2rem;
}

.differentiator-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.differentiator-text p {
    color: rgba(254, 252, 251, 0.75);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Not Social Media Section */
.why-not-social-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--oxford-blue) 0%, var(--penn-blue) 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    background: rgba(254, 252, 251, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
}

.comparison-column h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-media-col {
    border: 1px solid rgba(230, 57, 70, 0.3);
}

.social-media-col h3 {
    color: rgba(254, 252, 251, 0.6);
}

.direct-recruit-col {
    border: 1px solid rgba(18, 130, 162, 0.4);
}

.direct-recruit-col h3 {
    color: var(--cerulean);
}

.comparison-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-column li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(254, 252, 251, 0.8);
    border-bottom: 1px solid rgba(254, 252, 251, 0.05);
}

.comparison-column li:last-child {
    border-bottom: none;
}

.comparison-column li.con::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 700;
}

.comparison-column li.pro::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

/* Step icon SVG sizing */
.step-icon svg {
    stroke: var(--cerulean);
}

/* ========================================
   MOCKUP UI COMPONENTS
   ======================================== */

.mockup-container {
    background: rgba(10, 17, 40, 0.6);
    border-bottom: 1px solid rgba(18, 130, 162, 0.15);
    padding: 1.25rem;
    overflow: hidden;
    font-size: 0.75rem;
}

.mockup-container-about {
    border-bottom: none;
    border-radius: 12px;
    border: 1px solid rgba(18, 130, 162, 0.2);
}

/* --- Feed Mockup --- */
.mockup-feed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-post {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(18, 130, 162, 0.2);
    border-radius: 10px;
    padding: 0.75rem;
}

.mockup-post-header {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.mockup-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(18, 130, 162, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cerulean);
}

.mockup-avatar-coach {
    background: rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
}

.mockup-avatar-coach svg {
    stroke: var(--accent-orange);
}

.mockup-user-info {
    min-width: 0;
}

.mockup-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.8rem;
}

.mockup-handle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    margin-left: 0.35rem;
}

.mockup-meta {
    font-size: 0.65rem;
    font-weight: 700;
    margin-top: 0.1rem;
}

.mockup-meta-player {
    color: var(--cerulean);
}

.mockup-meta-coach {
    color: var(--accent-orange);
}

.mockup-post-content {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    line-height: 1.45;
    margin-bottom: 0.5rem;
    padding-left: 2.5rem;
}

.mockup-post-stats {
    display: flex;
    gap: 0.75rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    padding-left: 2.5rem;
}

.mockup-post-actions {
    display: flex;
    gap: 0.25rem;
    padding-top: 0.4rem;
    padding-left: 2.5rem;
}

.mockup-action {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.mockup-liked {
    color: #e74c3c;
}

.mockup-saved {
    color: var(--cerulean);
}

/* --- Transfer Portal / Filter Mockup --- */
.mockup-portal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-search-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(18, 130, 162, 0.25);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

.mockup-search-bar svg {
    stroke: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.mockup-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.mockup-filter-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(18, 130, 162, 0.25);
    border-radius: 6px;
    padding: 0.35rem 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
}

.mockup-filter-arrow {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
}

.mockup-filter-reset {
    border-color: rgba(230, 57, 70, 0.3);
    color: var(--accent-red);
}

.mockup-player-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-player-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(18, 130, 162, 0.2);
    border-radius: 10px;
    padding: 0.6rem;
}

.mockup-player-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(18, 130, 162, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cerulean);
}

.mockup-player-info {
    flex: 1;
    min-width: 0;
}

.mockup-player-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.8rem;
}

.mockup-position-badge {
    display: inline-block;
    background: var(--cerulean);
    color: var(--white);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    margin: 0.2rem 0;
}

.mockup-player-stats-row {
    display: flex;
    gap: 0.5rem;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.mockup-player-school {
    font-size: 0.65rem;
    color: var(--cerulean);
    font-weight: 600;
}

.mockup-transfer-school {
    color: #b91c1c;
}

.mockup-transfer-badge {
    background: rgba(185, 28, 28, 0.2);
    color: #ef4444;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 1px solid rgba(185, 28, 28, 0.3);
}

/* --- Recruiting Board Mockup --- */
.mockup-board {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mockup-board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-board-toggle {
    display: flex;
    gap: 0.25rem;
    background: rgba(18, 130, 162, 0.1);
    padding: 0.2rem;
    border-radius: 50px;
    border: 1px solid rgba(18, 130, 162, 0.25);
}

.mockup-toggle-btn {
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.mockup-toggle-active {
    background: var(--accent-orange);
    color: var(--white);
}

.mockup-class-select {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(18, 130, 162, 0.25);
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
}

.mockup-board-columns {
    display: flex;
    gap: 0.5rem;
}

.mockup-board-col {
    flex: 1;
    min-width: 0;
}

.mockup-col-header {
    background: var(--cerulean);
    color: var(--white);
    text-align: center;
    padding: 0.35rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
}

.mockup-col-list {
    background: rgba(11, 37, 69, 0.3);
    border: 1px dashed rgba(18, 130, 162, 0.25);
    border-radius: 6px;
    padding: 0.35rem;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mockup-recruit {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    background: rgba(18, 130, 162, 0.12);
    border: 1px solid rgba(18, 130, 162, 0.25);
    border-radius: 6px;
    padding: 0.4rem;
}

.mockup-rank {
    background: var(--accent-orange);
    color: var(--white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.6rem;
    flex-shrink: 0;
}

.mockup-recruit-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.7rem;
    line-height: 1.2;
}

.mockup-recruit-detail {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
}

.mockup-recruit-school {
    font-size: 0.55rem;
    color: var(--cerulean);
    font-weight: 600;
}

/* --- Messaging Mockup --- */
.mockup-messages {
    display: flex;
    gap: 0;
    height: 220px;
}

.mockup-msg-sidebar {
    width: 45%;
    border-right: 1px solid rgba(18, 130, 162, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.mockup-msg-conversation {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(18, 130, 162, 0.1);
}

.mockup-msg-active {
    background: rgba(18, 130, 162, 0.12);
    border-left: 2px solid var(--cerulean);
}

.mockup-msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(18, 130, 162, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cerulean);
    position: relative;
}

.mockup-online-dot {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    border: 1.5px solid rgba(10, 17, 40, 0.9);
}

.mockup-msg-preview {
    flex: 1;
    min-width: 0;
}

.mockup-msg-conv-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-msg-last {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-msg-time {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.mockup-msg-thread {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.6rem;
    gap: 0.4rem;
    overflow: hidden;
}

.mockup-msg-thread-full {
    width: 100%;
}

.mockup-bubble {
    padding: 0.45rem 0.65rem;
    border-radius: 12px;
    font-size: 0.7rem;
    line-height: 1.4;
    max-width: 80%;
    color: var(--white);
}

.mockup-bubble-received {
    background: rgba(18, 130, 162, 0.15);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.mockup-bubble-sent {
    background: var(--cerulean);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.mockup-msg-input-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 0.4rem;
}

.mockup-msg-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(18, 130, 162, 0.2);
    border-radius: 20px;
    padding: 0.35rem 0.7rem;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
}

.mockup-msg-send {
    width: 24px;
    height: 24px;
    background: var(--cerulean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.mockup-messages-compact {
    height: auto;
}

.mockup-messages-compact .mockup-msg-thread {
    padding: 0.75rem;
}

/* --- Profile Card Mockup (about page) --- */
.mockup-profile-card-large {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-profile-header-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mockup-profile-avatar-lg {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(18, 130, 162, 0.2);
    border: 2px solid rgba(18, 130, 162, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cerulean);
}

.mockup-profile-info-lg {
    min-width: 0;
}

.mockup-profile-name-lg {
    font-weight: 800;
    color: var(--white);
    font-size: 1rem;
}

.mockup-profile-handle-lg {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.mockup-profile-stats-bar {
    display: flex;
    gap: 0.75rem;
    background: rgba(18, 130, 162, 0.1);
    border-radius: 8px;
    padding: 0.6rem;
}

.mockup-profile-stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.mockup-stat-val {
    font-weight: 800;
    color: var(--white);
    font-size: 0.95rem;
}

.mockup-stat-lbl {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-profile-follow-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.mockup-follow-btn {
    margin-left: auto;
    background: var(--cerulean);
    color: var(--white);
    border: none;
    padding: 0.35rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: default;
}

.mockup-profile-tabs {
    display: flex;
    gap: 0.25rem;
    border-top: 1px solid rgba(18, 130, 162, 0.15);
    padding-top: 0.6rem;
}

.mockup-profile-tabs span {
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    border-radius: 6px;
}

.mockup-tab-active {
    background: rgba(18, 130, 162, 0.15);
    color: var(--cerulean) !important;
}

/* --- Transfer Portal Database Mockup (Coach's View) --- */
.mockup-portal-db {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-db-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
}

.mockup-db-filter {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(18, 130, 162, 0.25);
    border-radius: 6px;
    padding: 0.3rem 0.55rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    font-weight: 500;
}

.mockup-db-filter-active {
    border-color: var(--cerulean);
    color: var(--cerulean);
}

.mockup-db-btn-apply {
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
}

.mockup-db-btn-reset {
    background: transparent;
    border: 1px solid var(--cerulean);
    color: var(--cerulean);
    padding: 0.3rem 0.55rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
}

.mockup-db-results-count {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.mockup-portal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.mockup-portal-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.mockup-tp-card {
    background: rgba(220, 38, 38, 0.03);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: 10px;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mockup-tp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-tp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cerulean), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.mockup-tp-avatar-lg {
    width: 52px;
    height: 52px;
}

.mockup-tp-badge {
    background: #dc2626;
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mockup-tp-name {
    font-weight: 800;
    color: var(--white);
    font-size: 0.8rem;
}

.mockup-tp-pos {
    background: #dc2626;
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    display: inline-block;
}

.mockup-tp-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
    background: rgba(11, 37, 69, 0.3);
    border-radius: 6px;
    padding: 0.4rem;
}

.mockup-tp-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.mockup-tp-stat-val {
    font-weight: 800;
    color: var(--white);
    font-size: 0.75rem;
}

.mockup-tp-stat-lbl {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.mockup-tp-gpa-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.4rem;
    background: rgba(11, 37, 69, 0.3);
    border-radius: 4px;
    font-size: 0.7rem;
}

.mockup-tp-gpa-lbl {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.mockup-tp-gpa-val {
    color: var(--white);
    font-weight: 800;
}

.mockup-tp-prev {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    color: #dc2626;
    font-weight: 600;
}

.mockup-tp-prev svg {
    stroke: #dc2626;
    flex-shrink: 0;
}

.mockup-tp-season-stats {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mockup-tp-season-title {
    font-size: 0.55rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mockup-tp-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.mockup-tp-highlights span {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #dc2626;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
}

.mockup-tp-btn {
    background: #dc2626;
    color: var(--white);
    text-align: center;
    padding: 0.4rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.15rem;
}

.mockup-tp-card-sm {
    padding: 0.5rem;
    gap: 0.2rem;
}

.mockup-tp-card-sm .mockup-tp-avatar {
    width: 32px;
    height: 32px;
}

.mockup-tp-card-sm .mockup-tp-name {
    font-size: 0.7rem;
}

.mockup-tp-card-sm .mockup-tp-pos {
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
}

.mockup-tp-card-sm .mockup-tp-stats-grid {
    padding: 0.3rem;
}

.mockup-tp-card-sm .mockup-tp-stat-val {
    font-size: 0.65rem;
}

.mockup-tp-card-sm .mockup-tp-stat-lbl {
    font-size: 0.5rem;
}

.mockup-tp-card-sm .mockup-tp-prev {
    font-size: 0.6rem;
}

.mockup-tp-card-sm .mockup-tp-btn {
    font-size: 0.6rem;
    padding: 0.3rem;
}

/* About page portal layout: grid + detail card side by side */
.mockup-about-portal-wrap {
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.mockup-portal-db-about {
    flex: 1.2;
    min-width: 0;
}

.mockup-tp-card-detail {
    flex: 0.8;
    background: rgba(220, 38, 38, 0.03);
    border: 1px solid rgba(220, 38, 38, 0.35);
    border-radius: 10px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-self: flex-start;
}

/* --- Discover Players Card Mockup --- */
.mockup-discover-card {
    background: rgba(254, 252, 251, 0.03);
    border: 1px solid rgba(18, 130, 162, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
}

.mockup-dc-header {
    margin-bottom: 0.25rem;
}

.mockup-dc-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cerulean), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.mockup-dc-name {
    font-weight: 800;
    color: var(--white);
    font-size: 0.85rem;
}

.mockup-dc-positions {
    margin: 0.1rem 0;
}

.mockup-dc-pos-badge {
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.mockup-dc-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    background: rgba(11, 37, 69, 0.3);
    border-radius: 6px;
    padding: 0.5rem;
    width: 100%;
}

.mockup-dc-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.mockup-dc-stat-lbl {
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mockup-dc-stat-val {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
}

.mockup-dc-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.25rem;
}

.mockup-dc-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.mockup-dc-detail svg {
    stroke: var(--cerulean);
    flex-shrink: 0;
}

.mockup-dc-offers {
    color: var(--accent-orange);
}

.mockup-dc-offers svg {
    stroke: var(--accent-orange);
}

.mockup-dc-btn {
    background: var(--cerulean);
    color: var(--white);
    width: 100%;
    text-align: center;
    padding: 0.45rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

/* --- Discover Page Full Mockup (Filters + Grid) --- */
.mockup-discover-page {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-discover-filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-discover-filter-row {
    display: flex;
    gap: 0.4rem;
}

.mockup-discover-select {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(18, 130, 162, 0.25);
    border-radius: 6px;
    padding: 0.35rem 0.5rem;
    position: relative;
}

.mockup-discover-select-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mockup-discover-select-val {
    font-size: 0.7rem;
    color: var(--white);
    font-weight: 600;
}

.mockup-discover-select .mockup-filter-arrow {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
}

.mockup-discover-slider-row {
    display: flex;
    gap: 0.4rem;
}

.mockup-discover-slider {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mockup-discover-slider-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.mockup-discover-slider-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
}

.mockup-discover-slider-fill {
    height: 100%;
    background: var(--cerulean);
    border-radius: 2px;
}

.mockup-discover-slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--cerulean);
    border: 2px solid var(--white);
    border-radius: 50%;
}

.mockup-discover-btn-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mockup-discover-apply {
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
}

.mockup-discover-reset {
    background: transparent;
    border: 1px solid var(--cerulean);
    color: var(--cerulean);
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
}

.mockup-discover-results {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    margin-left: auto;
}

.mockup-discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

/* --- Real Card Mockups (About Page - Matching Discover Page Exactly) --- */
.mockup-real-grid {
    display: grid;
    gap: 0.75rem;
}

.mockup-real-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

.mockup-real-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

/* Player Card - matches .player-card exactly */
.mockup-real-card {
    background: rgba(254, 252, 251, 0.03);
    border: 1px solid rgba(18, 130, 162, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.mockup-real-card:hover {
    background: rgba(254, 252, 251, 0.05);
    border-color: var(--cerulean);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Header: avatar left, badge right */
.mockup-real-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.mockup-real-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(18, 130, 162, 0.2);
    border: 3px solid rgba(18, 130, 162, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cerulean);
}

.mockup-real-avatar svg {
    width: 40px;
    height: 40px;
}

.mockup-real-header-badge {
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.mockup-real-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin: 0.5rem 0 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mockup-real-positions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mockup-real-pos-badge {
    background: var(--cerulean);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mockup-real-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(18, 130, 162, 0.1);
    border-radius: 8px;
}

.mockup-real-stat-item {
    text-align: center;
}

.mockup-real-stat-label {
    font-size: 0.75rem;
    color: rgba(254, 252, 251, 0.6);
    margin-bottom: 0.25rem;
}

.mockup-real-stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}

.mockup-real-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mockup-real-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(254, 252, 251, 0.8);
}

.mockup-real-detail svg {
    width: 16px;
    height: 16px;
    color: var(--cerulean);
    flex-shrink: 0;
}

.mockup-real-offers {
    color: var(--accent-orange) !important;
    font-weight: 600;
}

.mockup-real-offers svg {
    color: var(--accent-orange) !important;
}

.mockup-real-btn {
    width: 100%;
    background: var(--cerulean);
    color: var(--white);
    border: none;
    padding: 0.85rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    cursor: default;
    margin-top: auto;
}

/* Standalone card (not in a grid) - constrain width */
.mockup-container-about > .mockup-real-card {
    max-width: 320px;
    margin: 0 auto;
}

/* Remove dark bg from standalone card wrapper */
.mockup-container-about.mockup-card-bare {
    background: transparent;
    border: none;
    padding: 0;
}

/* Mini card variant for grids */
.mockup-real-card-mini {
    padding: 1rem;
}

.mockup-real-card-mini .mockup-real-avatar {
    width: 60px;
    height: 60px;
}

.mockup-real-card-mini .mockup-real-avatar svg {
    width: 28px;
    height: 28px;
}

.mockup-real-card-mini .mockup-real-name {
    font-size: 1rem;
    margin: 0.25rem 0 0.15rem;
}

.mockup-real-card-mini .mockup-real-card-header {
    margin-bottom: 0.5rem;
}

.mockup-real-card-mini .mockup-real-pos-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
}

.mockup-real-card-mini .mockup-real-positions {
    margin-bottom: 0.5rem;
}

.mockup-real-card-mini .mockup-real-stats {
    gap: 0.5rem;
    padding: 0.6rem;
    margin-bottom: 0.5rem;
}

.mockup-real-card-mini .mockup-real-stat-value {
    font-size: 0.85rem;
}

.mockup-real-card-mini .mockup-real-stat-label {
    font-size: 0.6rem;
}

.mockup-real-card-mini .mockup-real-detail {
    font-size: 0.75rem;
    gap: 0.35rem;
}

.mockup-real-card-mini .mockup-real-detail svg {
    width: 14px;
    height: 14px;
}

.mockup-real-card-mini .mockup-real-details {
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.mockup-real-card-mini .mockup-real-btn {
    font-size: 0.8rem;
    padding: 0.6rem;
}

/* --- Transfer Portal Card --- */
.mockup-real-card-transfer {
    background: rgba(220, 38, 38, 0.03);
    border-color: rgba(220, 38, 38, 0.4);
}

.mockup-real-card-transfer:hover {
    border-color: #dc2626;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

.mockup-real-card-transfer .mockup-real-avatar {
    border-color: rgba(220, 38, 38, 0.4);
    background: rgba(220, 38, 38, 0.15);
    color: #dc2626;
}

.mockup-real-portal-badge {
    background: #dc2626;
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    letter-spacing: 0.5px;
}

.mockup-real-portal-icon {
    width: 16px;
    height: 16px;
    color: #dc2626;
    flex-shrink: 0;
}

.mockup-real-pos-transfer {
    background: #dc2626;
}

.mockup-real-stats-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.mockup-real-card-transfer .mockup-real-stats {
    background: rgba(11, 37, 69, 0.3);
    margin-bottom: 0;
}

.mockup-real-gpa-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(11, 37, 69, 0.3);
    border-radius: 6px;
    font-size: 0.85rem;
}

.mockup-real-gpa-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.mockup-real-gpa-value {
    color: var(--white);
    font-weight: 800;
}

.mockup-real-portal-prev {
    color: #dc2626 !important;
    font-weight: 600 !important;
}

.mockup-real-portal-prev svg {
    color: #dc2626 !important;
}

.mockup-real-stats-section {
    margin-bottom: 0.75rem;
}

.mockup-real-stats-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.35rem;
}

.mockup-real-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mockup-real-highlights span {
    background: rgba(220, 38, 38, 0.15);
    color: #dc2626;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.mockup-real-btn-transfer {
    background: #dc2626;
}

/* Landing page transfer cards - compact sizing for differentiator section */
.mockup-real-card-landing {
    padding: 1rem;
}

.mockup-real-card-landing .mockup-real-avatar {
    width: 50px;
    height: 50px;
}

.mockup-real-card-landing .mockup-real-avatar svg {
    width: 24px;
    height: 24px;
}

.mockup-real-card-landing .mockup-real-card-header {
    margin-bottom: 0.5rem;
}

.mockup-real-card-landing .mockup-real-name {
    font-size: 0.95rem;
    margin: 0.25rem 0 0.15rem;
}

.mockup-real-card-landing .mockup-real-portal-icon {
    width: 12px;
    height: 12px;
}

.mockup-real-card-landing .mockup-real-portal-badge {
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
}

.mockup-real-card-landing .mockup-real-pos-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
}

.mockup-real-card-landing .mockup-real-positions {
    margin-bottom: 0.5rem;
}

.mockup-real-card-landing .mockup-real-stats {
    gap: 0.4rem;
    padding: 0.5rem;
    margin-bottom: 0;
}

.mockup-real-card-landing .mockup-real-stat-value {
    font-size: 0.8rem;
}

.mockup-real-card-landing .mockup-real-stat-label {
    font-size: 0.6rem;
}

.mockup-real-card-landing .mockup-real-gpa-row {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
}

.mockup-real-card-landing .mockup-real-stats-box {
    margin-bottom: 0.5rem;
}

.mockup-real-card-landing .mockup-real-details {
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.mockup-real-card-landing .mockup-real-detail {
    font-size: 0.7rem;
    gap: 0.3rem;
}

.mockup-real-card-landing .mockup-real-detail svg {
    width: 12px;
    height: 12px;
}

.mockup-real-card-landing .mockup-real-stats-section {
    margin-bottom: 0.4rem;
}

.mockup-real-card-landing .mockup-real-stats-title {
    font-size: 0.6rem;
    margin-bottom: 0.2rem;
}

.mockup-real-card-landing .mockup-real-highlights {
    gap: 0.3rem;
}

.mockup-real-card-landing .mockup-real-highlights span {
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
}

.mockup-real-card-landing .mockup-real-btn {
    font-size: 0.75rem;
    padding: 0.5rem;
}

/* --- Coach Card - matches .coach-card exactly --- */
.mockup-real-coach-card {
    background: rgba(254, 252, 251, 0.03);
    border: 1px solid rgba(18, 130, 162, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.mockup-real-coach-card:hover {
    transform: translateY(-4px);
    border-color: var(--cerulean);
    background: rgba(254, 252, 251, 0.05);
    box-shadow: 0 8px 24px rgba(18, 130, 162, 0.2);
}

/* Header: avatar left, badge right */
.mockup-real-coach-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.mockup-real-coach-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    border: 3px solid rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
}

.mockup-real-coach-avatar svg {
    width: 40px;
    height: 40px;
}

.mockup-real-coach-badge {
    background: var(--cerulean);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.mockup-real-coach-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin: 0.5rem 0 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mockup-real-verified {
    width: 18px;
    height: 18px;
    color: var(--cerulean);
    flex-shrink: 0;
}

.mockup-real-coach-position {
    font-size: 0.95rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.mockup-real-coach-school {
    background: rgba(18, 130, 162, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.mockup-real-school-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.mockup-real-school-div {
    font-size: 0.85rem;
    color: rgba(254, 252, 251, 0.7);
}

.mockup-real-coach-recruiting {
    margin-bottom: 1rem;
}

.mockup-real-recruiting-label {
    font-size: 0.85rem;
    color: rgba(254, 252, 251, 0.6);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mockup-real-pos-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mockup-real-pos-tag {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent-orange);
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.mockup-real-btn-coach {
    background: var(--accent-orange);
}

/* Mini coach card for grids */
.mockup-real-coach-card-mini {
    padding: 1rem;
}

.mockup-real-coach-card-mini .mockup-real-coach-avatar {
    width: 60px;
    height: 60px;
}

.mockup-real-coach-card-mini .mockup-real-coach-avatar svg {
    width: 28px;
    height: 28px;
}

.mockup-real-coach-card-mini .mockup-real-coach-header {
    margin-bottom: 0.5rem;
}

.mockup-real-coach-card-mini .mockup-real-coach-name {
    font-size: 1rem;
    margin: 0.25rem 0 0.15rem;
}

.mockup-real-coach-card-mini .mockup-real-coach-position {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.mockup-real-coach-card-mini .mockup-real-coach-school {
    padding: 0.6rem;
    margin-bottom: 0.5rem;
}

.mockup-real-coach-card-mini .mockup-real-school-name {
    font-size: 0.85rem;
}

.mockup-real-coach-card-mini .mockup-real-school-div {
    font-size: 0.75rem;
}

.mockup-real-coach-card-mini .mockup-real-coach-recruiting {
    margin-bottom: 0.5rem;
}

.mockup-real-coach-card-mini .mockup-real-recruiting-label {
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
}

.mockup-real-coach-card-mini .mockup-real-pos-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

.mockup-real-coach-card-mini .mockup-real-btn {
    font-size: 0.8rem;
    padding: 0.6rem;
}

/* Responsive Design */
/* Laptop screens (standard laptops 1366x768 and smaller) */
@media (max-width: 1366px) and (min-width: 769px) {
    .hero {
        min-height: 100vh;
        padding: 5.5rem 2rem 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.45rem 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: clamp(2.25rem, 6vw, 3.75rem);
        margin-bottom: 0.85rem;
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 1.8vw, 1.1rem);
        line-height: 1.55;
        margin-bottom: 1.75rem;
    }
    
    .hero-buttons {
        margin-bottom: 2.5rem;
        gap: 1.25rem;
    }
    
    .btn-cta, .btn-secondary-large {
        padding: 0.95rem 2.25rem;
        font-size: 1rem;
    }
    
    .stats-container {
        gap: 2.5rem;
        padding-top: 1.75rem;
    }
    
    .stat-number {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background: var(--oxford-blue);
    border-top: 1px solid rgba(18, 130, 162, 0.2);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(254, 252, 251, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(254, 252, 251, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--cerulean);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(18, 130, 162, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(254, 252, 251, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-container {
        padding: 0.9rem 1.25rem;
    }

    .logo {
        gap: 0;
    }

    .logo-icon {
        width: 46px;
        height: 46px;
    }

    .logo-title {
        font-size: 1.05rem;
    }

    .logo-subtitle {
        font-size: 0.55rem;
    }

    .nav-buttons {
        gap: 0.4rem;
        flex-shrink: 0;
    }

    .btn-primary, .btn-secondary {
        padding: 0.45rem 0.85rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .hero {
        padding: 5.5rem 1.25rem 2.5rem;
        min-height: 100vh;
        min-height: 100dvh;
        align-items: flex-start;
        padding-top: 18vh;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin: 0 auto 1.5rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .btn-cta, .btn-secondary-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .scroll-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        position: absolute;
        bottom: 1.5rem;
        left: 0;
        right: 0;
        z-index: 3;
        cursor: pointer;
        color: rgba(255, 255, 255, 0.6);
        animation: bounceDown 2s ease-in-out infinite;
    }

    .scroll-indicator-text {
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    @keyframes bounceDown {
        0%, 100% { transform: translateY(0); opacity: 0.6; }
        50% { transform: translateY(8px); opacity: 1; }
    }

    .stats-container {
        gap: 2rem;
    }

    /* Sections padding */
    .features-section,
    .differentiators-section,
    .how-it-works-section,
    .why-not-social-section {
        padding: 4rem 1.25rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.75rem 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-card p,
    .audience-benefits li {
        font-size: 0.9rem;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .differentiator-text {
        padding: 1.25rem 1.5rem;
    }

    .differentiator-text h3 {
        font-size: 1.15rem;
    }

    .differentiator-text p {
        font-size: 0.88rem;
    }

    /* Mockup containers - tighter on mobile */
    .mockup-container {
        padding: 0.85rem;
        font-size: 0.65rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .comparison-column {
        padding: 1.75rem 1.5rem;
    }

    .comparison-column h3 {
        font-size: 1.2rem;
    }

    .comparison-column li {
        font-size: 0.88rem;
        padding: 0.6rem 0;
        padding-left: 1.5rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step-card {
        min-width: unset;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
        font-size: 2rem;
    }

    .final-cta-section {
        padding: 4rem 1.5rem;
    }

    .final-cta-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .final-cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-cta-large {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 1.25rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-column {
        min-width: 120px;
    }

    /* Mockup grids */
    .mockup-portal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .mockup-about-portal-wrap {
        flex-direction: column;
    }

    .mockup-discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mockup-discover-slider-row {
        flex-direction: column;
    }

    .mockup-real-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .mockup-real-grid-2col {
        grid-template-columns: 1fr;
    }

    /* Mockup feed post mobile tweaks */
    .mockup-post {
        padding: 0.6rem;
    }

    .mockup-post-content {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .mockup-post-actions {
        gap: 0.4rem;
    }

    .mockup-action {
        font-size: 0.6rem;
    }

    /* Transfer portal cards - shrink text */
    .mockup-tp-card {
        padding: 0.6rem;
    }

    .mockup-tp-name {
        font-size: 0.72rem;
    }

    .mockup-tp-pos {
        font-size: 0.6rem;
    }

    .mockup-tp-stat-val {
        font-size: 0.7rem;
    }

    .mockup-tp-stat-lbl {
        font-size: 0.5rem;
    }

    .mockup-tp-prev {
        font-size: 0.58rem;
    }

    .mockup-tp-btn {
        font-size: 0.6rem;
        padding: 0.3rem;
    }

    /* Recruiting board mobile */
    .mockup-board-columns {
        gap: 0.5rem;
    }

    .mockup-recruit-name {
        font-size: 0.65rem;
    }

    .mockup-recruit-detail,
    .mockup-recruit-school {
        font-size: 0.55rem;
    }

    /* Messages mockup */
    .mockup-msg-sidebar {
        display: none;
    }

    .mockup-msg-thread {
        width: 100%;
    }

    .mockup-bubble {
        font-size: 0.68rem;
        padding: 0.5rem 0.65rem;
        max-width: 85%;
    }

    /* DB filters row */
    .mockup-db-filters {
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .mockup-db-filter {
        font-size: 0.6rem;
        padding: 0.25rem 0.45rem;
    }

    .mockup-db-btn-apply,
    .mockup-db-btn-reset {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }

    .mockup-db-results-count {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.7rem 0.75rem;
    }

    .logo {
        gap: 0;
    }

    .logo-title {
        font-size: 0.9rem;
    }

    .logo-subtitle {
        font-size: 0.45rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    /* Hide Get Started on small phones, keep Sign In */
    .nav-buttons a:has(.btn-primary),
    .nav-buttons .btn-primary {
        display: none;
    }

    .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.78rem;
    }

    .hero {
        padding-top: 16vh;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 2rem;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.85rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .hero-description {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .btn-cta, .btn-secondary-large {
        padding: 0.85rem 1.75rem;
        font-size: 0.9rem;
    }

    /* Sections tighter */
    .features-section,
    .differentiators-section,
    .how-it-works-section,
    .why-not-social-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
    }

    .section-subtitle {
        font-size: 0.88rem;
        margin-bottom: 2rem;
    }

    .feature-card, .step-card {
        padding: 1.5rem 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .feature-icon, .step-icon {
        font-size: 2.5rem;
    }

    .step-card h3 {
        font-size: 1.1rem;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        top: -12px;
    }

    .comparison-column {
        padding: 1.5rem 1.25rem;
    }

    .comparison-column h3 {
        font-size: 1.1rem;
    }

    .comparison-column li {
        font-size: 0.82rem;
    }

    .final-cta-section {
        padding: 3rem 1rem;
    }

    .final-cta-content h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .final-cta-content p {
        font-size: 0.9rem;
    }

    .btn-cta-large {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 2.5rem 1rem 1.25rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-column a {
        font-size: 0.85rem;
    }

    /* Mockup containers even tighter */
    .mockup-container {
        padding: 0.65rem;
        font-size: 0.6rem;
    }

    .mockup-post-content,
    .mockup-post-stats,
    .mockup-post-actions {
        padding-left: 0;
    }

    .mockup-post-content {
        font-size: 0.62rem;
    }

    .mockup-post-stats span {
        font-size: 0.55rem;
    }

    .mockup-action {
        font-size: 0.55rem;
        gap: 0.15rem;
    }

    .mockup-action svg {
        width: 10px;
        height: 10px;
    }

    /* Portal grid - single column on small phones */
    .mockup-portal-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.35rem;
    }

    .mockup-portal-grid-2col {
        grid-template-columns: 1fr;
    }

    .mockup-tp-card {
        padding: 0.45rem;
    }

    .mockup-tp-name {
        font-size: 0.65rem;
    }

    .mockup-tp-pos {
        font-size: 0.55rem;
    }

    .mockup-tp-stat-val {
        font-size: 0.6rem;
    }

    .mockup-tp-stat-lbl {
        font-size: 0.45rem;
    }

    .mockup-tp-prev {
        font-size: 0.52rem;
    }

    .mockup-tp-season-stats {
        display: none;
    }

    .mockup-tp-btn {
        font-size: 0.55rem;
        padding: 0.25rem;
    }

    .mockup-tp-badge {
        font-size: 0.5rem;
        padding: 0.15rem 0.35rem;
    }

    .mockup-tp-avatar svg {
        width: 16px;
        height: 16px;
    }

    .mockup-about-portal-wrap {
        flex-direction: column;
    }

    .mockup-discover-grid {
        grid-template-columns: 1fr;
    }

    .mockup-discover-filter-row,
    .mockup-discover-slider-row {
        flex-direction: column;
    }

    .mockup-db-filters {
        gap: 0.2rem;
    }

    .mockup-db-filter {
        font-size: 0.55rem;
        padding: 0.2rem 0.35rem;
    }

    .mockup-board-columns {
        flex-direction: column;
    }

    .mockup-col-header {
        font-size: 0.65rem;
    }

    .mockup-recruit-name {
        font-size: 0.6rem;
    }

    .mockup-recruit-detail,
    .mockup-recruit-school {
        font-size: 0.5rem;
    }

    .mockup-rank {
        font-size: 0.6rem;
        width: 16px;
        height: 16px;
    }

    .mockup-bubble {
        font-size: 0.6rem;
        padding: 0.4rem 0.5rem;
    }

    .mockup-msg-input {
        font-size: 0.6rem;
    }

    /* Real card mockups at 480px */
    .mockup-real-grid-3col {
        grid-template-columns: 1fr;
    }

    .mockup-real-grid-2col {
        grid-template-columns: 1fr;
    }

    .mockup-real-card,
    .mockup-real-coach-card {
        padding: 1rem;
    }

    .mockup-real-avatar,
    .mockup-real-coach-avatar {
        width: 55px;
        height: 55px;
    }

    .mockup-real-avatar svg,
    .mockup-real-coach-avatar svg {
        width: 28px;
        height: 28px;
    }

    .mockup-real-name,
    .mockup-real-coach-name {
        font-size: 1rem;
    }

    .mockup-real-pos-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .mockup-real-stats {
        gap: 0.5rem;
        padding: 0.65rem;
    }

    .mockup-real-stat-value {
        font-size: 0.9rem;
    }

    .mockup-real-stat-label {
        font-size: 0.6rem;
    }

    .mockup-real-detail {
        font-size: 0.78rem;
    }

    .mockup-real-btn {
        font-size: 0.85rem;
        padding: 0.7rem;
    }

    .mockup-real-header-badge,
    .mockup-real-portal-badge,
    .mockup-real-coach-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }

    .mockup-real-coach-position {
        font-size: 0.82rem;
    }

    .mockup-real-coach-school {
        padding: 0.65rem;
    }

    .mockup-real-school-name {
        font-size: 0.85rem;
    }

    .mockup-real-school-div {
        font-size: 0.75rem;
    }

    .mockup-real-pos-tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    /* Standalone card max-width for mobile */
    .mockup-container-about > .mockup-real-card {
        max-width: 280px;
    }

    /* Transfer real cards - tighten stats sections */
    .mockup-real-highlights span {
        font-size: 0.65rem;
        padding: 0.3rem 0.5rem;
    }

    .mockup-real-stats-title {
        font-size: 0.6rem;
    }

    .mockup-real-gpa-row {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }

    /* Discover filter panels on about page */
    .mockup-discover-select {
        padding: 0.2rem 0.35rem;
    }

    .mockup-discover-select-label {
        font-size: 0.55rem;
    }

    .mockup-discover-select-val {
        font-size: 0.6rem;
    }

    .mockup-discover-apply,
    .mockup-discover-reset {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }

    .mockup-discover-results {
        font-size: 0.55rem;
    }

    .mockup-discover-slider-label {
        font-size: 0.55rem;
    }
}