:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #00ffcc;
    --secondary-accent: #ff00ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

#webgl-canvas {
    display: none;
    /* Three.js canvas disabled — using Spline for 3D */
}


/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 1s ease, visibility 1s;
}

.loader {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 5px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
}

.accent {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.dot {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-cta {
    background: var(--accent-color);
    color: var(--bg-color) !important;
    padding: 12px 25px;
    border-radius: 100px;
    font-weight: 700 !important;
}

/* Main Content */
main {
    position: relative;
    z-index: 10;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Spline Iframe Container */
.spline-container {
    position: absolute;
    top: -22%;
    /* Push robot further up */
    left: 0;
    width: 100%;
    height: 130%;
    /* Taller to compensate for upward shift */
    z-index: 2;
    /* In front of text */
    pointer-events: auto;
    /* Allow robot interaction */
    /* Hide ALL 'Built with Spline' watermarks (top-left & bottom-right) */
    clip-path: inset(60px 0 80px 0);
}

/* Black cover over Spline iframe — hides loading flash */
#spline-cover {
    position: absolute;
    inset: 0;
    background: var(--bg-color);
    z-index: 3;
    /* above iframe (z-index: 2) */
    pointer-events: none;
    transition: opacity 1s ease;
}

/* JS removes this class after loader fades to reveal the 3D */
body.spline-ready #spline-cover {
    opacity: 0;
}

#hero-spline-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
}

/* Hero */
#hero {
    align-items: center;
    /* Center content horizontally */
    text-align: center;
    overflow: hidden;
}

#hero h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.85;
    font-weight: 800;
    margin-bottom: 20px;
    z-index: 1;
    /* Behind robot */
    pointer-events: none;
    /* Allow clicks to pass through text to robot */
    position: relative;
    /* Ensure visibility against black */
    color: #fff;
}

.hero-subline {
    font-size: 1.2rem;
    max-width: 500px;
    opacity: 0.8;
    margin-top: 15px;
    z-index: 3;
    /* Ensure it floats ABOVE the robot/iframe plane if possible, or just be visible */
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    /* Readability */
}

.hero-content {
    position: relative;
    z-index: 1;
    /* BELOW the robot iframe (z-index: 2) so robot overlaps text */
    pointer-events: none;
    /* Let clicks pass */
}

/* Allow pointer events on buttons inside the pointer-events-none container */
.hero-content a {
    pointer-events: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

.label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.5;
}

/* About Section - Two Column Split */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.about-left h2 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1.05;
    margin-top: 20px;
}

.about-right {
    padding-top: 40px;
}

.about-right .description {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.75;
    margin-bottom: 30px;
}

