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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f7f9ff;
    color: #4b5563;
    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.7;
}

:root {
    --blue: #2563eb;
    --blue-light: #3b82f6;
    --blue-pale: #eff6ff;
    --blue-pale2: #dbeafe;
    --teal: #0891b2;
    --teal-pale: #ecfeff;
    --green: #059669;
    --green-pale: #ecfdf5;
    --orange: #ea580c;
    --orange-pale: #fff7ed;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --radius: 14px;
    --radius-sm: 9px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-blue: 0 8px 24px rgba(37, 99, 235, 0.18);
}

/* Ambient background (used by /me) */
.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(1100px 680px at 12% 10%, rgba(56, 189, 248, 0.14) 0%, rgba(56, 189, 248, 0) 62%),
        radial-gradient(1000px 680px at 88% 18%, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0) 62%),
        radial-gradient(900px 620px at 56% 92%, rgba(16, 185, 129, 0.09) 0%, rgba(16, 185, 129, 0) 60%),
        radial-gradient(800px 520px at 45% 40%, rgba(251, 146, 60, 0.06) 0%, rgba(251, 146, 60, 0) 60%),
        linear-gradient(180deg, #fcfdff 0%, #f4f6ff 100%);
}

.site-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.05), rgba(0, 0, 0, 0) 40%, rgba(17, 24, 39, 0.04));
    mask-image: radial-gradient(60% 60% at 50% 20%, #000 30%, rgba(0, 0, 0, 0) 72%);
    -webkit-mask-image: radial-gradient(60% 60% at 50% 20%, #000 30%, rgba(0, 0, 0, 0) 72%);
}

.site-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 55% at 50% 20%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(60% 55% at 50% 100%, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0) 70%);
    opacity: 0.9;
    pointer-events: none;
}

.site-bg~* {
    position: relative;
    z-index: 1;
}

/* Seamless sections (no per-section "panel" blocks) */
.page-me section {
    position: relative;
}

.page-me section::before {
    display: none;
}

.page-me section>.container {
    position: relative;
    z-index: 1;
}

/* Donut cursor */
.cursor-donut,
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2000;
    opacity: 0;
    transform: translate3d(-50px, -50px, 0);
}

.cursor-donut {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid rgba(37, 99, 235, 0.35);
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.07);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: opacity 0.18s ease, width 0.18s ease, height 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.85);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.25);
    transition: opacity 0.18s ease;
}

.cursor-tail {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 1999;
    opacity: 0;
    background: rgba(37, 99, 235, 0.22);
    box-shadow: 0 8px 26px rgba(37, 99, 235, 0.18);
    transform: translate3d(-50px, -50px, 0);
    transition: opacity 0.22s ease;
    filter: blur(0.2px);
}

.page-me.cursor-custom-on,
.page-me.cursor-custom-on * {
    cursor: none !important;
}

.cursor-donut.is-hover {
    width: 62px;
    height: 62px;
    border-color: rgba(8, 145, 178, 0.4);
    box-shadow: 0 0 0 10px rgba(8, 145, 178, 0.08);
}

.cursor-donut.is-down {
    width: 38px;
    height: 38px;
    border-color: rgba(234, 88, 12, 0.45);
    box-shadow: 0 0 0 10px rgba(234, 88, 12, 0.12);
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0ea66b;
    box-shadow: 0 0 0 3px rgba(14, 166, 107, 0.24);
    animation: pulse 2.5s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.08);
    }
}

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

.nav-links a {
    font-size: 0.87rem;
    color: var(--gray-500);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

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

.nav-cta {
    padding: 9px 20px;
    background: var(--blue);
    color: #fff;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.2s;
    box-shadow: var(--shadow-blue);
}

.nav-cta:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
}

/* LAYOUT */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 96px 0;
}

/* CARD */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
}

.card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}

/* CHIPS */
.chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.chip-blue {
    background: var(--blue-pale);
    color: var(--blue);
    border: 1px solid var(--blue-pale2);
}

.chip-teal {
    background: var(--teal-pale);
    color: var(--teal);
    border: 1px solid #a5f3fc;
}

.chip-green {
    background: var(--green-pale);
    color: var(--green);
    border: 1px solid #a7f3d0;
}

.chip-orange {
    background: var(--orange-pale);
    color: var(--orange);
    border: 1px solid #fed7aa;
}

