/* ══ TOKENS ══ */
:root {
    --bg: #080808;
    --bg-2: #0f0f0f;
    --bg-card: #141414;
    --white: #ffffff;
    --white-dim: rgba(255, 255, 255, .72);
    --white-mute: rgba(255, 255, 255, .42);
    --white-ghost: rgba(255, 255, 255, .12);
    --white-faint: rgba(255, 255, 255, .06);

    --orange: #FFA600;
    --red: #FF0000;
    --blue: #1F92FE;

    --grad: linear-gradient(135deg, #FFA600 0%, #FF0000 50%, #1F92FE 100%);
    --grad-text: linear-gradient(120deg, #FFA600 0%, #FF3300 45%, #1F92FE 100%);
    --grad-border: linear-gradient(135deg, rgba(255, 166, 0, .6), rgba(255, 0, 0, .5), rgba(31, 146, 254, .6));

    --polaroid-bg: #f5f3ef;
    --polaroid-label: #1a1a1a;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-mono: 'Space Mono', monospace;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    --r-sm: 3px;
    --r-md: 6px;
    --r-lg: 12px;
    --r-xl: 18px;
    --r-full: 9999px;

    --ease: cubic-bezier(.4, 0, .2, 1);
    --spring: cubic-bezier(.34, 1.56, .64, 1);
    --t-fast: 140ms;
    --t-base: 240ms;
    --t-slow: 480ms;

    --header-h: 66px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 24px);
    -webkit-font-smoothing: antialiased
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.72;
    color: var(--white);
    background: var(--bg);
    overflow-x: hidden;
    cursor: none;
}

/* ── GRAIN ── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* ── CURSOR ── */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .12s, height .12s, background .2s
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9997;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .22s, height .22s
}

@media(hover:none) {

    .cursor,
    .cursor-ring {
        display: none
    }
}

a,
button,
[role=button] {
    cursor: none
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.04;
    color: var(--white)
}

h1 {
    font-size: clamp(3.4rem, 7vw, 7rem);
    letter-spacing: -.02em
}

h2 {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    letter-spacing: -.02em
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem)
}

p {
    color: var(--white-dim);
    margin-bottom: 1rem
}

a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--t-base) var(--ease)
}

em {
    font-style: italic;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

strong {
    color: var(--white);
    font-weight: 600
}

.grad-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* ── LAYOUT ── */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem
}

@media(min-width:768px) {
    .container {
        padding: 0 2.5rem
    }
}

@media(min-width:1100px) {
    .container {
        padding: 0 3.5rem
    }
}

.section {
    padding: clamp(5rem, 10vw, 9rem) 0;
    position: relative;
    overflow: hidden
}

.section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem
}

.section__header h2 {
    margin-bottom: .6rem
}

.section__header p {
    font-size: 1.05rem;
    color: var(--white-mute);
    margin: 0
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .2rem .7rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-size: .65rem;
    font-weight: 400;
    color: var(--white-mute);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--grad)
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .72rem 1.6rem;
    border-radius: var(--r-md);
    font-family: var(--font-mono);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    transition: all var(--t-base) var(--ease);
    white-space: nowrap;
    border: none;
    cursor: none;
    text-decoration: none;
}

.btn--primary {
    background: var(--white);
    color: var(--bg);
}

.btn--primary:hover {
    background: var(--white-dim);
    transform: translateY(-2px);
    color: var(--bg)
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .22);
}

.btn--outline:hover {
    border-color: var(--white);
    background: var(--white-faint)
}

.btn--ghost {
    background: transparent;
    color: var(--white-mute)
}

.btn--ghost:hover {
    color: var(--white)
}

.btn--lg {
    padding: .9rem 2.2rem;
    font-size: .84rem
}

.btn--block {
    width: 100%;
    justify-content: center
}

/* ── GRAD BUTTON ── */
.btn--grad {
    position: relative;
    background: transparent;
    color: var(--white);
    z-index: 0;
    overflow: hidden;
}

.btn--grad::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    z-index: -1;
    transition: opacity var(--t-base);
}

.btn--grad:hover {
    transform: translateY(-2px);
    color: var(--white)
}

