/* SR Portfolio — Deep Void · Peacock Teal Theme · v3.0 */
:root {
    --void: #020617;
    --deep: #060f2e;
    --panel: rgba(6, 15, 46, .7);
    --teal: #06d6a0;
    --blue: #3b82f6;
    --violet: #8b5cf6;
    --teal-d: rgba(6, 214, 160, .12);
    --teal-b: rgba(6, 214, 160, .22);
    --teal-g: rgba(6, 214, 160, .08);
    --txt: #e2e8f0;
    --txt-dim: #94a3b8;
    --txt-mute: #475569;
    --white: #fff;
    --gb: linear-gradient(135deg, #06d6a0, #3b82f6, #8b5cf6);
    --gb2: linear-gradient(135deg, #06d6a0, #3b82f6);
    --ff-head: 'DM Serif Display', Georgia, serif;
    --ff-body: 'DM Sans', system-ui, sans-serif;
    --ff-mono: 'Space Mono', monospace;
    --r: 12px;
    --r-sm: 8px;
    --r-lg: 18px;
    --r-xl: 28px;
    --ease-spring: cubic-bezier(.16, 1, .3, 1);
    --ease-out: cubic-bezier(.4, 0, .2, 1);
    --tr: .3s var(--ease-out);
    --shadow-teal: 0 0 40px rgba(6, 214, 160, .14);
    --shadow-card: 0 4px 32px rgba(0, 0, 0, .35), 0 0 0 1px rgba(6, 214, 160, .08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility
}

body {
    background: var(--void);
    color: var(--txt);
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: #0a0f1e
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 99px
}

::selection {
    background: rgba(6, 214, 160, .25);
    color: var(--white)
}

/* ── TYPOGRAPHY SCALE ── */
h1,
h2,
h3,
h4 {
    font-family: var(--ff-head);
    line-height: 1.1;
    color: var(--white)
}

p {
    color: var(--txt-dim);
    line-height: 1.85
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

ul {
    list-style: none
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}

/* ══════════════════════════════════
   CURSOR TORCH
════════════════════════════════════ */
#cursorTorch {
    position: fixed;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, transparent 0%, transparent 26%, rgba(6, 214, 160, .06) 34%, rgba(59, 130, 246, .10) 50%, rgba(6, 214, 160, .04) 65%, transparent 75%);
    border: 1px solid rgba(6, 214, 160, .16);
    will-change: left, top;
    mix-blend-mode: screen;
    transition: opacity .3s;
    box-shadow: inset 0 0 60px rgba(59, 130, 246, .06), 0 0 80px rgba(6, 214, 160, .04);
}

/* ── PARTICLES ── */
#particleCanvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .7
}

/* ═══════════════════════════════════
   LOADER
════════════════════════════════════ */
#loaderScreen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--void);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    transition: opacity .6s var(--ease-out), visibility .6s;
}

#loaderScreen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.ld-mono {
    font-family: var(--ff-head);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--white);
    letter-spacing: -.04em;
    animation: ldPulse 1.8s ease-in-out infinite;
}

.ld-mono em {
    font-style: italic;
    background: var(--gb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ld-tag {
    font-size: .72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--txt-mute);
    font-family: var(--ff-mono)
}

.ld-bar-wrap {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, .06);
    border-radius: 99px;
    overflow: hidden;
    margin-top: .5rem
}

.ld-bar {
    height: 100%;
    width: 0;
    background: var(--gb);
    border-radius: 99px;
    animation: ldBar 2.4s var(--ease-out) forwards
}

@keyframes ldPulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

@keyframes ldBar {
    0% {
        width: 0
    }

    40% {
        width: 55%
    }

    100% {
        width: 100%
    }
}

