/* ═══════════════════════════════════════════════
   RIFSTOCK — v8.0 Ultimate Portfolio CSS
   Premium Fiber Optic Brand Aesthetic
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
    --bg: #050508;
    --bg1: #0a0a0f;
    --bg2: #0f0f18;
    --surf: #141420;
    --el: #1c1c2e;
    --gold: #fcc70b;
    --gold2: #e6b400;
    --ga: rgba(252, 199, 11, .10);
    --gb: rgba(252, 199, 11, .04);
    --gc: rgba(252, 199, 11, .25);
    --gd: rgba(252, 199, 11, .50);
    --w: #f2f0ef;
    --w05: rgba(255, 255, 255, .04);
    --w08: rgba(255, 255, 255, .075);
    --w12: rgba(255, 255, 255, .11);
    --w20: rgba(255, 255, 255, .20);
    --w30: rgba(255, 255, 255, .30);
    --w50: rgba(255, 255, 255, .50);
    --grn: #3dd68c;
    --red: #e84040;
    --amr: #e8ac1c;
    --sans: 'Inter', system-ui, sans-serif;
    --disp: 'Space Grotesk', var(--sans);
    --mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --spr: cubic-bezier(.34, 1.56, .64, 1);
    --C: 1240px;
    --r: 10px;
    --rL: 16px;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--w);
    font-size: .875rem;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none
}

img,
svg,
canvas {
    display: block
}

ul {
    list-style: none
}

h1,
h2,
h3,
h4 {
    font-family: var(--disp);
    line-height: 1.05;
    letter-spacing: -.03em
}

::selection {
    background: var(--gold);
    color: var(--bg)
}

.mono {
    font-family: var(--mono) !important;
    font-size: .8em
}

.text-gold {
    color: var(--gold)
}

/* ── GLOBAL GLOW ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% -10%, rgba(252, 199, 11, .04), transparent 65%),
        radial-gradient(ellipse 40% 60% at 80% 90%, rgba(100, 60, 252, .03), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* ── AMBIENT CANVAS ── */
#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

#cursor-glow {
    position: fixed;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 199, 11, .028), transparent 55%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .04;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.scanline {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, .03) 2px, rgba(0, 0, 0, .03) 4px)
}

/* ── LAYOUT ── */
.container {
    max-width: var(--C);
    margin: 0 auto;
    padding: 0 2rem
}

.section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    position: relative;
    z-index: 2
}

/* ── GLASS ── */
.glass {
    background: rgba(20, 20, 32, .55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--w08);
    border-radius: var(--rL);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .8rem 2rem;
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    border-radius: var(--r);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--sans);
}

.btn--gold {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold)
}

.btn--gold:hover {
    box-shadow: 0 0 0 4px var(--ga), 0 6px 30px var(--gc);
    transform: translateY(-2px)
}

.btn--ghost {
    border-color: var(--w12);
    color: var(--w50);
    background: transparent
}

.btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.btn--sm {
    padding: .5rem 1.1rem;
    font-size: .5rem
}

.btn--xl {
    padding: 1rem 2.6rem;
    font-size: .62rem
}

.btn--full {
    width: 100%;
    justify-content: center
}

/* ── LED ── */
.led {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--grn);
    box-shadow: 0 0 6px var(--grn);
    flex-shrink: 0
}

.led--pulse {
    animation: led-p 2s ease infinite
}

@keyframes led-p {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.reveal.vis {
    opacity: 1;
    transform: none
}

/* ── EYEBROW ── */
.eyebrow-tag {
    display: inline-block;
    font-size: .48rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .28em;
    color: var(--gold);
    border: 1px solid var(--ga);
    padding: .35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
    font-family: var(--sans)
}

.section-h2 {
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.07;
    margin-bottom: 1rem
}

.section-lead {
    font-size: .9rem;
    color: var(--w30);
    line-height: 1.7;
    max-width: 480px
}

.section-hdr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    flex-wrap: wrap;
    gap: 1.5rem
}

