:root {
    --bg: #0a0a0a;
    --bg-elev: #121212;
    --text: #f5f5f5;
    --muted: #c8c8c8;
    --line: #2a2a2a;
    --accent1: #ffe6b3;
    --accent2: #b7e1ff;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}


* {
    box-sizing: border-box
}

@font-face {
    font-family: 'Bungee Tint';
    src: url('./fonts/bungee-tint-v3-latin-regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Lexend Deca';
    src: url('./fonts/lexend-deca-v25-latin-regular.woff2') format('woff2');
    font-display: swap;
}



html,
body {
    height: 100%;
    margin: 0;
    padding: 0
}

body {
    font-family: "Lexend Deca", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    background: var(--bg);
    color: var(--text)
}

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

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 48px 0;
    background: var(--bg)
}

@font-face {
    font-family: 'Inter';
    src: url('./fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-display: swap;
    font-weight: 900;
}

h2 {
    font-family: Bungee Tint;
}

p {
    font-family: "Lexend Deca", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto;
}

/*#feedContainer{background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.12); border-radius:24px; box-shadow:var(--shadow);}*/
.reelCard {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    padding: 16px;
    /* ← Consistent padding */
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* ← Added transition */
}

.mainChild {
    display: flex;
    gap: 24px
}

.collage {
    flex: 1;
    overflow: hidden;
    margin-top: 32px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    box-shadow: var(--shadow);
    min-width: 300px;
    min-height: 400px;
}

#feedContainer {
    flex: 1
}

@media (max-width: 768px) {
    .mainChild {
        flex-direction: column;
    }
}


.card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    box-shadow: var(--shadow);
}


.reelCard {
    padding-top: 1px;
}

/* ✅ ADDED */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
    max-height: 50px;
}

.card-metric {
    font-size: 12px;
    color: var(--muted);
    align-self: end;
    white-space: nowrap;
    /* ← Prevents wrapping */
    flex-shrink: 0;
    /* ← Doesn't shrink */
}

.card:hover,
.reelCard:hover {
    /* ← Added hover effect */
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
}

.title-xl {
    font-size: 40px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -.02em;
    font-family: 'Bungee Tint';
}

.title-lg {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700
}

.title-md {
    font-size: 24px;
    font-weight: 600
}

.text-muted {
    color: var(--muted)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .08);
    /* backdrop-filter: saturate(140%) blur(6px); */
    font-weight: 600;
    cursor: pointer;
    transition: background .2s
}

.btn:hover {
    background: rgba(255, 255, 255, .14)
}

.grid {
    display: grid;
    gap: 24px
}

@media(min-width:768px) {
    .grid-2 {
        grid-template-columns: 1fr
    }
}

@media(min-width:768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr
    }
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 12px
}

/* hero visuals */
.hero {
  /* margin-top:50px; */
    position: relative;
    /* min-height: 90vh; */
    overflow: hidden
}

.vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, .06), transparent 60%);
    pointer-events: none
}

.grain {
    position: absolute;
    inset: 0;
    opacity: .25;
    background-size: 200px 200px;
    animation: grain 8s steps(10) infinite;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.25"/></svg>')
}

@keyframes grain {
    0% {
        transform: translate(0, 0)
    }

    10% {
        transform: translate(-5%, -10%)
    }

    20% {
        transform: translate(-15%, 5%)
    }

    30% {
        transform: translate(7%, -25%)
    }

    40% {
        transform: translate(-5%, 25%)
    }

    50% {
        transform: translate(-15%, 10%)
    }

    60% {
        transform: translate(15%, 0)
    }

    70% {
        transform: translate(0, 15%)
    }

    80% {
        transform: translate(3%, 25%)
    }

    90% {
        transform: translate(-10%, 10%)
    }

    100% {
        transform: translate(0, 0)
    }
}

.fade-in {
    animation: fade .6s ease both
}

.rise-in {
    animation: rise .7s .15s ease both
}

@keyframes fade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

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

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