/* ═══════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 2.5rem;
    transition: padding .4s, background .4s, box-shadow .4s;
}

.navbar.scrolled {
    background: rgba(2, 6, 23, .92);
    backdrop-filter: blur(20px);
    padding: .9rem 2.5rem;
    box-shadow: 0 1px 0 rgba(6, 214, 160, .10), 0 8px 32px rgba(0, 0, 0, .3);
}

.nav-logo {
    font-family: var(--ff-head);
    font-size: 1.7rem;
    color: var(--white);
    letter-spacing: -.04em;
    transition: opacity .2s
}

.nav-logo:hover {
    opacity: .75
}

.logo-em {
    font-style: italic;
    background: var(--gb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem
}

.nav-link {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .45rem .85rem;
    border-radius: 6px;
    color: rgba(255, 255, 255, .6);
    transition: color .25s, background .25s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal);
    background: var(--teal-g)
}

.nav-link-cta {
    background: var(--teal-d);
    color: var(--teal) !important;
    border: 1px solid var(--teal-b);
    margin-left: .5rem;
}

.nav-link-cta:hover {
    background: rgba(6, 214, 160, .2) !important
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--txt);
    border-radius: 2px;
    transition: var(--tr)
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* ═══════════════════════════════════
   HERO
════════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 7rem 2.5rem 4rem;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 1px solid rgba(6, 214, 160, .06);
    animation: ringPulse 8s ease-in-out infinite;
}

.r1 {
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(6, 214, 160, .05);
    animation-duration: 10s
}

.r2 {
    width: 1000px;
    height: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(59, 130, 246, .03);
    animation-duration: 15s;
    animation-delay: -5s
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: .4;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.04)
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    border: 1px solid var(--teal-b);
    border-radius: 99px;
    padding: .35rem 1rem;
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--ff-mono);
    color: var(--teal);
    background: var(--teal-g);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s var(--ease-spring), transform .7s var(--ease-spring);
}

.hero-badge.revealed {
    opacity: 1;
    transform: none
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: blink 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--teal)
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero-title {
    font-family: var(--ff-head);
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -.03em;
    color: var(--white);
    margin-bottom: 1.4rem;
}

.tl {
    display: block;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease-spring), transform .8s var(--ease-spring)
}

.tl.revealed {
    opacity: 1;
    transform: none
}

.tl-em {
    font-style: italic;
    background: var(--gb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradShift 5s ease-in-out infinite;
    background-size: 200% 200%
}

@keyframes gradShift {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--txt-dim);
    line-height: 1.75;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s var(--ease-spring) .15s, transform .7s var(--ease-spring) .15s;
}

.hero-sub.revealed {
    opacity: 1;
    transform: none
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
    margin-bottom: 2.2rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s var(--ease-spring) .25s, transform .7s var(--ease-spring) .25s;
}

.hero-stats.revealed {
    opacity: 1;
    transform: none
}

.stat-chip {
    background: var(--panel);
    border: 1px solid rgba(6, 214, 160, .10);
    border-radius: var(--r-sm);
    padding: .9rem .7rem;
    text-align: center;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}

.stat-chip:hover {
    border-color: var(--teal-b);
    box-shadow: var(--shadow-teal)
}

.stat-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 214, 160, .06), transparent);
    opacity: 0;
    transition: opacity .3s
}

.stat-chip:hover::before {
    opacity: 1
}

.stat-chip .roll-wrap {
    font-family: var(--ff-head);
    font-size: 2rem;
    color: var(--white);
    display: inline-flex;
    justify-content: center;
    overflow: hidden;
    height: 2.5rem;
    vertical-align: middle;
}

.stat-chip sup {
    font-family: var(--ff-body);
    font-size: .9rem;
    color: var(--teal);
    vertical-align: top;
    position: relative;
    top: 5px;
    margin-left: 1px;
}

.stat-chip span {
    display: block;
    font-size: .65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--txt-mute);
    font-family: var(--ff-mono);
    margin-top: .35rem
}

.roll-digit {
    display: inline-block;
    position: relative
}

.digit-strip {
    display: flex;
    flex-direction: column
}

.digit-strip span {
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-head);
    font-size: 2rem;
    color: var(--white)
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s var(--ease-spring) .35s, transform .7s var(--ease-spring) .35s;
}

.hero-cta.revealed {
    opacity: 1;
    transform: none
}

/* ═══════════════════════════════════
   BUTTONS
════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1.8rem;
    border-radius: var(--r);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .5px;
    transition: transform .4s var(--ease-spring), box-shadow .3s, opacity .3s;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px)
}

.btn:active {
    transform: scale(.98)
}

.btn svg {
    transition: transform .3s var(--ease-spring)
}

.btn:hover svg {
    transform: translateX(3px)
}

.btn-primary {
    background: var(--gb);
    color: #020617;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(6, 214, 160, .35), 0 1px 0 rgba(255, 255, 255, .15) inset;
}

.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(6, 214, 160, .50)
}

.btn-ghost {
    background: rgba(6, 214, 160, .06);
    color: var(--txt);
    border: 1.5px solid rgba(6, 214, 160, .22);
}

.btn-ghost:hover {
    background: rgba(6, 214, 160, .12);
    border-color: var(--teal);
    color: var(--white)
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: .95rem;
    padding: 1rem 2rem
}

/* ═══════════════════════════════════
   CEO VISUAL
════════════════════════════════════ */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(32px);
    transition: opacity .9s var(--ease-spring) .4s, transform .9s var(--ease-spring) .4s;
}

