/* ============================================================
   Divyanshi Portfolio — Production CSS
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
    /* Rose palette */
    --rose-deep:        #C96B8A;
    --rose-mid:         #E8A0B4;
    --rose-light:       #FFF0F4;
    --rose-petal:       #FADADD;
    --rose-blossom:     #F5C6D0;
    --rose-hot:         #FF6482;
    --rose-deep-2:      #B85775;
    --rose-magenta:     #8B2252;
    --crimson:          #DC143C;

    /* Purple palette */
    --purple-bg-start:  #1a0a2e;
    --purple-bg-end:    #2d1150;
    --purple-deep:      #6A1B9A;
    --purple-mid:       #B06AB3;
    --purple-accent:    #d4a5e5;
    --purple-star:      #c9a0dc;

    /* Text */
    --text-dark:        #4a2535;
    --text-mid:         #8a5568;

    /* Minecraft palette */
    --mc-sign:          #C4A46C;
    --mc-sign-hl:       #D4B87A;

    /* Typography */
    --font-display:  'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-body:     'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-pixel:    'Silkscreen', 'Courier New', monospace;

    /* Type scale */
    --text-xs:    0.75rem;
    --text-sm:    0.875rem;
    --text-base:  1rem;
    --text-lg:    1.25rem;
    --text-xl:    1.563rem;

    /* Spacing */
    --space-xs:   8px;
    --space-sm:   16px;
    --space-md:   24px;
    --space-lg:   32px;
    --space-xl:   48px;
    --space-2xl:  64px;

    /* Radius */
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   32px;

    /* Blob radius — signature asymmetric corners */
    --blob:       60px 24px 60px 24px;
    --blob-flip:  24px 60px 24px 60px;
    --blob-soft:  36px 18px 36px 18px;
}


/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-display);
    background: var(--rose-light);
    color: var(--text-dark);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }


/* ============================================================
   ENTRY GATE
   ============================================================ */
.entry-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(145deg, #1a0a1e 0%, var(--text-dark) 40%, #2a1320 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
    overscroll-behavior: contain;
}

.entry-gate::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse 400px 400px at 30% 40%, rgba(201, 107, 138, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse 300px 300px at 70% 60%, rgba(255, 100, 130, 0.08) 0%, transparent 60%);
    animation: entry-drift 8s ease-in-out infinite alternate;
}

@keyframes entry-drift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(30px, -20px); }
}

.entry-gate.is-dismissed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.entry-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: entry-fadein 1s ease-out;
}

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

.entry-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 3px solid rgba(201, 107, 138, 0.4);
    box-shadow: 0 0 40px rgba(201, 107, 138, 0.2);
    animation: entry-breathe 3s ease-in-out infinite;
}

@keyframes entry-breathe {
    0%, 100% { box-shadow: 0 0 30px rgba(201, 107, 138, 0.15); }
    50%      { box-shadow: 0 0 50px rgba(201, 107, 138, 0.35); }
}

.entry-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entry-greeting {
    font-size: 14px;
    color: var(--rose-mid);
    letter-spacing: 0.12em;
    text-transform: lowercase;
    margin-bottom: 8px;
    opacity: 0.7;
}

.entry-name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--rose-petal) 0%, var(--rose-mid) 50%, var(--rose-hot) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.entry-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
    margin-bottom: 28px;
}

.entry-details {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.entry-details span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    gap: 6px;
}

.entry-details i {
    color: var(--rose-deep);
    font-size: 11px;
}

.entry-btn {
    padding: 16px 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-hot) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(255, 100, 130, 0.3);
    margin-bottom: 24px;
}

.entry-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 40px rgba(255, 100, 130, 0.5);
}

.entry-btn i {
    font-size: 13px;
}

.entry-whisper {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.5;
}


/* ============================================================
   FIXED PILL NAV
   ============================================================ */
.nav {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(201, 107, 138, 0.15);
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 6px 30px rgba(74, 37, 53, 0.08);
}

.nav-mark {
    width: 32px;
    height: 32px;
    border-radius: var(--blob-soft);
    background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-hot) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    display: grid;
    place-items: center;
    margin-right: 4px;
    transform: rotate(-8deg);
    box-shadow: 0 4px 12px rgba(201, 107, 138, 0.3);
}

