:root {
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-4: 1rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --bg-body: #000000;
    --bg-surface: #0a0a0a;
    --bg-surface-hover: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-accent: #7c3aed;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(124, 58, 237, 0.5);
    --nav-bg: rgba(0, 0, 0, 0.8);
    --nav-border: rgba(255, 255, 255, 0.05);
    --max-width: 1200px;
    --radius: 12px;
    --bg-glass: rgba(10, 10, 10, 0.85);
    --bg-footer: radial-gradient(circle at 50% 100%, #1a1a2e 0%, #000000 100%);
    --shadow-container: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --border-glass: rgba(255, 255, 255, 0.03);
}
[data-theme="light"] {
    --bg-body: #f4f4f5;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-surface-hover: #fafafa;
    --text-primary: #18181b;
    --text-secondary: #3f3f46;
    --text-accent: #7c3aed;
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(124, 58, 237, 0.25);
    --nav-bg: rgba(255, 255, 255, 0.9);
    --nav-border: rgba(0, 0, 0, 0.05);
    --shadow-card: 0 20px 40px -10px rgba(0, 0, 0, 0.08), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-footer: radial-gradient(circle at 50% 100%, #e0e7ff 0%, #f4f4f5 100%);
    --shadow-container: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
    --border-glass: rgba(0, 0, 0, 0.05);
}
.footer-brand h2 {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    position: relative;
    display: inline-block;
}
.tech-card-dark {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}
html {
    overflow-x: hidden;
}
html.lenis,
html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-scrolling iframe {
    pointer-events: none;
}
:focus-visible {
    outline: 2px solid var(--text-accent);
    outline-offset: 4px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: transparent;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 1;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
    background: var(--bg-body);
}
.accent-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--text-accent), transparent 70%);
    filter: blur(80px);
    opacity: 0.15;
    animation: drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
