/* ===== BALAJI KINIKAR — DESIGN #8 ===== */
/* MIDNIGHT INDIGO & AMBER GOLD | Plus Jakarta Sans + IBM Plex Sans */
/* Full-bleed hero, dashboard bento, horizontal scroll, sticky sidebar, masonry gallery */
/* Scroll progress bar, staggered card reveals, card flip hover */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
    --indigo-50: #eef2ff;
    --indigo-100: #e0e7ff;
    --indigo-200: #c7d2fe;
    --indigo-300: #a5b4fc;
    --indigo-400: #818cf8;
    --indigo-500: #6366f1;
    --indigo-600: #4f46e5;
    --indigo-700: #4338ca;
    --indigo-800: #3730a3;
    --indigo-900: #312e81;
    --indigo-950: #1e1b4b;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --zinc-50: #fafafa;
    --zinc-100: #f4f4f5;
    --zinc-200: #e4e4e7;
    --zinc-300: #d4d4d8;
    --zinc-400: #a1a1aa;
    --zinc-500: #71717a;
    --zinc-600: #52525b;
    --zinc-700: #3f3f46;
    --zinc-800: #27272a;
    --zinc-900: #18181b;
    --zinc-950: #09090b;
    --white: #fff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .15);
    --tr: .3s ease;
    --radius: 14px
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: var(--zinc-50);
    color: var(--zinc-600);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

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

img {
    max-width: 100%;
    display: block
}

ul,
ol {
    list-style: none
}

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--zinc-900);
    font-weight: 700
}

/* ===== SCROLL PROGRESS BAR (top of page) ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--indigo-600), var(--amber-500));
    z-index: 2000;
    width: 0%;
    transition: width .1s linear
}

/* ===== NAVBAR — transparent → indigo ===== */
.navbar {
    position: fixed;
    top: 3px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all .35s ease
}

.navbar.scrolled {
    background: rgba(30, 27, 75, .95);
    backdrop-filter: blur(16px);
    padding: 10px 0
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans';
    font-size: .9rem;
    font-weight: 800;
    color: var(--indigo-950)
}

.logo-name {
    font-family: 'Plus Jakarta Sans';
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em
}

.logo-name small {
    display: block;
    font-size: .5rem;
    font-weight: 600;
    color: var(--amber-400);
    text-transform: uppercase;
    letter-spacing: .15em
}

.nav-links {
    display: flex;
    gap: 4px
}

.nav-links a {
    color: rgba(255, 255, 255, .6);
    font-size: .8rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--tr)
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, .08)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: var(--tr)
}

/* ===== FULL-BLEED CINEMATIC HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end
}

.hero-bg {
    position: absolute;
    inset: 0
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 27, 75, .95) 0%, rgba(30, 27, 75, .6) 40%, rgba(30, 27, 75, .2) 70%, rgba(30, 27, 75, .3) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px 80px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, .1);
    border: 1px solid rgba(245, 158, 11, .2);
    color: var(--amber-400);
    font-size: .6rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 16px
}

.hero-badge .pulse {
    width: 6px;
    height: 6px;
    background: var(--amber-500);
    border-radius: 50%;
    animation: pulse 2s ease infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.5)
    }
}

.hero-text h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 1.04;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -.035em
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    color: rgba(255, 255, 255, .55);
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 28px
}

.hero-btns {
    display: flex;
    gap: 12px
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.h-stat {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    min-width: 130px
}

.h-stat .hs-num {
    font-family: 'Plus Jakarta Sans';
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.h-stat .hs-lbl {
    font-size: .55rem;
    color: var(--amber-400);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 3px
}

.scroll-cue {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.scroll-cue span {
    font-size: .55rem;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    letter-spacing: .15em
}

.scroll-cue .line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--amber-500), transparent);
    animation: cue 2s ease infinite
}

@keyframes cue {

    0%,
    100% {
        opacity: 1;
        height: 32px
    }

    50% {
        opacity: .3;
        height: 20px
    }
}

/* ===== DASHBOARD BENTO GRID ===== */
.dashboard {
    padding: 80px 0;
    background: var(--white)
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px
}