/* progress bar */
.progress {
    position: fixed;
    left: 0;
    top: 0;
    height: 4px;
    width: 100%;
    transform-origin: left;
    background: linear-gradient(90deg, var(--accent1), #fff, var(--accent2));
    z-index: 50;
    transform: scaleX(0)
}

/* sticky section nav */
.rail {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    gap: 12px;
    z-index: 40;
    flex-direction: column
}

.contact:hover{
transform: translate(1%, -1.5%);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .4);
    display: block;
    transition: transform .2s, background .2s
}

.dot.active {
    transform: scale(1.2);
    background: #fff
}

@media(min-width:900px) {
    .rail {
        display: flex
    }
}

/* util */
.mt-2 {
    margin-top: 8px
}

.mt-3 {
    margin-top: 12px
}

.mt-4 {
    margin-top: 16px
}

.mt-6 {
    margin-top: 24px
}

.mt-8 {
    margin-top: 32px
}

.mt-10 {
    margin-top: 40px
}

.mb-2 {
    margin-bottom: 8px
}

.mb-3 {
    margin-bottom: 12px
}

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

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

.center {
    text-align: center
}

/* feed */
.feed-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.feed-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, .1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
      border: 1px solid rgb(255, 255, 255, 0.66);
}


/* ✅ ADDED */
.poster {
    /* ← Increased from 160px */
    border-radius: 16px;
    overflow: hidden;
    border: 0px solid rgba(255, 255, 255, .08);
    background: linear-gradient(135deg, rgba(120, 120, 120, .2), rgba(80, 80, 80, .1));
    position: relative;
    /* ← For absolute shimmer */
}

video.poster {
    width: 100%;
    object-fit: cover;
}

img.poster {
    width: 100%;
    object-fit: contain;
    /* padding: 4px; */
    background: #eeeaef;
}

/* #singleElement{
height: auto;

} */


footer {
    border-top: 1px solid var(--line);
    background: rgba(10, 10, 10, .8);
    padding: 40px 0;
    text-align: center;
    color: #a0a0a0
}

/* magnetic button */
.magnetic-btn {
    position: relative;
    overflow: hidden;
    transition: transform .1s
}

.magnetic-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    transform: scale(1.5);
    opacity: 0;
    filter: blur(12px);
    background: linear-gradient(45deg, rgba(255, 230, 179, .3), rgba(255, 255, 255, .1), rgba(183, 225, 255, .3));
    transition: opacity .25s;
    pointer-events: none
}

.magnetic-btn:hover .magnetic-glow {
    opacity: 0.6
}

.hero video {
    width: 100%;
    /* full page width */
    height: 325px;
    /* fixed height you control */
    display: block;
    /* removes inline spacing */
    object-fit: cover;
    margin-top: 25px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    margin-top: 25px;
    background: linear-gradient(135deg, rgba(255, 230, 179, .15), rgba(183, 225, 255, .12));
    background-size: cover;
    background-position: center;
    /* fills box, crops edges if needed */
}

/* lottie slot */
.lottie-slot {
    height: 325px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    margin-top: 25px;
    background: linear-gradient(135deg, rgba(255, 230, 179, .15), rgba(183, 225, 255, .12));
    background-size: cover;
    background-position: center
}

/* hero content */
.hero-content {
    /* min-height: 90vh; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 48px
}

/* scroll indicator */
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    text-align: center;
    color: var(--muted)
}

.scroll-arrow {
    font-size: 20px
}

.scroll-text {
    font-size: 14px;
    color: #a0a0a0;
    margin-top: 4px
}

/* reel card */
.reel-card {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    animation: cardIn .6s ease forwards
}

/* .reel-card-glow{position:absolute; left:-40px; top:-40px; width:160px; height:160px; border-radius:999px; filter:blur(30px); background:linear-gradient(135deg, rgba(255,230,179,.25), rgba(183,225,255,.25)); opacity:.7}*/
/* ✅ ADDED */
.reel-card-glow {
    position: absolute;
    left: 20px;
    /* ← Inside card bounds */
    top: 20px;
    /* ← Inside card bounds */
    width: 120px;
    /* ← Smaller size */
    height: 120px;
    /* ← Smaller size */
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 230, 179, .2), rgba(183, 225, 255, .2));
    filter: blur(40px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    /* ← Explicit z-index */
}

/* ✅ ADDED */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    /* ← Better padding */
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 12px;
    font-weight: 500;
    /* ← Added weight */
    white-space: nowrap;
}

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