.hero-visual.revealed {
    opacity: 1;
    transform: none
}

.ceo-frame {
    position: relative;
    width: 340px;
    height: 340px
}

.ceo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(6, 214, 160, .18);
    animation: ceoSpin 16s linear infinite;
    inset: -24px;
}

.ceo-ring.ra {
    inset: -24px;
    border-color: rgba(6, 214, 160, .18);
    animation-duration: 16s
}

.ceo-ring.rb {
    inset: -48px;
    border-color: rgba(59, 130, 246, .10);
    animation-direction: reverse;
    animation-duration: 24s
}

.ceo-ring.rc {
    inset: -72px;
    border-color: rgba(139, 92, 246, .07);
    animation-duration: 32s
}

@keyframes ceoSpin {
    to {
        transform: rotate(360deg)
    }
}

.ceo-img-wrap {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(#060f2e, #060f2e) padding-box, var(--gb) border-box;
    box-shadow: 0 0 60px rgba(6, 214, 160, .20), 0 20px 60px rgba(0, 0, 0, .4);
}

.ceo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ceo-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 3
}

.ceo-dot.d1 {
    top: 10%;
    right: 5%;
    background: var(--teal);
    box-shadow: 0 0 12px var(--teal);
    animation: orbDot 8s ease-in-out infinite
}

.ceo-dot.d2 {
    bottom: 15%;
    left: 2%;
    background: var(--blue);
    box-shadow: 0 0 12px var(--blue);
    animation: orbDot 6s ease-in-out infinite .8s
}

.ceo-dot.d3 {
    top: 50%;
    right: -8%;
    background: var(--violet);
    box-shadow: 0 0 10px var(--violet);
    animation: orbDot 10s ease-in-out infinite 1.5s
}

.ceo-dot.d4 {
    bottom: 5%;
    right: 25%;
    background: var(--teal);
    box-shadow: 0 0 10px var(--teal);
    animation: orbDot 7s ease-in-out infinite 2s
}

@keyframes orbDot {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.8);
        opacity: .6
    }
}

.ceo-chip {
    position: absolute;
    background: rgba(6, 15, 46, .85);
    border: 1px solid rgba(6, 214, 160, .25);
    border-radius: 99px;
    padding: .35rem .9rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    color: var(--txt);
    backdrop-filter: blur(12px);
    z-index: 4;
}

.ceo-chip.c1 {
    top: -10px;
    left: -30px;
    animation: floatChip 5s ease-in-out infinite
}

.ceo-chip.c2 {
    bottom: 40px;
    left: -45px;
    animation: floatChip 6s ease-in-out infinite .8s
}

.ceo-chip.c3 {
    top: 30px;
    right: -40px;
    animation: floatChip 4.5s ease-in-out infinite 1.5s
}

@keyframes floatChip {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    z-index: 3;
    cursor: pointer;
    animation: fadeUp .8s var(--ease-out) 2.2s both;
}

.scroll-cue span {
    font-size: .55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25)
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--teal), transparent);
    animation: scrollPulse 2s ease-in-out infinite
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1)
    }

    50% {
        opacity: .3;
        transform: scaleY(.4)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, 16px)
    }

    to {
        opacity: 1;
        transform: translateX(-50%)
    }
}

/* ═══════════════════════════════════
   SECTIONS
════════════════════════════════════ */
.sec {
    position: relative;
    padding: 6.5rem 0;
    z-index: 2
}

.sec-alt {
    background: linear-gradient(180deg, var(--deep) 0%, var(--void) 100%)
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem
}

.sec-head {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out)
}

.sec-head.revealed {
    opacity: 1;
    transform: none
}

.sec-no {
    font-family: var(--ff-mono);
    font-size: .62rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: .5rem
}