.dash-header {
    margin-bottom: 36px
}

.dash-header h2 {
    font-size: 1.8rem;
    letter-spacing: -.02em
}

.dash-header p {
    color: var(--zinc-500);
    font-size: .92rem;
    margin-top: 6px
}

.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 160px;
    gap: 16px
}

.bento-card {
    background: var(--zinc-50);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all .4s ease;
    border: 1px solid var(--zinc-200)
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.bento-card.span-6 {
    grid-column: span 6
}

.bento-card.span-4 {
    grid-column: span 4
}

.bento-card.span-3 {
    grid-column: span 3
}

.bento-card.span-8 {
    grid-column: span 8
}

.bento-card.row-2 {
    grid-row: span 2
}

.bento-card.dark {
    background: var(--indigo-950);
    border-color: var(--indigo-900)
}

.bento-card.dark h3,
.bento-card.dark p {
    color: var(--zinc-300)
}

.bento-card.dark h3 {
    color: #fff
}

.bento-card.gold {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    border-color: transparent
}

.bento-card.gold h3,
.bento-card.gold p,
.bento-card.gold .bc-num {
    color: var(--indigo-950)
}

.bc-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%
}

.bc-icon {
    font-size: 1.6rem;
    margin-bottom: 12px
}

.bc-inner h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    font-family: 'Plus Jakarta Sans'
}

.bc-inner p {
    font-size: .8rem;
    color: var(--zinc-500);
    line-height: 1.6;
    flex: 1
}

.bc-num {
    font-family: 'Plus Jakarta Sans';
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--indigo-600)
}

.bc-label {
    font-size: .55rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--zinc-500)
}

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

.bc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    font-size: .72rem;
    font-weight: 700;
    color: var(--indigo-600);
    text-transform: uppercase;
    letter-spacing: .06em;
    padding-top: 10px
}

.bento-card.dark .bc-link {
    color: var(--amber-400)
}

.bento-card.gold .bc-link {
    color: var(--indigo-950)
}

/* ===== HORIZONTAL SCROLL STRIP ===== */
.h-scroll-strip {
    background: var(--indigo-950);
    padding: 60px 0;
    overflow: hidden
}

.h-scroll-header {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 28px
}

.h-scroll-header h2 {
    color: #fff;
    font-size: 1.6rem
}

.h-scroll-header p {
    color: var(--zinc-500);
    font-size: .88rem;
    margin-top: 4px
}

.h-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 28px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.h-track::-webkit-scrollbar {
    display: none
}

.h-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--tr)
}

.h-item:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-3px)
}

.h-item .hi-yr {
    font-family: 'Plus Jakarta Sans';
    font-size: .6rem;
    font-weight: 800;
    color: var(--amber-400);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 10px
}

.h-item h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px
}

.h-item p {
    color: var(--zinc-500);
    font-size: .82rem;
    line-height: 1.6
}

.h-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px
}

.h-arr {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    background: transparent;
    cursor: pointer;
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr)
}

.h-arr:hover {
    background: var(--amber-500);
    color: var(--indigo-950);
    border-color: transparent
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    border: none;
    transition: var(--tr)
}

.btn-gold {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--indigo-950);
    box-shadow: 0 4px 14px rgba(245, 158, 11, .25)
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, .35)
}

.btn-glass {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px)
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff
}

.btn-indigo {
    background: var(--indigo-600);
    color: #fff;
    box-shadow: 0 4px 14px rgba(79, 70, 229, .2)
}

.btn-indigo:hover {
    background: var(--indigo-700);
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    color: var(--zinc-600);
    border: 1.5px solid var(--zinc-300)
}

.btn-outline:hover {
    border-color: var(--indigo-500);
    color: var(--indigo-600)
}

/* ===== PAGE HEADER ===== */
.pg-header {
    padding: 130px 0 50px;
    background: var(--indigo-950);
    position: relative;
    overflow: hidden
}

.pg-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, .04), transparent 70%);
    border-radius: 50%
}

.pg-header .container {
    position: relative;
    z-index: 2
}

.pg-header h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -.02em
}