.chip-gray {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

/* EYEBROW */
.ey {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.ey::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 50px;
    background: var(--blue);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.22s;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 50px;
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.22s;
}

.btn-outline:hover {
    border-color: var(--gray-400);
    color: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ═══ HERO ═══ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 380px at 12% 10%, rgba(37, 99, 235, 0.08), rgba(0, 0, 0, 0) 60%),
        radial-gradient(900px 380px at 86% 20%, rgba(8, 145, 178, 0.06), rgba(0, 0, 0, 0) 60%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.03), rgba(0, 0, 0, 0) 35%, rgba(17, 24, 39, 0.02));
    opacity: 0.38;
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 43, 94, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    background: var(--blue-pale);
    border: 1px solid var(--blue-pale2);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    animation: pulse 2.5s infinite;
}

.hero-h1 {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-h1 .highlight {
    position: relative;
    color: var(--blue);
}

.hero-h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    border-radius: 2px;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-sub strong {
    color: var(--gray-700);
    font-weight: 500;
}

/* Inline emphasis inside hero sentence */
.hero-em {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    white-space: nowrap;
}

.hero-em-live,
.hero-em-store {
    color: var(--gray-700);
    font-weight: 600;
}

.hero-em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.85), rgba(8, 145, 178, 0.75));
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.12);
    opacity: 0.95;
    pointer-events: none;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -18px 0 28px;
    max-width: 520px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.hero-right {
    position: relative;
}

.phone-mockup {
    position: relative;
    padding: 32px;
    overflow: visible;
    background: var(--white);
    box-shadow: var(--shadow);
}

.phone-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.phone-link:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.55);
    outline-offset: 6px;
    border-radius: 18px;
}

.phone-orbit {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(27, 43, 94, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.phone-frame {
    position: relative;
    margin: 0 auto;
    width: 210px;
    height: 430px;
    border-radius: 36px;
    border: 8px solid #1a1a2e;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
    z-index: 1;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 16px;
    border-radius: 999px;
    background: #050816;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: radial-gradient(420px 300px at 50% 0%, rgba(37, 99, 235, 0.12), rgba(0, 0, 0, 0) 60%), #0b1220;
}

.phone-screen.is-loading::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.00) 0%,
            rgba(255, 255, 255, 0.14) 38%,
            rgba(255, 255, 255, 0.00) 72%);
    transform: translateX(-120%);
    animation: skelShimmer 1.1s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
    opacity: 0.85;
}

@keyframes skelShimmer {
    to {
        transform: translateX(120%);
    }
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.proof-icon {
    font-size: 1rem;
}

.proof-text {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.proof-text strong {
    color: var(--gray-700);
    font-weight: 600;
}

.proof-divider {
    width: 1px;
    height: 24px;
    background: var(--gray-200);
}

/* Hero card */
.hero-card {
    padding: 24px;
    position: relative;
    z-index: 1;
}

.hcard-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--gray-100);
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px var(--blue-pale2), 0 0 0 6px var(--blue-pale);
}

.hcard-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--gray-900);
}

.hcard-role {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 2px;
}

.hstats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.hstat {
    padding: 14px;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    text-align: center;
}

.hstat-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--blue);
}

.hstat-lbl {
    font-size: 0.65rem;
    color: var(--gray-400);
    margin-top: 2px;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.hchips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* ═══ SOCIAL PROOF STRIP ═══ */
#proof-strip {
    padding: 28px 0;
    background: var(--gray-900);
    border-top: none;
    border-bottom: none;
}

.proof-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.ps-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.ps-icon {
    font-size: 1.1rem;
}

.ps-val {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.ps-lbl {
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.01em;
}

/* ═══ SERVICES ═══ */
#services {
    background: transparent;
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.1rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title span {
    color: var(--blue);
}

.section-sub {
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 10px;
    max-width: 520px;
    line-height: 1.7;
}

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

.svc {
    position: relative;
    padding: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(229, 231, 235, 0.9);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    cursor: default;
}

.svc::before {
    content: '';
    position: absolute;
    inset: -2px;
    opacity: 0.85;
    pointer-events: none;
    background: radial-gradient(600px 260px at 12% 0%, rgba(37, 99, 235, 0.10), rgba(0, 0, 0, 0) 60%);
}

.svc[data-accent="teal"]::before {
    background: radial-gradient(600px 260px at 12% 0%, rgba(8, 145, 178, 0.10), rgba(0, 0, 0, 0) 60%);
}

.svc[data-accent="green"]::before {
    background: radial-gradient(600px 260px at 12% 0%, rgba(5, 150, 105, 0.10), rgba(0, 0, 0, 0) 60%);
}

.svc[data-accent="orange"]::before {
    background: radial-gradient(600px 260px at 12% 0%, rgba(234, 88, 12, 0.10), rgba(0, 0, 0, 0) 60%);
}

.svc::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.0), rgba(37, 99, 235, 0.75), rgba(56, 189, 248, 0.0));
    opacity: 0.9;
    pointer-events: none;
}