.sec-title {
    font-family: var(--ff-head);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: -.03em
}

.em-grad {
    font-style: italic;
    background: var(--gb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradShift 5s ease-in-out infinite
}

.sec-rule {
    width: 48px;
    height: 3px;
    background: var(--gb);
    border-radius: 99px;
    margin: .8rem auto 0
}

.sec-sub {
    color: var(--txt-dim);
    font-size: 1rem;
    max-width: 640px;
    margin: .8rem auto 0;
    text-align: center
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease-spring), transform .8s var(--ease-spring)
}

[data-reveal="left"] {
    transform: translateX(-28px)
}

[data-reveal="right"] {
    transform: translateX(28px)
}

[data-reveal].revealed {
    opacity: 1;
    transform: none
}

/* ═══════════════════════════════════
   ABOUT
════════════════════════════════════ */
.about-lead {
    font-family: var(--ff-head);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--txt);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-lead strong {
    font-style: normal;
    background: var(--gb2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.about-text {
    font-size: .95rem;
    color: var(--txt-dim);
    line-height: 1.9;
    margin-bottom: 3rem
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem
}

.col-head {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    font-weight: 400
}

.id-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem
}

.id-card {
    display: flex;
    align-items: center;
    gap: .65rem;
    background: var(--panel);
    border: 1px solid rgba(6, 214, 160, .08);
    border-radius: var(--r-sm);
    padding: .7rem .9rem;
    font-size: .82rem;
    color: var(--txt-dim);
    transition: var(--tr);
    cursor: default;
}

.id-card:hover {
    border-color: var(--teal-b);
    color: var(--txt);
    background: rgba(6, 15, 46, .9)
}

.id-ic {
    font-size: 1rem;
    width: 28px;
    text-align: center;
    flex-shrink: 0
}

/* ═══════════════════════════════════
   ORGANIZATIONS
════════════════════════════════════ */
.org-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.org-card {
    padding: 2rem;
    border-radius: var(--r-lg);
    position: relative;
    overflow: hidden;
    cursor: default
}

.glass-card {
    background: rgba(6, 15, 46, .68);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(6, 214, 160, .10);
    box-shadow: var(--shadow-card);
    transition: transform .5s var(--ease-spring), box-shadow .4s, border-color .3s;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease-out);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-teal);
    border-color: rgba(6, 214, 160, .25)
}

.glass-card:hover::before {
    transform: scaleX(1)
}

.org-logo-wrap {
    margin-bottom: 1.25rem
}

.org-abbr {
    font-family: var(--ff-mono);
    font-size: .68rem;
    letter-spacing: 3px;
    background: var(--teal-d);
    color: var(--teal);
    border: 1px solid var(--teal-b);
    border-radius: 6px;
    padding: .3rem .7rem;
    display: inline-block;
}

.org-name {
    font-family: var(--ff-head);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: .25rem;
    font-weight: 400
}

.org-name a {
    color: inherit;
    border-bottom: 1px solid rgba(6, 214, 160, .25);
    transition: border-color .2s
}

.org-name a:hover {
    border-color: var(--teal)
}

.org-role {
    font-size: .78rem;
    color: var(--teal);
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: .2rem
}

.org-loc {
    font-size: .75rem;
    color: var(--txt-mute);
    margin-bottom: .85rem;
    font-family: var(--ff-mono)
}

.org-desc {
    font-size: .85rem;
    color: var(--txt-dim);
    line-height: 1.8;
    margin-bottom: 1rem
}

.org-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

.org-tags li {
    font-size: .68rem;
    letter-spacing: 1px;
    background: var(--teal-g);
    border: 1px solid var(--teal-d);
    color: var(--teal);
    border-radius: 4px;
    padding: .2rem .55rem
}

/* ═══════════════════════════════════
   TIMELINE / EXPERIENCE
════════════════════════════════════ */
.timeline {
    position: relative;
    padding-left: 2.5rem;
    max-width: 860px;
    margin: 0 auto;
    border-left: 2px solid rgba(6, 214, 160, .12);
}

.tl-item {
    position: relative;
    padding: 0 0 3.5rem 2.5rem
}

.tl-item:last-child {
    padding-bottom: 0
}