.pg-header h1 span {
    color: var(--amber-400)
}

.pg-header p {
    color: var(--zinc-500);
    font-size: .92rem
}

.breadcrumb {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    font-size: .75rem
}

.breadcrumb a {
    color: var(--amber-400)
}

.breadcrumb em {
    color: var(--zinc-600);
    font-style: normal
}

/* ===== TWO-PANEL LAYOUT (sticky sidebar + content) ===== */
.two-panel {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 48px 0
}

.side-nav {
    position: sticky;
    top: 100px;
    height: fit-content
}

.side-nav a {
    display: block;
    padding: 10px 16px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--zinc-500);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: var(--tr);
    margin-bottom: 2px
}

.side-nav a:hover,
.side-nav a.active {
    color: var(--indigo-600);
    background: var(--indigo-50);
    border-left-color: var(--indigo-600)
}

.panel-content {
    min-width: 0
}

.panel-section {
    margin-bottom: 52px;
    scroll-margin-top: 100px
}

.panel-section h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    letter-spacing: -.01em
}

.panel-section p {
    margin-bottom: 12px
}

/* ===== SECTION COMPONENTS ===== */
.section {
    padding: 72px 0
}

.sec-white {
    background: var(--white)
}

.sec-zinc {
    background: var(--zinc-50)
}

.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    margin: 24px 0
}

.duo.flip {
    direction: rtl
}

.duo.flip>* {
    direction: ltr
}

.duo-img {
    border-radius: var(--radius);
    overflow: hidden
}

.duo-img img {
    width: 100%;
    height: 320px;
    object-fit: cover
}

.chip-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px
}

.chip {
    background: var(--indigo-50);
    color: var(--indigo-700);
    padding: 5px 14px;
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 700
}

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

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--zinc-200);
    transition: var(--tr)
}

.info-card:hover {
    border-color: var(--indigo-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px)
}

.info-card .ico {
    font-size: 1.3rem;
    margin-bottom: 10px
}

.info-card h3 {
    font-size: .95rem;
    margin-bottom: 5px
}

.info-card p {
    font-size: .82rem;
    color: var(--zinc-500);
    line-height: 1.7
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 24px 0
}

.stat-box {
    background: var(--indigo-950);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    color: #fff
}

.stat-box.gold {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--indigo-950)
}

.stat-box .sb-num {
    font-family: 'Plus Jakarta Sans';
    font-size: 2rem;
    font-weight: 800;
    line-height: 1
}

.stat-box .sb-lbl {
    font-size: .55rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 4px
}

.stat-box .sb-lbl {
    color: var(--zinc-400)
}

.stat-box.gold .sb-lbl {
    color: var(--indigo-800)
}

/* WORK CARDS */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 24px 0
}

.w-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 14px;
    border: 1px solid var(--zinc-200);
    transition: var(--tr)
}

.w-card:hover {
    border-color: var(--indigo-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px)
}

.w-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--indigo-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.w-card h3 {
    font-size: .92rem;
    margin-bottom: 4px
}

.w-card p {
    font-size: .8rem;
    color: var(--zinc-500);
    line-height: 1.7
}

/* ===== MASONRY GALLERY ===== */
.masonry {
    column-count: 3;
    column-gap: 14px;
    margin: 24px 0
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: .5s ease
}

.masonry-item:hover img {
    transform: scale(1.06)
}

.masonry-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 27, 75, 0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--tr)
}

.masonry-item:hover .masonry-ov {
    opacity: 1
}

.masonry-ov h4 {
    color: #fff;
    font-size: .85rem;
    font-family: 'Plus Jakarta Sans'
}

.masonry-ov p {
    color: var(--amber-300);
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(9, 9, 11, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--tr)
}

.lightbox.active {
    opacity: 1;
    visibility: visible
}

.lightbox img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px
}

.lb-x {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .04);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr)
}