.nav-link {
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.2s;
}

.nav-link:hover {
    background: rgba(201, 107, 138, 0.12);
    color: var(--rose-deep);
}

.nav-cta {
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--text-dark);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-left: 4px;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--rose-deep);
    transform: translateY(-1px);
}


/* ---------- MODE SWITCH ---------- */
.mode-switch {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(201, 107, 138, 0.1);
    border-radius: 999px;
    padding: 3px;
    margin-left: 8px;
}

.mode-switch button {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    transition: all 0.25s;
}

.mode-switch button.is-active {
    background: var(--text-dark);
    color: #fff;
    box-shadow: 0 4px 10px rgba(74, 37, 53, 0.2);
}


/* ---------- MODE VISIBILITY ---------- */
body.personal-mode .professional-only { display: none !important; }
body:not(.personal-mode) .personal-only { display: none !important; }

.personal-only .nav-cta {
    background: #7CCC44;
    color: #1a3010;
}


/* ---------- PERSONAL MODE NAV ---------- */
body.personal-mode { background: #0d1f12; color: #e8f5e3; }
body.personal-mode .nav { background: rgba(20, 40, 25, 0.85); border-color: rgba(124, 204, 68, 0.25); }
body.personal-mode .nav-link { color: #e8f5e3; }
body.personal-mode .nav-link:hover { background: rgba(124, 204, 68, 0.15); color: #b6f04d; }
body.personal-mode .nav-cta { background: #7CCC44; color: #1a3010; }
body.personal-mode .nav-cta:hover { background: #b6f04d; }
body.personal-mode .mode-switch { background: rgba(255, 255, 255, 0.08); }
body.personal-mode .mode-switch button:not(.is-active) { color: rgba(255, 255, 255, 0.6); }


/* ============================================================
   HERO (Professional)
   ============================================================ */
.hero {
    min-height: 100vh;
    padding: 120px 32px 80px;
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 600px 400px at 15% 30%, rgba(232, 160, 180, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 500px 500px at 85% 70%, rgba(250, 218, 221, 0.5) 0%, transparent 60%);
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(201, 107, 138, 0.2);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ============================================================
   CURRENTLY SECTION
   ============================================================ */
.currently {
    background: #fff;
    padding-bottom: 60px;
}

.currently-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.currently-card {
    background: var(--rose-light);
    border: 1px solid rgba(201, 107, 138, 0.1);
    border-radius: 20px;
    padding: 28px 24px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.currently-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-mid), var(--rose-hot));
    opacity: 0;
    transition: opacity 0.3s;
}

.currently-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(74, 37, 53, 0.1);
}

.currently-card:hover::before {
    opacity: 1;
}

.currently-card--main {
    background: var(--text-dark);
    border-color: transparent;
}

.currently-card--main::before {
    background: linear-gradient(90deg, var(--rose-hot), var(--purple-deep));
    opacity: 1;
}

.currently-card--main .currently-icon {
    background: rgba(255, 100, 130, 0.2);
    color: var(--rose-hot);
}

.currently-card--main .currently-label { color: var(--rose-mid); }
.currently-card--main h3 { color: #fff; }
.currently-card--main p { color: rgba(255, 255, 255, 0.6); }

.currently-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(201, 107, 138, 0.1);
    color: var(--rose-deep);
    display: grid;
    place-items: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.currently-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rose-deep);
    margin-bottom: 6px;
}

.currently-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.currently-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.55;
}

.currently-footnote {
    text-align: center;
    font-size: 13px;
    color: var(--text-mid);
    opacity: 0.5;
    font-style: italic;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--text-dark);
    margin-bottom: 16px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-hot) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-mid);
    max-width: 520px;
    line-height: 1.55;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--text-dark);
    color: #fff;
    box-shadow: 0 8px 20px rgba(74, 37, 53, 0.2);
}

.btn-primary:hover {
    background: var(--rose-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 107, 138, 0.3);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-dark);
    border: 1px solid rgba(74, 37, 53, 0.15);
}

.btn-ghost:hover {
    background: #fff;
    border-color: var(--text-dark);
}