.tl-dot {
    position: absolute;
    left: -12px;
    top: .2rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--void);
    border: 2px solid var(--teal);
    box-shadow: 0 0 14px rgba(6, 214, 160, .4);
    transition: box-shadow .3s;
}

.tl-item:hover .tl-dot {
    box-shadow: 0 0 28px rgba(6, 214, 160, .7)
}

.tl-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .5rem
}

.tl-date {
    font-family: var(--ff-mono);
    font-size: .7rem;
    color: var(--txt-mute);
    letter-spacing: 1px
}

.tl-badge {
    font-size: .6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .15rem .5rem;
    background: var(--teal-g);
    color: var(--teal);
    border: 1px solid var(--teal-d);
    border-radius: 4px;
    font-family: var(--ff-mono)
}

.tl-role {
    font-family: var(--ff-head);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: .2rem;
    font-weight: 400
}

.tl-loc {
    font-size: .78rem;
    color: var(--txt-mute);
    margin-bottom: .6rem;
    font-family: var(--ff-mono)
}

.tl-desc {
    font-size: .9rem;
    color: var(--txt-dim);
    line-height: 1.85
}

/* ═══════════════════════════════════
   PROJECTS
════════════════════════════════════ */
.proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.proj-card {
    background: rgba(6, 15, 46, .7);
    border: 1px solid rgba(6, 214, 160, .09);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .5s var(--ease-spring), box-shadow .4s, border-color .3s;
}

.proj-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 214, 160, .25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4), 0 0 30px rgba(6, 214, 160, .10)
}

.proj-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: rgba(6, 214, 160, .04);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proj-img-wrap.no-img {
    height: 160px
}

.proj-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .7s var(--ease-out);
    z-index: 2;
}

.proj-card:hover .proj-img-wrap img {
    transform: scale(1.07)
}

.proj-img-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1.5rem;
    text-align: center;
}

/* hide fallback when image loads successfully */
.proj-img-wrap img:not([src=""]):not(.img-err)+.proj-img-fallback {
    opacity: 0
}

.proj-img-wrap.img-err img {
    display: none
}

.proj-img-fallback span {
    font-size: 2.5rem;
    opacity: .4
}

.proj-img-fallback p {
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--txt-mute);
    font-family: var(--ff-mono)
}

.proj-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.proj-cat {
    font-family: var(--ff-mono);
    font-size: .62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: .6rem;
    display: block
}

.proj-title {
    font-family: var(--ff-head);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: .7rem;
    font-weight: 400;
    line-height: 1.2
}

.proj-desc {
    font-size: .84rem;
    color: var(--txt-dim);
    line-height: 1.85;
    flex: 1
}

.proj-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: 1rem
}

.proj-tags span {
    font-size: .65rem;
    letter-spacing: 1px;
    background: var(--teal-g);
    border: 1px solid var(--teal-d);
    color: var(--teal);
    border-radius: 4px;
    padding: .2rem .55rem
}

/* feat projects span 1 col each in 3-col grid (all 3 are feat) */
.proj-card.feat {
    grid-column: span 1
}

/* ═══════════════════════════════════
   SKILLS
════════════════════════════════════ */
.skills-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem
}

.skills-col {}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 1.5rem
}

.skill-item {}

.sk-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: .45rem;
    font-size: .83rem
}

.sk-meta span {
    color: var(--txt-dim)
}

.sk-pct {
    color: var(--teal);
    font-family: var(--ff-mono);
    font-size: .75rem
}

.sk-bar {
    height: 5px;
    background: rgba(255, 255, 255, .05);
    border-radius: 99px;
    overflow: hidden
}

.sk-fill {
    height: 100%;
    width: 0;
    background: var(--gb);
    border-radius: 99px;
    transition: width 1.2s var(--ease-out)
}

.sk-fill.anim {
    width: var(--w)
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.tag-cloud span {
    font-size: .72rem;
    padding: .3rem .75rem;
    border-radius: 6px;
    font-family: var(--ff-mono);
    background: rgba(6, 214, 160, .06);
    border: 1px solid rgba(6, 214, 160, .12);
    color: var(--txt-dim);
    transition: var(--tr);
    cursor: default;
}

.tag-cloud span:hover {
    background: var(--teal-d);
    color: var(--teal);
    border-color: var(--teal-b)
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    margin-top: 1rem
}

.lead-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    color: var(--txt-dim);
    background: var(--panel);
    border: 1px solid rgba(6, 214, 160, .07);
    border-radius: var(--r-sm);
    padding: .6rem .85rem;
    transition: var(--tr)
}

