/* ═══════════════════════════════════════════════════════════
   NORTHYX STUDIOS — STYLES
   Technical Minimalism × Brand Precision
═══════════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────────── */
:root {
    /* Colors */
    --color-black: #0d0d0d;
    --color-black-true: #000000;
    --color-surface: #1a1a1a;
    --color-border: rgba(255, 255, 255, 0.06);
    --color-white: #ffffff;
    --color-white-dim: #d4d4d4;
    --color-off-white: #f5f5f5;
    --color-dark-text: #050505;
    --color-accent: #00ff87;
    --color-accent-dim: rgba(0, 255, 135, 0.12);
    --color-accent-dark: #00cc6d;

    /* Typography */
    --font-sans: 'Geist', 'Geist Sans', system-ui, sans-serif;
    --font-mono: 'Geist Mono', 'Consolas', monospace;

    /* Spacing */
    --section-gap: 140px;
    --container-max: 1440px;
    --gutter: 24px;

    /* Easing */
    --ease-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
    --ease-exit: cubic-bezier(0.4, 0.0, 1, 1);
    --ease-enter: cubic-bezier(0, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

/* Grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' 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");
    z-index: 9999;
    mix-blend-mode: overlay;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    font-family: inherit;
}

/* No border-radius anywhere */
* {
    border-radius: 0 !important;
}

/* Focus states */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* ── Custom Cursor ──────────────────────────────────────── */
* {
    cursor: none;
}

#custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 10000;
    font-family: var(--font-mono);
    font-size: 20px;
    line-height: 1;
    color: var(--color-accent);
    transform: translate(-50%, -50%);
    transition: opacity 0.2s var(--ease-smooth);
    user-select: none;
}

/* ── Container ──────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px;
}

/* ── Section Labels ─────────────────────────────────────── */
.section-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.section-label-dark {
    color: rgba(0, 0, 0, 0.4);
}

/* ── Section Headlines ──────────────────────────────────── */
.section-headline {
    font-family: var(--font-sans);
    font-size: clamp(56px, 7vw, 90px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 32px;
}

.section-headline-dark {
    color: var(--color-dark-text);
}

/* ── Section Intro ──────────────────────────────────────── */
.section-intro {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white-dim);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 64px;
}

.section-intro-dark {
    color: rgba(13, 13, 13, 0.6);
    max-width: 800px;
}

/* ── Accent Text ────────────────────────────────────────── */
.accent-text {
    color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
    opacity: 0;
    animation: navFadeIn 0.3s var(--ease-enter) 0.1s forwards;
}

@keyframes navFadeIn {
    to {
        opacity: 1;
    }
}

.nav.scrolled {
    background: var(--color-surface);
    border-bottom-color: var(--color-border);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-smooth);
}

.nav-brand.bump {
    animation: navBump 0.4s var(--ease-smooth);
}

@keyframes navBump {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.nav-time {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-white-dim);
    margin-right: auto;
    opacity: 0.6;
    border-left: 1px solid var(--color-border);
    padding-left: 20px;
    margin-left: 10px;
}

@media (max-width: 480px) {
    .nav-time {
        display: none;
    }
}

.nav-logo-img {
    height: 28px;
    width: auto;
}

.nav-wordmark {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white-dim);
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s var(--ease-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s var(--ease-smooth);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.btn-book-now {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--color-accent);
    color: var(--color-black);
    padding: 10px 20px;
    flex-shrink: 0;
    transition: background 0.15s var(--ease-smooth);
}

.btn-book-now:hover {
    background: var(--color-accent-dark);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
    margin-left: auto;
}

.ham-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-white);
    transition: transform 0.3s var(--ease-smooth), opacity 0.3s var(--ease-smooth);
}

.hamburger.active .ham-line:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.hamburger.active .ham-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .ham-line:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-black-true);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-smooth);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 48px;
    font-size: 24px;
    color: var(--color-white-dim);
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-menu-close:hover {
    color: var(--color-white);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-link {
    font-family: var(--font-sans);
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.2s var(--ease-smooth);
}

.mobile-menu.open .mobile-nav-link {
    animation: mobileNavIn 0.4s var(--ease-enter) forwards;
}

.mobile-menu.open .mobile-nav-link:nth-child(1) {
    animation-delay: 0.05s;
}

.mobile-menu.open .mobile-nav-link:nth-child(2) {
    animation-delay: 0.10s;
}

.mobile-menu.open .mobile-nav-link:nth-child(3) {
    animation-delay: 0.15s;
}

.mobile-menu.open .mobile-nav-link:nth-child(4) {
    animation-delay: 0.20s;
}

.mobile-menu.open .mobile-nav-link:nth-child(5) {
    animation-delay: 0.25s;
}

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

.mobile-nav-link:hover {
    color: var(--color-accent);
}

.mobile-nav-accent {
    color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--color-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* Subtle grid lines on dark bg */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent calc(100% / 12));
    pointer-events: none;
}

.hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-content {
    width: 60%;
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-sans);
    font-size: clamp(64px, 9vw, 120px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 32px;
    overflow: hidden;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

.hero-line-1 {
    animation: heroLineIn 0.5s var(--ease-enter) 0.3s forwards;
}

.hero-line-2 {
    animation: heroLineIn 0.5s var(--ease-enter) 0.38s forwards;
}

.hero-line-3 {
    animation: heroLineIn 0.5s var(--ease-enter) 0.46s forwards;
}

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

.hero-tagline {
    font-size: 19px;
    font-weight: 400;
    color: var(--color-white-dim);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    animation: heroLineIn 0.5s var(--ease-enter) 0.6s forwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroLineIn 0.5s var(--ease-enter) 0.72s forwards;
}

/* Primary button */
.btn-primary {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--color-accent);
    color: var(--color-black);
    padding: 16px 28px;
    display: inline-block;
    transition: background 0.15s var(--ease-smooth);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
}

/* Secondary button */
.btn-secondary {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: transparent;
    color: var(--color-white);
    padding: 15px 28px;
    border: 1px solid var(--color-white-dim);
    display: inline-block;
    transition: border-color 0.15s var(--ease-smooth), color 0.15s var(--ease-smooth);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Stat cards — positioned at 65% from left, breaking grid */
.hero-stats {
    position: absolute;
    left: 65%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    animation: heroLineIn 0.5s var(--ease-enter) 0.85s forwards;
}

.stat-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 32px 24px;
    min-width: 180px;
}

.stat-number {
    display: block;
    font-family: var(--font-sans);
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--color-white);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white-dim);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroLineIn 0.5s var(--ease-enter) 1.1s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-white-dim);
    animation: scrollPulse 2s var(--ease-smooth) infinite;
}

@keyframes scrollPulse {

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

    50% {
        opacity: 1;
        transform: scaleY(0.6);
    }
}

.scroll-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white-dim);
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL PROOF
═══════════════════════════════════════════════════════════ */
.social-proof {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
    height: 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.social-proof-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 48px;
}

.logo-strip-wrapper {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-strip {
    display: flex;
    gap: 64px;
    align-items: center;
    width: max-content;
    animation: logoScroll 30s linear infinite;
}

@keyframes logoScroll {
    from {
        transform: translateX(0);
    }

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

.logo-item {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white-dim);
    opacity: 0.4;
    white-space: nowrap;
    transition: opacity 0.2s var(--ease-smooth), transform 0.2s var(--ease-smooth);
    flex-shrink: 0;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════
   WORK SECTION
═══════════════════════════════════════════════════════════ */
.work-section {
    background: var(--color-black);
    padding: var(--section-gap) 0;
    position: relative;
}

.work-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.015) 0px,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent calc(100% / 12));
    pointer-events: none;
}

/* Bento grid — 12 columns */
.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
}

.work-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform 0.2s var(--ease-smooth), box-shadow 0.2s var(--ease-smooth);
    position: relative;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 0 rgba(0, 255, 135, 0.15);
}

.work-card-large {
    grid-column: span 8;
}

.work-card-medium {
    grid-column: span 4;
}

/* One card intentionally overflows grid by 8% */
.work-card-overflow {
    margin-right: -4%;
}

/* Case Study Logic */
.case-study-logic {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.case-study-logic p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-white-dim);
}

.case-study-logic strong {
    color: var(--color-white);
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

/* Work card button */
.btn-work-link {
    display: inline-block;
    margin-top: 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    padding: 12px 20px;
    transition: all 0.2s var(--ease-smooth);
    text-decoration: none;
}

.btn-work-link:hover {
    background: var(--color-accent);
    color: var(--color-black);
}

/* CSS Art Placeholders */
.work-card-art {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: #111;
}


/* UNL8D — wallet brand: geometric rectangles + circle */
.work-art-unl8d {
    background: #0f0f0f;
}

.work-art-unl8d .art-rect-1 {
    position: absolute;
    width: 120px;
    height: 80px;
    background: var(--color-accent);
    top: 40px;
    left: 40px;
    opacity: 0.9;
}

.work-art-unl8d .art-rect-2 {
    position: absolute;
    width: 60px;
    height: 120px;
    background: var(--color-white);
    top: 80px;
    left: 120px;
    opacity: 0.08;
}

.work-art-unl8d .art-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--color-accent);
    border-radius: 50% !important;
    bottom: 30px;
    right: 60px;
    opacity: 0.5;
}