/* ✅ ADDED */
.card-description {
    margin: 12px 0 16px 0;
    line-height: 1.5;
    /* ← Better readability */
}

/* ✅ ADDED */
.shim {
    position: absolute;
    /* ← Changed from implicit */
    inset: 0;
    /* ← Covers entire poster */
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(255, 255, 255, .05) 40%,
            rgba(255, 255, 255, .1) 50%,
            rgba(255, 255, 255, .05) 60%,
            transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
    /* ← New animation */
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(30deg);
    }
}

/* marquee */
.marquee-container {
    position: relative;
    overflow: hidden
}

.marquee {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    padding: 16px 0;
    color: var(--muted);
    animation: marquee 30s linear infinite;
    will-change: transform
}

.marquee-item {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    opacity: .85
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* about grid */
.about-grid {
    align-items: center
}

.about-card-img {
    aspect-ratio: 4/5;
    width: 100%
}

.about-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
    color: #e0e0e0;
    justify-self: center;
}

.hubfolio-hero,
.hubfolio-hero * {
    box-sizing: border-box;
}

.hubfolio-hero {
    --hubfolio-bg: #050505;
    --hubfolio-card-bg: #171717;
    --hubfolio-card-bg-light: #ffffff;
    --hubfolio-accent: #ff4b36;
    --hubfolio-accent-soft: #ffe5df;
    --hubfolio-text-main: #ffffff;
    --hubfolio-text-muted: #b0b0b0;
    --hubfolio-radius-xl: 26px;

    font-family: "Lexend Deca", "Inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    color: var(--hubfolio-text-main);
    padding: 40px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hubfolio-hero.mt-8 {
    margin: 48px 0;
}

.hubfolio-hero-shell {
    max-width: 1120px;
    width: 100%;
    background: var(--hubfolio-card-bg);
    border-radius: 34px;
    padding: 18px 12px;
    box-shadow: 0 28px 120px rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.hubfolio-hero-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1.4fr) 280px;
    gap: 12px;
}

.hubfolio-hero-sub-card {
    border-radius: var(--hubfolio-radius-xl);
    background: #1f1f1f;
    padding: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* LEFT COLUMN CONTENT (LOGO + CONTACT) */
.hubfolio-hero-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 650px;
    padding: 0px;
}

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

.hubfolio-hero-logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #202020);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 30px;
}

.hubfolio-hero-logo-label {
    font-family: "Lexend Deca", "Poppins", system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    font-size: 12px;
    text-transform: uppercase;
}