.lead-item:hover {
    border-color: var(--teal-b);
    color: var(--txt)
}

.lead-ic {
    font-size: 1rem
}

/* ═══════════════════════════════════
   MARQUEE
════════════════════════════════════ */
.marquee-wrap {
    overflow: hidden;
    padding: 1rem 0;
    position: relative
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--void), transparent)
}

.sec-alt .marquee-wrap::before {
    background: linear-gradient(to right, var(--deep), transparent)
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--void), transparent)
}

.sec-alt .marquee-wrap::after {
    background: linear-gradient(to left, var(--deep), transparent)
}

.marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: marquee 30s linear infinite
}

.marquee-track:hover {
    animation-play-state: paused
}

.m-card {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: rgba(6, 15, 46, .8);
    border: 1px solid rgba(6, 214, 160, .10);
    border-radius: var(--r);
    padding: .75rem 1.4rem;
    white-space: nowrap;
    font-size: .82rem;
    color: var(--txt-dim);
    transition: var(--tr);
}

.m-card:hover {
    border-color: var(--teal-b);
    color: var(--txt)
}

.m-ic {
    font-size: 1rem
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ═══════════════════════════════════
   EDUCATION
════════════════════════════════════ */
.edu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem
}

.edu-card {
    background: rgba(6, 15, 46, .7);
    border: 1px solid rgba(6, 214, 160, .09);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    transition: transform .4s var(--ease-spring), box-shadow .3s, border-color .3s;
    cursor: default;
}

.edu-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 214, 160, .22);
    box-shadow: var(--shadow-teal)
}

.cert-card {
    border-color: rgba(59, 130, 246, .15);
    background: rgba(6, 15, 60, .6)
}

.cert-card:hover {
    border-color: rgba(59, 130, 246, .35);
    box-shadow: 0 0 30px rgba(59, 130, 246, .12)
}

.edu-ic {
    font-size: 1.8rem;
    margin-bottom: .85rem
}

.edu-deg {
    font-family: var(--ff-head);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: .3rem;
    font-weight: 400;
    line-height: 1.3
}

.edu-inst {
    font-size: .8rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: .2rem
}

.edu-yr {
    font-family: var(--ff-mono);
    font-size: .72rem;
    color: var(--txt-mute);
    margin-bottom: .75rem
}

.edu-focus {
    font-size: .82rem;
    color: var(--txt-dim);
    line-height: 1.7
}

.ach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .85rem
}

.ach-item {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    background: var(--panel);
    border: 1px solid rgba(6, 214, 160, .07);
    border-radius: var(--r-sm);
    padding: .9rem;
    font-size: .83rem;
    color: var(--txt-dim);
    transition: var(--tr);
}

.ach-item:hover {
    border-color: var(--teal-b);
    color: var(--txt)
}

.ach-ic {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: .05rem
}

/* ═══════════════════════════════════
   VISION / MISSION
════════════════════════════════════ */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.vm-card {
    background: rgba(6, 15, 46, .7);
    border: 1px solid rgba(6, 214, 160, .10);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gb)
}

.vm-label {
    font-family: var(--ff-mono);
    font-size: .65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem
}

.vm-card p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--txt-dim)
}

/* ═══════════════════════════════════
   CONTACT — PREMIUM FORM
════════════════════════════════════ */
.contact-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 3.5rem;
    align-items: start
}

.contact-info {}

.c-items {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 2rem
}

.c-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: var(--panel);
    border: 1px solid rgba(6, 214, 160, .08);
    border-radius: var(--r);
    padding: .95rem 1.1rem;
    transition: var(--tr);
}

.c-item:hover,
.c-item:focus {
    border-color: var(--teal-b);
    background: rgba(6, 15, 46, .9)
}

.c-ic {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center
}

.c-detail {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    overflow: hidden
}

.c-lbl {
    font-size: .68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--txt-mute);
    font-family: var(--ff-mono)
}

.c-val {
    font-size: .85rem;
    color: var(--txt);
    word-break: break-all
}