/* ════════════════════════════
   LOADER
   ════════════════════════════ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s, visibility .6s
}

.loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loader__inner {
    text-align: center;
    width: 300px
}

.loader__brand {
    font-family: var(--disp);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -.04em;
    margin-bottom: 2rem
}

.loader__brand .text-gold {
    color: var(--gold)
}

.loader__line {
    height: 2px;
    background: var(--w05);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 1rem
}

.loader__progress {
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    width: 0%;
    transition: width .1s linear;
    border-radius: 100px
}

.loader__label {
    font-size: .5rem;
    color: var(--w30);
    letter-spacing: .1em
}

/* ════════════════════════════
   NAVBAR
   ════════════════════════════ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all .4s
}

.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    background: rgba(5, 5, 8, .7);
    border-bottom: 1px solid transparent;
    transition: all .4s
}

#header.scrolled .navbar {
    border-color: var(--w05);
    padding: .65rem 0;
    background: rgba(5, 5, 8, .92)
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem
}

.brand {
    font-family: var(--disp);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .01em;
    display: flex;
    align-items: center
}

.brand--lg {
    font-size: 1.4rem
}

.brand__acc {
    color: var(--gold)
}

.brand__dot {
    color: var(--gold);
    animation: led-p 2.5s ease infinite
}

.nav {
    display: flex;
    gap: 2rem
}

.nav a {
    font-size: .55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--w30);
    transition: color .3s;
    position: relative;
    font-family: var(--sans)
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease)
}

.nav a:hover,
.nav a.active {
    color: var(--w)
}

.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1)
}

.nav-end {
    display: flex;
    align-items: center;
    gap: .8rem
}

.status-pill {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .48rem;
    font-weight: 700;
    color: var(--w30);
    letter-spacing: .08em;
    border: 1px solid var(--w05);
    padding: .3rem .7rem;
    border-radius: 100px;
    font-family: var(--sans)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--w);
    border-radius: 2px;
    transition: .3s
}

.hamburger.open span:first-child {
    transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
    opacity: 0
}

.hamburger.open span:last-child {
    transform: translateY(-7px) rotate(-45deg)
}

/* ════════════════════════════
   HERO
   ════════════════════════════ */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding-top: 90px
}

.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

.hero__orbs {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: orb-drift 12s ease-in-out infinite alternate
}

.orb--1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(252, 199, 11, .06), transparent 65%);
    top: -20%;
    right: -15%;
    animation-duration: 14s
}

.orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(80, 40, 200, .05), transparent 60%);
    bottom: -10%;
    left: -5%;
    animation-duration: 18s;
    animation-delay: -4s
}

.orb--3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(252, 199, 11, .04), transparent 60%);
    top: 40%;
    left: 40%;
    animation-duration: 10s;
    animation-delay: -8s
}

@keyframes orb-drift {
    from {
        transform: translate(0, 0) scale(1)
    }

    to {
        transform: translate(40px, 30px) scale(1.15)
    }
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .95fr;
    gap: 5rem;
    align-items: center;
    padding: 4rem 0
}

.hero__tag {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.4rem;
    font-size: .5rem;
    color: var(--w30);
    letter-spacing: .1em
}

.hero__tag-sep {
    color: var(--w12);
    font-size: .8rem
}

.hero__h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.0;
    margin-bottom: 1.4rem
}

.hero__h1-row {
    display: block
}

.hero__h1-row--acc .hero__word-swap {
    color: var(--gold)
}

.hero__h1-row--acc .hero__word-swap em {
    font-style: normal;
    color: var(--gold);
    opacity: .6
}

.hero__dot-acc {
    font-style: normal;
    color: var(--gold);
    opacity: .5
}

.hero__desc {
    font-size: .9rem;
    color: var(--w30);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2rem
}

.hero__ctas {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.hero__kpis {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--w05)
}

.kpi {
    text-align: center
}

.kpi__val {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--disp);
    line-height: 1
}

.kpi__suf {
    font-size: .8rem;
    font-weight: 800;
    color: var(--gold)
}