.svc[data-accent="teal"]::after {
    background: linear-gradient(90deg, rgba(8, 145, 178, 0.0), rgba(8, 145, 178, 0.75), rgba(34, 211, 238, 0.0));
}

.svc[data-accent="green"]::after {
    background: linear-gradient(90deg, rgba(5, 150, 105, 0.0), rgba(5, 150, 105, 0.75), rgba(52, 211, 153, 0.0));
}

.svc[data-accent="orange"]::after {
    background: linear-gradient(90deg, rgba(234, 88, 12, 0.0), rgba(234, 88, 12, 0.75), rgba(251, 146, 60, 0.0));
}

.svc:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue);
}

.svc[data-accent="teal"]:hover {
    border-color: rgba(8, 145, 178, 0.45);
}

.svc[data-accent="green"]:hover {
    border-color: rgba(5, 150, 105, 0.45);
}

.svc[data-accent="orange"]:hover {
    border-color: rgba(234, 88, 12, 0.45);
}

.svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(56, 189, 248, 0.10));
    border: 1px solid rgba(37, 99, 235, 0.18);
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.10);
    position: relative;
    z-index: 1;
}

.svc[data-accent="teal"] .svc-icon {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(34, 211, 238, 0.10));
    border-color: rgba(8, 145, 178, 0.18);
    box-shadow: 0 10px 26px rgba(8, 145, 178, 0.10);
}

.svc[data-accent="green"] .svc-icon {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(52, 211, 153, 0.10));
    border-color: rgba(5, 150, 105, 0.18);
    box-shadow: 0 10px 26px rgba(5, 150, 105, 0.10);
}

.svc[data-accent="orange"] .svc-icon {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.12), rgba(251, 146, 60, 0.10));
    border-color: rgba(234, 88, 12, 0.18);
    box-shadow: 0 10px 26px rgba(234, 88, 12, 0.10);
}

.svc-icon::before {
    content: attr(data-letter);
    font-family: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-weight: 700;
    color: rgba(17, 24, 39, 0.76);
    letter-spacing: 0.04em;
}

.svc-kicker {
    font-family: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.72rem;
    color: rgba(55, 65, 81, 0.62);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.svc-title {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.svc-desc {
    font-size: 0.87rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.svc-tech-toggle {
    margin-top: 14px;
    padding: 8px 0 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    font-size: 0.78rem;
    color: var(--gray-500);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.svc-tech-label {
    font-weight: 600;
}

.svc-tech-caret {
    font-size: 0.9rem;
    transition: transform 0.25s ease;
}

.svc-tech {
    display: none;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.svc.open .svc-tech {
    display: flex;
}

.svc.open .svc-tech-caret {
    transform: rotate(180deg);
}

.svc:hover .svc-icon {
    transform: none;
}

.svc:hover .svc-title {
    color: var(--blue);
}

.svc[data-accent="teal"]:hover .svc-title {
    color: var(--teal);
}

.svc[data-accent="green"]:hover .svc-title {
    color: var(--green);
}

.svc[data-accent="orange"]:hover .svc-title {
    color: var(--orange);
}

/* ═══ PROCESS (Timeline) ═══ */
#process {
    background: transparent;
}

.timeline {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    padding-left: 40px;
}

/* vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--blue-pale2), var(--blue), var(--blue-pale2));
    border-radius: 2px;
}

.tl-item {
    position: relative;
    margin-bottom: 12px;
}

.tl-last {
    margin-bottom: 0;
}

/* numbered dot on the line */
.tl-dot {
    position: absolute;
    left: -40px;
    top: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-blue), 0 0 0 4px var(--gray-50);
    z-index: 2;
}

.tl-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
}

/* card */
.tl-card {
    padding: 22px 24px;
    transition: all 0.25s;
}

.tl-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.tl-icon {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.tl-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.tl-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* arrow connector */
.tl-arrow {
    text-align: center;
    font-size: 1.2rem;
    color: var(--blue);
    line-height: 1;
    padding: 6px 0;
    opacity: 0.6;
}

/* ═══ DEV CTA BANNER ═══ */
#dev-cta {
    padding: 0 0 56px;
}

.dev-cta-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-radius: var(--radius);
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 18px;
}

.dev-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.9;
    background:
        radial-gradient(700px 360px at 20% 0%, rgba(0, 245, 255, 0.10), rgba(0, 0, 0, 0) 60%),
        radial-gradient(700px 360px at 80% 10%, rgba(139, 92, 246, 0.08), rgba(0, 0, 0, 0) 62%);
    pointer-events: none;
}

