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

:root {
    --coral: #FF4F4B;
    --violet: #6B4FE0;
    --cyan: #00D4FF;
    --lime: #C7F53F;
    --amber: #FFB929;
    --dark: #0A0A0F;
    --mid: #14140E;
    --text: #F1EEF8;
    --muted: #5B6882;
}

html { scroll-behavior: smooth; }

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* CURSOR */
.cursor {
    width: 11px; height: 12px;
    background: var(--lime);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}
.cursor-follower {
    width: 35px; height: 36px;
    border: 1px solid rgba(200,245,63,0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 99;
    display: flex; align-items: center; justify-content: space-between;
    padding: 23px 60px;
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(19px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.05em;
    background: linear-gradient(134deg, var(--lime), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex; gap: 39px; list-style: none;
}
.nav-links a {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 9px 24px;
    background: var(--lime);
    color: #0A0A0F;
    border: none;
    border-radius: 99px;
    cursor: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
    transform: scale(1.04);
    box-shadow: 0 0 30px rgba(200,245,63,0.35);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(79px);
    opacity: 0.35;
    animation: float 7s ease-in-out infinite;
}

.orb-2 { width: 600px; height: 600px; background: var(--violet); top: -200px; left: -150px; animation-delay: 0s; }
.orb-3 { width: 500px; height: 500px; background: var(--coral); top: 50px; right: -200px; animation-delay: 2s; }
.orb-4 { width: 400px; height: 400px; background: var(--cyan); bottom: -100px; left: 30%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.05); }
}

/* Grid texture */
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 1; max-width: 900px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: 'Syne', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--lime);
    border: 1px solid rgba(200,245,63,0.3);
    padding: 7px 20px;
    border-radius: 99px;
    margin-bottom: 35px;
    animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
    content: '';
    width: 5px; height: 6px;
    background: var(--lime);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.6); }
}

