/* LAPSOR CYBERSECURITY */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black:     #050505;
    --dark:      #0a0a0a;
    --dark-2:    #111111;
    --dark-3:    #1a1a1a;
    --warm:      #f5f4f0;
    --warm-2:    #eae9e4;
    --warm-3:    #dddcd7;
    --accent:    #14b8a6;
    --accent-d:  #0d9488;
    --accent-b:  #2dd4bf;
    --red:       #ef4444;
    --orange:    #f59e0b;
    --yellow:    #eab308;
    --green:     #10b981;
    --text-w:    #ffffff;
    --text-l:    #c8c8c4;
    --text-m:    #7a7a74;
    --text-dark: #0a0a0a;
    --text-dark-m: #5a5a54;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'IBM Plex Mono', 'Fira Code', monospace;
    --max-w:     1200px;
    --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--text-w);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code {
    font-family: var(--font-mono);
    background: rgba(20,184,166,0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.85em;
    color: var(--accent-b);
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================
   NAV — always visible
   ================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-m);
    transition: color 0.2s;
    text-transform: lowercase;
}
.nav-links a:hover { color: var(--text-w); }

.nav-cta {
    padding: 6px 16px !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: var(--text-w) !important;
    border-radius: 999px;
    transition: all 0.3s !important;
}
.nav-cta:hover {
    background: var(--text-w) !important;
    color: var(--black) !important;
}

/* Language toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    margin-left: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
}

.lang-toggle button {
    background: none;
    border: none;
    color: var(--text-m);
    padding: 4px 10px;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    transition: all 0.2s;
}

.lang-toggle button.active {
    background: rgba(255,255,255,0.1);
    color: var(--text-w);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--text-w);
    transition: all 0.3s;
}

/* ================================================
   HERO — Animated mesh gradient
   ================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 24px 0;
    overflow: hidden;
}

/* Animated gradient mesh background */
.hero-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-mesh .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: blobMove 12s ease-in-out infinite alternate;
}

.hero-mesh .blob-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(20,184,166,0.35), transparent 65%);
    top: 5%;
    left: 50%;
    transform: translate(-50%, 0);
    animation-delay: 0s;
}

.hero-mesh .blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13,148,136,0.25), transparent 65%);
    bottom: 15%;
    left: 15%;
    animation-delay: -4s;
    animation-duration: 15s;
}

.hero-mesh .blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(45,212,191,0.2), transparent 65%);
    top: 35%;
    right: 10%;
    animation-delay: -8s;
    animation-duration: 18s;
}

@keyframes blobMove {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -50px) scale(1.15); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(20px, -20px) scale(1.1); }
    100% { transform: translate(-10px, 10px) scale(1.05); }
}

.hero-mesh::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 45%, transparent 25%, var(--black) 75%);
}

/* Scan line effect */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(20,184,166,0.015) 2px,
        rgba(20,184,166,0.015) 4px
    );
}

/* Subtle grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(20,184,166,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20,184,166,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}


.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    color: var(--text-w);
}

.hero-title .thin {
    font-weight: 300;
    color: var(--text-l);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-m);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-fill {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
    font-weight: 500;
}
.btn-fill:hover {
    background: var(--accent-b);
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(20,184,166,0.3);
}

.btn-outline {
    background: none;
    color: var(--text-l);
    border-color: rgba(255,255,255,0.15);
}
.btn-outline:hover {
    color: var(--text-w);
    border-color: rgba(255,255,255,0.4);
}

/* Hero proof bar */
.hero-proof {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.proof-item { text-align: center; }

.proof-val {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-w);
}

.proof-label {
    font-size: 0.7rem;
    color: var(--text-m);
    margin-top: 2px;
}

/* ================================================
   TICKER
   ================================================ */
.ticker {
    background: var(--accent);
    padding: 12px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.ticker-track span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    white-space: nowrap;
    padding: 0 32px;
}
.ticker-track span::after {
    content: "\2022";
    margin-left: 32px;
    opacity: 0.3;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================================================
   SECTION SHARED
   ================================================ */
.s-light { background: var(--warm); color: var(--text-dark); padding: 120px 0; }
.s-light .stag { color: var(--accent-d); }
.s-light .stitle { color: var(--text-dark); }
.s-light .ssub { color: var(--text-dark-m); }

.s-dark { background: var(--black); color: var(--text-w); padding: 120px 0; }
.s-dark-2 { background: var(--dark-2); color: var(--text-w); padding: 120px 0; }

.stag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.stitle {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--text-w);
    margin-bottom: 16px;
}