.kpi__lbl {
    display: block;
    font-size: .42rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--w20);
    margin-top: .18rem;
    font-family: var(--sans)
}

.kpi__div {
    width: 1px;
    height: 36px;
    background: var(--w05)
}

/* ── Hero Right Card ── */
.hero__orb-card {
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
    max-width: 390px;
    margin-left: auto
}

.hero__orb-card-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at 70% 30%, rgba(252, 199, 11, .06), transparent);
    pointer-events: none;
    animation: orb-drift 8s ease-in-out infinite alternate
}

.hero__splicer-canvas {
    width: 100%;
    height: 140px;
    display: block;
    margin-bottom: .8rem
}

.hero-feat__body {
    position: relative;
    z-index: 1
}

.hero-feat__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .6rem
}

.hero-feat__cat {
    font-size: .45rem;
    color: var(--gold);
    letter-spacing: .15em;
    margin-bottom: .2rem;
    display: block
}

.hero-feat__name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .8rem
}

.hero-feat__specs {
    margin-bottom: 1rem
}

.spec-row {
    font-size: .65rem;
    color: var(--w30);
    margin-bottom: .25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--sans)
}

.hero-feat__price {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    margin-bottom: 1rem
}

.price-strike {
    font-size: .8rem;
    color: var(--w20);
    text-decoration: line-through
}

.price-main {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--disp)
}

.price-note {
    font-size: .42rem;
    color: var(--w20);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .1em
}

.price-st {
    font-size: .7rem;
    color: var(--w20);
    text-decoration: line-through;
    font-family: var(--sans)
}

.price-n {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--disp)
}

.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .7rem;
    font-size: .45rem;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
    z-index: 3;
    font-family: var(--sans)
}

.hero-float--1 {
    top: -12px;
    right: 12px;
    animation: float-bob 4s ease-in-out infinite alternate
}

.hero-float--2 {
    bottom: 20%;
    left: -30px;
    animation: float-bob 4s ease-in-out infinite alternate;
    animation-delay: 1.2s
}

@keyframes float-bob {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-12px)
    }
}

/* ── Badges ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .45rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    padding: .22rem .6rem;
    border-radius: 100px;
    font-family: var(--sans)
}

.badge--live {
    color: var(--grn);
    border: 1px solid rgba(61, 214, 140, .15)
}

.badge--sale {
    background: rgba(232, 64, 64, .12);
    color: #ff7070;
    border: 1px solid rgba(232, 64, 64, .2);
    animation: sale-fl 1.5s ease-in-out infinite alternate
}

.badge--cat {
    background: var(--ga);
    color: var(--gold);
    border: 1px solid var(--ga)
}

.badge--in {
    color: var(--grn)
}

.badge--new {
    background: var(--ga);
    color: var(--gold)
}

@keyframes sale-fl {
    from {
        box-shadow: 0 0 0 rgba(232, 64, 64, 0)
    }

    to {
        box-shadow: 0 0 14px rgba(232, 64, 64, .25)
    }
}

/* ── Hero Scroll Hint ── */
.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem
}

.scroll-arrow {
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: sa-pulse 1.8s ease-in-out infinite
}

.scroll-arrow--2 {
    margin-top: -10px;
    opacity: .3;
    animation-delay: .3s
}

@keyframes sa-pulse {

    0%,
    100% {
        opacity: .15;
        transform: rotate(45deg) translateY(-3px)
    }

    50% {
        opacity: 1;
        transform: rotate(45deg) translateY(3px)
    }
}

/* ════════════════════════════
   TICKER
   ════════════════════════════ */
.ticker-wrap {
    overflow: hidden;
    border-top: 1px solid var(--w05);
    border-bottom: 1px solid var(--w05);
    background: var(--bg1);
    position: relative;
    z-index: 2
}

.ticker {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: ticker-move 35s linear infinite;
    padding: .75rem 0;
    white-space: nowrap
}