/* ── REVEAL ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s var(--ease), transform .65s var(--ease)
}

[data-reveal].visible {
    opacity: 1;
    transform: none
}

[data-reveal="fade"] {
    transform: none
}

[data-reveal="zoom"] {
    transform: translateY(24px) scale(.96)
}

[data-reveal="zoom"].visible {
    transform: none
}

[data-reveal-delay="100"] {
    transition-delay: .1s
}

[data-reveal-delay="200"] {
    transition-delay: .2s
}

[data-reveal-delay="300"] {
    transition-delay: .3s
}

[data-reveal-delay="400"] {
    transition-delay: .4s
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.header {
    position: fixed;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 200;
    pointer-events: none;
}

.header .container {
    display: flex;
    justify-content: center
}

.header__inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 1060px);
    height: var(--header-h);
    padding: 0 1rem 0 1.2rem;
    border-radius: var(--r-full);
    background: rgba(10, 10, 10, .82);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px) saturate(1.1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.02em;
}

.logo-mark {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0
}

.nav {
    display: flex;
    align-items: center;
    gap: .12rem
}

.nav a {
    padding: .42rem .72rem;
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--white-mute);
    border-radius: var(--r-full);
    transition: all var(--t-base) var(--ease);
    letter-spacing: .02em;
}

.nav a:hover {
    color: var(--white);
    background: var(--white-faint)
}

.nav__cta {
    margin-left: .6rem;
    padding: .48rem 1.1rem !important;
    background: var(--white) !important;
    color: var(--bg) !important;
    border-radius: var(--r-full) !important;
    font-weight: 700 !important;
}

.nav__cta:hover {
    background: var(--white-dim) !important;
    transform: translateY(-1px)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: .5rem;
    cursor: none
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--t-base)
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity var(--t-base)
}

.nav-overlay.is-visible {
    opacity: 1
}

@media(max-width:880px) {
    .nav-toggle {
        display: flex
    }

    .nav {
        position: fixed;
        top: calc(14px + var(--header-h) + 8px);
        left: 1rem;
        right: 1rem;
        bottom: auto;
        width: auto;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background: rgba(10, 10, 10, .96);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 20px;
        padding: .9rem;
        gap: .3rem;
        transform: translateY(-20px) scale(.97);
        opacity: 0;
        pointer-events: none;
        transition: all var(--t-base) var(--ease);
        box-shadow: 0 24px 60px rgba(0, 0, 0, .7);
    }

    .nav.is-open {
        transform: none;
        opacity: 1;
        pointer-events: auto
    }

    .nav a {
        font-size: .9rem;
        padding: .6rem .9rem;
        width: 100%
    }

    .nav__cta {
        margin-left: 0 !important;
        margin-top: .4rem;
        width: 100%;
        text-align: center
    }

    .nav-overlay {
        display: block
    }
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 80px) 0 5rem;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

/* subtle grid */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* vignette */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 30%, rgba(8, 8, 8, .85) 100%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    align-items: center;
}

.hero__content {}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .28rem .84rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--white-mute);
    letter-spacing: .1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.dot-live {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 2s ease-in-out infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero__title {
    font-size: clamp(3.8rem, 8vw, 7.6rem);
    line-height: .88;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero__title em {
    font-style: italic
}

.hero__desc {
    font-size: 1.08rem;
    line-height: 1.74;
    color: var(--white-mute);
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.hero__chips span {
    padding: .3rem .72rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-size: .64rem;
    color: var(--white-mute);
    letter-spacing: .06em;
}

/* ── POLAROID HERO ── */
.hero__polaroids {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.polaroid {
    position: absolute;
    background: var(--polaroid-bg);
    border-radius: 3px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .7), 0 4px 12px rgba(0, 0, 0, .4);
    transition: transform .4s var(--spring), box-shadow .4s var(--ease);
    overflow: hidden;
}

.polaroid:hover {
    transform: var(--pol-rot, rotate(-2deg)) translateY(-8px) scale(1.03) !important;
    box-shadow: 0 36px 80px rgba(0, 0, 0, .8), 0 6px 18px rgba(0, 0, 0, .5);
    z-index: 10;
}

.polaroid__img {
    width: 100%;
    background: var(--bg-card);
    overflow: hidden;
    position: relative;
}

.polaroid__img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 166, 0, .08), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(31, 146, 254, .08), transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* faux site screenshot contents */
.preview-inner {
    width: 100%;
    height: 100%;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.preview-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 18px 18px;
}

.preview-nav {
    height: 20px;
    background: #111;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.preview-nav span {
    width: 6px;
    height: 6px;
    border-radius: 50%
}

.preview-nav span:nth-child(1) {
    background: #ff5f57
}

.preview-nav span:nth-child(2) {
    background: #febc2e
}

.preview-nav span:nth-child(3) {
    background: #28c840
}

.preview-body {
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.preview-line {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .12)
}

.preview-line.wide {
    width: 85%
}

.preview-line.mid {
    width: 62%
}

.preview-line.short {
    width: 40%
}

.preview-line.accent {
    background: linear-gradient(90deg, #FFA600, #FF0000, #1F92FE);
    width: 55%
}

.preview-hero {
    height: 50px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(255, 166, 0, .2), rgba(255, 0, 0, .15), rgba(31, 146, 254, .2));
    margin-bottom: 6px
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px
}

.preview-cards span {
    height: 28px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .07)
}

.polaroid__label {
    padding: .7rem .8rem 1rem;
    background: var(--polaroid-bg);
}

.polaroid__label strong {
    display: block;
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--polaroid-label);
    margin-bottom: .12rem;
}