.dev-cta-box::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.dev-cta-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.dev-cta-heading {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.dev-cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.dev-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00f5ff, var(--blue));
    color: #0f172a;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 24px rgba(0, 245, 255, 0.25), 0 4px 16px rgba(37, 99, 235, 0.2);
    position: relative;
    z-index: 1;
}

.dev-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 36px rgba(0, 245, 255, 0.35), 0 8px 24px rgba(37, 99, 235, 0.3);
}

/* ═══ PROJECTS ═══ */
#projects {
    background: transparent;
}

.proj-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.proj-card {
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    will-change: transform;
    container-type: inline-size;
}

.proj-card:hover {
    box-shadow: var(--shadow-md);
}

.proj-card.feat {
    grid-column: 1/-1;
}

.proj-card:not(.feat) {
    grid-column: span 6;
}

.proj-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(220px, 38%, 320px);
    align-items: stretch;
}

.proj-card.feat .proj-row {
    grid-template-columns: minmax(0, 1fr) clamp(240px, 40%, 360px);
}

.proj-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 18px;
    background:
        radial-gradient(500px 320px at 50% 0%, rgba(37, 99, 235, 0.14), rgba(0, 0, 0, 0) 60%),
        linear-gradient(135deg, rgba(239, 246, 255, 0.9), rgba(236, 254, 255, 0.7));
    border-left: 1px solid rgba(229, 231, 235, 0.9);
}

/* If a project card gets narrow, stack inside the card (works even on desktop narrow windows). */
@container (max-width: 560px) {
    .proj-row {
        grid-template-columns: 1fr;
    }

    .proj-card.feat .proj-row {
        grid-template-columns: 1fr;
    }

    .proj-media {
        border-left: none;
        border-top: 1px solid rgba(229, 231, 235, 0.9);
        padding: 14px;
    }

    .proj-phone-frame {
        width: 176px;
        height: 360px;
    }

    .proj-links {
        flex-direction: column;
        align-items: stretch;
    }

    .pl {
        text-align: center;
        justify-content: center;
    }
}

.proj-phone-frame {
    width: 186px;
    height: 378px;
    border-radius: 34px;
    border-width: 7px;
}

.proj-card.feat .proj-phone-frame {
    width: 210px;
    height: 428px;
    border-radius: 36px;
    border-width: 8px;
}

.proj-swiper {
    width: 100%;
    height: 100%;
}

.proj-swiper .swiper-wrapper,
.proj-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.proj-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.proj-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    background:
        radial-gradient(520px 320px at 50% 10%, rgba(56, 189, 248, 0.25), rgba(0, 0, 0, 0) 55%),
        radial-gradient(520px 320px at 20% 90%, rgba(16, 185, 129, 0.18), rgba(0, 0, 0, 0) 55%),
        #0b1220;
}

.proj-placeholder-ic {
    font-size: 2rem;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.25));
}

.proj-placeholder-tx {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

.proj-card.cta {
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.92), rgba(11, 18, 32, 0.86));
    border: 1.5px dashed rgba(0, 245, 255, 0.45);
    position: relative;
}

.proj-card.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 340px at var(--glow-x, 30%) var(--glow-y, 20%), rgba(0, 245, 255, 0.22), rgba(0, 0, 0, 0) 60%),
        radial-gradient(700px 340px at calc(var(--glow-x, 30%) + 24%) calc(var(--glow-y, 20%) + 10%), rgba(139, 92, 246, 0.18), rgba(0, 0, 0, 0) 62%);
    opacity: 1;
    pointer-events: none;
}

.proj-card.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background: radial-gradient(900px 320px at var(--glow-x, 40%) var(--glow-y, 18%), rgba(0, 245, 255, 0.14), rgba(0, 0, 0, 0) 60%);
    mix-blend-mode: screen;
}

/* removed scanline animation to keep background calm */

.proj-card.cta .proj-body {
    position: relative;
    z-index: 1;
}

.proj-card.cta .proj-title {
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.01em;
}

.proj-card.cta .proj-subline {
    color: rgba(0, 245, 255, 0.78);
}

.proj-card.cta .proj-desc {
    color: rgba(226, 232, 240, 0.74);
}

.proj-card.cta .proj-icon-sm {
    background: rgba(0, 245, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.22);
    color: rgba(0, 245, 255, 0.95);
}

.proj-card.cta .chip {
    background: rgba(0, 0, 0, 0.18);
    color: rgba(226, 232, 240, 0.85);
    border-color: rgba(226, 232, 240, 0.16);
}

