/* ==========================================
   Elysiansoft Systems — White Theme
   Inspired by translate-wf.com
   Bold typography, scroll animations, clean
   ========================================== */

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #ffffff;
    --bg-alt: #f7f8fa;
    --bg-card: #ffffff;
    --text: #0a0a0a;
    --text-secondary: #5a6070;
    --text-muted: #9ca3af;
    --border: #e8eaed;
    --border-hover: #d1d5db;
    --accent: #4f46e5;
    --accent-light: #eef2ff;
    --accent-2: #06b6d4;
    --gradient: linear-gradient(135deg, #4f46e5, #7c3aed, #06b6d4);
    --gradient-text: linear-gradient(135deg, #4f46e5, #7c3aed, #06b6d4);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', var(--font);
    --font-mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --transition: 0.35s var(--ease);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; }
img { max-width: 100%; display: block; }

/* ── Custom Cursor ── */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: transform 0.15s ease, opacity 0.3s ease, width 0.3s var(--ease), height 0.3s var(--ease);
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(79,70,229,0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

body:hover .cursor-dot,
body:hover .cursor-ring { opacity: 1; }

.cursor-dot.hover {
    width: 16px;
    height: 16px;
    background: var(--accent);
    mix-blend-mode: normal;
}

.cursor-ring.hover {
    width: 64px;
    height: 64px;
    border-color: rgba(79,70,229,0.15);
    background: rgba(79,70,229,0.04);
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    background: var(--text);
    color: var(--bg);
    transition: all var(--transition);
}

.nav-cta .cta-arrow {
    transition: transform var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.nav-cta:hover .cta-arrow { transform: translateX(3px); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px);
    z-index: 99;
    padding: 24px;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 10px 0;
    transition: color var(--transition);
}

.mobile-link:hover { color: var(--text); }

/* ── Hero ── */
.hero {
    position: relative;
    padding: 180px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px 8px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--bg);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 28px;
}

.title-line {
    overflow: hidden;
}

.title-line span {
    display: inline-block;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    max-width: 580px;
    margin: 0 auto 44px;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Hero Stats ── */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 80px;
    flex-wrap: wrap;
    padding: 0 24px;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.stat-pill:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    border-left: 1px solid var(--border);
    padding-left: 12px;
    margin-left: 4px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    border: none;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--text);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ── Marquee Strip ── */
.marquee-strip {
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee-reverse .marquee-track {
    animation: marquee-rev 25s linear infinite;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.marquee-dot {
    width: 6px !important;
    height: 6px;
    border-radius: 50%;
    background: var(--accent) !important;
    flex-shrink: 0;
    display: inline-block;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-rev {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ── Section Base ── */
.section {
    padding: 120px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-desc {
    max-width: 540px;
    margin: 16px auto 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover);
}

.service-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--bg-alt);
    line-height: 1;
    transition: color var(--transition);
}

.service-card:hover .service-num {
    color: var(--accent-light);
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--accent-light);
    color: var(--accent);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--accent);
    color: white;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── Product Showcase ── */
.product-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
}

.product-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-alt);
}

.product-browser {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:last-child { background: #28c840; }

.browser-bar {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 5px 14px;
    border-radius: 8px;
    flex: 1;
}

.product-screen { overflow: hidden; }

.product-screenshot {
    width: 100%;
    display: block;
    transition: transform 0.6s var(--ease);
}

.product-card:hover .product-screenshot {
    transform: scale(1.03);
}

.product-info {
    padding: 28px 32px 28px 16px;
}

.product-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 16px;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: dot-pulse 2s infinite;
}

.product-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.product-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex-shrink: 0;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.product-tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.product-tags span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    color: var(--accent);
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    position: relative;
    padding-left: 24px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 2;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Workflow Timeline ── */
.workflow-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 52px;
}

.workflow-line {
    position: absolute;
    left: 17px;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--gradient);
    border-radius: 3px;
}

.wf-step {
    position: relative;
    padding-bottom: 40px;
}

.wf-step:last-child { padding-bottom: 0; }

.wf-node {
    position: absolute;
    left: -52px;
    top: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg);
    border: 3px solid var(--border);
    z-index: 2;
    transition: all 0.5s var(--ease);
}