.hero-headline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(55px, 9vw, 120px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 27px;
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero-headline .word-gradient {
    background: linear-gradient(134deg, var(--coral) 0%, var(--violet) 50%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.7;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
    display: flex; gap: 15px; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 15px 36px;
    background: linear-gradient(134deg, var(--coral), var(--violet));
    color: white;
    border: none;
    border-radius: 99px;
    cursor: none;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative; overflow: hidden;
}
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 20px 50px rgba(123,79,224,0.5); }

.btn-secondary {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 15px 36px;
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 99px;
    cursor: none;
    transition: border-color 0.3s, background 0.3s;
}
.btn-secondary:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SCROLL INDICATOR */
.scroll-hint {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 7px;
    animation: fadeUp 0.8s 0.8s ease both;
}
.scroll-hint span {
    font-family: 'Syne', sans-serif;
    font-size: 10px; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--muted);
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--muted), transparent);
    animation: scrollAnim 1.5s ease infinite;
}
@keyframes scrollAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* STATS */
.stats-bar {
    background: var(--mid);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 40px 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.stat-item {
    padding: 0 40px;
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.stat-item:first-child { border-left: none; padding-left: 0; }
.stat-item:last-child { border-right: none; padding-right: 0; }

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(134deg, var(--lime), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* WORK SECTION */
section {
    padding: 120px 60px;
}

.section-eyebrow {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 15px;
    display: flex; align-items: center; gap: 11px;
}
.section-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,95,75,0.3);
    max-width: 60px;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(35px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.section-sub {
    font-size: 15px;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 60px;
}

/* PROJECT GRID */
.projects-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: none;
}

.project-card:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

.card-bg {
    position: absolute; inset: 0;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}

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

.card-1 .card-bg { background: linear-gradient(135deg, #001a2e 0%, #003d6b 50%, #0066FF 100%); }
.card-2 .card-bg { background: linear-gradient(135deg, #1a0533 0%, #3d1a6e 50%, #7B4FE0 100%); }
.card-3 .card-bg { background: linear-gradient(135deg, #1e0a06 0%, #7a2316 50%, #FF5F4B 100%); }

/* Mock UI inside cards */
.card-mockup {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.mock-screen {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.project-card:hover .mock-screen { transform: translateY(-10px) rotate(-1deg); }

.mock-bar {
    display: flex; gap: 4px; margin-bottom: 12px;
}
.mock-dot { width: 6px; height: 6px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #FF5F4B; }
.mock-dot:nth-child(2) { background: #FFB929; }
.mock-dot:nth-child(3) { background: #C8F53F; }

.mock-line {
    height: 5px; border-radius: 3px;
    background: rgba(255,255,255,0.15);
    margin-bottom: 7px;
}
.mock-line.short { width: 60%; }
.mock-line.medium { width: 80%; }
.mock-line.full { width: 100%; }

.mock-block {
    height: 60px; border-radius: 8px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 7px;
}

.mock-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 8px;
}
.mock-cell {
    height: 40px; border-radius: 6px;
    background: rgba(255,255,255,0.06);
}

.card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    transform: translateY(10px);
    opacity: 0.9;
    transition: transform 0.4s, opacity 0.4s;
}
.project-card:hover .card-info { transform: translateY(0); opacity: 1; }

.card-tag {
    font-family: 'Syne', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 5px;
}

.card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 3px;
}

.card-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}

.card-arrow {
    position: absolute;
    top: 20px; right: 20px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    opacity: 0;
    transform: translate(-5px, 5px);
    transition: opacity 0.3s, transform 0.3s;
}
.project-card:hover .card-arrow { opacity: 1; transform: translate(0, 0); }

/* PROCESS */
.process-section {
    background: var(--mid);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.process-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.process-steps {
    display: flex; flex-direction: column; gap: 0;
}

.step {
    display: flex; gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    transition: padding-left 0.3s;
    cursor: none;
}
.step:last-child { border-bottom: none; }
.step:hover { padding-left: 8px; }

.step-num {
    font-family: 'DM Serif Display', serif;
    font-size: 12px;
    color: var(--muted);
    min-width: 28px;
    padding-top: 1px;
    transition: color 0.3s;
}
.step:hover .step-num { color: var(--coral); }

.step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    transition: color 0.3s;
}
.step:hover .step-title { color: var(--lime); }

.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.process-visual {
    position: relative;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(134deg, #0d0520, #1a0835, #2a0d55);
    border: 1px solid rgba(123,79,224,0.2);
}

.vis-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}
.vis-orb-1 { width: 200px; height: 200px; background: var(--violet); opacity: 0.5; top: -40px; right: -40px; }
.vis-orb-2 { width: 150px; height: 150px; background: var(--coral); opacity: 0.4; bottom: 40px; left: 20px; }
.vis-orb-3 { width: 120px; height: 120px; background: var(--cyan); opacity: 0.3; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.vis-content {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
}

.vis-card {
    width: 220px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(20px);
}

.vis-label {
    font-family: 'Syne', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 12px;
}

.vis-user-score {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 3px;
    color: white;
}

.vis-sub { font-size: 11px; color: var(--muted); margin-bottom: 20px; }

.vis-bar-wrap { margin-bottom: 8px; }
.vis-bar-label {
    display: flex; justify-content: space-between;
    font-size: 10px; color: var(--muted); margin-bottom: 4px;
}
.vis-bar-track {
    height: 4px; border-radius: 3px;
    background: rgba(255,255,255,0.08);
}
.vis-bar-fill {
    height: 100%; border-radius: 3px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    transition: width 0.5s ease;
}

/* TESTIMONIALS */
.testimonials-inner {
    max-width: 1100px; margin: 0 auto;
}

.testimonials-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.testi-card {
    background: var(--mid);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
    cursor: none;
}
.testi-card:hover {
    border-color: rgba(199,245,63,0.2);
    transform: translateY(-5px);
}

.testi-stars {
    display: flex; gap: 2px; margin-bottom: 20px;
}
.star {
    width: 14px; height: 14px;
    background: var(--amber);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-quote {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(241,238,248,0.85);
    margin-bottom: 24px;
}

.testi-author {
    display: flex; align-items: center; gap: 12px;
}

.testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700; font-size: 14px;
}

.av-1 { background: linear-gradient(135deg, var(--lime), var(--cyan)); color: #0A0A0F; }
.av-2 { background: linear-gradient(135deg, var(--violet), var(--coral)); }
.av-3 { background: linear-gradient(135deg, var(--coral), var(--amber)); }

.testi-name {
    font-family: 'Syne', sans-serif;
    font-weight: 600; font-size: 14px;
}
.testi-role { font-size: 11px; color: var(--muted); }

/* CTA */
.cta-section {
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(123,79,224,0.2), transparent 70%);
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cta-title .highlight {
    background: linear-gradient(134deg, var(--lime) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-sub {
    font-size: 17px; color: var(--muted);
    margin-bottom: 48px;
    max-width: 480px; margin-left: auto; margin-right: auto;
    line-height: 1.6;
}

.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.btn-large {
    font-family: 'Syne', sans-serif;
    font-weight: 700; font-size: 16px;
    padding: 17px 44px;
    border-radius: 99px;
    cursor: none;
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-lime {
    background: var(--lime); color: #0A0A0F; border: none;
}
.btn-lime:hover { transform: scale(1.05); box-shadow: 0 20px 60px rgba(200,245,63,0.4); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* FOOTER */
footer {
    padding: 40px 60px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800; font-size: 18px;
    background: linear-gradient(134deg, var(--lime), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links { display: flex; gap: 32px; }
.footer-links a {
    font-size: 12px; color: var(--muted);
    text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: 11px; color: var(--muted); }

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* NOISE overlay */
body::before {
    content: '';
    position: fixed; inset: 0;
    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)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 8999;
    opacity: 0.4;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    section { padding: 80px 24px; }
    .stats-bar { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0 0 24px; }
    .stat-item:last-child { border-bottom: none; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card:first-child { grid-row: span 1; }
    .process-inner { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-header { flex-direction: column; gap: 24px; }
    footer { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}