.ticker span {
    font-size: .5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--w12);
    font-family: var(--sans)
}

.ticker-dot {
    color: var(--gold);
    font-size: .55rem;
    opacity: .5
}

@keyframes ticker-move {
    to {
        transform: translateX(-50%)
    }
}

/* ════════════════════════════
   ABOUT
   ════════════════════════════ */
.about-section {
    background: var(--bg1)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start
}

.about-body {
    font-size: .85rem;
    color: var(--w30);
    line-height: 1.8;
    margin-bottom: 2rem
}

.about-body p+p {
    margin-top: .8rem
}

.about-attrs {
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.attr {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    position: relative;
    overflow: hidden;
    transition: all .4s var(--ease)
}

.attr:hover {
    border-color: var(--ga);
    transform: translateX(4px)
}

.attr__n {
    font-size: .45rem;
    letter-spacing: .2em;
    margin-bottom: .1rem
}

.attr h4 {
    font-size: .9rem;
    font-weight: 700
}

.attr p {
    font-size: .7rem;
    color: var(--w30);
    line-height: 1.6;
    font-family: var(--sans)
}

/* Manifesto card */
.manifesto-card {
    background: var(--el);
    border: 1px solid var(--w08);
    border-radius: var(--rL);
    padding: 2rem;
    margin-bottom: 1.5rem
}

.manifesto-card__top {
    font-size: .45rem;
    letter-spacing: .18em;
    margin-bottom: 1rem
}

.manifesto-quote {
    font-family: var(--disp);
    font-size: clamp(.85rem, 1.6vw, 1.05rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--w50);
    font-style: italic;
    border-left: 2px solid var(--gold);
    padding-left: 1.2rem;
    margin-bottom: 1rem
}

.manifesto-quote strong {
    color: var(--w);
    font-weight: 700
}

.manifesto-sig {
    font-size: .55rem;
    color: var(--w20);
    font-family: var(--mono);
    margin-bottom: 1.5rem
}

.manifesto-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--w05)
}

.mstat__v {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--disp)
}

.mstat__s {
    font-size: .8rem;
    font-weight: 800;
    color: var(--gold)
}

.mstat__l {
    display: block;
    font-size: .42rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--w20);
    font-family: var(--sans)
}

/* Reel canvas */
.fiber-reel-wrap {
    height: 120px;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--w05)
}

.fiber-reel-canvas {
    width: 100%;
    height: 100%
}

/* ════════════════════════════
   EXPERTISE / BENTO
   ════════════════════════════ */
.expertise-section {
    background: var(--bg)
}

.expertise-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.2rem
}

.bento-cell {
    overflow: hidden;
    transition: all .5s var(--ease);
    position: relative
}

.bento-cell:hover {
    border-color: var(--ga);
    box-shadow: 0 0 50px rgba(252, 199, 11, .04);
    transform: translateY(-3px)
}

.bento-cell--lg {
    grid-row: span 2
}

.bento-canvas {
    width: 100%;
    height: 220px;
    display: block
}

.bento-cell--lg .bento-canvas {
    height: 320px
}

.bento-body {
    padding: 1.8rem
}

.bento-num {
    font-size: .45rem;
    letter-spacing: .22em;
    color: var(--gold);
    margin-bottom: .35rem;
    display: block
}

.bento-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.bento-body p {
    font-size: .72rem;
    color: var(--w30);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-family: var(--sans)
}

.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem
}

.bento-tags span {
    font-size: .42rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .22rem .6rem;
    border: 1px solid var(--w08);
    border-radius: 100px;
    color: var(--w30);
    font-family: var(--sans)
}

/* ════════════════════════════
   SPECS
   ════════════════════════════ */
.specs-section {
    background: var(--bg1);
    position: relative;
    overflow: hidden
}

#specs-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.specs-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center
}

.specs-left .section-h2 {
    margin-bottom: 1rem
}

.specs-left p {
    font-size: .85rem;
    color: var(--w30);
    line-height: 1.7;
    font-family: var(--sans)
}