.polaroid__label span {
    font-family: var(--font-mono);
    font-size: .58rem;
    color: rgba(26, 26, 26, .5);
}

/* specific polaroids positioning */
.polaroid--a {
    --pol-rot: rotate(-4deg);
    width: 200px;
    transform: rotate(-4deg) translate(-100px, 20px);
    z-index: 3;
}

.polaroid--a .polaroid__img {
    height: 160px
}

.polaroid--b {
    --pol-rot: rotate(2deg);
    width: 220px;
    transform: rotate(2deg) translate(60px, -40px);
    z-index: 4;
}

.polaroid--b .polaroid__img {
    height: 175px
}

.polaroid--c {
    --pol-rot: rotate(-1deg);
    width: 190px;
    transform: rotate(-1deg) translate(-30px, 90px);
    z-index: 2;
}

.polaroid--c .polaroid__img {
    height: 148px
}

.polaroid--d {
    --pol-rot: rotate(5deg);
    width: 180px;
    transform: rotate(5deg) translate(120px, 60px);
    z-index: 2;
}

.polaroid--d .polaroid__img {
    height: 140px
}

/* grad accent line */
.hero__accent-line {
    width: 100%;
    height: 1px;
    background: var(--grad);
    margin: 3rem 0 0;
    opacity: .35;
}

@media(max-width:900px) {
    .hero__inner {
        grid-template-columns: 1fr
    }

    .hero__polaroids {
        min-height: 360px;
        width: 100%
    }

    .polaroid--a {
        transform: rotate(-4deg) translate(-80px, 10px)
    }

    .polaroid--b {
        transform: rotate(2deg) translate(60px, -30px)
    }

    .polaroid--c {
        transform: rotate(-1deg) translate(-20px, 70px)
    }

    .polaroid--d {
        display: none
    }
}

@media(max-width:600px) {
    .hero {
        padding-top: calc(var(--header-h)+60px)
    }

    .hero__desc {
        max-width: 100%
    }

    .hero__actions {
        flex-direction: column
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center
    }

    .hero__polaroids {
        min-height: 280px
    }
}

/* ══════════════════════════════════
   MARQUEE
══════════════════════════════════ */
.marquee-bar {
    padding: 1.4rem 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    overflow: hidden;
    background: rgba(255, 255, 255, .02);
}

.marquee-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .22);
    margin-bottom: .8rem;
}

.marquee-track {
    overflow: hidden
}

.marquee-inner {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-item {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: rgba(255, 255, 255, .28);
    white-space: nowrap;
    letter-spacing: .04em;
    transition: color var(--t-base);
}

a.marquee-item:hover {
    color: rgba(255, 255, 255, .7)
}

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

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

/* ══════════════════════════════════
   STATS
══════════════════════════════════ */
.section--stats {
    background: var(--bg)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.stat-block {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, .025);
    transition: background var(--t-base);
    border-right: 1px solid rgba(255, 255, 255, .07);
}

.stat-block:last-child {
    border-right: none
}

.stat-block:hover {
    background: rgba(255, 255, 255, .04)
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: .4rem;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-num sup {
    font-size: .5em
}

.stat-label {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--white-mute);
    letter-spacing: .04em;
}

@media(max-width:800px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-block {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .07)
    }
}