.proj-card.cta .pl-primary {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.95), rgba(37, 99, 235, 0.95));
    color: rgba(11, 18, 32, 0.95);
    box-shadow: 0 0 26px rgba(0, 245, 255, 0.22), 0 10px 22px rgba(37, 99, 235, 0.18);
}

.proj-card.cta .pl-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 34px rgba(0, 245, 255, 0.28), 0 14px 30px rgba(37, 99, 235, 0.22);
}

.proj-card.cta .pl-ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(226, 232, 240, 0.14);
    color: rgba(226, 232, 240, 0.82);
}

.proj-card.cta .pl-ghost:hover {
    border-color: rgba(0, 245, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
}

.tilt-card {
    transform: translateY(var(--lift, 0px)) perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: none;
    transform-style: preserve-3d;
}

.tilt-card:hover {
    --lift: -6px;
}

.tilt-card.tilt-reset {
    transition: transform 0.18s ease;
}

.proj-img {
    background: linear-gradient(135deg, var(--blue-pale) 0%, #dbeafe 100%);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.proj-img-inner {
    text-align: center;
}

.proj-big-icon {
    font-size: 3rem;
    margin-bottom: 8px;
}

.proj-rating-big {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue);
}

.proj-rating-sub {
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-top: 2px;
    letter-spacing: 0.06em;
}

.proj-body {
    padding: 24px;
}

.proj-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.proj-icon-sm {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: var(--blue-pale);
    border: 1px solid var(--blue-pale2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.live-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green);
    background: var(--green-pale);
    border: 1px solid #a7f3d0;
    padding: 6px 10px;
    border-radius: 50px;
}

.live-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.live-tag-main {
    font-size: 0.72rem;
    letter-spacing: 0.01em;
}

.live-tag-sub {
    font-size: 0.62rem;
    font-weight: 700;
    opacity: 0.8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

.proj-subline {
    margin-top: -2px;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(55, 65, 81, 0.72);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.proj-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 7px;
}

.proj-tagline {
    margin-top: -2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(17, 24, 39, 0.72);
    letter-spacing: -0.01em;
}

.proj-desc {
    font-size: 0.86rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 14px;
}

.proj-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
    margin-bottom: 12px;
}

.proj-fact {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(209, 213, 219, 0.7);
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.05);
}

.proj-fact-k {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(55, 65, 81, 0.55);
}

.proj-fact-v {
    font-size: 0.74rem;
    font-weight: 700;
    color: rgba(17, 24, 39, 0.78);
}

.proj-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
}

.proj-links {
    display: flex;
    gap: 8px;
}

.pl {
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.pl-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.25);
}

.pl-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.pl-ghost {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
}

.pl-ghost:hover {
    border-color: var(--gray-300);
    color: var(--gray-900);
}

/* ═══ REVIEWS ═══ */
#reviews {
    position: relative;
    background:
        linear-gradient(180deg, rgba(5, 8, 20, 0) 0%, rgba(5, 8, 20, 0.96) 18%, rgba(5, 8, 20, 0.96) 82%, rgba(5, 8, 20, 0) 100%),
        radial-gradient(900px 520px at 14% 20%, rgba(0, 245, 255, 0.12) 0%, rgba(0, 245, 255, 0) 60%),
        radial-gradient(900px 520px at 88% 30%, rgba(139, 92, 246, 0.11) 0%, rgba(139, 92, 246, 0) 60%),
        radial-gradient(900px 520px at 55% 95%, rgba(0, 255, 136, 0.08) 0%, rgba(0, 255, 136, 0) 58%),
        linear-gradient(180deg, #050814 0%, #070a18 100%);
}

#reviews .ey {
    color: rgba(0, 245, 255, 0.9);
}

#reviews .ey::before {
    background: rgba(0, 245, 255, 0.85);
}

#reviews .section-title {
    color: rgba(255, 255, 255, 0.92);
}

#reviews .section-title span {
    color: rgba(0, 245, 255, 0.9);
}

#reviews .section-sub {
    color: rgba(226, 232, 240, 0.62);
}

#reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.22;
    pointer-events: none;
    background: radial-gradient(900px 520px at 50% 0%, rgba(0, 245, 255, 0.10), rgba(0, 0, 0, 0) 60%);
    mix-blend-mode: screen;
}

.rev-marquee {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    padding: 6px 0 2px;
    overflow: hidden;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.rev-row {
    position: relative;
    overflow: hidden;
    padding: 12px 0;
}

.rev-row::before,
.rev-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 64px;
    pointer-events: none;
    z-index: 2;
}