.specs-right {
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.spec-item {
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all .4s var(--ease)
}

.spec-item:hover {
    border-color: var(--ga);
    transform: translateX(4px)
}

.spec-item__l {
    display: flex;
    flex-direction: column;
    gap: .15rem
}

.spec-item__title {
    font-size: .82rem;
    font-weight: 700
}

.spec-item__desc {
    font-size: .6rem;
    color: var(--w30);
    font-family: var(--sans)
}

.spec-item__val {
    display: flex;
    align-items: baseline;
    gap: .3rem;
    white-space: nowrap;
    flex-shrink: 0
}

.spec-item__val .mono {
    font-size: 1.3rem;
    font-weight: 700
}

.spec-item__unit {
    font-size: .55rem;
    font-weight: 700;
    color: var(--w30);
    text-transform: uppercase;
    font-family: var(--sans)
}

/* ════════════════════════════
   PRODUCTS RAIL
   ════════════════════════════ */
.products-section {
    background: var(--bg)
}

.products-rail-wrap {
    overflow-x: auto;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 max(2rem, calc((100vw - var(--C))/2))
}

.products-rail-wrap::-webkit-scrollbar {
    display: none
}

.products-rail {
    display: flex;
    gap: 1.2rem;
    padding: 1rem 0 2.5rem;
    min-width: max-content
}

.rail-card {
    width: 280px;
    flex-shrink: 0;
    overflow: hidden;
    transition: all .5s var(--ease);
    position: relative
}

.rail-card:hover {
    transform: translateY(-6px);
    border-color: var(--ga);
    box-shadow: 0 16px 50px rgba(252, 199, 11, .06)
}

.rail-card__badge {
    position: absolute;
    top: .7rem;
    left: .7rem;
    z-index: 3
}

.rail-card__badge--hot {
    background: rgba(232, 64, 64, .1);
    color: #ff7070;
    border: 1px solid rgba(232, 64, 64, .18);
    animation: sale-fl 1.5s ease-in-out infinite alternate
}

.rail-card__badge--in {
    color: var(--grn)
}

.rail-card__badge--ltd {
    background: rgba(232, 172, 28, .08);
    color: var(--amr);
    border: 1px solid rgba(232, 172, 28, .15)
}

.rail-card__badge--new {
    background: var(--ga);
    color: var(--gold);
    border: 1px solid var(--ga)
}

.rail-card__vis {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.2rem;
    position: relative
}

.rail-canvas {
    width: 120px;
    height: 120px
}

.rail-card__body {
    padding: 0 1.2rem 1.4rem
}

.rail-card__cat {
    font-size: .44rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--gold);
    display: block;
    margin-bottom: .25rem;
    font-family: var(--mono)
}

.rail-card h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.rail-specs {
    padding: 0;
    margin-bottom: .8rem
}

.rail-specs li {
    font-size: .6rem;
    color: var(--w30);
    padding: .15rem 0 .15rem .8rem;
    position: relative;
    font-family: var(--sans)
}

.rail-specs li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold)
}

.rail-card__foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

/* ════════════════════════════
   PROJECTS
   ════════════════════════════ */
.projects-section {
    background: var(--bg1)
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem
}

.project-row {
    padding: 2rem;
    display: grid;
    grid-template-columns: 3rem 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: all .5s var(--ease);
    position: relative;
    overflow: hidden
}

.project-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0;
    transition: .4s
}

.project-row:hover {
    border-color: var(--w12);
    transform: translateX(4px)
}

.project-row:hover::before {
    opacity: 1
}

.project-row--feat {
    border-color: var(--ga);
    background: rgba(252, 199, 11, .012)
}

.project-row--feat::before {
    opacity: .5
}

.project-row__idx {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    opacity: .25
}

.project-row__meta {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .5rem
}

.project-row__yr {
    font-size: .48rem;
    color: var(--w30);
    letter-spacing: .08em
}

.project-row__info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .4rem
}