[data-theme="light"] .accent-orb {
    opacity: 0.1;
    filter: blur(100px);
}
.accent-orb:nth-child(1) {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    animation-duration: 25s;
    background: radial-gradient(circle, #7c3aed, transparent 70%);
}
.accent-orb:nth-child(2) {
    bottom: -10%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    animation-duration: 30s;
    animation-delay: -5s;
    background: radial-gradient(circle, #3b82f6, transparent 70%);
}
.accent-orb:nth-child(3) {
    top: 40%;
    left: 30%;
    width: 40vw;
    height: 40vw;
    opacity: 0.08;
    animation-duration: 18s;
    animation-delay: -10s;
    background: radial-gradient(circle, #ec4899, transparent 70%);
}
@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
main {
    position: relative;
    z-index: 2;
    background-color: var(--bg-body);
    width: 100%;
}
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, var(--space-4));
    background: var(--bg-glass);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    border-left: 1px solid var(--border-glass);
    border-right: 1px solid var(--border-glass);
    position: relative;
    z-index: 10;
    border-radius: 0 0 2rem 2rem;
    box-shadow: var(--shadow-container);
    margin-bottom: 400px;
}
.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.section {
    padding: clamp(var(--space-8), 8vw, var(--space-16)) clamp(var(--space-4), 5vw, var(--space-8));
    margin: var(--space-8) auto;
    max-width: var(--max-width);
    border-radius: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.section:nth-child(even) {
    background: var(--bg-surface);
    border: 1px solid var(--border);
}
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
}
h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-2);
}
h3 {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    font-weight: 600;
}
h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
}
.text-gradient {
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.theme-toggle-nav {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 1rem;
}
.theme-toggle-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(15deg);
    border-color: var(--text-accent);
}
.theme-toggle-nav svg {
    width: 18px;
    height: 18px;
}
[data-theme="light"] .theme-toggle-nav {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .theme-toggle-nav:hover {
    background: rgba(0, 0, 0, 0.1);
}
.theme-toggle {
    position: fixed;
    top: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 1000;
    transition: background-color 0.3s, border-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    touch-action: none;
    user-select: none;
}
.theme-toggle:active {
    cursor: grabbing;
    transform: scale(0.95);
}
.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(15deg) scale(1.05);
    border-color: var(--text-accent);
}
.theme-toggle:active {
    transform: scale(0.95);
}
.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    transition: all 0.3s ease;
}
[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}
[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}
.tech-tooltip {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: var(--bg-surface);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.2s ease, transform 0.2s ease;
    will-change: transform;
    transform: translateZ(0);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    line-height: 1.4;
}
@media (hover: none) and (pointer: coarse) {
    .tech-tooltip {
        display: none !important;
    }
}
.tech-tooltip.visible {
    opacity: 1;
    transform: scale(1);
}
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background: var(--text-accent);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 1001;
    display: none;
    will-change: transform;
}
.nav-wrapper {
    position: fixed;
    top: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
    left: 0;
    right: 1.5rem;
    z-index: 100;
    padding: 0 var(--space-4);
}
.footer-brand {
    flex: 2;
    min-width: 300px;
    text-align: left;
}
.nav-pill {
    padding: 0.75rem 2rem;
    border-radius: 99px;
    background: var(--nav-bg);
    backdrop-filter: blur(24px);
    border: 1px solid var(--nav-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s, border-color 0.3s, padding 0.3s, border-radius 0.3s;
}
@media (max-width: 900px) {
    .nav-wrapper {
        top: 12px;
        padding: 0;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    .nav-pill {
        padding: 0.75rem 1.75rem;
        border-radius: 99px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: fit-content;
        min-width: 320px;
        max-width: 90vw;
        margin: 0 auto;
        justify-content: space-between;
        background: rgba(var(--nav-bg-rgb), 0.85);
        backdrop-filter: blur(20px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .nav-logo {
        font-size: 1.1rem;
    }
    .nav-links li:not(:last-child) {
        display: none;
    }
    .theme-toggle {
        display: none !important;
    }
    .theme-toggle-nav {
        display: flex;
    }
}
.nav-logo {
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.nav-links {
    display: flex;
    gap: var(--space-8);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--text-primary);
}
.btn-primary {
    background: var(--text-primary);
    color: var(--bg-body);
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    text-align: center;
    padding-top: 10rem;
    background: transparent !important;
    border: none !important;
}
.hero-visual {
    width: 100%;
    max-width: 650px;
    height: auto;
    margin-top: var(--space-8);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-8);
    text-align: center;
}
.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-accent);
    margin: 0;
    letter-spacing: -0.05em;
}
.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    font-weight: 600;
}
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-8);
}
.method-card {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: var(--space-8);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--text-accent);
}
.method-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}
.method-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.authenticity-section {
    text-align: center;
    background: transparent !important;
    border: none !important;
}
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}
.trust-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: default;
}
.trust-logo svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0));
    transition: all 0.3s ease;
}
.trust-logo span {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}
.trust-logo:hover {
    opacity: 1;
    color: var(--text-primary);
    transform: scale(1.05);
}
.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-8);
}
@media (max-width: 600px) {
    .grid-cols-3 {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1.5rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .stat-item:last-child {
        grid-column: span 2;
    }
}
.card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}
.card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.card:hover {
    transform: translateY(-8px);
    border-color: var(--text-accent);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}