.response-badge {
    display: flex;
    align-items: center;
    gap: .65rem;
    background: rgba(6, 214, 160, .06);
    border: 1px solid rgba(6, 214, 160, .15);
    border-radius: 99px;
    padding: .5rem 1.1rem;
    font-size: .8rem;
    color: var(--txt-dim);
}

.rb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0
}

.response-badge strong {
    color: var(--teal)
}

/* FORM */
.contact-form-wrap {
    background: rgba(6, 15, 46, .7);
    border: 1px solid rgba(6, 214, 160, .10);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    backdrop-filter: blur(16px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .45rem
}

.form-group label {
    font-size: .75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--txt-mute);
    font-family: var(--ff-mono)
}

.form-group label span {
    color: var(--teal)
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(2, 6, 23, .6);
    border: 1.5px solid rgba(255, 255, 255, .07);
    border-radius: var(--r-sm);
    padding: .8rem 1rem;
    font-size: .9rem;
    font-family: var(--ff-body);
    color: var(--txt);
    outline: none;
    transition: border-color .25s, box-shadow .25s;
    resize: vertical;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--txt-mute)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(6, 214, 160, .12);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: #0a1628;
    color: var(--txt)
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap
}

.form-note {
    font-size: .72rem;
    color: var(--txt-mute)
}

.form-note span {
    color: var(--teal)
}

.form-status {
    margin-top: .5rem;
    padding: .75rem 1.1rem;
    border-radius: var(--r-sm);
    font-size: .875rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(6, 214, 160, .1);
    border: 1px solid rgba(6, 214, 160, .25);
    color: var(--teal)
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .25);
    color: #f87171
}

/* ═══════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
    border-top: 1px solid rgba(6, 214, 160, .08);
    padding: 3rem 0
}

.foot-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center
}

.foot-logo {
    font-family: var(--ff-head);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: -.04em
}

.foot-logo em {
    font-style: italic;
    background: var(--gb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.foot-brand p {
    font-size: .8rem;
    color: var(--txt-mute)
}

.foot-eco {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .5rem .75rem;
    font-size: .8rem;
    color: var(--txt-mute)
}

.foot-eco a {
    color: var(--teal);
    transition: opacity .2s
}

.foot-eco a:hover {
    opacity: .75
}

.foot-copy {
    font-size: .75rem;
    color: var(--txt-mute)
}

/* ═══════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media(max-width:1100px) {
    .org-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .proj-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ach-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center
    }

    .hero-cta {
        justify-content: center
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr)
    }

    .ceo-frame {
        width: 280px;
        height: 280px
    }

    .hero-visual {
        transform: translateX(0) !important
    }

    .two-col {
        grid-template-columns: 1fr
    }

    .skills-layout {
        grid-template-columns: 1fr
    }

    .contact-layout {
        grid-template-columns: 1fr
    }

    .vm-grid {
        grid-template-columns: 1fr
    }

    .hero-badge {
        justify-content: center
    }
}

@media(max-width:768px) {
    .navbar {
        padding: 1rem 1.25rem
    }

    .navbar.scrolled {
        padding: .75rem 1.25rem
    }

    #cursorTorch {
        display: none
    }

    body {
        cursor: auto
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -110%;
        width: 72%;
        height: 100vh;
        background: rgba(2, 6, 23, .97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: 1.2rem;
        transition: right .4s var(--ease-spring);
        border-left: 1px solid rgba(6, 214, 160, .12);
    }

    .nav-links.active {
        right: 0
    }

    .nav-link {
        font-size: 1rem;
        padding: .75rem 2rem
    }

    .nav-toggle {
        display: flex
    }

    .sec {
        padding: 4.5rem 0
    }

    .container {
        padding: 0 1.25rem
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .proj-grid {
        grid-template-columns: 1fr
    }

    .org-grid {
        grid-template-columns: 1fr
    }

    .edu-grid {
        grid-template-columns: 1fr
    }

    .ach-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .id-grid {
        grid-template-columns: 1fr
    }

    .contact-form-wrap {
        padding: 1.5rem
    }

    .timeline {
        padding-left: 1.5rem
    }
}

@media(max-width:480px) {
    #hero {
        padding: 6rem 1.25rem 3rem
    }

    .hero-title {
        font-size: 2.4rem
    }

    .ach-grid {
        grid-template-columns: 1fr
    }

    .ceo-chip {
        display: none
    }

    .foot-eco {
        gap: .4rem .6rem
    }
}