.project-row__info p {
    font-size: .72rem;
    color: var(--w30);
    line-height: 1.7;
    font-family: var(--sans)
}

.project-row__stats {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0
}

.pstat {
    text-align: center;
    min-width: 50px
}

.pstat__v {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--disp);
    line-height: 1
}

.pstat__l {
    font-size: .38rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--w20);
    display: block;
    margin-top: .2rem;
    font-family: var(--sans)
}

/* ════════════════════════════
   NETWORK MAP
   ════════════════════════════ */
.map-section {
    background: var(--bg)
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center
}

.map-text p {
    font-size: .85rem;
    color: var(--w30);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: var(--sans)
}

.map-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    margin-bottom: 2rem
}

.mkpi {
    text-align: center;
    padding: 1rem .5rem
}

.mkpi__v {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--disp);
    display: block;
    line-height: 1
}

.mkpi__s {
    font-size: .75rem;
    font-weight: 800;
    color: var(--gold)
}

.mkpi__l {
    font-size: .4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--w20);
    display: block;
    margin-top: .25rem;
    font-family: var(--sans)
}

.map-visual {
    position: relative;
    height: 480px
}

#map-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.map-nodes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2
}

.map-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem
}

.map-node::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--w08);
    border: 1px solid var(--w12)
}

.map-node span {
    font-size: .37rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--w20);
    font-family: var(--sans)
}

.map-node--hub::before {
    width: 12px;
    height: 12px;
    background: var(--gold);
    box-shadow: 0 0 15px var(--gc), 0 0 30px var(--ga);
    border: none;
    border-radius: 50%
}

.map-node--hub span {
    color: var(--gold);
    font-size: .42rem;
    font-weight: 800
}

/* ════════════════════════════
   BRANDS
   ════════════════════════════ */
.brands-row {
    padding: 1.5rem 0;
    background: var(--bg1);
    border-top: 1px solid var(--w05);
    border-bottom: 1px solid var(--w05)
}

.brands-inner {
    max-width: var(--C);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem
}

.brands-label {
    font-size: .44rem;
    letter-spacing: .18em;
    color: var(--w20);
    flex-shrink: 0
}

.brands-marquee {
    overflow: hidden;
    flex: 1
}

.brands-track {
    display: flex;
    gap: 2.5rem;
    animation: ticker-move 30s linear infinite;
    white-space: nowrap
}

.brands-track span {
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--w08);
    transition: .3s;
    font-family: var(--disp)
}

.brands-track span:hover {
    color: var(--gold)
}

/* ════════════════════════════
   TIMELINE
   ════════════════════════════ */
.timeline-section {
    background: var(--bg1)
}

.tl-wrap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0
}

.tl-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--w05);
    transform: translateX(-50%)
}

.tl-beam {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: .25;
    animation: tl-beam 5s ease-in-out infinite
}

@keyframes tl-beam {
    0% {
        top: -80px
    }

    100% {
        top: 100%
    }
}

.tl-item {
    position: relative;
    width: 50%;
    padding: 0 2.5rem 2.5rem
}

.tl-item--l {
    padding-right: 3rem;
    text-align: right
}

.tl-item--r {
    margin-left: 50%;
    padding-left: 3rem
}

.tl-dot {
    position: absolute;
    top: .6rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--w20);
    z-index: 1
}

.tl-item--l .tl-dot {
    right: -6px
}

.tl-item--r .tl-dot {
    left: -6px
}

.tl-dot--next {
    border-color: var(--gold);
    box-shadow: 0 0 12px var(--gc)
}

.tl-card {
    padding: 1.4rem;
    transition: all .4s var(--ease)
}

.tl-card:hover {
    border-color: var(--w12);
    transform: translateY(-2px)
}

.tl-card--next {
    border-color: var(--ga);
    background: rgba(252, 199, 11, .018)
}

.tl-yr {
    font-size: .44rem;
    letter-spacing: .2em;
    margin-bottom: .3rem;
    display: block
}

.tl-card h4 {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .3rem
}