.work-art-unl8d .art-line-h {
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--color-white);
    opacity: 0.06;
    bottom: 80px;
    left: 0;
}

/* ERYON — hardware: triangle + bars */
.work-art-eryon {
    background: #0c0c0c;
}

.work-art-eryon .art-tri {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 120px solid var(--color-accent);
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
}

.work-art-eryon .art-rect-3 {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    opacity: 0.05;
    bottom: 60px;
}

.work-art-eryon .art-line-v {
    position: absolute;
    width: 1px;
    height: 80px;
    background: var(--color-accent);
    opacity: 0.4;
    bottom: 0;
    right: 40px;
}

/* MERIDIAN — navigation: grid dots */
.work-art-meridian {
    background: #0e0e0e;
}

.work-art-meridian .art-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.work-art-meridian .art-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50% !important;
}

.work-art-meridian .art-dot-1 {
    top: 60px;
    left: 80px;
}

.work-art-meridian .art-dot-2 {
    top: 120px;
    left: 140px;
    opacity: 0.5;
    width: 6px;
    height: 6px;
}

.work-art-meridian .art-dot-3 {
    bottom: 60px;
    right: 60px;
    opacity: 0.8;
}

/* AXIS LABS — research: vertical bars */
.work-art-axislabs {
    background: #0a0a0a;
}

.work-art-axislabs .art-bar {
    position: absolute;
    bottom: 0;
    background: var(--color-white);
}

.work-art-axislabs .art-bar-1 {
    width: 24px;
    left: 40px;
    height: 140px;
    opacity: 0.08;
}

.work-art-axislabs .art-bar-2 {
    width: 24px;
    left: 80px;
    height: 200px;
    opacity: 0.06;
}

.work-art-axislabs .art-bar-3 {
    width: 24px;
    left: 120px;
    height: 100px;
    opacity: 0.08;
}

.work-art-axislabs .art-bar-4 {
    width: 24px;
    left: 160px;
    height: 170px;
    opacity: 0.05;
}

.work-art-axislabs .art-rect-4 {
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--color-accent);
    top: 50px;
    right: 40px;
}

/* FORGE CO — manufacturing: hex + diagonal */
.work-art-forgeco {
    background: #0d0d0d;
}

.work-art-forgeco .art-hex {
    position: absolute;
    width: 80px;
    height: 92px;
    background: transparent;
    border: 2px solid var(--color-accent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 40px;
    left: 40px;
    opacity: 0.6;
}

.work-art-forgeco .art-rect-5 {
    position: absolute;
    width: 140px;
    height: 2px;
    background: var(--color-accent);
    opacity: 0.3;
    top: 50%;
    right: 40px;
}

.work-art-forgeco .art-line-d {
    position: absolute;
    width: 1px;
    height: 200px;
    background: var(--color-white);
    opacity: 0.04;
    top: 0;
    right: 120px;
    transform: rotate(30deg);
    transform-origin: top;
}

/* Card body */
.work-card-body {
    padding: 28px 32px 32px;
}

.work-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.work-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white-dim);
    border: 1px solid var(--color-border);
    padding: 4px 10px;
}

.work-type {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white-dim);
}

.work-name {
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.work-desc {
    font-size: 14px;
    color: var(--color-white-dim);
    line-height: 1.5;
    margin-bottom: 16px;
}

.work-link-text {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--color-white-dim);
    transition: color 0.15s var(--ease-smooth);
}

.work-link-text:hover {
    color: var(--color-accent);
}

.work-footer {
    margin-top: 48px;
    text-align: center;
}

.portfolio-link {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-accent);
    transition: opacity 0.15s var(--ease-smooth);
}

.portfolio-link:hover {
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════════ */
.services-section {
    background: var(--color-off-white);
    padding: var(--section-gap) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter);
}

.service-card {
    border-left: 2px solid rgba(0, 0, 0, 0.08);
    padding: 40px 32px;
}