.rev-row::before {
    left: 0;
    background: linear-gradient(90deg, rgba(5, 8, 20, 1), rgba(5, 8, 20, 0));
}

.rev-row::after {
    right: 0;
    background: linear-gradient(270deg, rgba(5, 8, 20, 1), rgba(5, 8, 20, 0));
}

.rev-track {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 0 24px;
    animation: revScroll 26s linear infinite;
    will-change: transform;
}

.rev-row-b .rev-track {
    animation-duration: 32s;
    animation-direction: reverse;
}

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

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

.rev-card {
    width: min(340px, 78vw);
    border-radius: 16px;
    padding: 16px 16px 14px;
    border: 1px solid rgba(0, 245, 255, 0.14);
    background: rgba(10, 15, 33, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
    animation: revFloat 4.8s ease-in-out infinite;
}

.rev-card:nth-child(2n) {
    animation-duration: 5.6s;
    animation-delay: -1.2s;
}

.rev-card:nth-child(3n) {
    animation-duration: 6.2s;
    animation-delay: -2.1s;
}

@keyframes revFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.rev-quote {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    color: rgba(0, 245, 255, 0.72);
    margin-bottom: 8px;
}

.rev-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.75);
    margin-bottom: 12px;
}

.rev-by {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.62);
}

/* ═══ FAQ ═══ */
#faq {
    background: transparent;
    padding: 86px 0 92px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.faq-more {
    margin: 18px auto 0;
    display: flex;
    justify-content: center;
    width: fit-content;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0;
    overflow: hidden;
}

.faq-item[open] {
    box-shadow: var(--shadow);
    border-color: rgba(37, 99, 235, 0.22);
}

.faq-q {
    list-style: none;
    cursor: pointer;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    color: var(--gray-900);
}

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

.faq-q-text {
    font-size: 0.98rem;
    line-height: 1.35;
}

.faq-ic {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.10), rgba(37, 99, 235, 0.04));
    color: rgba(37, 99, 235, 0.85);
    font-size: 1.05rem;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.faq-item[open] .faq-ic {
    transform: rotate(45deg);
    border-color: rgba(8, 145, 178, 0.22);
    background: linear-gradient(180deg, rgba(8, 145, 178, 0.12), rgba(8, 145, 178, 0.05));
    color: rgba(8, 145, 178, 0.95);
}

.faq-a {
    padding: 0 16px 16px;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.75;
}

.faq-item[open] .faq-a {
    animation: fadeUp 0.28s ease both;
}

/* Screens section (fed by projects.json) */
.proj-screens {
    margin-top: 22px;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(209, 213, 219, 0.75);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.proj-screens:empty {
    display: none;
}

.screens-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.screens-title {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.screens-sub {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.shots-strip {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.shot-tile {
    grid-column: span 3;
    border-radius: 18px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 251, 0.7));
    padding: 14px 10px 12px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.shot-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(17, 24, 39, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
}

.shot-phone {
    width: 100%;
    aspect-ratio: 9/19.5;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: radial-gradient(420px 300px at 50% 0%, rgba(37, 99, 235, 0.12), rgba(0, 0, 0, 0) 60%), #0b1220;
}

.shot-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shot-meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.shot-app {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-700);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shot-open {
    font-size: 0.72rem;
    color: var(--blue);
    font-weight: 600;
}

/* Screens modal */
.shot-modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(2, 6, 23, 0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.shot-modal.open {
    display: flex;
}

.shot-modal-card {
    width: min(980px, 100%);
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.14);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.shot-modal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(229, 231, 235, 0.85);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.9));
}

.shot-modal-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-900);
}

.shot-modal-close {
    border: 1px solid rgba(209, 213, 219, 0.9);
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-700);
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.shot-modal-close:hover {
    transform: translateY(-1px);
    border-color: rgba(59, 130, 246, 0.35);
}

.shot-swiper-wrap {
    padding: 18px 16px 22px;
}

.shot-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shot-swiper .swiper-slide img {
    width: min(380px, 84vw);
    max-height: min(720px, 70vh);
    border-radius: 18px;
    border: 1px solid rgba(17, 24, 39, 0.1);
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.22);
    object-fit: cover;
    background: #0b1220;
}

.shot-swiper .swiper-button-next,
.shot-swiper .swiper-button-prev {
    color: rgba(17, 24, 39, 0.72);
}

.shot-swiper .swiper-pagination-bullet {
    background: rgba(17, 24, 39, 0.35);
    opacity: 1;
}

.shot-swiper .swiper-pagination-bullet-active {
    background: rgba(37, 99, 235, 0.85);
}