.wf-step.active .wf-dot {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(79,70,229,0.12);
}

.wf-card {
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.wf-step.active .wf-card {
    border-color: rgba(79,70,229,0.2);
    box-shadow: var(--shadow-md);
}

.wf-phase {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 6px;
}

.wf-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.wf-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 14px;
}

.wf-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.wf-tags span {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    color: var(--accent);
}

/* ── Founder Card ── */
.founder-card {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    max-width: 860px;
    margin: 0 auto 64px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.founder-card:hover {
    box-shadow: var(--shadow-lg);
}

.founder-image {
    flex-shrink: 0;
}

.founder-img-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    padding: 3px;
    background: var(--gradient);
    overflow: hidden;
    animation: ring-rotate 8s linear infinite;
}

@keyframes ring-rotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    animation: ring-rotate-reverse 8s linear infinite;
}

@keyframes ring-rotate-reverse {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(-360deg); }
}

.founder-role {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 6px;
    display: block;
}

.founder-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.founder-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-links {
    display: flex;
    gap: 10px;
}

.founder-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.founder-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

/* ── Values Grid ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.value-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.value-num {
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--bg-alt);
    line-height: 1;
    transition: color var(--transition);
}

.value-card:hover .value-num {
    color: var(--accent-light);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.65;
}

/* ── Tech Stack Grid ── */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tech-group {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.tech-group:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.tech-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-pills span {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.tech-pills span:hover {
    background: var(--accent-light);
    border-color: rgba(79,70,229,0.2);
    color: var(--accent);
}

/* ── CTA Section ── */
.section-cta {
    background: var(--bg-alt);
    padding: 100px 0;
}

.cta-block {
    text-align: center;
    padding: 80px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 250px;
    background: radial-gradient(ellipse, rgba(79,70,229,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 12px 0 16px;
}

.cta-desc {
    max-width: 480px;
    margin: 0 auto 36px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.contact-item:hover { color: var(--text); }

/* ── Footer ── */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-copy {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--text); }

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger */
.services-grid .service-card:nth-child(2) { transition-delay: 0.06s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.18s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.24s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.30s; }

.values-grid .value-card:nth-child(2) { transition-delay: 0.06s; }
.values-grid .value-card:nth-child(3) { transition-delay: 0.12s; }
.values-grid .value-card:nth-child(4) { transition-delay: 0.18s; }

.tech-grid .tech-group:nth-child(2) { transition-delay: 0.06s; }
.tech-grid .tech-group:nth-child(3) { transition-delay: 0.12s; }
.tech-grid .tech-group:nth-child(4) { transition-delay: 0.18s; }
.tech-grid .tech-group:nth-child(5) { transition-delay: 0.24s; }
.tech-grid .tech-group:nth-child(6) { transition-delay: 0.30s; }

.hero-title .title-line:nth-child(2) { transition-delay: 0.08s; }
.hero-title .title-line:nth-child(3) { transition-delay: 0.16s; }

.hero-stats .stat-pill:nth-child(2) { transition-delay: 0.08s; }
.hero-stats .stat-pill:nth-child(3) { transition-delay: 0.16s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card { grid-template-columns: 1fr; }
    .product-info { padding: 24px; }
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none !important; }
    body { cursor: auto; }
    a, button { cursor: auto; }

    .nav-links { display: none; }
    .mobile-toggle { display: flex; }

    .hero { padding: 140px 0 60px; }
    .hero-title { font-size: clamp(2.5rem, 9vw, 3.5rem); }

    .section { padding: 80px 0; }

    .services-grid, .values-grid, .tech-grid {
        grid-template-columns: 1fr;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
    }

    .founder-links { justify-content: center; }

    .workflow-timeline { padding-left: 44px; }
    .wf-node { left: -44px; }
    .wf-card { padding: 20px; }

    .cta-block { padding: 48px 24px; }
    .cta-contacts { flex-direction: column; gap: 10px; }
    .footer-inner { flex-direction: column; text-align: center; }

    .hero-stats { gap: 12px; }
    .stat-pill { padding: 12px 20px; }
    .stat-num { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ── Selection & Scrollbar ── */
::selection { background: rgba(79,70,229,0.15); color: var(--text); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