.chip {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 99px;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    color: var(--text-accent);
}
.btn-card {
    display: block;
    width: 100%;
    padding: 0.85rem 0;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--text-accent) 0%, #3b82f6 100%);
    color: #ffffff !important;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0.75rem;
    border: none;
    box-shadow: 0 4px 6px rgba(139, 92, 246, 0.25);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.btn-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    transform: translateX(-100%);
}
.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(139, 92, 246, 0.4);
}
.btn-card:hover::after {
    transform: translateX(100%);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-8);
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: var(--space-8);
}
.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col li {
    margin-bottom: 0.75rem;
}
.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--text-primary);
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: -10;
    border-top: 1px solid var(--border);
    padding: var(--space-16) 0;
    color: var(--text-secondary);
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-footer);
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-body), transparent);
    z-index: 1;
    pointer-events: none;
    filter: blur(10px);
}
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    will-change: transform;
    transform: translateZ(0);
}
footer .orb-f1 {
    width: 300px;
    height: 300px;
    background: var(--text-accent);
    bottom: -100px;
    left: -50px;
}
footer .orb-f2 {
    width: 200px;
    height: 200px;
    background: blue;
    bottom: 50px;
    right: -50px;
    animation-delay: 2s;
}
@media (min-width: 768px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .hero-content {
        order: 1;
    }
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 99px;
    border: 2px solid var(--bg-body);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-accent);
}
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    pointer-events: none;
    z-index: -2;
}
.skills-section {
    padding: var(--space-16) 0;
    text-align: left;
}
.skills-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    padding-left: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.skills-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}
.skills-col h3 {
    margin-left: 0;
    padding-left: 1rem;
    border-left: 3px solid #7c3aed;
    display: flex;
    align-items: center;
}
.skill-list {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: calc(1rem + 3px);
}
.skill-item {
    font-size: 1.25rem;
    color: #9ca3af;
    padding: 0.5rem 0;
    cursor: default;
    transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    border-radius: 0;
    font-weight: 400;
}
.skill-item:hover {
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.4);
    transform: none;
    opacity: 1;
}
.skill-tooltip {
    display: none !important;
}
.workshops-section {
    padding: var(--space-8) var(--space-4) !important;
    max-width: 900px;
}
.card-compact {
    padding: 1rem !important;
    min-height: 0;
}
.card-compact h3 {
    margin: 0.25rem 0 0.5rem 0;
    font-size: 1.1rem;
}
.card-compact p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}
.card-compact .btn-card {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    width: auto;
    display: inline-block;
    margin-top: 0;
}
.card-compact .chip {
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.5rem;
}
.scroll-guide {
    position: fixed;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    width: 2px;
    height: 60vh;
    background: rgba(255, 255, 255, 0.05);
    z-index: 50;
    pointer-events: none;
    border-radius: 99px;
    display: none;
}
.ambient-orb {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}
.orb-1 {
    top: -30%;
    left: -20%;
    animation-delay: 0s;
}
.orb-2 {
    bottom: -30%;
    right: -20%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    animation-delay: -5s;
}
.orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation-delay: -10s;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05), transparent 60%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}
.powered-by-section {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 8rem;
    overflow: hidden;
    text-align: center;
}
.circuit-container {
    padding-top: 3rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.circuit-chip {
    background: var(--bg-surface);
    padding: 0.75rem 2rem;
    border-radius: 99px;
    display: inline-block;
    position: relative;
    margin-bottom: 5rem;
    z-index: 2;
    border: 1px solid var(--border);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
    animation: neonPulse 3s infinite ease-in-out;
}
@keyframes neonPulse {
    0%,
    100% {
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.2), 0 0 2px rgba(139, 92, 246, 0.1);
        border-color: var(--border);
    }
    50% {
        box-shadow: 0 0 25px rgba(139, 92, 246, 0.5), 0 0 5px rgba(139, 92, 246, 0.3);
        border-color: rgba(139, 92, 246, 0.5);
    }
}
.circuit-chip span {
    background: var(--bg-surface);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--text-primary);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    text-transform: uppercase;
}
@keyframes flowDown {
    0% {
        background-position: 0 -100px;
    }
    100% {
        background-position: 0 100%;
    }
}
@keyframes flowHorizontal {
    0% {
        background-position: -100px 0;
    }
    100% {
        background-position: 100% 0;
    }
}
@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
.chip-lines-bottom {
    position: absolute;
    bottom: -5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 5rem;
    background: var(--border);
    overflow: hidden;
}
.chip-lines-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--text-accent), transparent);
    background-size: 100% 50px;
    background-repeat: no-repeat;
    animation: flowDown 3s linear infinite;
}
.circuit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    margin-top: 0;
}
.circuit-grid::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 16.5%;
    right: 16.5%;
    height: 1px;
    background: var(--border);
}
.circuit-grid::after {
    content: '';
    position: absolute;
    top: -2rem;
    left: 16.5%;
    right: 16.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-accent), transparent);
    background-size: 200px 100%;
    background-repeat: no-repeat;
    animation: flowHorizontal 4s linear infinite;
    z-index: 1;
}
.tech-card-dark {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.tech-card-dark:hover {
    border-color: var(--text-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(124, 58, 237, 0.3), inset 0 0 20px rgba(124, 58, 237, 0.1);
}
.tech-card-dark:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.tech-card-dark::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 1px;
    height: 2rem;
    background: var(--border);
    z-index: 1;
}
.tech-card-dark::after {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 1px;
    height: 2rem;
    background: linear-gradient(to bottom, transparent, var(--text-accent), transparent);
    background-size: 100% 20px;
    background-repeat: no-repeat;
    animation: flowDown 2s linear infinite;
    animation-delay: 0.5s;
    opacity: 0.5;
}
.tech-icon-large {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}
.tech-card-dark:hover .tech-icon-large {
    animation: floatIcon 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}
.tech-card-dark h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}
.tech-card-dark p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.showcase-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-surface);
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}
.showcase-card.animate-reset {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s, border-color 0.4s;
}
.showcase-card.large {
    grid-column: span 2;
}
.showcase-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 60px -20px rgba(0, 0, 0, 0.7);
    z-index: 10;
}
.showcase-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 40%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    transform: translateZ(1px);
}
.showcase-card:hover::after {
    opacity: 1;
}
.showcase-preview {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    transform: translateZ(20px);
}
.audio-visualizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 30px;
    margin-top: 1.5rem;
}
.audio-visualizer .bar {
    width: 6px;
    background: #ef4444;
    border-radius: 4px;
    animation: eqBar 1s ease-in-out infinite;
}
.audio-visualizer .bar:nth-child(2) {
    animation-delay: 0.1s;
    height: 60%;
    background: #f59e0b;
}
.audio-visualizer .bar:nth-child(3) {
    animation-delay: 0.2s;
    height: 80%;
    background: #10b981;
}
.audio-visualizer .bar:nth-child(4) {
    animation-delay: 0.3s;
    height: 50%;
    background: #3b82f6;
}
.audio-visualizer .bar:nth-child(5) {
    animation-delay: 0.4s;
    height: 70%;
    background: #8b5cf6;
}
@keyframes eqBar {
    0%,
    100% {
        height: 20%;
    }
    50% {
        height: 100%;
    }
}
.chart-loader {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-bottom: 1rem;
    justify-content: center;
}
.chart-bar {
    width: 12px;
    background: linear-gradient(to top, #3b82f6, #60a5fa);
    border-radius: 4px;
    animation: growBar 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transform-origin: bottom;
}
.chart-bar:nth-child(2) {
    animation-delay: 0.2s;
    height: 80%;
    background: linear-gradient(to top, #8b5cf6, #a78bfa);
}
.chart-bar:nth-child(3) {
    animation-delay: 0.4s;
    height: 60%;
    background: linear-gradient(to top, #ec4899, #f472b6);
}
@keyframes growBar {
    0%,
    100% {
        transform: scaleY(0.3);
    }
    50% {
        transform: scaleY(1);
    }
}
.floating-shoe {
    animation: floatItem 3s ease-in-out infinite;
    margin-bottom: 1rem;
}
@keyframes floatItem {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}
.cursor-blink {
    display: inline-block;
    width: 2px;
    background: var(--text-accent);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.showcase-preview {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
.mock-simple {
    text-align: center;
    color: white;
}
.mock-simple h3 {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.mock-browser {
    width: 85%;
    height: 75%;
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid #333;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}
.mock-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}
.mock-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
}
.mock-dots span:nth-child(1) {
    background: #ef4444;
}
.mock-dots span:nth-child(2) {
    background: #f59e0b;
}
.mock-dots span:nth-child(3) {
    background: #10b981;
}
.mock-content {
    text-align: center;
    color: white;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.mock-content h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem 0;
}
.mock-content p {
    color: #888;
    font-size: 0.9rem;
}
.showcase-meta {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 0.75rem;
}
.showcase-meta span {
    background: rgba(255, 255, 255, 0.08);
    color: #ccc;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.btn-showcase {
    background: var(--text-primary);
    color: var(--bg-body);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.2s, transform 0.2s, color 0.2s;
    display: inline-block;
}
.btn-showcase:hover {
    background: var(--text-accent);
    color: white;
    transform: translateY(-2px);
}
@media (max-width: 900px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .showcase-card.large {
        grid-column: span 1;
    }
    .showcase-card {
        min-height: 250px;
        transform: none !important;
        will-change: auto;
    }
    .showcase-card:hover {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: none;
    }
    .showcase-card::after {
        opacity: 0.1 !important;
    }
    .showcase-preview {
        height: 250px;
    }
    .circuit-grid::before,
    .tech-card-dark::before {
        display: none;
    }
    .showcase-card {
        transform-style: flat;
        perspective: none;
    }
    .split-layout {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .hero {
        text-align: center;
        padding-top: 8rem;
    }
    .hero-content h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
}
.footer-bg,
.testimonials-grid {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}
.mission-card {
    background: var(--bg-surface);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    margin-top: 2rem;
}
.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.feature-icon {
    font-size: 1.5rem;
    color: var(--text-accent);
    background: rgba(139, 92, 246, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}
.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: #f59e0b;
}
.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.badge-yellow {
    background: #f59e0b;
    color: black;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.feature-emoji {
    font-size: 1.5rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
}
.test-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}
.test-info h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-primary);
}
.test-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
body {
    background: var(--bg-body);
    min-height: 100vh;
}
html {
    background: var(--bg-body);
    scroll-behavior: smooth;
    transition: background 0.3s ease;
}
main {
    position: relative;
    z-index: 10;
    background: var(--bg-body);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    will-change: transform;
}
#footer-parallax {
    width: 100%;
}
@media (max-width: 768px) {
    main {
        margin-bottom: 0 !important;
        border-radius: 0;
        animation: none;
    }
    main::after {
        display: none;
    }
    footer {
        position: relative !important;
        z-index: 1 !important;
        background: var(--bg-body);
        height: auto !important;
    }
    .footer-container {
        padding-top: 4rem;
    }
}
.footer-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 400px;
    z-index: -1;
    background: var(--bg-footer);
    display: flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    will-change: transform, opacity;
    transform: translateZ(0);
}
.footer-container {
    padding: 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(var(--bg-body), 0.01);
    background: transparent;
    border-top: 1px solid var(--border);
}
.footer-top {
    animation-delay: 0.1s;
}
.footer-links-group {
    animation-delay: 0.2s;
}
.footer-bottom {
    animation-delay: 0.3s;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}
.footer-brand {
    text-align: left;
}
.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 400px;
}
.newsletter-input {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border) !important;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    width: 100%;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    transition: all 0.3s;
    font-size: 1rem;
}
.newsletter-input:focus {
    background: var(--bg-surface-hover) !important;
    border-color: var(--text-accent) !important;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}