.service-title {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark-text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 15px;
    color: rgba(13, 13, 13, 0.55);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════════════ */
.pricing-section {
    background: var(--color-black);
    padding: var(--section-gap) 0;
    border-top: 1px solid var(--color-border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter);
}

.pricing-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
}

.pricing-card:hover {
    border-color: var(--color-accent);
}

.pricing-card-featured {
    border-color: var(--color-accent-dim);
    position: relative;
    transform: scale(1.03);
    z-index: 2;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: var(--color-accent);
    color: var(--color-black);
    padding: 4px 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricing-plan {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-white-dim);
    margin-bottom: 24px;
}

.pricing-price-block {
    margin-bottom: 32px;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
}

.pricing-plus {
    color: var(--color-accent);
    font-size: 24px;
    vertical-align: top;
}

.pricing-period {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-white-dim);
    margin-left: 5px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 14px;
    color: var(--color-white-dim);
    padding-left: 20px;
    position: relative;
}

.pricing-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.btn-pricing-outline {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    padding: 16px;
    border: 1px solid var(--color-border);
    transition: all 0.2s var(--ease-smooth);
    text-decoration: none;
    display: inline-block;
    color: var(--color-white);
}

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

.btn-pricing-accent {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    padding: 16px;
    background: var(--color-accent);
    color: var(--color-black);
    transition: all 0.2s var(--ease-smooth);
    text-decoration: none;
    display: inline-block;
}

.btn-pricing-accent:hover {
    background: var(--color-white);
}

.pricing-disclaimer {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-white-dim);
    text-align: center;
    margin-top: 48px;
    opacity: 0.5;
}

.pricing-process-link {
    text-align: center;
    margin-top: 24px;
}

.process-link {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    text-decoration: none;
}

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

    .pricing-card-featured {
        transform: scale(1);
    }
}

/* ═══════════════════════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════════════════════ */
.process-section {
    background: var(--color-black);
    padding: var(--section-gap) 0;
    border-top: 1px solid var(--color-border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    display: flex;
    flex-direction: column;
}

.step-num {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-accent);
    margin-bottom: 24px;
    display: block;
}

.step-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.step-desc {
    color: var(--color-white-dim);
    font-size: 16px;
    line-height: 1.6;
}

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

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

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════════════════════ */
.testimonials-section {
    background: var(--color-off-white);
    padding: var(--section-gap) 0;
}

.testimonials-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.testimonial-arrow {
    font-family: var(--font-sans);
    font-size: 48px;
    font-weight: 900;
    color: var(--color-dark-text);
    cursor: pointer;
    flex-shrink: 0;
    line-height: 1;
    opacity: 0.3;
    transition: opacity 0.2s var(--ease-smooth);
    padding: 8px;
    background: none;
    border: none;
}

.testimonial-arrow:hover {
    opacity: 1;
}

.testimonials-container {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    gap: 24px;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    scroll-snap-align: start;
    flex: 0 0 calc(33.333% - 16px);
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 48px 40px 40px;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 12px;
    left: 28px;
    font-family: var(--font-sans);
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    color: var(--color-accent);
    pointer-events: none;
    user-select: none;
}

.testimonial-quote {
    font-size: 17px;
    font-weight: 400;
    color: var(--color-dark-text);
    line-height: 1.6;
    margin-bottom: 28px;
    font-style: normal;
    padding-top: 40px;
}

.testimonial-attribution {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-style: normal;
}

.testimonial-name {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark-text);
}

.testimonial-role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(13, 13, 13, 0.5);
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════
   WHY NORTHYX
═══════════════════════════════════════════════════════════ */
.why-section {
    background: var(--color-black);
    padding: var(--section-gap) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter);
    margin-top: 64px;
}

.why-card {
    padding: 0;
}

.why-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 24px;
    background: var(--color-accent);
}

.why-icon-circle {
    border-radius: 50% !important;
}

.why-icon-triangle {
    background: transparent;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 28px solid var(--color-accent);
}