/* ═══ HIRE / CONTACT ═══ */
#contact {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: start;
}

.cl-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.cl-title span {
    color: var(--blue);
}

.cl-sub {
    font-size: 0.97rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 28px;
}

.clinks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.clink {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.22s;
}

.clink:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
    transform: translateX(3px);
}

.clink-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--blue-pale);
    border: 1px solid var(--blue-pale2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.clink-lbl {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--gray-800);
}

.clink-sub {
    font-size: 0.72rem;
    color: var(--gray-400);
    margin-top: 1px;
}

/* FORM */
.cf {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: var(--radius);
    box-shadow: 0 18px 60px rgba(2, 6, 23, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.cf::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46)),
        radial-gradient(700px 240px at 12% 0%, rgba(37, 99, 235, 0.10), rgba(0, 0, 0, 0) 60%);
    opacity: 0.95;
}

.cf::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        inset 0 0 0 1px rgba(17, 24, 39, 0.04);
    border-radius: var(--radius);
}

.cf>* {
    position: relative;
    z-index: 1;
}

.cf-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.cf-sub {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-bottom: 22px;
    letter-spacing: 0.02em;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.fg {
    margin-bottom: 12px;
}

.fg label {
    display: block;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 0.03em;
    margin-bottom: 5px;
}

.fg input,
.fg textarea,
.fg select {
    width: 100%;
    padding: 10px 13px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(209, 213, 219, 0.85);
    border-radius: var(--radius-sm);
    color: var(--gray-900);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.18s ease;
    resize: none;
    -webkit-appearance: none;
    appearance: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 10px 24px rgba(2, 6, 23, 0.06);
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--blue);
    background: rgba(255, 255, 255, 0.75);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 0 0 4px rgba(37, 99, 235, 0.12),
        0 14px 34px rgba(37, 99, 235, 0.12);
}

.fg select option {
    background: var(--white);
    color: var(--gray-900);
}

.fg textarea {
    min-height: 88px;
}

.budget-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.fsub {
    width: 100%;
    padding: 13px;
    border-radius: 50px;
    background: var(--blue);
    color: #fff;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: var(--shadow-blue);
}

.fsub:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.fnote {
    text-align: center;
    margin-top: 10px;
    font-size: 0.74rem;
    color: var(--gray-400);
}

/* ═══ DSA STRIP ═══ */
#dsa {
    padding: 60px 0;
    background: transparent;
}

.dsa-wrap {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.dsa-left {
    flex: 1;
    min-width: 200px;
}

.dsa-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-pale);
    border: 1px solid var(--blue-pale2);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.dsa-left h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.dsa-left p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.65;
    max-width: 380px;
}

.dsa-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    flex: 1.5;
}

.dc {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.dc:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.dc-icon {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.dc-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray-800);
}

.dc-handle {
    font-size: 0.62rem;
    color: var(--gray-400);
    margin-bottom: 8px;
    font-family: 'DM Mono', monospace;
}

.dc-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--blue);
}