.hubfolio-hero-tagline {
    margin-top: 16px;
    font-size: 13px;
    color: var(--hubfolio-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hubfolio-hero-contact {
    font-size: 13px;
    color: var(--hubfolio-text-muted);
    line-height: 1.7;
    margin-top: 18px;
}

.hubfolio-hero-social {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.hubfolio-hero-circle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #2a2a2a;
    color: var(--hubfolio-text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.15s ease, box-shadow 0.15s ease,

}

.hubfolio-hero-circle-btn:hover {
    transform: translateY(-1px) scale(1.02);
    background: #353535;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.hubfolio-hero-btn-primary {
    width: 100%;
    border-radius: 999px;
    border: none;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ff7a3c, #ff4b36);
    color: #ffffff;
    font-family: "Lexend Deca", "Poppins", system-ui, sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 16px 38px rgba(255, 75, 54, 0.45);
    transition: transform 0.18s ease, box-shadow 0.18s ease,
        filter 0.18s ease;
}

.hubfolio-hero-btn-primary::after {
    content: "↗";
    font-size: 13px;
}

.hubfolio-hero-btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 22px 46px rgba(255, 75, 54, 0.6);
}

/* CENTER CARD WITH IMAGE + FLOATING TEXT */
.hubfolio-hero-main {
    padding: 0;
    max-height: 650px;
    background: #101010;
}

.hubfolio-hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: contrast(1.06) saturate(1.05);
    transform: scale(1.02);
    transform-origin: center;
    position: relative;
}

.hubfolio-hero-overlay {
    position: absolute;
    inset: 0;
    padding: 34px 34px 26px;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.hubfolio-hero-title {
    font-family: "Lexend Deca", "Poppins", system-ui, sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.02;
    margin: 0;
    letter-spacing: -0.06em;
}

.hubfolio-hero-subtitle {
    margin-top: 20px;
    max-width: 290px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.hubfolio-hero-rating {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.82);
    /* backdrop-filter: blur(16px); */
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 12px;
}

/* RIGHT SIDE COLUMN */
.hubfolio-hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 650px;
}

.hubfolio-hero-info-card {
    background: var(--hubfolio-card-bg-light);
    color: #111111;
    position: relative;
    overflow: hidden;
    flex: 1;
}

.hubfolio-hero-info-card p {
    font-family: "Lexend Deca", "Inter", system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.hubfolio-hero-info-card p strong {
    font-family: "Lexend Deca", "Poppins", system-ui, sans-serif;
    font-weight: 600;
    font-size: 15px;
}

.hubfolio-hero-chips {
    position: relative;
    height: 140px;
    margin-top: 18px;
}

.hubfolio-hero-chip {
    position: absolute;
    padding: 9px 18px;
    border-radius: 999px;
    font-family: "Lexend Deca", "Poppins", system-ui, sans-serif;
    font-size: 11px;
    font-weight: 500;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

/* RANDOM FLOATING POSITIONS */
.hubfolio-hero-chips .hubfolio-hero-chip:nth-child(1) {
    top: 4px;
    background: #f1f1f1;

}

.hubfolio-hero-chips .hubfolio-hero-chip:nth-child(2) {
    right: -10px;
    background: var(--hubfolio-accent);
    color: #ffffff;
}

.hubfolio-hero-chips .hubfolio-hero-chip:nth-child(3) {
    bottom: -8px;
    left: 32%;
    background: #111111;
    color: #ffffff;
    transform: rotate(-5deg);
}

.hubfolio-hero-chip-accent {
    background: var(--hubfolio-accent-soft);
    color: #ff3a23;
    font-weight: 600;
    top: 4px;
}

.hubfolio-hero-award-card {
    background: var(--hubfolio-accent);
    color: #ffece8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "Lexend Deca", "Poppins", system-ui, sans-serif;
    flex: 1;
}

.hubfolio-hero-award-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 10px;
}

.hubfolio-hero-circle-btn--small {
    width: 30px;
    height: 30px;
    font-size: 11px;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
    .hubfolio-hero-grid {
        grid-template-columns: 1fr;
    }

    .hubfolio-hero-sidebar,
    .hubfolio-hero-main,
    .hubfolio-hero-right {
        min-height: auto;
    }

    .hubfolio-hero-title {
        font-size: 44px;
    }
}

@media (max-width: 640px) {
    .hubfolio-hero {
        padding: 24px 12px;
    }

    .hubfolio-hero-shell {
        padding: 18px;
        border-radius: 26px;
    }

    .hubfolio-hero-overlay {
        padding: 24px 20px 20px;
    }

    .hubfolio-hero-title {
        font-size: 34px;
    }
}

.bottomCard {
    position: absolute;
    bottom: 16px;
    align-self: center;
    color: black;
}

html,
body {
    cursor: none;
    /* hide default cursor */
}

/* the custom cursor */
.cursor {
    width: 30px;
    height: 30px;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    /* let clicks pass through */
    border-radius: 50%;
    background: #ffffff;
    mix-blend-mode: difference;
    /* key part: blends with background */
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.15s ease-out, width 0.15s ease-out, height 0.15s ease-out;
}

/* RIGHT SIDE COLUMN (JOB CARDS) */
.hero-side-column {
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

article {
    display: grid;
    grid-auto-columns: 1fr;
}

/* clean, symmetric vertical stack */
.job-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: 100%;
}

.job-card {
    position: relative;
    width: 100%;
    border-radius: 22px;
    padding: 20px 20px 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* COLOR ORDER */
.job-card--top {
    background: #ff4b36;
    color: #ffffff;
    flex: 1;
}

.job-card--top .job-pay,
.job-card--top .job-footer {
    color: rgba(255, 255, 255, 0.85);
}

.job-card--top .job-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.job-card--middle {
    background: #ffffff;
    color: #131313;
    flex: 1;
}

.job-card--bottom {
    background: #f2fbff;
    /* soft blue that complements accent */
    color: #131313;
}

.job-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.job-logo {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.08);
}

.job-card--top .job-logo {
    background: rgba(255, 255, 255, 0.25);
}

.job-company {
    font-family: "Lexend Deca", "Poppins", system-ui, sans-serif;
    font-weight: 600;
    font-size: 13px;
}

.job-title {
    font-family: "Lexend Deca", "Poppins", system-ui, sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    line-height: 1.25;
}

.job-pay {
    margin: 6px 0 12px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

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

.job-tag {
    padding: 7px 12px;
    border-radius: 999px;
    font-family: "Lexend Deca", "Poppins", system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    align-content: center;
}

.job-footer {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-family: "Lexend Deca", "Poppins", system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
}

/* Optional: make it nicer in narrow containers */
@media (max-width: 520px) {
    .job-card {
        padding: 18px 16px 14px;
    }
}

:root {
    --mouse-x: 50%;
    --mouse-y: 50%;
}

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

.apple-text,
.apple-container .apple-text.is-active {
    font-family: 'Bungee Tint', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.02em;

    /* Initial color (dimmed) */
    color: rgba(255, 255, 255, 0);

    /* The Gradient "Ripple" */
    background: radial-gradient(circle 150px at var(--mouse-x) var(--mouse-y),
            #ff3bff 0%,
            #ecbf42 25%,
            #5ac8fa 50%,
            rgba(249, 236, 238, 1) 100%);

    /* Clip background to text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Smooth Transitions */
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), color 0.3s;
    display: inline-block;
    overflow-wrap: anywhere;
}

/* Hover Effects */
.apple-container:hover .apple-text,
.apple-container .apple-text.is-active {
    color: transparent;
    /* Reveals the gradient background */
    transform: scale(1.08);
    /* The "Growth" effect */
}



.bg-stage {
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .10);
    background: #000;
    min-height: 590px;
    max-width: 1100px;
}

/* Photo layer (Unsplash) */
.bg-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('./cloud.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    filter: saturate(1.05) contrast(1.05);
    /* opacity:.95; */
    animation: photoDrift 14s ease-in-out infinite;
    will-change:transform;
}

@keyframes photoDrift {
    0% {
        transform: scale(1.08) translate3d(-1.2%, -1.0%, 0)
    }

    50% {
        transform: scale(1.12) translate3d(1.6%, 1.2%, 0)
    }

    100% {
        transform: scale(1.08) translate3d(-1.2%, -1.0%, 0)
    }
}

/* Animated tint blobs */
.bg-anim {
    position: absolute;
    inset: -40px;
    /* background:
        radial-gradient(520px 260px at 18% 20%, rgba(54, 208, 107, .34), transparent 60%),
        radial-gradient(520px 300px at 70% 35%, rgba(83, 147, 255, .28), transparent 60%),
        radial-gradient(700px 420px at 40% 85%, rgba(255, 83, 83, .18), transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .01)); */
    animation: bgFloat 10s ease-in-out infinite;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
    /* mix-blend-mode: screen; */
    opacity: .85;
}

@keyframes bgFloat {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1.02)
    }

    50% {
        transform: translate3d(2.5%, 1.8%, 0) scale(1.04)
    }

    100% {
        transform: translate3d(-2%, -1%, 0) scale(1.02)
    }
}