.hero-now-playing {
    max-width: 360px;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(74, 37, 53, 0.1);
}

.hero-socials {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-socials .label {
    font-size: 13px;
    color: var(--text-mid);
    margin-right: 4px;
}

.hero-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(201, 107, 138, 0.15);
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.2s;
}

.hero-socials a:hover {
    background: var(--rose-deep);
    color: #fff;
    border-color: var(--rose-deep);
    transform: translateY(-2px);
}


/* ---------- HERO PHOTO COLLAGE ---------- */
.hero-collage {
    position: relative;
    height: 500px;
}

.hero-photo {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(74, 37, 53, 0.15);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo--main {
    width: 320px;
    height: 400px;
    top: 20px;
    right: 60px;
    border-radius: var(--blob);
    z-index: 2;
    transform: rotate(3deg);
}

.hero-photo--small {
    width: 180px;
    height: 220px;
    bottom: 40px;
    left: 0;
    border-radius: var(--blob-flip);
    z-index: 3;
    transform: rotate(-6deg);
    border: 6px solid #fff;
}

.hero-tag {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    background: var(--text-dark);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(8deg);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-tag::before { content: '\1F338'; }

/* Kushina hook photo */
.hero-hook {
    position: absolute;
    width: 130px;
    height: 130px;
    top: 60px;
    left: 20px;
    z-index: 5;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 12px 30px rgba(74, 37, 53, 0.2);
    transform: rotate(-8deg);
    transition: transform 0.3s;
}

.hero-hook:hover {
    transform: rotate(0deg) scale(1.08);
}

.hero-hook img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stat {
    position: absolute;
    bottom: 0;
    right: 20px;
    z-index: 4;
    background: #fff;
    padding: 14px 18px;
    border-radius: var(--blob-soft);
    box-shadow: 0 12px 30px rgba(74, 37, 53, 0.12);
    transform: rotate(-4deg);
}

.hero-stat .num {
    font-size: 28px;
    font-weight: 800;
    color: var(--rose-deep);
    line-height: 1;
}

.hero-stat .lbl {
    font-size: 11px;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}


/* ============================================================
   SECTION CHROME
   ============================================================ */
section {
    padding: 100px 32px;
    position: relative;
}

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

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 32px;
    flex-wrap: wrap;
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose-deep);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--rose-deep);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    max-width: 600px;
}

.section-title em {
    font-style: italic;
    color: var(--rose-deep);
}

.section-aside {
    font-size: 15px;
    color: var(--text-mid);
    max-width: 320px;
}


/* ============================================================
   PROJECTS
   ============================================================ */