.dc-lbl {
    font-size: 0.58rem;
    color: var(--gray-400);
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* FOOTER */
footer {
    background: var(--gray-900);
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.footer-logo em {
    font-style: normal;
    color: #60a5fa;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

/* REVEAL */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

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

.reveal {
    opacity: 0;
    --reveal-ty: 18px;
    translate: 0 var(--reveal-ty);
    transition: opacity 0.6s ease, translate 0.6s ease;
    transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible {
    opacity: 1;
    --reveal-ty: 0px;
}

.d1 {
    transition-delay: 0.08s;
}

.d2 {
    transition-delay: 0.16s;
}

.d3 {
    transition-delay: 0.24s;
}

.d4 {
    transition-delay: 0.32s;
}

.d5 {
    transition-delay: 0.4s;
}

/* RESPONSIVE */

/* ── Hamburger toggle ── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-links.open {
    display: flex !important;
}

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

@media(max-width:768px) {

    /* Nav - hamburger */
    nav {
        padding: 0 16px;
        height: 56px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #ffffff;
        backdrop-filter: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 16px 20px;
        gap: 12px;
        box-shadow: 0 18px 40px rgba(2, 6, 23, 0.10);
    }

    .nav-links a {
        font-size: 0.92rem;
    }

    .nav-cta {
        font-size: 0.82rem;
        padding: 8px 18px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 18px;
    }

    /* Hero */
    #hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-h1 {
        font-size: 2.2rem;
    }

    .hero-sub {
        max-width: 100%;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-proof {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .hero-badge {
        margin: 0 auto 20px;
    }

    .hero-card {
        max-width: 100%;
    }

    .hstats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /* Proof strip */
    #proof-strip {
        padding: 16px 0;
    }

    .proof-strip-inner {
        gap: 16px;
        justify-content: center;
    }

    .ps-item {
        font-size: 0.78rem;
    }

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

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

    /* Section headers */
    .section-header {
        text-align: center;
        margin-bottom: 34px;
    }

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

    .section-title,
    .section-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.12;
    }

    .section-sub {
        font-size: 0.9rem;
    }

    /* Timeline */
    .timeline {
        padding-left: 36px;
    }

    .tl-dot {
        left: -36px;
        width: 36px;
        height: 36px;
    }

    .tl-card {
        padding: 18px;
    }

    .tl-title {
        font-size: 0.88rem;
    }

    .tl-desc {
        font-size: 0.82rem;
    }

    /* Projects */
    .proj-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    .proj-card.feat {
        grid-column: 1/-1;
    }

    .proj-img {
        min-height: 160px;
    }

    .proj-card:not(.feat) {
        grid-column: 1/-1;
    }

    .shot-tile {
        grid-column: span 6;
    }

    .proj-row {
        grid-template-columns: 1fr;
    }

    .proj-card.feat .proj-row {
        grid-template-columns: 1fr;
    }

    .proj-media {
        border-left: none;
        border-top: 1px solid rgba(229, 231, 235, 0.9);
        padding: 18px;
    }

    .proj-phone-frame {
        width: 190px;
        height: 388px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .frow,
    .budget-row {
        grid-template-columns: 1fr;
    }

    .cf {
        padding: 20px;
    }

    .fg input,
    .fg textarea,
    .fg select {
        font-size: 16px;
        padding: 12px;
    }

    .fsub {
        padding: 14px;
        font-size: 0.92rem;
    }

    /* Dev CTA Banner */
    .dev-cta-box {
        padding: 36px 20px;
    }

    .dev-cta-heading {
        font-size: 1.3rem;
    }

    .dev-cta-text {
        font-size: 0.88rem;
    }

    .dev-cta-btn {
        padding: 12px 24px;
        font-size: 0.88rem;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    /* DSA strip */
    .dsa-wrap {
        flex-direction: column;
        padding: 24px;
    }

    .dsa-cards {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

@media(max-width:400px) {
    .container {
        padding: 0 14px;
    }

    section {
        padding: 52px 0;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-cta {
        padding: 7px 14px;
        font-size: 0.78rem;
    }

    .hero-h1 {
        font-size: 1.8rem;
    }

    #projects .st-line {
        white-space: nowrap;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .phone-mockup {
        padding: 18px;
    }

    .phone-orbit {
        width: 210px;
        height: 210px;
    }

    .hero-right .phone-frame {
        width: 186px;
        height: 382px;
        border-radius: 34px;
        border-width: 7px;
    }

    .hero-right .phone-notch {
        width: 70px;
        height: 14px;
    }

    .hero-proof {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .proof-divider {
        width: 40px;
        height: 1px;
    }

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

    .proof-strip-inner {
        flex-direction: column;
        gap: 10px;
    }

    .dsa-cards {
        grid-template-columns: 1fr;
    }

    .dev-cta-btn {
        width: 100%;
    }

    /* Projects */
    .proj-body {
        padding: 18px;
    }

    .proj-media {
        padding: 14px;
    }

    .proj-phone-frame {
        width: 174px;
        height: 356px;
    }

    .proj-links {
        flex-direction: column;
        align-items: stretch;
    }

    .pl {
        text-align: center;
        justify-content: center;
    }

    /* Reviews */
    .rev-row::before,
    .rev-row::after {
        width: 34px;
    }

    .rev-track {
        padding: 0 14px;
        gap: 12px;
    }

    .rev-card {
        width: min(300px, 86vw);
        padding: 14px 14px 12px;
    }

    /* Contact links */
    .clink {
        padding: 12px 14px;
        align-items: flex-start;
    }

    .clink-lbl {
        word-break: break-word;
    }
}

@media (max-width: 560px) {

    .cursor-donut,
    .cursor-dot,
    .cursor-tail {
        display: none;
    }

    .shot-tile {
        grid-column: 1/-1;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        transition: none;
        opacity: 1;
        --reveal-ty: 0px;
        translate: 0 0;
    }

    .tilt-card {
        transform: none;
    }

    .cursor-donut,
    .cursor-dot,
    .cursor-tail {
        display: none;
    }

    .rev-track {
        animation: none;
    }

    .rev-card {
        animation: none;
    }

    .phone-screen.is-loading::before {
        animation: none;
        opacity: 0;
    }
}
