/* ============================
   about.css
   Page personnelle "à propos"
   ============================ */

/* ── Reset de base ─────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f5f5f5;
    color: #1E1E1E;
    font-family: var(--font-pgs), sans-serif;
    overflow-x: hidden;
}

/* ── Page entry animation ───────────────────── */
@keyframes aboutFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes aboutFadeRight {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}

.about-nav {
    opacity: 0;
    animation: aboutFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.chapter-tag {
    opacity: 0;
    animation: aboutFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.hero-left h1 {
    opacity: 0;
    animation: aboutFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-desc {
    opacity: 0;
    animation: aboutFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.hero-right {
    opacity: 0;
    animation: aboutFadeRight 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

a { text-decoration: none; color: inherit; }

/* ── Helpers ─────────────────────────── */
.pixel-font {
    font-family: var(--font-pixel), sans-serif;
}

.chapter-tag {
    font-family: var(--font-pixel), sans-serif;
    font-size: 13px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.12em;
}

.chapter-tag.muted  { color: #bbb; }
.chapter-tag.pink   { color: var(--primary-color); }

/* ── Navigation minimale ─────────────────────────── */
.about-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;
    background: rgba(245, 245, 245, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-header);
    font-size: 13px;
    font-weight: 600;
    color: #1E1E1E;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    transition: color 0.2s ease;
}
.back-link:hover { color: var(--primary-color); }

.nav-logo {
    height: 26px;
    opacity: 0.75;
}

.lang-btn {
    background: none;
    border: 1.5px solid #1E1E1E;
    border-radius: 6px;
    padding: 5px 13px;
    font-family: var(--font-header);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.08em;
    transition: all 0.2s ease;
    user-select: none;
}
.lang-btn:hover { background: #1E1E1E; color: #fff; }

/* ════════════════════ § 01 HERO ════════════════════ */
.hero-about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left { flex: 1; }

.hero-left h1 {
    font-family: var(--font-header);
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 28px;
    user-select: none;
}

.outline-text {
    -webkit-text-stroke: 2px #1E1E1E;
    color: transparent;
}

.pink-text { color: var(--primary-color); }

.hero-desc {
    font-size: 17px;
    line-height: 1.75;
    color: #666;
    max-width: 480px;
    font-family: var(--font-pgs);
}

.hero-right { flex: 0 0 400px; }

/* ── Carousel ─────────────────────────── */
.photo-carousel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.carousel-slides {
    position: relative;
    /* height = largeur × (5/4) pour aspect-ratio 4/5 */
    aspect-ratio: 4 / 5.4;
}

/* Polaroid photo card */
.photo-card {
    background: #fff;
    border-radius: 16px;
    padding: 12px 12px 0;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13), 0 4px 16px rgba(255, 132, 247, 0.18);
}

/* Slides dans le carousel */
.photo-card.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(24px) rotate(3deg);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.3, 0.64, 1);
    pointer-events: none;
}

.photo-card.slide.active {
    opacity: 1;
    transform: rotate(2deg);
    pointer-events: auto;
}

.photo-card.slide.leaving {
    opacity: 0;
    transform: translateX(-24px) rotate(-1deg);
}

.photo-card.slide:hover.active {
    transform: rotate(0deg) scale(1.02);
}

.photo-card img {
    width: 100%;
    border-radius: 8px;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.photo-label {
    display: flex;
    justify-content: space-between;
    padding: 10px 4px 12px;
    font-family: var(--font-pixel), sans-serif;
    font-size: 10px;
    color: #aaa;
}

/* ── Navigation carousel ─────── */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.carousel-btn {
    background: none;
    border: 1.5px solid #ddd;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    flex-shrink: 0;
}
.carousel-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 132, 247, 0.06);
}

.carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
    padding: 0;
}
.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* ════════════════════ TICKER ════════════════════ */
.ticker-wrap {
    overflow: hidden;
    background: #1E1E1E;
    padding: 13px 0;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    animation: tickerScroll 22s linear infinite;
    width: max-content;
    padding: 0 10px;
}

.ticker-track span {
    font-family: var(--font-header);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.ticker-dot {
    color: var(--primary-color) !important;
    font-size: 9px !important;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ════════════════════ SECTIONS COMMUNES ════════════════════ */
.about-section {
    padding: 100px 5%;
}

.about-section.light { background: #fafafa; }

.about-section.dark {
    background: linear-gradient(150deg, #0b0018 0%, #0e0022 55%, #080812 100%);
    position: relative;
    overflow: hidden;
}

/* Dot grid pattern */
.about-section.dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 132, 247, 0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Fond aurora animé — bien visible */
.about-section.dark::after {
    content: '';
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(ellipse 80% 60% at 20% 35%, rgba(255, 132, 247, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse 70% 70% at 80% 65%, rgba(160, 80, 255, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 50% 15%, rgba(80, 40, 200, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 65% 80%, rgba(232, 121, 249, 0.16) 0%, transparent 55%);
    animation: auroraFloat 10s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes auroraFloat {
    0%   { transform: translate(0%, 0%) scale(1); }
    25%  { transform: translate(10%, 14%) scale(1.14); }
    50%  { transform: translate(-12%, 7%) scale(0.90); }
    75%  { transform: translate(8%, -10%) scale(1.20); }
    100% { transform: translate(-8%, 16%) scale(1.08); }
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-header);
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    color: #1E1E1E;
}

.section-header.light h2 { color: #fff; }

/* ════════════════════ § 02 MOTIVATIONS ════════════════════ */
.big-quote {
    font-family: var(--font-header);
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.35;
    color: #1E1E1E;
    text-align: center;
    margin: 0 auto 80px;
    max-width: 860px;
    padding: 48px 52px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(255, 132, 247, 0.1), 0 1px 6px rgba(0, 0, 0, 0.06);
    position: relative;
    border: none;
    list-style: none;
}

.big-quote::before {
    content: '\201C';
    font-size: 140px;
    color: var(--primary-color);
    opacity: 0.12;
    font-family: Georgia, serif;
    position: absolute;
    top: -10px;
    left: 24px;
    line-height: 1;
    pointer-events: none;
}

.big-quote em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 900;
}

/* Cards motivation */
.motivation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.m-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(255, 132, 247, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    --x: 50%;
    --y: 50%;
}

.m-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: radial-gradient(
        420px circle at var(--x) var(--y),
        rgba(255, 132, 247, 0.95),
        transparent 58%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}
.m-card:hover::before { opacity: 1; }

.m-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 48px rgba(255, 132, 247, 0.18);
    border-color: rgba(255, 132, 247, 0.25);
}

.m-icon {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-family: var(--font-pixel);
    display: block;
}

.m-card h3 {
    font-family: var(--font-header);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1E1E1E;
}

.m-card p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #777;
    font-family: var(--font-pgs);
}

/* ════════════════════ § 03 PASSIONS — BENTO ════════════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(190px, auto) minmax(190px, auto) minmax(190px, auto);
    gap: 14px;
    grid-template-areas:
        "design gaming"
        "design streaming"
        "lecture musique";
}

.bento-card {
    background: #1c1226;
    border-radius: 18px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 3px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    --x: 50%;
    --y: 50%;
    --card-glow: rgba(255, 132, 247, 0.65);
}

/* ── Spotlight border miroir ─── */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: radial-gradient(
        500px circle at var(--x) var(--y),
        var(--card-glow),
        transparent 60%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}
.bento-card:hover::before { opacity: 1; }

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

/* ── Card accent colors — palette à l'image de Marie ─────── */
.bento-card.design {
    grid-area: design;
    background: linear-gradient(145deg, #1e0830 0%, #2a1045 100%);
    border-left-color: #FF84F7;
    --card-glow: rgba(255, 132, 247, 0.7);
}
.bento-card.design:hover {
    border-left-color: #ffb3fb;
    box-shadow: 0 20px 60px rgba(255, 132, 247, 0.14);
}

.bento-card.gaming {
    grid-area: gaming;
    background: linear-gradient(145deg, #160a2e 0%, #1e0f3a 100%);
    border-left-color: #b088f9;
    --card-glow: rgba(176, 136, 249, 0.7);
}
.bento-card.gaming:hover {
    border-left-color: #cdb3ff;
    box-shadow: 0 20px 60px rgba(176, 136, 249, 0.12);
}

.bento-card.streaming {
    grid-area: streaming;
    background: linear-gradient(145deg, #1c0828 0%, #260d38 100%);
    border-left-color: #f0abfc;
    --card-glow: rgba(240, 171, 252, 0.7);
}
.bento-card.streaming:hover {
    border-left-color: #f5c6fd;
    box-shadow: 0 20px 60px rgba(240, 171, 252, 0.12);
}

.bento-card.lecture {
    grid-area: lecture;
    background: linear-gradient(145deg, #0d0a28 0%, #130d38 100%);
    border-left-color: #a5b4fc;
    --card-glow: rgba(165, 180, 252, 0.7);
}
.bento-card.lecture:hover {
    border-left-color: #c7d0ff;
    box-shadow: 0 20px 60px rgba(165, 180, 252, 0.12);
}

.bento-card.musique {
    grid-area: musique;
    background: linear-gradient(145deg, #180828 0%, #210d35 100%);
    border-left-color: #e879f9;
    --card-glow: rgba(232, 121, 249, 0.7);
}
.bento-card.musique:hover {
    border-left-color: #f0a7ff;
    box-shadow: 0 20px 60px rgba(232, 121, 249, 0.12);
}

/* ── Pixel SVG watermark ─────── */
.bento-deco {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 88px;
    height: 88px;
    opacity: 0.07;
    pointer-events: none;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.bento-card.design    .bento-deco { fill: #FF84F7; opacity: 0.12; }
.bento-card.gaming    .bento-deco { fill: #4ade80; opacity: 0.12; }
.bento-card.streaming .bento-deco { fill: #fb7185; opacity: 0.12; }
.bento-card.lecture   .bento-deco { fill: #818cf8; opacity: 0.12; }
.bento-card.musique   .bento-deco { fill: #c084fc; opacity: 0.12; }

/* ── Pixel index bento cards ─────── */
.bento-index {
    font-family: var(--font-pixel), sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 20px;
    right: 22px;
    letter-spacing: 0.1em;
}

.bento-card h3 {
    font-family: var(--font-header);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
}

.bento-card p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-pgs);
    position: relative;
}

/* ════════════════════ § 04 WORKSPACE ════════════════════ */
.workspace-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.workspace-vibe h3,
.workspace-tools h3 {
    font-family: var(--font-header);
    font-size: 22px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 18px;
}

.workspace-vibe p {
    font-size: 15.5px;
    line-height: 1.78;
    color: #666;
    margin-bottom: 14px;
    font-family: var(--font-pgs);
}

.vibe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.vibe-tags span {
    background: #fff;
    border: 1.5px solid #e6e6e6;
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 13px;
    font-family: var(--font-header);
    font-weight: 500;
    color: #555;
    transition: border-color 0.2s, color 0.2s;
    cursor: default;
}
.vibe-tags span:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ── Spotify widget ─────── */
.spotify-widget {
    margin-top: 28px;
}
.spotify-label {
    display: block;
    font-family: var(--font-pixel), sans-serif;
    font-size: 11px;
    color: #1db954;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}
.spotify-widget iframe {
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(30, 215, 96, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.spotify-widget iframe:hover {
    box-shadow: 0 8px 32px rgba(30, 215, 96, 0.2);
    transform: translateY(-2px);
}

/* Tool list */
.tools-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1.5px solid rgba(255, 132, 247, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
    --x: 50%;
    --y: 50%;
}

.tool-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: radial-gradient(
        300px circle at var(--x) var(--y),
        rgba(255, 132, 247, 0.9),
        transparent 58%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}
.tool-item:hover::before { opacity: 1; }

.tool-item:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 22px rgba(255, 132, 247, 0.14);
    border-color: rgba(255, 132, 247, 0.2);
}

.tool-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f0f0f0;
    overflow: hidden;
    font-weight: 700;
    font-size: 15px;
}
.tool-icon-wrap img { width: 24px; height: 24px; object-fit: contain; }

.figma-icon  { background: #fff; padding: 0; display: flex; align-items: center; justify-content: center; }
.notion-icon { background: #1E1E1E; padding: 0; display: flex; align-items: center; justify-content: center; }
.github-icon { background: #1E1E1E; color: #fff; }
.adobe-icon  { background: #FF0000; padding: 0; display: flex; align-items: center; justify-content: center; }

/* ── Pixel counter tool items ─────── */
.tool-num {
    font-family: var(--font-pixel), sans-serif;
    font-size: 10px;
    color: #ccc;
    min-width: 20px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.tool-info   { display: flex; flex-direction: column; gap: 2px; }
.tool-name   { font-family: var(--font-header); font-weight: 700; font-size: 14px; color: #1E1E1E; }
.tool-desc   { font-family: var(--font-pgs); font-size: 12px; color: #999; }

/* ════════════════════ CTA FINALE ════════════════════ */
.about-cta-section {
    background: linear-gradient(135deg, #1E1E1E 0%, #2d1030 100%);
    padding: 120px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 132, 247, 0.12) 0%, transparent 68%);
    pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-fin-label {
    display: inline-block;
    font-size: 16px;
    color: var(--primary-color);
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    opacity: 0.8;
}

.cta-inner h2 {
    font-family: var(--font-header);
    font-size: clamp(26px, 4vw, 50px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.cta-inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    font-family: var(--font-pgs);
}

.return-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #1E1E1E;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.02em;
}
.return-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 40px rgba(255, 132, 247, 0.4);
}
.return-btn svg {
    transition: transform 0.3s ease;
}
.return-btn:hover svg { transform: translateX(4px); }

/* ════════════════════ SCROLL REVEAL ════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mirroring Apple-style — gauche / droite */
.reveal.reveal-left {
    transform: translateX(-110px) scale(0.95);
}
.reveal.reveal-right {
    transform: translateX(110px) scale(0.95);
}
.reveal.reveal-left.visible,
.reveal.reveal-right.visible {
    transform: translateX(0) scale(1);
}

/* Stagger siblings */
.motivation-grid .m-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.motivation-grid .m-card.reveal:nth-child(3) { transition-delay: 0.2s; }

.bento-grid .bento-card.reveal:nth-child(2) { transition-delay: 0.10s; }
.bento-grid .bento-card.reveal:nth-child(3) { transition-delay: 0.20s; }
.bento-grid .bento-card.reveal:nth-child(4) { transition-delay: 0.14s; }
.bento-grid .bento-card.reveal:nth-child(5) { transition-delay: 0.24s; }

/* ════════════════════ RESPONSIVE ════════════════════ */
@media (max-width: 1024px) {
    .hero-about { gap: 48px; }
    .hero-right { flex: 0 0 320px; }

    .motivation-grid { grid-template-columns: 1fr 1fr; }
    .motivation-grid .m-card:last-child { grid-column: 1 / -1; }

    .workspace-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .hero-about {
        flex-direction: column;
        min-height: auto;
        padding: 100px 5% 60px;
        gap: 36px;
        text-align: center;
    }
    .hero-right {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-desc { margin: 0 auto; }

    .motivation-grid { grid-template-columns: 1fr; }
    .motivation-grid .m-card:last-child { grid-column: auto; }

    .big-quote { padding: 36px 28px; }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "design"
            "gaming"
            "streaming"
            "lecture"
            "musique";
        grid-template-rows: auto;
    }

    .workspace-grid { grid-template-columns: 1fr; gap: 40px; }

    .about-section { padding: 64px 5%; }
}

@media (max-width: 480px) {
    .hero-left h1 { font-size: 32px; }
    .about-nav { padding: 14px 5%; }
    .big-quote { font-size: 20px; padding: 28px 22px; }
}