@media(max-width:480px) {
    .stats-grid {
        grid-template-columns: 1fr
    }
}

/* ══════════════════════════════════
   REEL
══════════════════════════════════ */
.section--reel {
    background: var(--bg-2)
}

.reel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.reel-card {
    padding: 2rem 1.75rem;
    background: rgba(255, 255, 255, .025);
    transition: background var(--t-base);
    border-right: 1px solid rgba(255, 255, 255, .07);
    position: relative;
}

.reel-card:last-child {
    border-right: none
}

.reel-card:hover {
    background: rgba(255, 255, 255, .04)
}

.reel-card__num {
    font-family: var(--font-mono);
    font-size: .64rem;
    color: var(--white-mute);
    letter-spacing: .14em;
    margin-bottom: 1.2rem;
    display: block;
}

.reel-card h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    margin-bottom: .75rem;
    line-height: 1.1;
}

.reel-card p {
    font-size: .9rem;
    color: var(--white-mute);
    margin-bottom: 1rem
}

.reel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

.reel-tags span {
    padding: .24rem .6rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-size: .62rem;
    color: var(--white-mute);
}

.reel-card__accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--grad);
    opacity: 0;
    transition: opacity var(--t-base);
}

.reel-card:hover .reel-card__accent {
    opacity: .6
}

@media(max-width:700px) {
    .reel-grid {
        grid-template-columns: 1fr
    }

    .reel-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .07)
    }
}

/* ══════════════════════════════════
   PORTFOLIO — POLAROIDS
══════════════════════════════════ */
.section--works {
    background: var(--bg)
}

.works-polaroid-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2.5rem;
    align-items: start;
}

.work-pol {
    position: relative;
}

/* offset alternating items for stagger feel */
.work-pol:nth-child(odd) {
    margin-top: 0
}

.work-pol:nth-child(even) {
    margin-top: 3rem
}

.work-pol__card {
    background: var(--polaroid-bg);
    border-radius: 3px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .7), 0 4px 14px rgba(0, 0, 0, .5);
    transition: transform .45s var(--spring), box-shadow .45s var(--ease);
    overflow: hidden;
    transform: var(--pol-r, rotate(0deg));
}

.work-pol:nth-child(1) .work-pol__card {
    --pol-r: rotate(-1.8deg)
}

.work-pol:nth-child(2) .work-pol__card {
    --pol-r: rotate(1.4deg)
}

.work-pol:nth-child(3) .work-pol__card {
    --pol-r: rotate(-0.8deg)
}

.work-pol:nth-child(4) .work-pol__card {
    --pol-r: rotate(2.2deg)
}

.work-pol__card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.02) !important;
    box-shadow: 0 44px 100px rgba(0, 0, 0, .8), 0 8px 24px rgba(0, 0, 0, .6);
}

.work-pol__preview {
    height: 260px;
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.work-pol--hero .work-pol__preview {
    height: 320px
}

/* iframe preview inside polaroid */
.pol-live {
    position: relative;
    width: 100%;
    height: 100%
}

.pol-live__ph {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: var(--bg-card);
    font-family: var(--font-mono);
    font-size: .65rem;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: opacity .3s;
    z-index: 2;
}

.pol-live__ph span {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .9rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-full);
}

.pol-live__ph span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: blink 2s ease-in-out infinite;
}

.pol-live.is-loaded .pol-live__ph {
    opacity: 0;
    pointer-events: none
}

.pol-live iframe {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1440px;
    height: 900px;
    transform: translateX(-50%) scale(.26);
    transform-origin: top center;
    border: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
}

.pol-live.is-loaded iframe {
    opacity: 1
}

.work-pol__bottom {
    padding: .9rem 1rem 1.2rem;
    background: var(--polaroid-bg);
}

.work-pol__bottom strong {
    display: block;
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--polaroid-label);
    margin-bottom: .22rem;
}

.work-pol__bottom p {
    font-family: var(--font-mono);
    font-size: .65rem;
    color: rgba(26, 26, 26, .55);
    margin: 0;
    line-height: 1.5;
}