/* Dark readability veil */
.bg-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .65));
    pointer-events: none;
}

/* Top copy area */
.top {
    position: relative;
    padding: 28px 28px 18px;
    max-width: 780px;
}

.top h2 {
    margin: 0 0 10px;
    font-size: 35px;
    letter-spacing: -.02em;
    line-height: 1.15;
    text-shadow: 0 18px 40px rgba(0, 0, 0, .55);
}

.top p {
    margin: 0 0 10px;
    /* color:var(--muted); */
    line-height: 1.7;
    font-size: 15px;
    font-weight: 500;
    text-shadow: 0px 2px 6px rgba(0, 0, 0, .55);
    /* -webkit-text-stroke: black;
    -webkit-text-stroke-width: 0.1px; */
}

.kbd {
    font-family: var(--mono);
    font-size: 15px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(0, 0, 0, .26);
    color: rgba(255, 255, 255, .84);
    white-space: nowrap;
}

html { scroll-behavior: smooth; }

/* Bottom scrollable glass panel (the piece you asked for) */
.panel {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .14);
    /* background: rgba(20,22,28,.62);*/
    backdrop-filter: blur(7px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .55);
    overflow: hidden;
}

.panelHead {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(54, 208, 107, .35);
    background: rgba(54, 208, 107, .10);
    color: rgba(255, 255, 255, .90);
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .35);
}