.why-title {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.why-desc {
    font-size: 15px;
    color: var(--color-white-dim);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT / CTA SECTION
═══════════════════════════════════════════════════════════ */
.contact-section {
    background: var(--color-accent);
    padding: 120px 0;
}

.contact-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-headline {
    font-family: var(--font-sans);
    font-size: clamp(56px, 8vw, 100px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 24px;
}

.contact-subline {
    font-size: 19px;
    font-weight: 400;
    color: rgba(13, 13, 13, 0.7);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 48px;
}

.btn-contact {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: var(--color-black);
    color: var(--color-accent);
    padding: 20px 48px;
    display: inline-block;
    margin-bottom: 48px;
    transition: opacity 0.15s var(--ease-smooth);
}

.btn-contact:hover {
    opacity: 0.85;
}

.contact-details {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-detail-link,
.contact-detail {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.02em;
    color: rgba(13, 13, 13, 0.6);
    transition: color 0.15s var(--ease-smooth);
}

.contact-detail-link:hover {
    color: var(--color-black);
}

.contact-sep {
    font-family: var(--font-mono);
    font-size: 13px;
    color: rgba(13, 13, 13, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   TRUST SIGNALS / LOGO WALL
═══════════════════════════════════════════════════════════ */
.trust-signals {
    background: var(--color-off-white);
    padding: 80px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.trust-logo {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   STICKY AUDIT BUTTON
═══════════════════════════════════════════════════════════ */
.sticky-audit-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--color-accent);
    color: var(--color-black);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2000;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: transform 0.3s var(--ease-smooth), background 0.2s var(--ease-smooth);
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.2);
}

.sticky-audit-btn:hover {
    background: var(--color-white);
    transform: translateY(-5px);
}

.sticky-icon {
    font-size: 16px;
}

@media (max-width: 600px) {
    .sticky-audit-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }

    .sticky-text {
        display: none;
    }

    .sticky-audit-btn::before {
        content: 'AUDIT';
    }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--color-black);
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--gutter);
    padding-top: 64px;
    padding-bottom: 48px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-wordmark {
    display: block;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-white);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-white-dim);
    line-height: 1.6;
    max-width: 260px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-self: center;
}

.footer-nav-link {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white-dim);
    transition: color 0.15s var(--ease-smooth);
}

.footer-nav-link:hover {
    color: var(--color-white);
}

.footer-external {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-self: end;
}

.footer-ext-link {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white-dim);
    transition: color 0.15s var(--ease-smooth);
}

.footer-ext-link:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 24px 48px;
    text-align: center;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white-dim);
    opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-enter), transform 0.6s var(--ease-enter);
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-enter), transform 0.5s var(--ease-enter);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --section-gap: 100px;
    }

    .container {
        padding: 0 32px;
    }

    .nav-inner {
        padding: 0 32px;
    }

    .footer-inner {
        padding-left: 32px;
        padding-right: 32px;
    }

    .footer-bottom {
        padding: 24px 32px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-inner {
        padding: 0 32px;
    }

    .work-card-large {
        grid-column: span 7;
    }

    .work-card-medium {
        grid-column: span 5;
    }

    .work-card-overflow {
        margin-right: 0;
    }



    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 768px (Tablet / Mobile)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --section-gap: 80px;
    }

    body {
        cursor: auto;
    }

    * {
        cursor: auto;
    }

    #custom-cursor {
        display: none;
    }

    .container {
        padding: 0 24px;
    }

    .nav-inner {
        padding: 0 24px;
    }

    .footer-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-bottom {
        padding: 24px;
    }

    /* Nav */
    .nav-links,
    .btn-book-now {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-inner {
        padding: 0 24px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 48px;
        padding-bottom: 80px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-headline {
        font-size: clamp(48px, 14vw, 72px);
    }

    /* Stat cards stack below content */
    .hero-stats {
        position: static;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
    }

    .stat-card {
        flex: 1;
        min-width: 120px;
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 40px;
    }

    /* Work grid */
    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-card-large,
    .work-card-medium {
        grid-column: span 1;
    }

    .work-card-overflow {
        margin-right: 0;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }



    /* Testimonials */
    .testimonial-card {
        flex: 0 0 calc(100% - 0px);
    }

    .testimonial-arrow {
        font-size: 36px;
    }

    /* Why */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        justify-self: start;
    }

    .footer-external {
        justify-self: start;
    }

    /* Social proof */
    .social-proof-inner {
        padding: 0 24px;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 480px (Mobile)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-headline {
        font-size: clamp(44px, 13vw, 60px);
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
    }

    .stat-card {
        min-width: unset;
    }

    .section-headline {
        font-size: clamp(44px, 12vw, 64px);
    }

    .contact-headline {
        font-size: clamp(44px, 12vw, 64px);
    }

    .testimonials-wrapper {
        gap: 12px;
    }

    .testimonial-arrow {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 36px 24px 28px;
    }

    .quote-mark {
        font-size: 72px;
        top: 8px;
        left: 16px;
    }



    .mobile-menu-close {
        right: 24px;
    }
}