.work-pol__bottom .pol-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: .55rem;
    font-family: var(--font-mono);
    font-size: .62rem;
    color: rgba(26, 26, 26, .45);
    text-decoration: none;
    transition: color .2s;
}

.work-pol__bottom .pol-link:hover {
    color: var(--polaroid-label)
}

.work-pol__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-top: .55rem;
}

.work-pol__meta span {
    padding: .18rem .5rem;
    border: 1px solid rgba(26, 26, 26, .18);
    border-radius: 2px;
    font-family: var(--font-mono);
    font-size: .56rem;
    color: rgba(26, 26, 26, .5);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.works-cta {
    text-align: center;
    margin-top: 4rem
}

@media(max-width:760px) {
    .works-polaroid-gallery {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .work-pol:nth-child(even) {
        margin-top: 0
    }

    .pol-live iframe {
        transform: translateX(-50%) scale(.2)
    }
}

/* ══════════════════════════════════
   PROCESS
══════════════════════════════════ */
.section--process {
    background: var(--bg-2)
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.proc-step {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, .025);
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, .07);
    transition: background var(--t-base);
}

.proc-step:last-child {
    border-right: none
}

.proc-step:hover {
    background: rgba(255, 255, 255, .04)
}

.proc-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: .4;
}

.proc-step h3 {
    font-size: 1.05rem;
    margin-bottom: .5rem
}

.proc-step p {
    font-size: .83rem;
    color: var(--white-mute);
    margin: 0
}

.proc-step__dur {
    display: inline-block;
    margin-top: .8rem;
    font-family: var(--font-mono);
    font-size: .6rem;
    color: var(--white-mute);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-full);
    padding: .15rem .55rem;
    letter-spacing: .06em;
}

@media(max-width:800px) {
    .process-steps {
        grid-template-columns: 1fr 1fr
    }

    .proc-step {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .07)
    }
}

@media(max-width:480px) {
    .process-steps {
        grid-template-columns: 1fr
    }
}

/* ══════════════════════════════════
   PRODUCTS (ORBIT + SYNKRIS)
══════════════════════════════════ */
.section--orbit {
    background: var(--bg)
}

.section--synkris {
    background: var(--bg-2)
}

.product-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-content h2 {
    margin-bottom: .9rem
}

.product-content>p {
    margin-bottom: 1.4rem;
    max-width: 42ch
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 2rem
}

.product-features li {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .9rem;
    color: var(--white-mute);
    font-family: var(--font-mono);
    font-size: .8rem;
}

.product-features li::before {
    content: '';
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    background: var(--grad);
    border-radius: 50%;
    opacity: .7;
}

.product-actions {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap
}

/* Orbit dashboard */
.orbit-mock {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-xl);
    background: rgba(255, 255, 255, .03);
    padding: 1.5rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}

.orb-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem
}

.orb-brand {
    font-family: var(--font-mono);
    font-size: .8rem;
    color: var(--white-mute)
}

.orb-live {
    font-family: var(--font-mono);
    font-size: .65rem;
    color: #4ade80;
    background: rgba(74, 222, 128, .1);
    border-radius: var(--r-full);
    padding: .14rem .52rem
}

.orb-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
    margin-bottom: 1.2rem
}

.orb-kpi {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r-lg);
    padding: .65rem;
    text-align: center;
}

.orb-kpi__val {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: .14rem;
}

.orb-kpi__lbl {
    font-family: var(--font-mono);
    font-size: .6rem;
    color: var(--white-mute)
}

.orb-chart {
    display: flex;
    align-items: flex-end;
    gap: .38rem;
    height: 60px;
    margin-bottom: .85rem
}

.orb-bar {
    flex: 1;
    background: rgba(255, 255, 255, .09);
    border-radius: 2px 2px 0 0
}

.orb-bar--on {
    background: var(--grad)
}

.orb-tip {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r-lg);
    padding: .65rem;
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--white-mute);
}

.orb-tip::before {
    content: '→';
    color: var(--orange)
}

/* Synkris phone */
.synk-phone {
    max-width: 260px;
    margin: 0 auto;
    background: #111;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .6);
    overflow: hidden;
}