.ssub {
    font-size: 0.95rem;
    color: var(--text-m);
    max-width: 480px;
    line-height: 1.7;
}

/* ================================================
   SERVICES — Step timeline on light bg
   ================================================ */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
    gap: 40px;
}

.services-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-step {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.step-line-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 56px;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-d);
    background: var(--warm);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.step-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(20,184,166,0.15));
    min-height: 40px;
}
.step-line.last {
    background: linear-gradient(180deg, var(--accent), transparent);
}

.step-content {
    padding-bottom: 48px;
    flex: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    margin-top: 14px;
    letter-spacing: -0.3px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-dark-m);
    line-height: 1.7;
    max-width: 560px;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}
.step-tags span {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    padding: 4px 10px;
    background: rgba(20,184,166,0.06);
    border: 1px solid rgba(20,184,166,0.15);
    border-radius: 999px;
    color: var(--accent-d);
    letter-spacing: 0.3px;
}

/* ================================================
   PRICING STRIP
   ================================================ */
.pricing-strip {
    background: var(--dark-2);
    padding: 72px 0;
    position: relative;
}
.pricing-strip::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pricing-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.pricing-text h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--text-w);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.pricing-text p {
    color: var(--text-l);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 520px;
}

/* ================================================
   RESEARCH
   ================================================ */
.research-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.research-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
}

.research-card {
    background: var(--dark-2);
    padding: 40px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.research-card:hover { background: var(--dark-3); }

.research-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.research-meta time {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-m);
}

.severity {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
}
.severity-critical { background: rgba(239,68,68,0.1); color: var(--red); border: 1px solid rgba(239,68,68,0.2); }
.severity-high { background: rgba(245,158,11,0.1); color: var(--orange); border: 1px solid rgba(245,158,11,0.2); }
.severity-medium { background: rgba(234,179,8,0.1); color: var(--yellow); border: 1px solid rgba(234,179,8,0.2); }

.research-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 12px;
    color: var(--text-w);
}
.research-card p {
    font-size: 0.82rem;
    color: var(--text-m);
    line-height: 1.7;
    flex: 1;
}

.research-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
}
.research-tags span {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    padding: 3px 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 3px;
    color: var(--text-m);
}

.research-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cvss { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600; color: var(--red); }
.read-more { font-family: var(--font-mono); font-size: 0.68rem; color: var(--accent); transition: all 0.2s; }
.research-card:hover .read-more { color: var(--accent-b); }

/* ================================================
   SECTION HEADER (reused by methodology)
   ================================================ */
.team-header {
    text-align: center;
    margin-bottom: 64px;
}
.team-header .stitle { margin-bottom: 12px; }
.team-header .ssub { margin: 0 auto; }

/* ================================================
   ABOUT / WHY US
   ================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text { max-width: 480px; }
.about-text p {
    font-size: 0.92rem;
    color: var(--text-dark-m);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.about-stat { padding: 20px 0; border-top: 2px solid var(--text-dark); }
.about-stat-val {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}
.about-stat-label { font-size: 0.75rem; color: var(--text-dark-m); }

.about-features { display: flex; flex-direction: column; }
.about-feature {
    padding: 24px 0;
    border-bottom: 1px solid var(--warm-3);
}
.about-feature:first-child { border-top: 1px solid var(--warm-3); }
.about-feature h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.about-feature p { font-size: 0.82rem; color: var(--text-dark-m); line-height: 1.7; }

/* About on dark background */
.s-dark .about-text p { color: var(--text-m); }
.s-dark .about-stat { border-top-color: rgba(255,255,255,0.1); }
.s-dark .about-stat-val { color: var(--text-w); }
.s-dark .about-stat-label { color: var(--text-m); }
.s-dark .about-feature { border-bottom-color: rgba(255,255,255,0.06); }
.s-dark .about-feature:first-child { border-top-color: rgba(255,255,255,0.06); }
.s-dark .about-feature h4 { color: var(--text-w); }
.s-dark .about-feature p { color: var(--text-m); }

/* ================================================
   METHODOLOGY — Visual timeline
   ================================================ */
.method-container { position: relative; }

.method-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Connecting line */
.method-timeline::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-b), var(--accent));
    opacity: 0.3;
    z-index: 0;
}