.headHint {
    color: var(--muted2);
    font-size: 13px;
}

.scroll {
    padding: 18px 18px 22px;
    max-height: 360px;
    overflow: auto;
    /* overscroll-behavior: contain; */
}

.scroll h4 {
    margin: 0 0 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
}

.scroll p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.85;
    font-size: 15px;
}

.scroll p:last-child {
    margin-bottom: 0
}

/* subtle scrollbar */
.scroll::-webkit-scrollbar {
    width: 12px
}

.scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .16);
    border-radius: 999px;
    border: 3px solid rgba(0, 0, 0, 0)
}

.scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .06)
}

@media (max-width: 720px) {
    .bg-stage {
        min-height: 590px
    }

    .top {
        padding: 22px 18px 14px
    }

    .panel {
        position: static;
        margin: 20px;
    }

    .scroll {
        max-height: 420px
    }

    .top h2 {
        font-size: 24px
    }
}

section.bg-stage {
    margin: 0 auto;
}

.pad {
    padding: 24px;
}

p {
    letter-spacing: .02em;
    line-height: 1.7;
}


/* Navigation Container */
.sh-nav {
    /* position: fixed; */
    top: 0;
    width: 100%;
    z-index: 50;
    padding: 1.2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    font-family: 'Inter-900', sans-serif;
    box-sizing: border-box;
}

/* Brand Section */
.sh-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sh-logo-circle {
    width: 2rem;
    height: 2rem;
    background-color: #dc2626; /* Red accent */
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease;
}

.sh-logo-text {
    font-weight: 900;
    letter-spacing: -0.05em;
    font-size: 1.25rem;
    font-style: italic;
    text-transform: uppercase;
    color: white;
}

/* Icons */
.sh-icon-svg {
    width: 1rem;
    height: 1rem;
    color: white;
}

/* Nav Links */
.sh-nav-links {
    display: none; /* Hidden on mobile by default */
    gap: .8rem;
}

@media (min-width: 768px) {
    .sh-nav-links {
        display: flex;
    }
}

.sh-link {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #71717a; /* Zinc 500 */
    transition: color 0.3s ease;
    font-family: Bungee Tint, 'Times New Roman', Times, serif;
    
}

.sh-link:hover {
    color: #dc2626;
    /* transform: translateY(-1px) scale(1.0); */
     transform: scale(1.08);
     
}

/* Director's Cut Overrides */
.directors-cut .sh-logo-circle {
    background-color: #eab308; /* Yellow accent */
}

.directors-cut .sh-link:hover {
    color: #eab308;
}




.nav-btn{
  --accent: rgba(88, 201, 255, .95);
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  color:rgba(255,255,255,.74);
  text-decoration:none;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:12px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.40);
  background:rgba(0,0,0,.08);
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
  overflow:hidden;
}

.nav-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,.14),
    rgba(255,255,255,0) 55%
  );
  opacity:0;
  transition:opacity .25s ease;
}

.nav-btn:hover{
  transform:translateY(-1px);
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.06);
}
.nav-btn:hover::before{opacity:.9}

.nav-btn.active{
  color:#0b0b0d;
  background:linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 92%, white 8%),
    color-mix(in srgb, var(--accent) 72%, black 28%)
  );
  border-color:color-mix(in srgb, var(--accent) 55%, white 45%);
  box-shadow:0 18px 50px
    color-mix(in srgb, var(--accent) 22%, transparent 78%);
}

/* icon */
.sh-icon-svg{
  width:16px;
  height:16px;
  opacity:.95;
}