.tl-card p {
    font-size: .68rem;
    color: var(--w30);
    line-height: 1.65;
    font-family: var(--sans)
}

/* ════════════════════════════
   TESTIMONIALS
   ════════════════════════════ */
.testi-section {
    background: var(--bg)
}

.testi-section .section-h2 {
    margin-bottom: 2.5rem
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem
}

.testi {
    padding: 2rem;
    transition: all .5s var(--ease);
    position: relative
}

.testi:hover {
    transform: translateY(-4px);
    border-color: var(--w12)
}

.testi-stars {
    font-size: .9rem;
    letter-spacing: .15em;
    color: var(--gold);
    margin-bottom: .8rem
}

.testi blockquote {
    font-size: .75rem;
    color: var(--w30);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.2rem;
    font-family: var(--sans)
}

.testi blockquote strong {
    color: var(--w);
    font-style: normal
}

.testi-who {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .5rem
}

.testi-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ga);
    border: 1px solid var(--ga);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .48rem;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0
}

.testi-who strong {
    display: block;
    font-size: .7rem
}

.testi-co {
    font-size: .5rem;
    color: var(--w20);
    display: block;
    margin-top: .1rem
}

.testi-badge {
    font-size: .44rem;
    font-weight: 700;
    color: var(--grn);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-family: var(--sans)
}

/* ════════════════════════════
   DEAL STRIP
   ════════════════════════════ */
.deal-strip {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(252, 199, 11, .04), rgba(80, 40, 200, .02));
    border-top: 1px solid var(--ga);
    border-bottom: 1px solid var(--ga);
    z-index: 2
}

.deal-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none
}

.deal-strip__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap
}

.deal-strip__left .deal-pill {
    display: inline-block;
    background: rgba(232, 64, 64, .1);
    color: #ff7070;
    border: 1px solid rgba(232, 64, 64, .2);
    font-size: .45rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: .22rem .65rem;
    border-radius: 100px;
    margin-bottom: .7rem;
    animation: sale-fl 1.5s ease-in-out infinite alternate;
    font-family: var(--sans)
}

.deal-strip__left h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.9rem);
    font-weight: 700;
    margin-bottom: .3rem
}

.deal-strip__left p {
    font-size: .8rem;
    color: var(--w30);
    font-family: var(--sans)
}

.deal-strip__timer {
    display: flex;
    align-items: center;
    gap: .4rem
}

.timer-b {
    padding: .6rem .7rem;
    min-width: 55px;
    text-align: center
}

.timer-n {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--disp);
    line-height: 1
}

.timer-l {
    display: block;
    font-size: .38rem;
    letter-spacing: .15em;
    color: var(--w30);
    margin-top: .2rem
}

.timer-sep {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--w12)
}

/* ════════════════════════════
   CONTACT
   ════════════════════════════ */
.contact-section {
    background: var(--bg1)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start
}

.contact-left .section-h2 {
    margin-bottom: 1rem
}

.contact-left>p {
    font-size: .85rem;
    color: var(--w30);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: var(--sans)
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-bottom: 1.5rem
}

.cmeta {
    display: flex;
    flex-direction: column;
    gap: .1rem
}

.cmeta__l {
    font-size: .42rem;
    letter-spacing: .18em;
    color: var(--w20);
    text-transform: uppercase
}

.cmeta__v {
    font-size: .8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .4rem
}

.contact-promise {
    padding: 1.2rem;
    border: 1px solid var(--ga);
    background: rgba(252, 199, 11, .015);
    border-radius: var(--r)
}

.contact-promise .mono {
    font-size: .45rem;
    display: block;
    margin-bottom: .4rem
}

.contact-promise p {
    font-size: .7rem;
    color: var(--w30);
    line-height: 1.6;
    font-family: var(--sans)
}

.contact-right {
    padding: 2rem
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem
}

.fgrp {
    margin-bottom: .7rem
}

.fgrp label {
    display: block;
    font-size: .46rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--w30);
    margin-bottom: .25rem;
    font-family: var(--sans)
}