.ph-notch {
    width: 70px;
    height: 18px;
    background: #0a0a0a;
    border-radius: 0 0 12px 12px;
    margin: 0 auto
}

.ph-screen {
    padding: .8rem
}

.wa-head {
    display: flex;
    align-items: center;
    gap: .55rem;
    background: rgba(255, 255, 255, .04);
    border-radius: var(--r-lg);
    padding: .55rem .65rem;
    margin-bottom: .65rem;
}

.wa-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
}

.wa-info span {
    display: block;
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--white);
    margin-bottom: 1px
}

.wa-status {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-family: var(--font-mono);
    font-size: .6rem;
    color: rgba(255, 255, 255, .4)
}

.online-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #25d366
}

.wa-msgs {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    margin-bottom: .65rem
}

.wa-msg {
    max-width: 86%;
    padding: .45rem .65rem;
    border-radius: 10px
}

.wa-msg p {
    font-size: .7rem;
    line-height: 1.45;
    margin: 0;
    color: #111
}

.wa-msg time {
    display: block;
    font-size: .56rem;
    text-align: right;
    margin-top: 2px;
    opacity: .5;
    color: #111
}

.wa-in {
    background: rgba(255, 255, 255, .9);
    border-radius: 2px 10px 10px 10px;
    align-self: flex-start
}

.wa-out {
    background: #e8fbe7;
    border-radius: 10px 2px 10px 10px;
    align-self: flex-end
}

.wa-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--r-full);
    padding: .38rem .65rem;
    font-family: var(--font-mono);
    font-size: .66rem;
    color: rgba(255, 255, 255, .3);
}

@media(max-width:900px) {
    .product-wrap {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .product-wrap .product-visual {
        order: 2
    }

    .product-wrap .product-content {
        order: 1
    }

    .synk-phone {
        max-width: 240px
    }
}

/* ══════════════════════════════════
   TESTIMONIALS — POLAROIDS
══════════════════════════════════ */
.section--testimonials {
    background: var(--bg)
}

.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem 0.5rem;
}

.test-pol {
    background: var(--polaroid-bg);
    border-radius: 3px;
    padding: 1.4rem 1.2rem 1.5rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .6), 0 3px 10px rgba(0, 0, 0, .4);
    transform: var(--tp, rotate(0deg));
    transition: transform .4s var(--spring), box-shadow .4s var(--ease);
}

.test-pol:nth-child(1) {
    --tp: rotate(-2deg)
}

.test-pol:nth-child(2) {
    --tp: rotate(.8deg);
    margin-top: 1.5rem
}

.test-pol:nth-child(3) {
    --tp: rotate(-1.5deg)
}

.test-pol:hover {
    transform: rotate(0deg) translateY(-8px) !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .7), 0 6px 18px rgba(0, 0, 0, .5)
}

.test-stars {
    font-size: .85rem;
    letter-spacing: 2px;
    color: #f5a623;
    margin-bottom: .85rem
}

.test-pol blockquote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--polaroid-label);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.test-author {
    display: flex;
    align-items: center;
    gap: .65rem
}

.test-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFA600, #FF0000, #1F92FE);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: .66rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.test-author strong {
    display: block;
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--polaroid-label)
}

.test-author span {
    font-family: var(--font-mono);
    font-size: .62rem;
    color: rgba(26, 26, 26, .45)
}

@media(max-width:760px) {
    .testimonials-row {
        grid-template-columns: 1fr
    }

    .test-pol {
        --tp: rotate(0deg) !important
    }

    .test-pol:nth-child(2) {
        margin-top: 0
    }
}

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
.section--pricing {
    background: var(--bg-2)
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: var(--r-lg);
    overflow: visible;
    position: relative;
}

.price-card {
    padding: 2.2rem 1.75rem;
    background: rgba(255, 255, 255, .025);
    border-right: 1px solid rgba(255, 255, 255, .07);
    position: relative;
    transition: background var(--t-base);
}

.price-card:last-child {
    border-right: none
}

.price-card--pop {
    background: rgba(255, 255, 255, .05);
    outline: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--r-md);
    z-index: 2;
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .28rem .8rem;
    border-radius: var(--r-full);
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

.price-name {
    font-family: var(--font-mono);
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .2rem;
}