.lb-x:hover {
    background: var(--amber-500);
    color: var(--indigo-950);
    border-color: transparent
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 24px 0
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.fg label {
    font-size: .65rem;
    font-weight: 700;
    color: var(--zinc-500);
    text-transform: uppercase;
    letter-spacing: .1em
}

.fg input,
.fg textarea {
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--zinc-200);
    background: var(--white);
    color: var(--zinc-800);
    font-family: 'IBM Plex Sans';
    font-size: .88rem;
    transition: var(--tr);
    outline: none
}

.fg input:focus,
.fg textarea:focus {
    border-color: var(--indigo-500);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, .06)
}

.fg textarea {
    min-height: 120px;
    resize: vertical
}

.c-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.c-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--zinc-200)
}

.c-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--indigo-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0
}

.c-card h4 {
    font-size: .85rem;
    color: var(--zinc-800);
    margin-bottom: 2px;
    font-family: 'Plus Jakarta Sans'
}

.c-card p {
    color: var(--zinc-500);
    font-size: .78rem;
    line-height: 1.5
}

/* ===== FOOTER ===== */
.footer {
    background: var(--zinc-950);
    padding: 28px 0
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.footer-left {
    color: var(--zinc-600);
    font-size: .75rem
}

.footer-right {
    font-size: .75rem;
    color: var(--zinc-600)
}

.footer-right a {
    color: var(--amber-400);
    font-weight: 700;
    transition: var(--tr)
}

.footer-right a:hover {
    color: var(--amber-300)
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 0 0;
    margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .04)
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .03);
    color: var(--zinc-500);
    transition: var(--tr)
}

.footer-social a:hover {
    background: var(--amber-500);
    color: var(--indigo-950);
    transform: translateY(-3px)
}

.footer-social a svg {
    width: 13px;
    height: 13px;
    fill: currentColor
}

/* ===== STAGGERED ANIMATIONS ===== */
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .5s ease, transform .5s ease
}

.rv.on {
    opacity: 1;
    transform: translateY(0)
}

.rv:nth-child(1) {
    transition-delay: 0s
}

.rv:nth-child(2) {
    transition-delay: .08s
}

.rv:nth-child(3) {
    transition-delay: .16s
}

.rv:nth-child(4) {
    transition-delay: .24s
}

.rv:nth-child(5) {
    transition-delay: .32s
}

.rv:nth-child(6) {
    transition-delay: .4s
}

.rvl {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .5s ease, transform .5s ease
}

.rvl.on {
    opacity: 1;
    transform: translateX(0)
}

.rvr {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .5s ease, transform .5s ease
}

.rvr.on {
    opacity: 1;
    transform: translateX(0)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .bento {
        grid-template-columns: repeat(6, 1fr)
    }

    .bento-card.span-4,
    .bento-card.span-3 {
        grid-column: span 3
    }

    .bento-card.span-8 {
        grid-column: span 6
    }

    .hero-content {
        grid-template-columns: 1fr
    }

    .hero-stats {
        flex-direction: row
    }

    .two-panel {
        grid-template-columns: 1fr
    }

    .side-nav {
        display: none
    }

    .duo,
    .duo.flip,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .duo.flip {
        direction: ltr
    }

    .stat-strip {
        grid-template-columns: 1fr 1fr
    }

    .info-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--indigo-950);
        flex-direction: column;
        padding: 80px 24px;
        gap: 4px;
        transition: var(--tr);
        box-shadow: -4px 0 20px rgba(0, 0, 0, .2)
    }

    .nav-links.active {
        right: 0
    }

    .nav-toggle {
        display: flex
    }

    .bento {
        grid-template-columns: repeat(2, 1fr)
    }

    .bento-card.span-6,
    .bento-card.span-4,
    .bento-card.span-3,
    .bento-card.span-8 {
        grid-column: span 2
    }

    .bento-card.span-3 {
        grid-column: span 1
    }

    .hero-stats {
        flex-wrap: wrap
    }

    .h-stat {
        min-width: 100px
    }

    .work-grid,
    .info-grid,
    .stat-strip {
        grid-template-columns: 1fr
    }

    .masonry {
        column-count: 2
    }

    .footer .container {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }
}

@media(max-width:480px) {
    .masonry {
        column-count: 1
    }

    .bento-card.span-3 {
        grid-column: span 2
    }
}