/* -----------------------------------------------------------------
   1. CORE VARIABLES & RESET (Apple System Colors)
   ----------------------------------------------------------------- */
:root {
    --bg-body: #f5f5f7;       /* Apple Light Grey Background */
    --bg-card: #ffffff;       /* Pure White Cards */
    
    --text-headline: #1d1d1f; /* Near Black */
    --text-body: #86868b;     /* Apple Muted Grey */
    --text-link: #0066cc;     /* Apple Link Blue */
    
    --accent-blue: #0071e3;   /* Apple Action Blue */
    --accent-dark: #000000;
    
    --radius-large: 30px;     /* Smooth "Squircle" */
    --radius-pill: 980px;
    
    --shadow-card: 0px 4px 24px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0px 12px 32px rgba(0, 0, 0, 0.08);
    
    --nav-height: 54px;
    --max-width: 1024px;      /* Tighter width for readability */

    --ease-elastic: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-body);
    color: var(--text-headline);
    line-height: 1.4;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }

/* -----------------------------------------------------------------
   2. STICKY GLASS NAV
   ----------------------------------------------------------------- */
.apple-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.nav-content {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.brand {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.menu {
    display: flex;
    gap: 28px;
}

.menu a {
    font-size: 0.85rem;
    color: var(--text-headline);
    opacity: 0.8;
}

.menu a:hover { opacity: 1; color: var(--text-link); }

.auth { display: flex; align-items: center; gap: 16px; }

.btn-text { font-size: 0.85rem; }

.btn-pill {
    background: var(--text-headline);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 500;
    transition: 0.3s;
}

.btn-pill:hover { background: #333; transform: scale(1.02); }

/* -----------------------------------------------------------------
   3. HERO SECTION (The Big Visual)
   ----------------------------------------------------------------- */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eyebrow {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.hero-text h1 {
    font-size: 4.5rem; /* Massive Scale */
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.3rem;
    color: #1d1d1f;
    max-width: 650px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.cta-wrapper {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.btn-primary {
    background: var(--accent-blue);
    color: white;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    font-size: 1.1rem;
    font-weight: 500;
}

.btn-primary:hover { background: #0077ED; }

.link-arrow {
    color: var(--text-link);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.link-arrow:hover { text-decoration: underline; }
.link-arrow i { font-size: 0.8rem; }

/* The "Video" Container */
.hero-media-container {
    width: 90%;
    max-width: 1100px;
    height: 600px;
    background: #000; /* Black frame like a screen */
    border-radius: var(--radius-large);
    padding: 12px;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.media-frame {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 18px; /* Inner radius */
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e0f7fa 0%, #eef2f3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mockup UI inside the frame */
.ui-mockup {
    width: 80%;
    height: 80%;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.mockup-header {
    padding: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 12px;
}

.traffic-lights { display: flex; gap: 6px; }
.traffic-lights span { width: 10px; height: 10px; border-radius: 50%; background: #ccc; }
.traffic-lights span:nth-child(1) { background: #ff5f57; }
.traffic-lights span:nth-child(2) { background: #febc2e; }
.traffic-lights span:nth-child(3) { background: #28c840; }

.mockup-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--text-headline);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.play-button:hover { transform: scale(1.1); }

/* -----------------------------------------------------------------
   4. STATEMENT SECTION (Typography)
   ----------------------------------------------------------------- */
.statement-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 24px;
    text-align: center;
}

.statement-section h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.grey-text { color: #86868b; }

/* -----------------------------------------------------------------
   5. FEATURE GRID (Clean Cards)
   ----------------------------------------------------------------- */
./* -----------------------------------------------------------------
   5. FEATURE GRID (Bento Layout 2.0)
   ----------------------------------------------------------------- */
.features-section {
    background: #fff;
    padding: 100px 0;
}

.section-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
    color: #86868b;
    text-transform: uppercase;
}

/* THE NEW 4-COLUMN GRID */
.grid-layout {
    display: grid;
    /* This creates 4 equal columns */
    grid-template-columns: repeat(4, 1fr); 
    grid-auto-rows: minmax(200px, auto); /* Minimum height for cards */
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* CARD BASE STYLES */
.feature-card {
    background: #f5f5f7;
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #fff;
}

/* SIZING UTILITIES */
.double-width { grid-column: span 2; } /* Takes up half the row */
.full-width   { grid-column: span 4; } /* Takes up full row */
.single-box   { grid-column: span 1; } /* Takes up 1 small slot */

/* SPECIFIC CARD STYLING */

/* 1. Librarian & Mindset */
.feature-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; color: #1d1d1f; }
.feature-card p { font-size: 0.95rem; color: #86868b; line-height: 1.5; }

.visual-books {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 6rem;
    color: rgba(0,0,0,0.03);
    transform: rotate(-10deg);
}

.highlight-bg { background: #e8f2ff; } /* Slight blue tint for Mindset */
.icon-floating {
    align-self: flex-end;
    font-size: 2rem;
    color: var(--accent-blue);
    margin-top: 20px;
}

/* 2. The 4 Small Boxes */
.feature-card.single-box {
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
    aspect-ratio: 1/1; /* Makes them perfect squares */
}

.icon-small {
    font-size: 1.5rem;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.single-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.sub-tag {
    font-size: 0.75rem;
    color: #86868b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 3. The Hackathon Section (Dark Mode) */
.feature-card.dark-mode {
    background: #111;
    color: white;
    display: block; /* Override flex for grid inside */
}

.feature-card.dark-mode:hover { background: #000; }

.hackathon-header { margin-bottom: 30px; text-align: left; }
.hackathon-header h3 { color: white; }
.hackathon-header p { color: #888; max-width: 500px; }

/* Internal Grid for 4 Hackathons */
.hackathon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}

.hack-item {
    padding-right: 10px;
}

.phase-tag {
    color: var(--accent-blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.hack-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.hack-item p {
    font-size: 0.85rem;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr; /* Everything stacks on mobile */
    }
    
    .double-width, .full-width, .single-box {
        grid-column: span 1;
    }

    .feature-card.single-box {
        aspect-ratio: auto; /* Allow rectangles on mobile */
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    
    .hackathon-grid {
        grid-template-columns: 1fr; /* Stack phases on mobile */
        gap: 30px;
    }
}
/* -----------------------------------------------------------------
   6. FOOTER
   ----------------------------------------------------------------- */
.cta-footer {
    text-align: center;
    padding: 100px 20px;
    background: #f5f5f7;
}

.cta-footer h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.btn-primary.large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-body);
}

/* -----------------------------------------------------------------
   7. RESPONSIVE
   ----------------------------------------------------------------- */
@media (max-width: 768px) {
    .hero-text h1 { font-size: 3rem; }
    .grid-layout { grid-template-columns: 1fr; }
    .feature-card.large, .feature-card.full-width { grid-column: span 1; grid-row: auto; }
    .card-flex { flex-direction: column; gap: 20px; align-items: flex-start; }
    .menu { display: none; }
}

/* CONTAINER FOR THE LOCKED CARD */
.premium-container {
    position: relative;
    overflow: hidden; /* Keeps the blur inside */
    padding: 0; /* Remove padding so bg fills card */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04);
}

/* THE TEASER CONTENT (BLURRED) */
.mentor-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 32px;
    filter: blur(4px) grayscale(0.3); /* The "Teaser" Effect */
    opacity: 0.6;
    pointer-events: none; /* User can't click the links behind */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mentor-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.avatar-circle img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.mentor-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.mentor-info .role {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-bottom: 4px;
}

.stars {
    color: #FFD700; /* Gold */
    font-size: 0.8rem;
}

.stars span {
    color: #999;
    margin-left: 6px;
    font-size: 0.75rem;
}

.mentor-tags {
    display: flex;
    gap: 8px;
}

.mentor-tags .tag {
    background: #f0f0f5;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    color: #555;
    font-weight: 600;
}

/* THE LOCKED OVERLAY (FOREGROUND) */
.locked-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80%;
}

.lock-icon-circle {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.locked-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.locked-overlay p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}

/* THE PREMIUM BUTTON */
.btn-premium {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
/* -----------------------------------------------------------------
   8. THE GLASS MANIFESTO (PRE-HOME)
   ----------------------------------------------------------------- */
.overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999; /* Always on top */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.overlay-container.dismissing {
    pointer-events: none;
}

/* 2. The Backdrop Un-blurs slowly */
.overlay-container.dismissing .glass-backdrop {
    opacity: 0;
    backdrop-filter: blur(0px); /* Animate the blur away */
    -webkit-backdrop-filter: blur(0px);
    transition: opacity 0.8s ease, backdrop-filter 0.8s ease;
}

/* 3. The Card Zooms IN towards the user and vanishes */
.overlay-container.dismissing .manifesto-card {
    transform: scale(1.1) translateY(-10px); /* Moves up and towards user */
    opacity: 0;
    filter: blur(10px); /* The card blurs out as it leaves */
    transition: all 0.6s var(--ease-out);
}


/* The Frosted Glass Background */
.glass-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 247, 0.6); /* Slightly more transparent */
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    transition: all 1s var(--ease-out);
}

/* The Main Card */
.manifesto-card {
    position: relative;
    width: 100%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.95); /* Slight transparency */
    border-radius: 32px;
    padding: 48px;
    
    /* Shadows */
    box-shadow: 
        0 40px 80px -20px rgba(0,0,0,0.1), 
        0 0 0 1px rgba(0,0,0,0.02);
    
    /* Initial State for Animation */
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    
    /* Trigger the Entrance */
    animation: cardEntrance 1s var(--ease-elastic) 0.2s forwards;
}

.card-header { text-align: center; margin-bottom: 32px; }

.eyebrow-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #86868b;
    margin-bottom: 12px;
    display: block;
}

.card-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.03em;
}

.intro-line {
    font-size: 1rem;
    color: #424245;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* The 3 Tenets List */
.tenets-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.tenet-item {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s var(--ease-out) forwards;
}

.tenet-item:hover {
    background: #f5f5f7; /* Subtle hover state */
}

/* Icons */
.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.soft-green { background: #e8f5e9; color: #2e7d32; }
.soft-blue  { background: #e3f2fd; color: #1565c0; }
.soft-purple { background: #f3e5f5; color: #7b1fa2; }

.tenet-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
}

.tenet-text p {
    font-size: 0.9rem;
    color: #86868b;
    line-height: 1.4;
}

.tenet-item:nth-child(1) { animation-delay: 0.5s; }
.tenet-item:nth-child(2) { animation-delay: 0.6s; }
.tenet-item:nth-child(3) { animation-delay: 0.7s; }
.manifesto-footer         { opacity: 0; animation: fadeInUp 0.8s var(--ease-out) 0.9s forwards; }

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes cardEntrance {
    to { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

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

/* Footer / Button */
.manifesto-footer {
    text-align: center;
}

.btn-agree {
    background: #1d1d1f;
    color: white;
    width: 100%;
    padding: 18px;
    border-radius: 98px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-agree:hover {
    background: #000;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.sub-disclaimer {
    margin-top: 16px;
    font-size: 0.75rem;
    color: #a1a1a6;
}

/* The Fade Out Class */
.overlay-container.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Card Entry Animation */
@keyframes scaleIn {
    from { transform: scale(0.95) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 600px) {
    .manifesto-card { padding: 32px 24px; }
    .card-header h1 { font-size: 1.8rem; }
    .tenet-item { padding: 10px 0; } /* Save space on mobile */
    .tenet-item:hover { background: transparent; }
}


/* 9. NEW COMPONENTS (The Relief Pillars)
   ----------------------------------------------------------------- */

/* The "Unsure" Quiet Link */
.link-quiet {
    font-size: 0.95rem;
    color: #86868b;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 2px;
    transition: 0.2s;
}
.link-quiet:hover { color: #1d1d1f; border-color: #1d1d1f; }

/* The Culture Strip */
.culture-strip {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 60px;
}

.culture-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #86868b;
    font-size: 0.9rem;
    font-weight: 500;
}

.culture-item i { color: #d1d1d6; }

/* The Anti-Manifesto (What this is NOT) */
.anti-manifesto {
    max-width: 600px;
    margin: 80px auto;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    text-align: center;
}

.manifesto-list {
    list-style: none;
    margin-top: 24px;
    text-align: left;
    padding-left: 20px;
}

.manifesto-list li {
    margin-bottom: 12px;
    color: #86868b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.manifesto-list .fa-times { color: #ff5f57; } /* Red for NOT */
.manifesto-list .fa-check { color: #28c840; } /* Green for IS */

.highlight-text {
    color: #2e7d32; /* Matches the soft-green icon */
    font-weight: 600;
    background: rgba(46, 125, 50, 0.1);
    padding: 0 4px;
    border-radius: 4px;
}

/* -----------------------------------------------------------------
   12. RETINA PROOF SECTION (Apple Style v2)
   ----------------------------------------------------------------- */

.retina-proof-section {
    max-width: 1080px;
    margin: 0 auto 100px;
    padding: 0 24px;
}

/* 1. Typography Hierarchy */
.proof-header {
    text-align: center;
    margin-bottom: 60px;
}

.eyebrow-apple {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #86868b;
    margin-bottom: 16px;
    display: block;
}

.proof-header h2 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.03em; /* TIGHT headline tracking = Premium feel */
    color: #1d1d1f;
}

/* 2. The Grid Layout (1 Big + 2 Small) */
.bento-grid-proof {
    display: grid;
    /* Left column is wider (1.4x), Right column is standard (1x) */
    grid-template-columns: 1.4fr 1fr; 
    /* This forces the two rows on the right to be equal height */
    grid-template-rows: repeat(2, 1fr); 
    gap: 24px;
    /* Optional: Sets a max height so the left card doesn't get too tall */
    height: auto; 
}

/* 3. The Card Engine */
.proof-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px; /* Reduced from 40px for a tighter feel */
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes Footer to bottom */
    height: 100%; /* key: ensures it fills the grid cell */
}

.proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -15px rgba(0,0,0,0.1);
}

/* The Main Card (Takes full height on left) */
.main-card {
    grid-row: span 2; /* Spans top and bottom rows */
    background: linear-gradient(145deg, #ffffff 0%, #fbfbfd 100%);
    
    /* Center the content vertically if it feels too empty */
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

/* 4. Text Styling - The "Not Sucky" Part */
.quote-mark {
    font-size: 4rem;
    color: #e5e5ea;
    font-family: serif;
    line-height: 1;
    margin-bottom: -10px;
}

.big-quote {
    font-size: 1.6rem;
    line-height: 1.35;
    font-weight: 500;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.highlight-blue {
    color: #0071e3; /* Apple Blue */
}

.mid-quote {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #424245; /* Slightly lighter grey */
    font-weight: 450;
    margin-bottom: 30px;
}

/* 5. Footer / User Info */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.04); /* Thin separator */
    padding-top: 24px;
    margin-top: auto;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #f5f5f7;
}

.text-stack {
    display: flex;
    flex-direction: column;
}

.name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1d1d1f;
}

.role {
    font-size: 0.8rem;
    color: #86868b;
}

/* 6. Badges & Pills */
.status-pill {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-pill.success {
    background: #d1fae5; /* Very soft green */
    color: #065f46;
}

.tech-stack-mini {
    display: flex;
    gap: 6px;
}

.tech-stack-mini span {
    font-size: 0.7rem;
    color: #86868b;
    background: #f5f5f7;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

/* 7. Responsive Mobile */
/* @media (max-width: 800px) {
    .bento-grid-proof {
        grid-template-columns: 1fr; /* Stack everything 
    }
    
    .proof-header h2 { font-size: 2.2rem; }
    .big-quote { font-size: 1.3rem; }

 */

 @media (max-width: 800px) {
    .bento-grid-proof {
        grid-template-columns: 1fr; /* Stack into 1 column */
        grid-template-rows: auto;   /* Heights adjust to text */
    }
    .main-card {
        grid-row: span 1; /* Reset to normal size */
    }
}