.newsletter-btn {
    background: var(--text-primary);
    border: none;
    color: var(--bg-body);
    border-radius: 8px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}
.newsletter-btn:hover {
    transform: scale(1.05);
}
.footer-links-group {
    display: flex;
    gap: 4rem;
    justify-content: flex-end;
    text-align: left;
}
.footer-col-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-col-simple a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
    position: relative;
    padding-left: 0;
}
.footer-col-simple a:hover {
    color: var(--text-accent);
    padding-left: 10px;
}
.footer-col-simple a:hover::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--text-accent);
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
}
.social-icons {
    display: flex;
    gap: 1.5rem;
}
.social-icons a {
    color: var(--text-secondary);
    transition: color 0.2s;
}
.social-icons a:hover {
    color: var(--text-primary);
}
.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    position: relative;
}
.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}
.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}
.badge-yellow {
    background: rgba(124, 58, 237, 0.1);
    color: var(--text-accent);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.feature-emoji {
    font-size: 1.5rem;
}
.feature-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}
.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left;
    transition: border-color 0.3s;
    height: 100%;
}
.testimonial-card:hover {
    border-color: var(--border-hover);
}
.test-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.test-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}
.test-info span {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}
.testimonial-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}
@keyframes glitch-skew {
    0% {
        transform: skew(0deg);
    }
    10% {
        transform: skew(-2deg);
    }
    20% {
        transform: skew(2deg);
    }
    30% {
        transform: skew(0deg);
    }
    100% {
        transform: skew(0deg);
    }
}
@keyframes glitch-anim {
    0% {
        clip-path: inset(10% 0 80% 0);
        transform: translate(-2px, 1px);
    }
    20% {
        clip-path: inset(80% 0 1% 0);
        transform: translate(2px, -1px);
    }
    40% {
        clip-path: inset(40% 0 50% 0);
        transform: translate(-2px, 2px);
    }
    60% {
        clip-path: inset(10% 0 30% 0);
        transform: translate(2px, -2px);
    }
    80% {
        clip-path: inset(10% 0 80% 0);
        transform: translate(-1px, 1px);
    }
    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(0, 0);
    }
}
.footer-brand h2 {
    position: relative;
    display: inline-block;
}
.footer-brand:hover h2::before,
.footer-brand:hover h2::after {
    content: 'Zyosys.';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    color: white;
}
.footer-brand:hover h2::before {
    left: -2px;
    text-shadow: 2px 0 red;
    animation: glitch-anim 2s infinite linear alternate-reverse;
}
.footer-brand:hover h2::after {
    left: 2px;
    text-shadow: -2px 0 blue;
    animation: glitch-anim 3s infinite linear alternate-reverse;
}
.footer-brand:hover h2 {
    animation: glitch-skew 1s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes systemPulse {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
        color: #10b981;
        text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    }
}
.footer-bottom p[style*="monospace"] {
    animation: systemPulse 3s infinite ease-in-out;
    letter-spacing: 0.1em;
}
.footer-col-simple a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}
.footer-col-simple a:hover {
    color: white;
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.footer-col-simple a::before {
    content: '>';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s;
    color: var(--text-accent);
}
.footer-col-simple a:hover::before {
    opacity: 1;
    left: 0;
}
.why-us-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.05), transparent 60%);
    overflow: hidden;
}
.hub-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hub-center {
    position: relative;
    z-index: 10;
    padding: 3rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: hubPulse 4s ease-in-out infinite;
}
@keyframes hubPulse {
    0%,
    100% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        border-color: var(--border);
    }
    50% {
        box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25);
        border-color: var(--text-accent);
    }
}
.hub-center h2 {
    color: var(--text-primary);
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.hub-lock-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 20px var(--text-accent));
}
.spoke-side {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    z-index: 5;
}
.spoke-item {
    width: 72px;
    height: 72px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatSpoke 6s ease-in-out infinite;
}
.spoke-side .spoke-item:nth-child(1) {
    animation-delay: 0s;
}
.spoke-side .spoke-item:nth-child(2) {
    animation-delay: 1.5s;
}
.spoke-side.right .spoke-item:nth-child(1) {
    animation-delay: 0.75s;
}
.spoke-side.right .spoke-item:nth-child(2) {
    animation-delay: 2.25s;
}
@keyframes floatSpoke {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
.spoke-item:hover {
    transform: scale(1.15);
    border-color: var(--text-accent);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}
.spoke-icon {
    font-size: 1.75rem;
}
.hub-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    height: 600px;
    pointer-events: none;
    z-index: 1;
}
.line-path {
    fill: none;
    stroke: var(--border);
    stroke-width: 2;
    opacity: 0.3;
    stroke-dasharray: 10;
    animation: dashFlow 8s linear infinite;
    filter: drop-shadow(0 0 5px var(--text-accent));
}
@keyframes dashFlow {
    to {
        stroke-dashoffset: 1000;
    }
}
.faq-section {
    padding: 6rem 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
    border-color: var(--text-accent);
    transform: scale(1.015);
    background: var(--bg-surface-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}
.faq-item[open] {
    border-color: var(--text-accent);
}
.faq-item summary {
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
    position: relative;
    padding: 1.5rem;
    padding-right: 3.5rem;
    font-size: 1.05rem;
    outline: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: transform 0.3s;
}
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    color: var(--text-accent);
}
.faq-item p {
    color: var(--text-secondary);
    margin-top: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    padding: 0 1.5rem 1.5rem 1.5rem;
}
.cta-minimal {
    text-align: center;
    padding: 8rem 0;
    background: radial-gradient(circle at center, var(--bg-surface), transparent 70%);
}
.skills-section {
    padding: 6rem 0;
}
.skills-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 4rem auto 0;
    text-align: left;
}
.skills-col h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--text-accent);
    line-height: 1.2;
}
.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.skill-item {
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    display: block;
}
.skill-item:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .hub-container {
        flex-direction: column;
        gap: 2rem;
    }
    .spoke-side {
        flex-direction: row;
        gap: 2rem;
    }
    .hub-lines {
        display: none;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .skills-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }
    .hero-content {
        order: 1;
        margin: 0 auto 3rem auto;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-visual {
        margin: 0 auto;
    }
    .hub-lines {
        opacity: 0.2;
    }
}
@media (max-width: 768px) {
    :root {
        --space-16: 3rem;
        --space-8: 1.5rem;
    }
    .nav-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        left: 0;
        right: 1.5rem;
        padding: 0 1rem;
    }
    .nav-pill {
        width: auto;
        min-width: 320px;
        max-width: 100%;
        justify-content: space-between;
        padding: 0.75rem 1.5rem;
    }
    .hero {
        padding-top: 9rem;
        padding-bottom: 4rem;
    }
    .grid-cols-3,
    .testimonials-grid,
    .skills-container,
    .circuit-grid,
    .showcase-grid,
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem !important;
    }
    .hero-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .why-us-section {
        padding: 4rem 0;
    }
    .hub-container {
        flex-direction: column;
        gap: 3rem;
    }
    .spoke-side {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
    .hub-center {
        padding: 2rem 1rem;
        max-width: 100%;
    }
    .hub-lines {
        display: none;
    }
    .nav-pill {
        padding: 0.75rem 1rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .nav-links li:not(:last-child) {
        display: none;
    }
    .footer-top {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .footer-brand,
    .footer-links-group {
        text-align: center;
        width: 100%;
        justify-content: center;
    }
    .newsletter-form {
        margin: 2rem auto 0 auto;
    }
    .footer-container {
        padding: 2rem 1.5rem;
    }
    .footer-brand h2 {
        display: block;
        text-align: center;
    }
}
@media (max-width: 375px) {
    .container {
        padding: 0 1rem;
        overflow-x: hidden;
    }
    h1 {
        font-size: 1.75rem;
        word-wrap: break-word;
    }
    .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .hero-content div[style*="display: flex"] {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem !important;
    }
    .hero-content a {
        width: 100%;
        display: block;
        text-align: center;
    }
    .trust-logos {
        gap: 1.5rem;
    }
    .spoke-item {
        width: 48px;
        height: 48px;
    }
    .spoke-icon {
        font-size: 1rem;
    }
    .nav-logo {
        font-size: 1rem;
    }
    .hero-visual svg {
        width: 100%;
        height: auto;
        transform: scale(0.9);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-links-group {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-col-simple {
        text-align: center;
    }
    .nav-wrapper {
        top: 10px;
        padding: 0 10px;
    }
    .nav-pill {
        min-width: 280px;
    }
    .theme-controls {
        display: none;
    }
    .hero {
        padding-top: 7rem;
        overflow: hidden;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logo-marquee-content {
    display: flex;
    white-space: nowrap;
    gap: var(--space-8);
    animation: scroll-logos 40s linear infinite;
    width: max-content;
    will-change: transform;
}
.trust-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0 1rem;
    flex-shrink: 0;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s;
}
.trust-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    color: var(--text-primary);
}
.trust-logo svg {
    width: 24px;
    height: 24px;
}
@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.logo-marquee:hover .logo-marquee-content {
    animation-play-state: paused;
}
.card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card:hover {
    border-color: var(--text-accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(124, 58, 237, 0.15),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}
.card:hover::before {
    opacity: 1;
}
.card>* {
    position: relative;
    z-index: 1;
}
.card-icon-wrapper {
    margin-bottom: 1.5rem;
}
.track-icon {
    width: 48px;
    height: 48px;
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
}
.card:hover .track-icon {
    color: var(--text-accent);
    transform: scale(1.1);
}
.mock-header {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}
.mock-address {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-left: 1rem;
    flex: 1;
    text-align: center;
    font-family: monospace;
}
.wireframe-ui {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: flex;
    gap: 1rem;
}
.wf-sidebar {
    width: 20%;
    height: 80%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.wf-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.wf-hero {
    width: 100%;
    height: 30%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
.wf-row {
    display: flex;
    gap: 0.5rem;
    height: 40%;
}
.wf-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.wf-icon-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.wf-doc {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.wf-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    width: 100%;
}
.wf-line.title {
    height: 12px;
    width: 60%;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
}
.wf-line.short {
    width: 40%;
}
.wf-img {
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 0.5rem 0;
}
.chart-mini {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
    width: 80px;
}
.bar {
    width: 100%;
    background: var(--text-accent);
    border-radius: 2px 2px 0 0;
    opacity: 0.7;
}
.product-card-mini {
    width: 60px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 6px;
}
.prod-img {
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-bottom: 4px;
}
.prod-line {
    width: 80%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 4px;
}
.prod-btn {
    width: 100%;
    height: 8px;
    background: var(--text-accent);
    border-radius: 2px;
}
.showcase-meta-row {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.meta-right {
    display: flex;
    gap: 0.5rem;
}
.badge-glass {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}
.badge-live {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-weight: 600;
}
.showcase-meta-compact {
    padding: 1.5rem;
    text-align: center;
}
.meta-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.spotlight-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-surface);
    z-index: 1;
}
.spotlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(124, 58, 237, 0.15), transparent 40%);
    opacity: 1;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: -1;
}
.card-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.3));
    transition: transform 0.3s ease;
}
.spotlight-card:hover .card-icon svg {
    transform: scale(1.1);
    stroke: var(--text-accent);
}
.tech-tooltip {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--bg-surface-hover);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-primary);
    pointer-events: none;
    z-index: 9999;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transition: opacity 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(0.9);
    max-width: 250px;
    will-change: transform;
}
.tech-tooltip.visible {
    opacity: 1;
}