.projects { background: #fff; }

.filter-row {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.chip {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(201, 107, 138, 0.08);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.chip:hover { background: rgba(201, 107, 138, 0.18); }
.chip.is-active { background: var(--text-dark); color: #fff; }

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

.project-card {
    background: #fff;
    border: 1px solid rgba(201, 107, 138, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.project-card.is-hidden {
    display: none;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(74, 37, 53, 0.12);
    border-color: var(--rose-deep);
}

.project-cover {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-petal) 0%, var(--rose-blossom) 100%);
    display: grid;
    place-items: center;
}

.project-cover--purple { background: linear-gradient(135deg, #c9a0dc, #b06ab3); }
.project-cover--dark { background: linear-gradient(135deg, #1a0a2e, #6A1B9A); }
.project-cover--soft { background: linear-gradient(135deg, #FFF0F4, #FADADD); }
.project-cover--green { background: linear-gradient(135deg, #7CCC44, #4D9920); }
.project-cover--hot { background: linear-gradient(135deg, #FF6482, #C96B8A); }

.project-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.project-cover-icon {
    font-size: 64px;
    color: var(--rose-deep);
    opacity: 0.5;
}

.project-cover-icon--light { color: #fff; opacity: 0.7; }
.project-cover-icon--hot { color: #FF6482; opacity: 0.7; }

.project-cover .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-body {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.project-desc {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 16px;
    flex: 1;
}

.project-tech {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.project-tech span {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(201, 107, 138, 0.08);
    color: var(--rose-deep-2);
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 18px;
}

.project-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.project-links a:hover { color: var(--rose-deep); }
.project-links a i { font-size: 11px; transition: transform 0.2s; }
.project-links a:hover i { transform: translateX(3px); }


/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience {
    background: linear-gradient(180deg, var(--rose-light) 0%, #fff 100%);
}

.exp-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
}

.exp-row {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 32px;
    align-items: start;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid rgba(201, 107, 138, 0.1);
    border-radius: 20px;
    transition: all 0.25s;
}

.exp-row:hover {
    border-color: var(--rose-deep);
    box-shadow: 0 12px 30px rgba(74, 37, 53, 0.08);
    transform: translateX(4px);
}

.exp-when {
    font-size: 13px;
    font-weight: 600;
    color: var(--rose-deep);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 4px;
}

.exp-main h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.exp-main .company {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 10px;
}

.exp-main ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.exp-main li {
    font-size: 14px;
    color: var(--text-mid);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.exp-main li::before {
    content: '\00B7';
    position: absolute;
    left: 4px;
    top: -2px;
    color: var(--rose-deep);
    font-size: 22px;
    line-height: 1;
}

.exp-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(201, 107, 138, 0.1);
    color: var(--rose-deep-2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about { background: #fff; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
}

.about-photo {
    border-radius: var(--blob);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 50px rgba(74, 37, 53, 0.15);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-blurb {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.65;
}

.about-blurb strong {
    color: var(--rose-deep);
    font-weight: 600;
}

.about-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fact-card {
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--rose-light);
    border: 1px solid rgba(201, 107, 138, 0.12);
}

.fact-card .ico {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    color: var(--rose-deep);
    font-size: 16px;
}

.fact-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.fact-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.45;
}

.now-playing {
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--text-dark);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
}

.now-playing .vinyl {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 8%, #1a0a2e 12%, #4a2535 100%);
    flex-shrink: 0;
    animation: spin 4s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.now-playing .meta .label {
    font-size: 11px;
    color: var(--rose-mid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.now-playing .meta .track {
    font-size: 14px;
    font-weight: 600;
}

.now-playing .meta .artist {
    font-size: 12px;
    opacity: 0.7;
}


/* ============================================================
   STORIES (Professional)
   ============================================================ */
.stories-pro {
    background: linear-gradient(180deg, var(--rose-light) 0%, #fff 100%);
}

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

.article-card {
    background: #fff;
    border: 1px solid rgba(201, 107, 138, 0.1);
    border-radius: 20px;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(74, 37, 53, 0.12);
    border-color: var(--rose-deep);
}

.article-card .article-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    width: fit-content;
}

.article-tag--ai       { background: rgba(106, 27, 154, 0.1); color: var(--purple-deep); }
.article-tag--career   { background: rgba(201, 107, 138, 0.1); color: var(--rose-deep-2); }
.article-tag--tutorial { background: rgba(124, 204, 68, 0.12); color: #3d7a1c; }
.article-tag--culture  { background: rgba(255, 100, 130, 0.1); color: var(--rose-hot); }

.article-card .article-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    line-height: 1.3;
}

.article-card .article-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
}

.article-card .article-topics {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.article-card .article-topics span {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(201, 107, 138, 0.08);
    color: var(--rose-deep-2);
    font-weight: 500;
}

.article-card .article-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.article-card .article-link:hover { color: var(--rose-deep); }
.article-card .article-link i { font-size: 11px; transition: transform 0.2s; }
.article-card .article-link:hover i { transform: translateX(3px); }


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2a1320 100%);
    color: #fff;
    padding: 120px 32px;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: var(--blob);
    background: radial-gradient(circle, rgba(201, 107, 138, 0.4), transparent 70%);
    transform: rotate(15deg);
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: var(--blob-flip);
    background: radial-gradient(circle, rgba(255, 100, 130, 0.3), transparent 70%);
    transform: rotate(-20deg);
}

.contact-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact .status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    margin-bottom: 24px;
}

.contact .status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse 2s infinite;
}

.contact h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.contact h2 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--rose-mid), var(--rose-hot));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact p {
    font-size: 17px;
    opacity: 0.7;
    max-width: 540px;
    margin: 0 auto 36px;
}

.contact-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.contact .btn-primary {
    background: #fff;
    color: var(--text-dark);
}

.contact .btn-primary:hover {
    background: var(--rose-mid);
    color: var(--text-dark);
}

.contact .btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.contact .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.contact-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-foot .links {
    display: flex;
    gap: 18px;
}

.contact-foot a:hover { color: #fff; }


/* ============================================================
   PERSONAL MODE — HERO
   ============================================================ */
.personal-hero {
    min-height: 100vh;
    padding: 140px 32px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #87CEEB 0%, #87CEEB 60%, #7CCC44 60%, #7CCC44 100%);
}

.personal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background:
        repeating-linear-gradient(90deg, #7CCC44 0 32px, #6BB838 32px 64px),
        repeating-linear-gradient(0deg, transparent 0 24px, rgba(0, 0, 0, 0.05) 24px 32px);
    background-blend-mode: multiply;
}

.ph-clouds {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ph-cloud {
    position: absolute;
    background: #fff;
    box-shadow: 16px 0 0 #fff, 32px 0 0 #fff, 48px 0 0 #fff, 16px -16px 0 #fff, 32px -16px 0 #fff;
    width: 16px;
    height: 16px;
    image-rendering: pixelated;
    animation: float 20s linear infinite;
}

@keyframes float {
    from { transform: translateX(-100px); }
    to { transform: translateX(calc(100vw + 100px)); }
}

.ph-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.pixel-avatar {
    width: 160px;
    height: 200px;
    margin: 0 auto 16px;
    image-rendering: pixelated;
    filter: drop-shadow(6px 6px 0 rgba(0, 0, 0, 0.35));
}

.pixel-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
    image-rendering: pixelated;
}

.ph-title {
    font-family: var(--font-pixel);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 4px 4px 0 #1a3010, 8px 8px 0 rgba(0, 0, 0, 0.2);
    letter-spacing: 0.04em;
}

.ph-sub {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: #1a3010;
    background: #C4A46C;
    border: 3px solid;
    border-color: #D4B87A #6B5335 #6B5335 #D4B87A;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 32px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}


/* ---------- SPOTIFY PIXEL WIDGET ---------- */
.spotify-pixel {
    max-width: 380px;
    margin: 24px auto 0;
    background: #1a3010;
    border: 4px solid;
    border-color: #4a7530 #0d1f12 #0d1f12 #4a7530;
    padding: 8px;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
}

.spotify-pixel-label {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: #b6f04d;
    padding: 4px 8px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.1em;
}

.spotify-pixel-label::before { content: '\25B6  NOW PLAYING'; }
.spotify-pixel-label::after { content: '\266A\266B'; animation: pulse 1.5s ease-in-out infinite; }

.spotify-pixel iframe { display: block; border-radius: 0; }


/* ---------- HOTBAR ---------- */
.ph-hotbar {
    display: inline-flex;
    gap: 4px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    margin-top: 16px;
}

.ph-slot {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid;
    border-color: #6B5335 #D4B87A #D4B87A #6B5335;
    display: grid;
    place-items: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
}

.ph-slot.is-selected {
    border-color: #fff;
    box-shadow: 0 0 0 2px #fff inset;
    transform: scale(1.05);
}

.ph-slot:hover { background: rgba(255, 255, 255, 0.25); }

.ph-slot .count {
    position: absolute;
    bottom: 0;
    right: 4px;
    font-family: var(--font-pixel);
    font-size: 11px;
    color: #fff;
    text-shadow: 1px 1px 0 #000;
}


/* ============================================================
   PERSONAL SECTIONS
   ============================================================ */
.pixel-section {
    padding: 80px 32px;
    position: relative;
}

.pixel-section h2 {
    font-family: var(--font-pixel);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: #b6f04d;
    text-align: center;
    text-shadow: 3px 3px 0 #000;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.pixel-section .subtitle {
    text-align: center;
    color: #a8c89a;
    margin-bottom: 48px;
    font-size: 14px;
}


/* ---------- BUCKET LIST ---------- */
.bucket-section {
    background: linear-gradient(180deg, #0d1f12 0%, #1a3010 100%);
}

.chest-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 32px;
}

.chest {
    width: 140px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s;
}

.chest:hover { transform: translateY(-4px); }
.chest.is-open { transform: translateY(-2px); }

.chest-icon {
    font-size: 48px;
    line-height: 1;
    filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.4));
    transition: transform 0.2s;
}

.chest.is-open .chest-icon { transform: scale(1.1) rotate(-5deg); }

.chest-label {
    font-family: var(--font-pixel);
    font-size: 11px;
    color: #fff;
    margin-top: 8px;
    background: #1a3010;
    padding: 4px 10px;
    border: 2px solid #4a7530;
    display: inline-block;
}

.chest.is-open .chest-label {
    background: #b6f04d;
    color: #1a3010;
    border-color: #fff;
}

.chest-count {
    font-size: 10px;
    color: #a8c89a;
    margin-top: 4px;
    font-family: var(--font-pixel);
}

.chest-pane {
    display: none;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border: 4px solid;
    border-color: #4a7530 #0d1f12 #0d1f12 #4a7530;
    padding: 24px;
    max-height: 480px;
    overflow-y: auto;
}

.chest-pane.is-active { display: block; }

.chest-pane::-webkit-scrollbar { width: 12px; }
.chest-pane::-webkit-scrollbar-track { background: #0d1f12; }
.chest-pane::-webkit-scrollbar-thumb { background: #4a7530; border: 2px solid #0d1f12; }

.chest-pane h3 {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: #b6f04d;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.bucket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.bucket-item {
    background: #C4A46C;
    border: 3px solid;
    border-color: #D4B87A #6B5335 #6B5335 #D4B87A;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.4s ease, scale 0.4s ease;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

/* Bucket item entrance animation */
.chest-pane .bucket-item {
    opacity: 0;
    scale: 0.92;
    transform: translateY(12px);
}

.chest-pane .bucket-item.is-entering {
    opacity: 1;
    scale: 1;
    transform: translateY(0);
}

/* Subtle glow on pane header when opening */
@keyframes chest-glow {
    0%   { text-shadow: 3px 3px 0 #000; }
    50%  { text-shadow: 3px 3px 0 #000, 0 0 12px #b6f04d; }
    100% { text-shadow: 3px 3px 0 #000; }
}

.chest-pane.is-active h3 {
    animation: chest-glow 0.8s ease-out;
}

.bucket-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}

.bucket-item.is-done { background: #7CCC44; }
.bucket-item.is-done .bucket-text { text-decoration: line-through; opacity: 0.7; }

.bucket-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid #1a3010;
    display: grid;
    place-items: center;
    font-family: var(--font-pixel);
    color: #1a3010;
    font-size: 14px;
}

.bucket-text {
    font-family: var(--font-pixel);
    font-size: 11px;
    color: #1a3010;
    line-height: 1.4;
}


/* ---------- VIBES / PINTEREST ---------- */
.vibes-section { background: #1a3010; }

.vibes-grid {
    columns: 4 220px;
    column-gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

.vibe-card {
    break-inside: avoid;
    margin-bottom: 12px;
    border: 3px solid;
    border-color: #D4B87A #6B5335 #6B5335 #D4B87A;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.4);
}

.vibe-card:hover { transform: translate(-2px, -2px) rotate(-1deg); }
.vibe-card img { width: 100%; height: auto; display: block; }

.vibe-text {
    padding: 16px;
    background: #2a4520;
    color: #e8f5e3;
    font-family: var(--font-pixel);
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.vibe-text--quote { background: #C4A46C; color: #1a3010; }


/* ---------- STORIES ---------- */
.stories-section {
    background: linear-gradient(180deg, #1a3010 0%, #0d1f12 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.story-card {
    background: #2a4520;
    border: 3px solid;
    border-color: #4a7530 #1a3010 #1a3010 #4a7530;
    padding: 24px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.story-card .day {
    font-family: var(--font-pixel);
    font-size: 11px;
    color: #b6f04d;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.story-card h3 {
    font-family: var(--font-pixel);
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.story-card p {
    font-size: 14px;
    color: #a8c89a;
    line-height: 1.6;
    font-family: var(--font-display);
}


/* ---------- DIALOGUE ---------- */
.villager-cta {
    padding: 100px 32px;
    background: #0d1f12;
    text-align: center;
}

.dialogue-box {
    max-width: 600px;
    margin: 0 auto;
    background: #C4A46C;
    border: 4px solid;
    border-color: #D4B87A #6B5335 #6B5335 #D4B87A;
    padding: 24px 28px;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
    position: relative;
}

.dialogue-box::before {
    content: 'DIVI';
    position: absolute;
    top: -28px;
    left: 16px;
    background: #1a3010;
    color: #b6f04d;
    font-family: var(--font-pixel);
    font-size: 12px;
    padding: 4px 12px;
    border: 3px solid #4a7530;
}

.dialogue-box p {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: #1a3010;
    line-height: 1.6;
    margin-bottom: 16px;
}

.dialogue-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
}

.dialogue-options a {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #6B5335;
    padding: 8px 12px;
    font-family: var(--font-pixel);
    font-size: 12px;
    color: #1a3010;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s;
}

.dialogue-options a:hover {
    background: #fff;
    transform: translateX(4px);
}

.dialogue-options a::before {
    content: '> ';
    color: #1a3010;
    font-weight: bold;
}


/* ============================================================
   DEVI MAA — CLOSING SECTION
   ============================================================ */
.devi-section {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
}

/* --- Top decorative edge --- */
.devi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 5;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--rose-deep) 20%,
        var(--rose-hot) 50%,
        var(--rose-deep) 80%,
        transparent 100%
    );
}

/* --- Bottom decorative edge --- */
.devi-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 5;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--rose-deep) 20%,
        var(--rose-hot) 50%,
        var(--rose-deep) 80%,
        transparent 100%
    );
}

/* --- Image carousel --- */
.devi-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.devi-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 2s ease-in-out, transform 8s ease-in-out;
}

.devi-img.is-active {
    opacity: 1;
    transform: scale(1);
}

/* --- Dark overlay --- */
.devi-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at center, rgba(26, 10, 46, 0.55) 0%, rgba(74, 37, 53, 0.85) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.4) 100%);
}

/* --- Vignette --- */
.devi-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    box-shadow: inset 0 0 150px 60px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* --- Floating particles --- */
.devi-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.devi-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--rose-petal);
    opacity: 0;
    animation: devi-float 6s ease-in-out infinite;
}

.devi-particles span:nth-child(1)  { left: 10%; animation-delay: 0s; animation-duration: 7s; }
.devi-particles span:nth-child(2)  { left: 20%; animation-delay: 1.2s; animation-duration: 5s; }
.devi-particles span:nth-child(3)  { left: 35%; animation-delay: 0.5s; animation-duration: 8s; }
.devi-particles span:nth-child(4)  { left: 45%; animation-delay: 2s; animation-duration: 6s; }
.devi-particles span:nth-child(5)  { left: 55%; animation-delay: 0.8s; animation-duration: 7.5s; }
.devi-particles span:nth-child(6)  { left: 65%; animation-delay: 1.5s; animation-duration: 5.5s; }
.devi-particles span:nth-child(7)  { left: 75%; animation-delay: 3s; animation-duration: 6.5s; }
.devi-particles span:nth-child(8)  { left: 85%; animation-delay: 0.3s; animation-duration: 8s; }
.devi-particles span:nth-child(9)  { left: 92%; animation-delay: 2.5s; animation-duration: 7s; }
.devi-particles span:nth-child(10) { left: 5%;  animation-delay: 1.8s; animation-duration: 6s; }
.devi-particles span:nth-child(11) { left: 50%; animation-delay: 3.5s; animation-duration: 5s; width: 2px; height: 2px; }
.devi-particles span:nth-child(12) { left: 30%; animation-delay: 4s; animation-duration: 7s; width: 2px; height: 2px; }

@keyframes devi-float {
    0%   { transform: translateY(100%) scale(0); opacity: 0; }
    15%  { opacity: 0.8; }
    50%  { opacity: 0.4; }
    85%  { opacity: 0.6; }
    100% { transform: translateY(-520px) scale(1); opacity: 0; }
}

/* --- Content --- */
.devi-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 40px 32px;
}

/* Om symbol */
.devi-chapter {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--rose-hot);
    opacity: 0.9;
    margin-bottom: 16px;
    animation: devi-breathe 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 100, 130, 0.4));
}

@keyframes devi-breathe {
    0%, 100% { opacity: 0.7; transform: scale(1); filter: drop-shadow(0 0 12px rgba(255, 100, 130, 0.3)); }
    50%      { opacity: 1;   transform: scale(1.05); filter: drop-shadow(0 0 28px rgba(255, 100, 130, 0.6)); }
}

/* Ornament stars */
.devi-ornament {
    font-size: 14px;
    color: var(--rose-mid);
    letter-spacing: 12px;
    margin-bottom: 20px;
    opacity: 0.7;
}

/* Slogan text */
.devi-slogan p {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.5vw, 1.45rem);
    font-weight: 600;
    font-style: italic;
    color: var(--rose-petal);
    line-height: 2;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6), 0 0 60px rgba(201, 107, 138, 0.15);
}

/* Decorative line */
.devi-line {
    width: 80px;
    height: 1px;
    margin: 24px auto;
    background: linear-gradient(90deg, transparent, var(--rose-mid), transparent);
}

/* Shakti label */
.devi-sub {
    font-size: 16px;
    color: var(--rose-mid);
    letter-spacing: 0.15em;
    opacity: 0.8;
    animation: devi-breathe 4s ease-in-out infinite 2s;
}

/* --- Personal mode overrides --- */
body.personal-mode .devi-section::before,
body.personal-mode .devi-section::after {
    background: linear-gradient(
        90deg,
        transparent 0%,
        #4a7530 20%,
        #b6f04d 50%,
        #4a7530 80%,
        transparent 100%
    );
}

body.personal-mode .devi-overlay {
    background:
        radial-gradient(ellipse at center, rgba(13, 31, 18, 0.55) 0%, rgba(13, 31, 18, 0.85) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.4) 100%);
}

body.personal-mode .devi-chapter {
    color: #b6f04d;
    filter: drop-shadow(0 0 20px rgba(182, 240, 77, 0.4));
}

body.personal-mode .devi-ornament {
    color: #7CCC44;
}

body.personal-mode .devi-slogan p {
    font-family: var(--font-pixel);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: #e8f5e3;
    text-shadow: 3px 3px 0 #000, 0 0 40px rgba(182, 240, 77, 0.15);
}

body.personal-mode .devi-line {
    background: linear-gradient(90deg, transparent, #4a7530, transparent);
}

body.personal-mode .devi-sub {
    color: #b6f04d;
}

body.personal-mode .devi-particles span {
    background: #b6f04d;
}

@keyframes devi-breathe-green {
    0%, 100% { opacity: 0.7; filter: drop-shadow(0 0 12px rgba(182, 240, 77, 0.3)); }
    50%      { opacity: 1;   filter: drop-shadow(0 0 28px rgba(182, 240, 77, 0.6)); }
}

body.personal-mode .devi-chapter {
    animation-name: devi-breathe-green;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 100px;
    }

    .hero-collage { height: 400px; }

    .currently-grid { grid-template-columns: 1fr; }
    .project-grid { grid-template-columns: 1fr; }
    .article-grid { grid-template-columns: 1fr; }

    .exp-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .nav-link { display: none; }

    .contact-foot {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .about-facts { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-collage {
        height: 320px;
    }

    .hero-photo--main {
        width: 220px;
        height: 280px;
        right: 20px;
    }

    .hero-photo--small {
        width: 140px;
        height: 170px;
    }

    .hero-hook {
        width: 90px;
        height: 90px;
        top: 30px;
        left: 10px;
    }

    section {
        padding: 60px 20px;
    }

    .ph-hotbar {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 320px;
    }

    .ph-slot {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

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

    .vibes-grid {
        columns: 2 160px;
    }

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

    .chest-row {
        gap: 12px;
    }

    .chest {
        width: 100px;
    }

    .chest-icon {
        font-size: 36px;
    }
}