.method-step {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.method-dot {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-d);
    background: var(--warm);
    border: 2px solid rgba(20,184,166,0.3);
    transition: all 0.3s var(--ease);
}

.method-step:hover .method-dot {
    border-color: var(--accent);
    background: rgba(20,184,166,0.1);
    transform: scale(1.1);
}

.method-step h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.method-step p {
    font-size: 0.78rem;
    color: var(--text-dark-m);
    line-height: 1.6;
}

/* ================================================
   CONTACT
   ================================================ */
.s-contact {
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--black) 100%);
    padding: 120px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-desc { font-size: 0.95rem; color: var(--text-m); margin-top: 16px; line-height: 1.7; }

.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-m);
    transition: color 0.2s;
}
.contact-link:hover { color: var(--accent); }
.contact-link svg { flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-m);
    letter-spacing: 0.5px;
    text-transform: lowercase;
}
.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--text-w);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(20,184,166,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-m); opacity: 0.4; }

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-m);
}
.form-privacy input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.link-accent { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.link-accent:hover { color: var(--accent-b); }

.form-status { font-family: var(--font-mono); font-size: 0.75rem; min-height: 20px; }
.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    background: var(--accent);
    color: var(--black);
    width: 100%;
}
.btn-submit:hover {
    background: var(--accent-b);
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(20,184,166,0.3);
}

/* ================================================
   LEGAL MODAL
   ================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 48px;
}
.modal-content h2 { font-size: 1.5rem; color: var(--text-w); margin-bottom: 24px; }
.modal-content h3 { font-size: 1rem; color: var(--text-l); margin: 20px 0 8px; }
.modal-content p, .modal-content li { font-size: 0.85rem; color: var(--text-m); line-height: 1.8; margin-bottom: 12px; }
.modal-content ul { margin-left: 20px; margin-bottom: 16px; }
.modal-close {
    float: right;
    background: none;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-m);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 999px;
    transition: all 0.2s;
}
.modal-close:hover { color: var(--text-w); border-color: rgba(255,255,255,0.2); }

/* ================================================
   FOOTER — Big brand statement
   ================================================ */
.footer {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 80px 0 40px;
    background: var(--black);
    text-align: center;
    overflow: hidden;
}

.footer-big-brand {
    font-family: var(--font-sans);
    font-size: clamp(5rem, 14vw, 12rem);
    font-weight: 700;
    letter-spacing: -4px;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-b), rgba(255,255,255,0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    user-select: none;
}

.footer-tagline {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-m);
    opacity: 0.4;
    margin-bottom: 48px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copy { font-size: 0.72rem; color: var(--text-m); opacity: 0.5; }
.footer-links { display: flex; gap: 20px; align-items: center; }
.footer-links a {
    font-size: 0.72rem;
    color: var(--text-m);
    opacity: 0.5;
    transition: opacity 0.2s;
    cursor: pointer;
}
.footer-links a:hover { opacity: 1; }
.footer-social { display: flex; gap: 12px; align-items: center; }
.footer-social a {
    color: var(--text-m);
    opacity: 0.4;
    transition: all 0.2s;
}
.footer-social a:hover { opacity: 1; color: var(--accent); }

/* ================================================
   ANIMATIONS
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger .reveal { transition-delay: calc(var(--i, 0) * 0.08s); }

.hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: heroIn 0.8s var(--ease) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.3s; }
.hero-content > *:nth-child(3) { animation-delay: 0.5s; }
.hero-content > *:nth-child(4) { animation-delay: 0.7s; }
.hero-content > *:nth-child(5) { animation-delay: 0.9s; }

@keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .services-header, .research-header { flex-direction: column; align-items: flex-start; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .method-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .method-timeline::before { display: none; }
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .pricing-inner { flex-direction: column; text-align: center; }
    .pricing-text p { margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0; right: 0;
        background: rgba(5,5,5,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .lang-toggle { margin-left: 0; }

    .hero { min-height: 100svh; }
    .hero-title { letter-spacing: -1.5px; }
    .hero-proof { flex-direction: column; gap: 20px; align-items: center; }
    .hero-mesh .blob { filter: blur(60px); }
    .hero-mesh .blob-1 { width: 350px; height: 350px; }

    .s-light, .s-dark, .s-dark-2, .s-contact { padding: 80px 0; }

    .service-step { gap: 24px; }
    .research-grid { grid-template-columns: 1fr; }
    .method-timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }

    .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .about-stats { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .method-timeline { grid-template-columns: 1fr; }
}