.fgrp input,
.fgrp textarea {
    width: 100%;
    padding: .75rem 1rem;
    background: var(--w05);
    border: 1px solid var(--w08);
    border-radius: var(--r);
    color: var(--w);
    font-family: var(--sans);
    font-size: .8rem;
    transition: border-color .3s, background .3s;
    resize: vertical
}

.fgrp input:focus,
.fgrp textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(252, 199, 11, .02)
}

.hp {
    position: absolute;
    left: -9999px
}

.submit-btn {
    margin-top: .3rem
}

/* ════════════════════════════
   FOOTER
   ════════════════════════════ */
.footer {
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--w05);
    position: relative;
    z-index: 2;
    background: var(--bg)
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start
}

.footer-tag {
    font-size: .7rem;
    color: var(--w30);
    margin-top: .5rem;
    line-height: 1.65;
    font-family: var(--sans)
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.fcol {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.fcol h5 {
    font-size: .44rem;
    letter-spacing: .2em;
    color: var(--w20);
    text-transform: uppercase;
    margin-bottom: .3rem
}

.fcol a {
    font-size: .72rem;
    color: var(--w30);
    transition: color .3s;
    font-family: var(--sans)
}

.fcol a:hover {
    color: var(--gold)
}

.footer-entity {
    font-size: .55rem;
    color: var(--w20);
    line-height: 1.6;
    margin-top: .3rem;
    font-family: var(--sans)
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--w05);
    font-size: .48rem;
    color: var(--w20);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem
}

/* ════════════════════════════
   TOAST
   ════════════════════════════ */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    z-index: 10000;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: all .4s var(--spr)
}

.toast.show {
    opacity: 1;
    transform: none;
    pointer-events: auto
}

.toast-t {
    font-weight: 800;
    font-size: .75rem;
    margin-bottom: .1rem
}

.toast-m {
    font-size: .5rem;
    color: var(--w30);
    letter-spacing: .06em
}

/* ════════════════════════════
   TILT CARDS
   ════════════════════════════ */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform
}

/* ════════════════════════════
   RESPONSIVE
   ════════════════════════════ */
@media(max-width:1100px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero__desc {
        margin-left: auto;
        margin-right: auto
    }

    .hero__ctas {
        justify-content: center
    }

    .hero__kpis {
        justify-content: center
    }

    .hero__orb-card {
        margin: 0 auto
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .specs-inner {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .map-grid {
        grid-template-columns: 1fr
    }

    .map-visual {
        height: 350px
    }

    .testi-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .hamburger {
        display: flex
    }

    .nav {
        position: fixed;
        inset: 0;
        background: rgba(5, 5, 8, .97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform .4s var(--ease);
        z-index: 999
    }

    .nav.open {
        transform: none
    }

    .nav a {
        font-size: 1rem;
        letter-spacing: .1em
    }

    .status-pill,
    .nav-end .btn:not(.hamburger ~ .btn) {
        display: none
    }

    .expertise-bento {
        grid-template-columns: 1fr
    }

    .bento-cell--lg {
        grid-row: auto
    }

    .projects-list .project-row {
        grid-template-columns: 2rem 1fr;
        gap: 1rem
    }

    .project-row__stats {
        display: none
    }

    .tl-line {
        left: 20px
    }

    .tl-item,
    .tl-item--l,
    .tl-item--r {
        width: 100%;
        margin-left: 0;
        padding-left: 46px;
        padding-right: 0;
        text-align: left
    }

    .tl-item--l .tl-dot,
    .tl-item--r .tl-dot {
        left: 14px;
        right: auto
    }

    .footer-top {
        grid-template-columns: 1fr
    }

    .footer-cols {
        grid-template-columns: 1fr
    }

    .deal-strip__inner {
        flex-direction: column;
        text-align: center
    }

    .frow {
        grid-template-columns: 1fr
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .1ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }

    #bg-canvas,
    #hero-canvas,
    #cursor-glow,
    .hero__orbs {
        display: none
    }
}