/* Stats Row - 4 columns */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Global utilities */
.section-tag {
    display: block;
    color: var(--accent-color);
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.description {
    font-size: 1.1rem;
    max-width: 700px;
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Improved Stats */
.stat-item {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s;
}

.stat-item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:hover {
    background: rgba(0, 255, 204, 0.03);
}

.stat-num {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}


.stat-suffix {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Belief List */
.belief-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.belief-list li {
    font-size: 1rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check {
    color: var(--accent-color);
    font-weight: 700;
}

/* Services Grid */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
}

.service-box {
    background: rgba(10, 10, 10, 0.8);
    padding: 40px 30px;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-box:hover {
    background: rgba(0, 255, 204, 0.04);
}

.service-box:hover::after {
    opacity: 1;
}

.svc-num {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-color);
    opacity: 0.6;
}

.service-box h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}

.service-box p {
    opacity: 0.5;
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.svc-arrow {
    font-size: 1.2rem;
    color: var(--accent-color);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    display: block;
    margin-top: 8px;
}

.service-box:hover .svc-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Work - Premium Grid */
.work-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.project-card:hover .project-thumb {
    transform: scale(1.04);
}

.project-thumb {
    width: 100%;
    height: 340px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 16px;
}

.gradient-cyber {
    background: linear-gradient(135deg, #000 0%, #001a1a 30%, #00403a 60%, #00ffcc22 100%);
    box-shadow: inset 0 0 80px rgba(0, 255, 204, 0.15);
}

.gradient-luxury {
    background: linear-gradient(135deg, #0a0800 0%, #1a1200 30%, #3d2d00 60%, #c89a2022 100%);
    box-shadow: inset 0 0 80px rgba(200, 154, 32, 0.1);
}

.gradient-tech {
    background: linear-gradient(135deg, #000510 0%, #001030 40%, #0033aa 80%, #4477ff22 100%);
    box-shadow: inset 0 0 80px rgba(68, 119, 255, 0.12);
}

.gradient-auto {
    background: linear-gradient(135deg, #050005 0%, #150015 30%, #300030 60%, #aa00aa22 100%);
    box-shadow: inset 0 0 80px rgba(170, 0, 170, 0.1);
}

.project-info {
    padding: 20px 0 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.project-cat {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.7;
    font-weight: 600;
}

.project-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.view-all-container {
    margin-top: 50px;
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 16px 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

/* ─── Scroll Reveal System ─────────────────────────────────────────
   [data-reveal] elements are VISIBLE by default.
   JS optionally adds .revealed for animated entry — but content is
   never gated behind JS execution. ───────────────────────────────── */
[data-reveal] {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

body.js-ready [data-reveal]:not(.revealed) {
}


[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Word-split headline animation (Identity + Heading els) ────── */
.split-ready .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    margin-right: 0.22em;
}

.split-ready .word-inner {
    display: inline-block;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.5s ease;
}

body.js-ready .split-ready .word-inner:not(.word-up) {
}


.split-ready .word-inner.word-up {
    transform: translateY(0);
    opacity: 1;
}

/* ─── Services ──────────────────────────────────────────────────── */
.service-box {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

body.js-ready .service-box:not(.revealed) {
}


.service-box.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-box:hover {
    background: rgba(0, 255, 204, 0.04);
    border-color: rgba(0, 255, 204, 0.18);
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.06) inset;
}

.service-box:hover .svc-arrow {
    transform: translate(5px, -2px);
    color: var(--accent-color);
}

.svc-arrow {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* ─── Work Cards ────────────────────────────────────────────────── */
.work-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s, box-shadow 0.35s;
}

body.js-ready .work-card:not(.revealed) {
}


.work-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ─── Founder Section ───────────────────────────────────────────── */
.founder-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #050505 0%, #080808 60%, #050505 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.founder-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

/* Left column */
.founder-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 100px;
}

.founder-avatar {
    width: 160px;
    height: 160px;
    position: relative;
}

.founder-avatar-inner {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #0f0f0f;
    border: 2px solid rgba(0, 255, 204, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Clip the photo into the circle */
}

.founder-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    /* Focus on the face */
    border-radius: 50%;
    display: block;
}

.founder-initials {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    letter-spacing: -2px;
    line-height: 1;
    z-index: 1;
}

.founder-avatar-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 255, 204, 0.2);
    animation: ring-spin 8s linear infinite;
    background: conic-gradient(from 0deg,
            transparent 0%,
            rgba(0, 255, 204, 0.25) 25%,
            transparent 50%);
}

@keyframes ring-spin {
    to {
        transform: rotate(360deg);
    }
}

.founder-identity {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.founder-title {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.85;
}

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

.founder-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s, color 0.3s;
}

.founder-tag:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.founder-socials {
    display: flex;
    gap: 20px;
}

.founder-social-link {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.25s;
}

.founder-social-link:hover {
    color: var(--accent-color);
}

/* Right column */
.founder-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.founder-headline {
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.05;
    font-weight: 900;
    margin: 0;
}

.founder-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.65;
    max-width: 560px;
    margin: 0;
}

.founder-desc em {
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    font-weight: 600;
}

.founder-quote {
    margin: 0;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.025);
    border-left: 3px solid var(--accent-color);
    border-radius: 0 12px 12px 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
}

.founder-quote strong {
    color: #fff;
}

.quote-mark {
    font-size: 2.5rem;
    line-height: 0;
    vertical-align: -0.5rem;
    color: var(--accent-color);
    opacity: 0.5;
    font-family: Georgia, serif;
    margin-right: 4px;
}

.quote-mark:last-child {
    margin-left: 4px;
    margin-right: 0;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
}

.fstat {
    padding: 28px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fstat:last-child {
    border-right: none;
}

.fstat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.fstat-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.4;
}

/* Responsive founder */
@media (max-width: 1000px) {
    .founder-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-left {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 24px;
    }

    .founder-avatar {
        width: 100px;
        height: 100px;
    }

    .founder-avatar-inner {
        width: 100px;
        height: 100px;
    }

    .founder-initials {
        font-size: 2rem;
    }

    .founder-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ─── Stat Top layout ─────────────────────────────────────────── */
.stat-top {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
    margin-bottom: 10px;
}

/* ─── Work Grid — Mini Games ──────────────────────────────────── */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.work-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.07);
    cursor: pointer;
    aspect-ratio: 4 / 3;
    min-height: 280px;
    transition: border-color 0.35s, box-shadow 0.35s,
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover {
    border-color: rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.08);
}

.work-card canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
    z-index: 2;
}

.project-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.play-hint {
    font-size: 0.72rem;
    opacity: 0.45;
    letter-spacing: 1px;
}

.work-link {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    z-index: 3;
    transition: color 0.25s;
    opacity: 0;
}

.work-card:hover .work-link {
    opacity: 1;
    color: rgba(255, 255, 255, 0.85);
}

/* ─── Contact Section ─────────────────────────────────────────── */
.contact-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

.contact-heading {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1;
    margin-bottom: 30px;
}

.contact-desc {
    margin-bottom: 60px;
    max-width: 540px;
}

.giant-cta {
    font-size: clamp(1.8rem, 4.5vw, 4.2rem);
    font-family: var(--font-heading);
    font-weight: 800;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
    line-height: 1.1;
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.giant-cta::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    box-shadow: 0 0 16px var(--accent-color);
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.giant-cta:hover {
    color: var(--accent-color);
}

.giant-cta:hover::after {
    width: 100%;
}

.contact-meta {
    margin-top: 70px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.social-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: opacity 0.2s;
}

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

.divider {
    opacity: 0.2;
}

.location-tag {
    opacity: 0.4;
    font-size: 0.85rem;
}

.cta-note {
    font-size: 0.82rem;
    opacity: 0.4;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet  ≤ 900px
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile  ≤ 768px
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Nav */
    nav {
        padding: 18px 20px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Layout */
    .content-wrapper {
        padding: 0 20px;
    }

    section {
        min-height: auto;
        padding: 80px 0;
    }

    /* Hero */
    #hero {
        min-height: 100svh;
        min-height: 100vh;
        overflow: hidden;
    }

    .spline-container {
        top: 5%;
        height: 100%;
        z-index: 2;
    }

    .hero-content {
        padding-top: 80px;
        z-index: 1;
    }

    #hero h1 {
        font-size: clamp(3rem, 14vw, 5rem);
        line-height: 0.88;
    }

    .hero-tag {
        font-size: 0.7rem;
        margin-bottom: 14px;
    }

    .scroll-indicator {
        bottom: 24px;
    }

    /* About / Identity */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-left h2 {
        font-size: clamp(2rem, 9vw, 3.4rem);
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-num {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Services */
    .services-modern-grid {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .service-box {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 28px 24px;
    }

    .service-box:last-child {
        border-bottom: none;
    }

    /* Founder */
    .founder-section {
        padding: 80px 0;
    }

    .founder-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .founder-left {
        position: static;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .founder-avatar {
        width: 110px;
        height: 110px;
    }

    .founder-avatar-inner {
        width: 110px;
        height: 110px;
    }

    .founder-name {
        font-size: 1.3rem;
    }

    .founder-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .founder-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .fstat-num {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

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

    .work-card {
        min-height: 220px;
        aspect-ratio: 16 / 9;
    }

    /* Contact */
    #contact {
        padding: 80px 0 60px;
    }

    .contact-heading {
        font-size: clamp(2rem, 9vw, 3.2rem);
    }

    .giant-cta {
        font-size: clamp(1.6rem, 7vw, 2.6rem);
    }

    .contact-meta {
        margin-top: 48px;
    }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile  ≤ 480px
══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

    #hero h1 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-num {
        font-size: 2rem;
    }

    .founder-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .founder-tags {
        gap: 6px;
    }

    .founder-tag {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .contact-socials {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .divider {
        display: none;
    }

    .giant-cta {
        font-size: clamp(1.4rem, 8vw, 2rem);
    }

    .contact-heading {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
    }
}