/* underline pulse */
.pulse{
  position:absolute;
  left:14px; right:14px;
  bottom:4px;
  height:2px;
  border-radius:999px;
  background:rgba(255,255,255,.28);
  opacity:0;
  transform:translateY(6px);
  transition:opacity .2s ease, transform .2s ease;
}
.nav-btn:hover .pulse{
  opacity:.65;
  transform:translateY(0);
}

@media (max-width: 1200px) { .rail { display: none; } }

nav#sectionNavLeft {
    left: 20px;
    width: fit-content;
    
}

.sh-icon-svg-left{

   width: 1.5rem;
    height: 1.5rem;
    color: rgb(255, 255, 255, 0.8);
}

a.nav-btn {
    font-family: "Lexend Deca", Inter, ui-sans-serif, system-ui;
    font-size: 10px;
    padding: 8px 12px;
}

#about .card{
  justify-self: center;
  max-width: 1100px;
  width: 100%;
  margin:24px;
  margin-bottom: 0;
}

.feed-content-inner {
    display: contents;
}


/* 1. Staggered Slide-In for Feed Items */
@keyframes slideIn {
    from { 
        opacity: 0; 
        transform: translateX(-30px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

/* 2. Vinyl Record Background Spin */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 3. Quirky Floating (e.g., the dog bone) */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 4. Transition Classes */
.feed-item {
    opacity: 0; /* Starts hidden for animation */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feed-item:hover {
    background: linear-gradient(90deg, rgba(241, 44, 44, 0.05) 0%, transparent 100%);
    transform: scale(1.01) translateX(10px);
}

.feed-avatar {
    transition: all 0.3s ease;
    position: relative;
}

.feed-item:hover .feed-avatar {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(15deg) scale(1.1);
}

.floating-bone { 
  position: absolute; 
  top: -8px; /* adjust as needed */ 
  right: -6px; 
  z-index: 10; 
  pointer-events: none; 
animation: float 2s infinite ease-in-out;}



 #spider-container {
            position: fixed;
            top: 0;
            right: 6%;
            width: 100px;
            height: 100vh;
            pointer-events: none;
            z-index: 50;
        }

        #web-thread {
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px; /* Slightly thicker for better visibility */
            height: 0;
            background: linear-gradient(to bottom, rgba(255, 255, 255));
            transform: translateX(-50%);
            box-shadow: 0 0 8px rgba(255,255,255,0.4);
            /* Added transition for smoother height changes */
            transition: height 0.2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
            animation-timing-function: ease-in-out;
            
        }

        #spider {
            position: absolute;
            left: 50%;
            top: 0;
            width: 40px;
            height: 40px;
            /* Centering the spider exactly on the 50% line */
            transform: translate(-50%, -50%);
            /* Added transition for smoother vertical movement */
            transition: top 0.2s cubic-bezier(0.17, 0.67, 0.83, 0.67), transform 0.1s ease-out;
            display: flex;
            justify-content: center;
            align-items: center;
            animation-timing-function: ease-in-out;
        }

        .spider-body {
            fill: var(--spider-color);
            stroke: #333;
            stroke-width: 1;
        }

        .leg {
            stroke: var(--spider-color);
            stroke-width: 2.5;
            fill: none;
            stroke-linecap: round;
            transition: all 0.1s ease-out;
        }

        /* Ambient subtle swaying */
        @keyframes sway {
            0%, 100% { transform: translate(-50%, -50%) rotate(-1.5deg); }
            50% { transform: translate(-50%, -50%) rotate(1.5deg); }
        }

        .swaying {
            animation: sway 4s ease-in-out infinite;
        }

        /* Page Content Styles */
        .content-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            text-align: center;
        }
a#toggleSpider {
    gap: 0;
}

#spider-container { opacity: 0; transition: opacity 0.4s ease; } #spider-container.visible { opacity: 1; }

#spider-container,#web-thread, #cursor { will-change: transform; }

video { will-change: transform; transform: translateZ(0); }

#cursor {  will-change: transform; }

img.frame{
  will-change: transform;
}

/* @media (max-width: 1400px) {
body{
  zoom:90%
}
} */
@media (max-width: 768px) {
span.text-muted.apple-text{
  font-size: clamp(2.5rem, 11vw, 5rem);
}

.title-xl{
  font-size: clamp(1.6rem, 8vw, 2.5rem);
}

}