.price-desc {
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--white-mute);
    margin-bottom: 1.4rem
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin-bottom: .2rem;
}

.price-note {
    font-family: var(--font-mono);
    font-size: .68rem;
    color: var(--white-mute);
    margin-bottom: 1.8rem
}

.price-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-bottom: 2rem
}

.price-feats li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--white-mute);
}

.price-feats li::before {
    content: '→';
    color: var(--white-mute)
}

.price-feats li.off {
    opacity: .28
}

.price-feats li.off::before {
    content: '—'
}

@media(max-width:800px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto
    }

    .price-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .07)
    }

    .price-card--pop {
        outline: none;
        background: rgba(255, 255, 255, .06)
    }
}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.section--faq {
    background: var(--bg)
}

.faq-list {
    max-width: 680px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .95rem 0;
    cursor: none;
    list-style: none;
    font-family: var(--font-mono);
    font-size: .82rem;
    color: var(--white);
    gap: 1rem;
    transition: color var(--t-base);
}

.faq-q::-webkit-details-marker {
    display: none
}

.faq-q span {
    flex: 1
}

.faq-q:hover {
    color: var(--white-dim)
}

.faq-icon {
    flex-shrink: 0;
    color: var(--white-mute);
    transition: transform var(--t-base)
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg)
}

.faq-a {
    padding-bottom: 1rem;
    padding-right: 2rem
}

.faq-a p {
    font-size: .86rem;
    margin: 0;
    color: var(--white-mute);
    font-family: var(--font-mono)
}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.section--contact {
    background: var(--bg-2)
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start
}

.contact-left h2 {
    margin-bottom: .75rem
}

.contact-left>p {
    margin-bottom: 1.8rem;
    max-width: 40ch
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.1rem
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem
}

.ci-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-mute);
}

.ci-lbl {
    font-family: var(--font-mono);
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--white-mute);
    margin-bottom: 2px;
}

.ci-val {
    font-family: var(--font-mono);
    font-size: .82rem;
    color: var(--white)
}

.ci-val:hover {
    color: var(--white-dim)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: .85rem
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.form-field label {
    font-family: var(--font-mono);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--white-mute);
}

.form-field input,
.form-field textarea,
.form-field select {
    padding: .65rem .85rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    font-family: var(--font-mono);
    font-size: .8rem;
    color: var(--white);
    outline: none;
    transition: border-color var(--t-base);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--white-mute)
}

.form-field select option {
    background: var(--bg-card);
    color: var(--white)
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: rgba(255, 255, 255, .32)
}

.form-field textarea {
    resize: vertical
}

.form-note {
    font-family: var(--font-mono);
    font-size: .65rem;
    color: var(--white-mute);
    text-align: center;
    margin: 0
}

.form-status {
    font-family: var(--font-mono);
    font-size: .75rem;
    text-align: center;
    min-height: 1.2em;
    margin: 0
}

@media(max-width:760px) {
    .contact-wrap {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
    background: var(--bg);
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 3.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    margin-bottom: 2.5rem
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .8rem;
}

.footer-tagline {
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--white-mute);
    line-height: 1.6;
    margin-bottom: 1.2rem
}

.footer-social {
    display: flex;
    gap: .5rem
}

.footer-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    color: var(--white-mute);
    transition: all var(--t-base);
}

.footer-social a:hover {
    border-color: rgba(255, 255, 255, .3);
    color: var(--white)
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255, 255, 255, .22);
    margin-bottom: .8rem;
}

.footer-col a {
    display: block;
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--white-mute);
    margin-bottom: .38rem;
    transition: color var(--t-base);
}

.footer-col a:hover {
    color: var(--white)
}

.footer-bottom {
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .6rem;
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--white-mute);
}

.footer-bottom a {
    color: var(--white-mute)
}

.footer-bottom a:hover {
    color: var(--white)
}

@media(max-width:760px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }
}

/* ── GRAD ACCENT DIVIDER ── */
.grad-line {
    height: 1px;
    background: var(--grad);
    opacity: .25;
    border: none
}

/* ── SKIP LINK ── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 10000;
    padding: .6rem 1rem;
    background: var(--white);
    color: var(--bg);
    border-radius: var(--r-md);
    font-weight: 600;
}

.skip-link:focus {
    top: 1rem
}