:root {
    --bg: #06060e;
    --bg-2: #0a0a14;
    --bg-card: rgba(255, 255, 255, .04);
    --glass: rgba(255, 255, 255, .06);
    --glass-border: rgba(255, 255, 255, .1);
    --text-primary: #f0f0f5;
    --text-secondary: rgba(240, 240, 245, .65);
    --text-muted: rgba(240, 240, 245, .35);
    --cyan: #00d4ff;
    --emerald: #34d399;
    --violet: #a78bfa;
    --amber: #fbbf24;
    --blue: #60a5fa;
    --rose: #fb7185;
    --grad-main: linear-gradient(135deg, #00d4ff, #a78bfa, #fb7185);
    --grad-glow: radial-gradient(circle, rgba(0, 212, 255, .12) 0%, transparent 70%);
    --max: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== AMBIENT BACKGROUND ===== */
.ambient { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: .35; animation: orbFloat 20s ease-in-out infinite; }
.ambient-orb:nth-child(1) { width: 500px; height: 500px; background: var(--cyan); top: -15%; left: -10%; }
.ambient-orb:nth-child(2) { width: 400px; height: 400px; background: var(--violet); bottom: -10%; right: -8%; animation-delay: -7s; animation-duration: 25s; }
.ambient-orb:nth-child(3) { width: 300px; height: 300px; background: var(--rose); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: -13s; animation-duration: 18s; opacity: .15; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(.95); }
}

.noise-overlay {
    position: fixed; inset: 0; z-index: 1; opacity: .035; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 18px 36px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100;
    background: linear-gradient(180deg, rgba(6, 6, 14, .85), rgba(6, 6, 14, 0));
    backdrop-filter: blur(8px);
}

.header-brand { display: flex; align-items: center; gap: 12px; }
.header-brand img { height: 32px; width: auto; }
.header-brand .brand-text {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 16px; letter-spacing: 3px;
    background: var(--grad-main); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-nav { display: flex; gap: 28px; align-items: center; }
.header-nav a {
    font-size: 14px; color: var(--text-secondary); font-weight: 500;
    transition: color .3s; letter-spacing: .5px;
}
.header-nav a:hover { color: var(--text-primary); }
.lang-toggle {
    display: inline-flex; align-items: center;
    background: rgba(255, 255, 255, .04); border: 1px solid var(--glass-border);
    padding: 6px 14px; border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
    color: var(--text-secondary); transition: all .3s;
}
.lang-toggle:hover { color: var(--cyan); border-color: rgba(0, 212, 255, .3); }

.menu-btn {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: rgba(255, 255, 255, .05); border: 1px solid var(--glass-border);
    border-radius: 8px; padding: 10px;
}
.menu-btn span { width: 18px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all .3s; }
.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

@media (max-width: 900px) {
    .header { padding: 14px 20px; }
    .header-nav {
        position: fixed; top: 70px; left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: rgba(10, 10, 20, .96); backdrop-filter: blur(20px);
        border-top: 1px solid var(--glass-border);
        padding: 0; height: 0; overflow: hidden;
        transition: all .35s ease;
    }
    .header-nav.open { padding: 18px 20px; height: auto; }
    .header-nav a { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .05); width: 100%; }
    .menu-btn { display: flex; }
    .header-brand .brand-text { font-size: 14px; letter-spacing: 2px; }
}

/* ===== HERO + ORBIT ===== */
.hero {
    position: relative; z-index: 10; min-height: 100vh;
    padding: 110px 20px 60px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
}

.hero-kicker {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; font-weight: 500; letter-spacing: 4px;
    text-transform: uppercase; color: var(--cyan); margin-bottom: 8px;
    display: inline-flex; align-items: center; gap: 10px;
}
.hero-kicker::before, .hero-kicker::after { content: ''; width: 32px; height: 1px; background: var(--cyan); opacity: .5; }

.hero-title {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(26px, 3.8vw, 46px); line-height: 1.1;
    margin-bottom: 8px; max-width: 820px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 45%, #60a5fa 78%, #00d4ff 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}
.hero-title--split .hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(24px);
    animation: heroWordIn .8s cubic-bezier(.16, 1, .3, 1) forwards;
    /* el degradado debe ir en cada palabra: al dividir el título en spans,
       el clip del <h1> deja de pintar el texto y quedaría invisible */
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 45%, #60a5fa 78%, #00d4ff 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes heroWordIn {
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-title--split .hero-word { animation: none; opacity: 1; transform: none; }
}

.hero-sub {
    font-size: clamp(16px, 1.6vw, 19px); color: var(--text-secondary);
    max-width: 720px; margin-bottom: 50px; font-weight: 300;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 60px; }

.btn {
    font-family: 'Outfit', sans-serif; font-weight: 600;
    padding: 14px 32px; border-radius: 100px;
    font-size: 15px; letter-spacing: .3px; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .3s; border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--violet));
    color: #06060e; box-shadow: 0 8px 24px rgba(0, 212, 255, .25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 212, 255, .4); }
.btn-secondary {
    background: rgba(255, 255, 255, .04); color: var(--text-primary);
    border: 1px solid var(--glass-border);
}
.btn-secondary:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .2); }

/* Orbit */
.orbit-wrap { position: relative; width: 100%; display: flex; justify-content: center; }
.orbit-container {
    position: relative;
    width: min(720px, 90vmin); height: min(720px, 90vmin);
    animation: orbitFadeIn 1.2s cubic-bezier(.16, 1, .3, 1) .3s both;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><defs><filter id='g' x='-50%25' y='-50%25' width='200%25' height='200%25'><feGaussianBlur stdDeviation='2'/></filter></defs><circle cx='12' cy='12' r='5' fill='%2300d4ff' opacity='.3' filter='url(%23g)'/><circle cx='12' cy='12' r='3' fill='%2300d4ff'/><circle cx='12' cy='12' r='1.5' fill='white'/></svg>") 12 12, auto;
}
.orbit-container .node, .orbit-container .hub {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'><defs><filter id='g' x='-50%25' y='-50%25' width='200%25' height='200%25'><feGaussianBlur stdDeviation='2.5'/></filter></defs><circle cx='14' cy='14' r='8' fill='%23a78bfa' opacity='.35' filter='url(%23g)'/><circle cx='14' cy='14' r='5' fill='%23a78bfa'/><circle cx='14' cy='14' r='2' fill='white'/></svg>") 14 14, pointer;
}
@keyframes orbitFadeIn { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }

.ring { position: absolute; top: 50%; left: 50%; border-radius: 50%; transform: translate(-50%, -50%); }
.ring--outer { width: 100%; height: 100%; border: 1px solid rgba(255, 255, 255, .04); animation: ringSpin 80s linear infinite; }
.ring--outer::after { content: ''; position: absolute; top: -4px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.ring--mid { width: 70%; height: 70%; border: 1px solid rgba(255, 255, 255, .03); animation: ringSpinReverse 60s linear infinite; }
.ring--mid::after { content: ''; position: absolute; bottom: -3px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 12px var(--violet); }
.ring--inner { width: 38%; height: 38%; border: 1px dashed rgba(255, 255, 255, .04); animation: ringSpin 40s linear infinite; }

@keyframes ringSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes ringSpinReverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }

.connections { position: absolute; inset: 0; pointer-events: none; }
.conn { stroke: rgba(255, 255, 255, .04); stroke-width: 1; fill: none; transition: all .6s cubic-bezier(.16, 1, .3, 1); }
.conn.lit { stroke-width: 1.5; }

.hub {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 20; cursor: pointer;
}
.hub-core {
    width: min(160px, 22vmin); height: min(160px, 22vmin);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .1), rgba(6, 6, 14, .9));
    border: 1.5px solid rgba(255, 255, 255, .15);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(0, 212, 255, .12), 0 0 120px rgba(167, 139, 250, .06), inset 0 0 40px rgba(0, 212, 255, .04);
    transition: all .6s cubic-bezier(.16, 1, .3, 1);
}
.hub:hover .hub-core { transform: scale(1.06); border-color: rgba(0, 212, 255, .4); box-shadow: 0 0 80px rgba(0, 212, 255, .2), 0 0 160px rgba(167, 139, 250, .1); }

.hub-logo { max-width: 65%; max-height: 55%; filter: drop-shadow(0 0 14px rgba(0, 212, 255, .3)); }
.hub-name { font-family: 'JetBrains Mono', monospace; font-size: clamp(8px, 1.3vmin, 10px); font-weight: 500; letter-spacing: 4px; color: var(--text-secondary); margin-top: 6px; text-transform: uppercase; }

.node {
    position: absolute; --size: min(112px, 15.5vmin);
    width: var(--size); height: var(--size); z-index: 15; cursor: pointer;
    animation: nodeFloat 5s ease-in-out infinite;
}
@keyframes nodeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.node-glass {
    width: 100%; height: 100%; border-radius: 22px;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    transition: all .5s cubic-bezier(.16, 1, .3, 1);
    text-align: center; padding: 6px;
    animation: nodeIn .7s cubic-bezier(.16, 1, .3, 1) both;
}
@keyframes nodeIn { from { opacity: 0; transform: scale(.6) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.node-glass::before {
    content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px;
    background: var(--node-color); border-radius: 0 0 4px 4px; opacity: .55; transition: all .5s;
}

.node:hover .node-glass {
    border-color: color-mix(in srgb, var(--node-color) 45%, transparent);
    transform: scale(1.13) translateY(-6px); background: rgba(255, 255, 255, .08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
}
.node:hover .node-glass::before { left: 0; right: 0; opacity: 1; height: 3px; box-shadow: 0 0 18px var(--node-color); }

.node-icon { font-size: clamp(20px, 4vmin, 28px); margin-bottom: 4px; transition: transform .5s cubic-bezier(.16, 1, .3, 1); display: flex; align-items: center; justify-content: center; line-height: 1; }
.node-icon--img {
    width: clamp(34px, 6vmin, 46px); height: clamp(34px, 6vmin, 46px);
    background: #f5f5f5; border-radius: 10px; padding: 4px;
    box-shadow: 0 2px 10px color-mix(in srgb, var(--node-color) 35%, transparent);
}
.node-icon--img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.node:hover .node-icon { transform: scale(1.15); }
.node-label { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(10px, 1.7vmin, 12px); letter-spacing: 1.5px; color: var(--node-color); transition: text-shadow .5s; }
.node:hover .node-label { text-shadow: 0 0 18px var(--node-color); }
.node-sub { font-size: clamp(7px, 1.1vmin, 9px); font-weight: 400; color: var(--text-muted); letter-spacing: .5px; margin-top: 3px; max-width: 92%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Detail panel */
.panel {
    position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(140%);
    background: rgba(12, 12, 22, .92); border: 1px solid var(--glass-border);
    border-radius: 22px; padding: 26px 30px; z-index: 60;
    max-width: 480px; width: calc(100% - 32px);
    backdrop-filter: blur(40px); transition: all .7s cubic-bezier(.16, 1, .3, 1);
    opacity: 0;
    box-shadow: 0 -20px 80px rgba(0, 0, 0, .4);
}
.panel.open { transform: translateX(-50%) translateY(0); opacity: 1; }
.panel-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.panel-icon { font-size: 36px; }
.panel-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: 1.5px; }
.panel-sub { font-size: 11px; font-weight: 500; letter-spacing: 2.5px; color: var(--text-muted); text-transform: uppercase; margin-top: 2px; }
.panel-body { font-size: 14px; line-height: 1.7; color: var(--text-secondary); font-weight: 300; }
.panel-tags { display: flex; gap: 7px; margin: 14px 0 18px; flex-wrap: wrap; }
.tag { padding: 5px 13px; border-radius: 100px; font-size: 10px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; border: 1px solid var(--glass-border); background: rgba(255, 255, 255, .03); }
.panel-footer { display: flex; gap: 10px; flex-wrap: wrap; }
.panel-btn {
    flex: 1; min-width: 140px; padding: 10px 18px; border-radius: 100px;
    font-size: 13px; font-weight: 600; text-align: center;
    transition: all .3s; border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, .04); color: var(--text-primary);
}
.panel-btn--primary {
    background: linear-gradient(135deg, var(--panel-color, var(--cyan)), color-mix(in srgb, var(--panel-color, var(--cyan)) 60%, var(--violet)));
    color: #06060e; border: none; font-weight: 700;
}
.panel-btn:hover { transform: translateY(-2px); }

.panel-close {
    position: absolute; top: 12px; right: 14px;
    background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%; width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 14px; cursor: pointer; transition: all .3s;
}
.panel-close:hover { background: rgba(251, 113, 133, .15); color: var(--rose); }

/* ===== SECTIONS ===== */
section { position: relative; z-index: 10; padding: 110px 24px; }
.container { max-width: var(--max); margin: 0 auto; }

.section-kicker {
    font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase; color: var(--cyan); margin-bottom: 18px;
    display: inline-flex; align-items: center; gap: 12px;
    position: relative;
}
.section-kicker::before {
    content: '';
    width: 12px; height: 12px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M6 0 L7.5 4.5 L12 6 L7.5 7.5 L6 12 L4.5 7.5 L0 6 L4.5 4.5 Z' fill='%2300d4ff'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .85;
    flex-shrink: 0;
}
.section-kicker[data-num]::after {
    content: attr(data-num);
    font-family: 'Syne', sans-serif;
    font-size: 11px; font-weight: 700;
    color: var(--violet);
    background: rgba(167, 139, 250, .12);
    border: 1px solid rgba(167, 139, 250, .25);
    padding: 2px 8px; border-radius: 100px;
    letter-spacing: 1.5px;
    margin-left: -2px;
    order: -1;
}

.section-title {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: clamp(28px, 3.8vw, 44px); line-height: 1.15; margin-bottom: 18px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, .65) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -.5px; max-width: 780px;
}
.section-sub { font-size: 17px; color: var(--text-secondary); max-width: 680px; font-weight: 300; }

.section-head { margin-bottom: 60px; }

/* Uniform products grid */
.products-grid-uniform {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 1000px) { .products-grid-uniform { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid-uniform { grid-template-columns: 1fr; } }

.product-uniform-card {
    position: relative; overflow: hidden;
    border-radius: 20px;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    display: flex; flex-direction: column;
    color: inherit; text-decoration: none;
    isolation: isolate;
    min-height: 280px;
}
.product-uniform-card .puc-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(circle at 25% 0%, color-mix(in srgb, var(--card-color) 22%, transparent), transparent 65%),
        linear-gradient(135deg, transparent, color-mix(in srgb, var(--card-color) 6%, transparent));
    opacity: .7; transition: opacity .4s;
}
.product-uniform-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--card-color); opacity: .55; transition: all .35s; z-index: 2;
}
.product-uniform-card:hover {
    border-color: color-mix(in srgb, var(--card-color) 60%, transparent);
    transform: translateY(-6px);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, .45),
        0 0 60px -10px color-mix(in srgb, var(--card-color) 40%, transparent),
        0 0 0 1px color-mix(in srgb, var(--card-color) 25%, transparent) inset;
}
.product-uniform-card:hover::before { opacity: 1; height: 4px; box-shadow: 0 0 30px var(--card-color), 0 0 60px color-mix(in srgb, var(--card-color) 50%, transparent); }
.product-uniform-card:hover .puc-bg { opacity: 1; transform: scale(1.05); }
.product-uniform-card:hover .puc-arrow { gap: 14px; }
.product-uniform-card:hover .puc-icon {
    transform: scale(1.12) rotate(-4deg);
    background: color-mix(in srgb, var(--card-color) 18%, transparent);
    border-color: color-mix(in srgb, var(--card-color) 45%, transparent);
    box-shadow: 0 0 30px color-mix(in srgb, var(--card-color) 35%, transparent);
}
.product-uniform-card:hover .puc-name {
    text-shadow: 0 0 24px color-mix(in srgb, var(--card-color) 50%, transparent);
}
.product-uniform-card .puc-bg { transition: opacity .4s, transform .6s cubic-bezier(.16, 1, .3, 1); }
.product-uniform-card .puc-icon { transition: transform .4s cubic-bezier(.16, 1, .3, 1), background .4s, border-color .4s, box-shadow .4s; }
.product-uniform-card .puc-name { transition: text-shadow .4s; }

.puc-content {
    position: relative; z-index: 1;
    padding: 26px 24px;
    display: flex; flex-direction: column; gap: 16px;
    flex-grow: 1;
}
.puc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.puc-icon {
    font-size: 30px; line-height: 1;
    width: 54px; height: 54px;
    background: rgba(255, 255, 255, .04); border: 1px solid var(--glass-border);
    border-radius: 13px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.puc-icon--img { padding: 8px; background: #f5f5f5; border-color: rgba(0, 0, 0, .08); }
.puc-icon--img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-uniform-card:hover .puc-icon--img {
    background: #ffffff;
    border-color: color-mix(in srgb, var(--card-color) 35%, rgba(0, 0, 0, .08));
}
.puc-badge {
    font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px;
    background: color-mix(in srgb, var(--card-color) 16%, transparent);
    border: 1px solid color-mix(in srgb, var(--card-color) 32%, transparent);
    color: var(--card-color);
}
.puc-foot { display: flex; flex-direction: column; gap: 6px; flex-grow: 1; }
.puc-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 500; letter-spacing: 1.8px;
    text-transform: uppercase; color: var(--text-muted);
}
.puc-name {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 22px; letter-spacing: -.4px; color: var(--card-color);
}
.puc-desc {
    font-size: 13.5px; color: var(--text-secondary);
    line-height: 1.6; font-weight: 300;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.puc-arrow {
    font-size: 13px; font-weight: 600; color: var(--card-color);
    display: inline-flex; align-items: center; gap: 8px;
    transition: gap .3s;
    margin-top: auto; padding-top: 6px;
}
.product-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 28px; transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
}
.product-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--card-color); opacity: .55; transition: opacity .4s;
}
.product-card::after {
    content: ''; position: absolute; inset: 0; border-radius: 20px;
    background: radial-gradient(circle at 50% 0%, var(--card-color), transparent 60%);
    opacity: 0; transition: opacity .4s; z-index: -1;
}
.product-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--card-color) 35%, transparent); }
.product-card:hover::before { opacity: 1; }
.product-card:hover::after { opacity: .08; }

.product-icon { font-size: 36px; margin-bottom: 16px; }
.product-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: 1.5px; color: var(--card-color); margin-bottom: 6px; }
.product-sub { font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.product-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; flex-grow: 1; margin-bottom: 18px; font-weight: 300; }
.product-link { font-size: 13px; font-weight: 600; color: var(--card-color); display: inline-flex; align-items: center; gap: 6px; transition: gap .3s; }
.product-link:hover { gap: 10px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.about-body { font-size: 17px; color: var(--text-secondary); line-height: 1.8; font-weight: 300; }

.about-terminal {
    position: relative;
    background: rgba(8, 8, 16, .9);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}
.about-terminal-bar {
    background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 16px;
    display: flex; align-items: center; gap: 8px;
}
.about-terminal-dot { width: 11px; height: 11px; border-radius: 50%; }
.about-terminal-dot:nth-child(1) { background: #fb7185; }
.about-terminal-dot:nth-child(2) { background: #fbbf24; }
.about-terminal-dot:nth-child(3) { background: #34d399; }
.about-terminal-title {
    font-family: 'JetBrains Mono', monospace; font-size: 12px;
    color: var(--text-muted); margin-left: auto; padding-right: 4px;
    letter-spacing: 1px;
}

.about-terminal-body {
    padding: 22px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px; line-height: 1.85;
}
.about-terminal-line { white-space: nowrap; opacity: 0; animation: termType .35s ease forwards; }
.about-terminal-line:nth-child(1) { animation-delay: .1s; }
.term-line-0 { animation-delay: .35s; }
.term-line-1 { animation-delay: .5s; }
.term-line-2 { animation-delay: .65s; }
.term-line-3 { animation-delay: .8s; }
.term-line-4 { animation-delay: .95s; }
.term-line-5 { animation-delay: 1.1s; }
.term-line-end { animation-delay: 1.3s; }
@keyframes termType { from { opacity: 0; transform: translateX(-4px); } to { opacity: 1; transform: translateX(0); } }

.term-prompt { color: var(--violet); margin-right: 8px; }
.term-cmd { color: var(--text-primary); }
.term-flag { color: var(--cyan); }
.term-check { display: inline-block; width: 18px; }
.term-name { color: var(--cyan); display: inline-block; width: 110px; }
.term-tab { display: inline-block; width: 14px; }
.term-desc { color: var(--text-secondary); }
.term-result { color: var(--emerald); }
.term-cursor {
    display: inline-block; width: 8px; height: 14px;
    background: var(--cyan); margin-left: 6px;
    vertical-align: middle;
    animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Stat row (big-numbers section) */
.stat-row-section { padding: 70px 24px; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); background: rgba(0, 0, 0, .2); }
.stat-row {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px;
    align-items: end;
}
.stat-row-item { text-align: center; padding: 12px 8px; }
.stat-row-num {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(38px, 5vw, 68px); line-height: .95;
    background: var(--grad-main); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px; margin-bottom: 10px;
}
.stat-row-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; color: var(--text-secondary); letter-spacing: 2px;
    text-transform: uppercase; line-height: 1.4;
}
@media (max-width: 900px) {
    .stat-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-row-item:last-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .stat-row { grid-template-columns: 1fr; }
    .stat-row-item:last-child { grid-column: auto; }
}

@media (max-width: 800px) {
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.service-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 32px 28px; transition: all .4s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(0, 212, 255, .25); }
.service-icon { font-size: 32px; margin-bottom: 14px; }
.service-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: .5px; margin-bottom: 10px; }
.service-desc { color: var(--text-secondary); font-size: 14px; line-height: 1.7; font-weight: 300; }

/* Stack marquee */
.stack-marquee {
    overflow: hidden; position: relative;
    margin-top: 10px;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.stack-marquee-track {
    display: flex; gap: 14px; align-items: center;
    width: max-content;
    animation: stackScroll 50s linear infinite;
}
.stack-marquee:hover .stack-marquee-track { animation-play-state: paused; }
@keyframes stackScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .stack-marquee-track { animation: none; } }

.stack-pill {
    flex-shrink: 0;
    display: inline-flex; align-items: center; gap: 14px;
    padding: 14px 22px;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all .3s;
}
.stack-pill:hover {
    border-color: rgba(0, 212, 255, .35);
    background: rgba(0, 212, 255, .04);
    transform: translateY(-2px);
}
.stack-pill-icon { font-size: 24px; line-height: 1; }
.stack-pill-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .8px; color: var(--cyan); }
.stack-pill-desc { font-size: 11px; color: var(--text-muted); margin-top: 2px; letter-spacing: .3px; }

/* Clients marquee */
.clients-section { padding-bottom: 60px; }
.marquee {
    overflow: hidden; position: relative;
    margin-top: 40px;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
    display: flex; gap: 64px; align-items: center;
    width: max-content;
    animation: marqueeScroll 50s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    flex-shrink: 0;
    height: 56px; min-width: 140px; max-width: 200px;
    display: flex; align-items: center; justify-content: center;
    opacity: .55; transition: opacity .3s, filter .3s;
    filter: grayscale(100%);
}
.marquee-item:hover { opacity: 1; filter: grayscale(0%); }
.marquee-item a { display: flex; align-items: center; justify-content: center; height: 100%; max-width: 100%; }
.marquee-item img { max-height: 100%; max-width: 100%; height: auto; width: auto; object-fit: contain; display: block; }
.marquee-item--text { filter: none; opacity: .7; }
.marquee-item--text:hover { opacity: 1; }
.marquee-name {
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--text-secondary);
    padding: 10px 20px; border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, .03);
    white-space: nowrap;
}
.marquee-item--text a { text-decoration: none; }
.marquee-item--text a .marquee-name { color: var(--text-primary); border-color: rgba(0, 212, 255, .25); }
.marquee-item--text a:hover .marquee-name { border-color: var(--cyan); color: var(--cyan); }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    .marquee { mask-image: none; -webkit-mask-image: none; overflow-x: auto; }
}

/* Cases & Clients unified grid */
.cases-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px;
}
.case-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 18px; padding: 22px 22px 20px;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    display: flex; flex-direction: column; gap: 10px;
    position: relative; overflow: hidden;
}
.case-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--p-color); opacity: .55; transition: opacity .35s, height .35s; z-index: 2;
}
.case-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--p-color) 35%, transparent);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
}
.case-card:hover::before { opacity: 1; height: 3px; }

.case-card-head {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin-bottom: 4px;
}
.case-card-logo {
    width: 56px; height: 56px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .04); border-radius: 12px;
    padding: 6px;
}
.case-card-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.case-card-monogram {
    width: 56px; height: 56px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--p-color) 14%, rgba(255, 255, 255, .04));
    border: 1px solid color-mix(in srgb, var(--p-color) 28%, transparent);
    border-radius: 12px;
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 24px;
    color: var(--p-color);
}
.case-card-tags { display: flex; flex-wrap: wrap; gap: 4px; justify-content: flex-end; max-width: 60%; }
.case-tag {
    font-family: 'JetBrains Mono', monospace; font-size: 9.5px; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase;
    padding: 3px 8px; border-radius: 100px;
    border: 1px solid var(--glass-border);
    white-space: nowrap;
}
.case-tag--custom {
    color: var(--p-color);
    background: color-mix(in srgb, var(--p-color) 8%, transparent);
    border-color: color-mix(in srgb, var(--p-color) 28%, transparent);
}
.case-tag--product {
    color: var(--p-color);
    background: color-mix(in srgb, var(--p-color) 8%, transparent);
    border-color: color-mix(in srgb, var(--p-color) 28%, transparent);
}
.case-tag--client { color: var(--text-muted); background: rgba(255, 255, 255, .03); }
.case-tag--year { color: var(--text-muted); background: rgba(255, 255, 255, .03); }

.case-card-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -.2px; color: var(--p-color); margin: 0; }
.case-card-tagline { font-size: 11px; color: var(--text-muted); letter-spacing: 1.3px; text-transform: uppercase; font-weight: 500; margin-top: -4px; }
.case-card-desc {
    color: var(--text-secondary); font-size: 13px; line-height: 1.6; font-weight: 300;
    margin: 0; flex-grow: 1;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.case-card-link {
    color: var(--p-color); font-size: 12px; font-weight: 600;
    margin-top: 4px; padding-top: 12px;
    border-top: 1px solid var(--glass-border);
    display: inline-flex; align-items: center; gap: 6px; transition: gap .3s;
    text-decoration: none;
}
.case-card-link:hover { gap: 10px; }
.case-card--clickable { cursor: pointer; }
.case-card--clickable:focus-visible { outline: 2px solid var(--p-color); outline-offset: 2px; }
.case-card-more {
    color: var(--p-color); font-size: 12px; font-weight: 600;
    margin-top: 6px; padding-top: 12px;
    border-top: 1px solid var(--glass-border);
    display: inline-flex; align-items: center; gap: 6px; transition: gap .3s;
}
.case-card--clickable:hover .case-card-more { gap: 10px; }

/* Case modals */
body.modal-open { overflow: hidden; }
.case-modal {
    position: fixed; inset: 0; z-index: 9000;
    display: none; align-items: center; justify-content: center;
    padding: 24px;
}
.case-modal.open { display: flex; animation: caseModalFade .25s ease; }
.case-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}
.case-modal-panel {
    position: relative; z-index: 1;
    background: var(--bg-card, #0d0d18); border: 1px solid var(--glass-border);
    border-radius: 22px; padding: 36px 36px 28px;
    max-width: 720px; width: 100%; max-height: calc(100vh - 48px);
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
    animation: caseModalSlide .35s cubic-bezier(.16, 1, .3, 1);
}
.case-modal-panel::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--p-color); opacity: .8; border-radius: 22px 22px 0 0;
}
.case-modal-close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255, 255, 255, .06); border: 1px solid var(--glass-border);
    color: var(--text-primary); font-size: 22px; line-height: 1;
    cursor: pointer; transition: all .2s;
    display: flex; align-items: center; justify-content: center;
}
.case-modal-close:hover { background: rgba(255, 255, 255, .12); border-color: var(--p-color); color: var(--p-color); }

.case-modal-header { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 22px; padding-right: 36px; }
.case-modal-logo {
    width: 88px; height: 88px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .04); border-radius: 16px; padding: 10px;
}
.case-modal-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.case-modal-monogram {
    width: 88px; height: 88px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--p-color) 14%, rgba(255, 255, 255, .04));
    border: 1px solid color-mix(in srgb, var(--p-color) 28%, transparent);
    border-radius: 16px;
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 36px;
    color: var(--p-color);
}
.case-modal-titles { flex: 1; min-width: 0; }
.case-modal-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 26px; letter-spacing: -.3px; color: var(--p-color); margin: 0 0 4px; }
.case-modal-tagline { font-size: 12px; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; margin-bottom: 10px; }
.case-modal-meta-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.case-modal-body { color: var(--text-secondary); font-size: 15px; line-height: 1.7; font-weight: 300; }
.case-modal-body p { margin: 0 0 12px; }
.case-modal-body p:last-child { margin-bottom: 0; }

.case-modal-gallery {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px;
    margin-top: 22px;
}
.case-modal-gallery-item {
    border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
    background: rgba(255, 255, 255, .04);
    transition: transform .25s;
    display: block;
}
.case-modal-gallery-item:hover { transform: scale(1.02); }
.case-modal-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.case-modal-actions {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 28px; padding-top: 22px;
    border-top: 1px solid var(--glass-border);
}
.case-modal-btn {
    padding: 12px 22px; border-radius: 100px;
    font-family: 'Syne', sans-serif; font-weight: 600; font-size: 14px;
    letter-spacing: .3px;
    transition: all .25s; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
}
.case-modal-btn--primary {
    background: var(--p-color); color: #06060e;
    border: 1px solid var(--p-color);
}
.case-modal-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px color-mix(in srgb, var(--p-color) 35%, transparent); }
.case-modal-btn--ghost {
    background: transparent; color: var(--text-primary);
    border: 1px solid var(--glass-border);
}
.case-modal-btn--ghost:hover { border-color: var(--p-color); color: var(--p-color); }

@keyframes caseModalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes caseModalSlide { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (max-width: 640px) {
    .case-modal { padding: 0; align-items: stretch; }
    .case-modal-panel { max-height: 100vh; height: 100vh; border-radius: 0; padding: 60px 22px 28px; }
    .case-modal-panel::before { border-radius: 0; }
    .case-modal-header { flex-direction: column; padding-right: 0; }
    .case-modal-logo, .case-modal-monogram { width: 64px; height: 64px; font-size: 28px; }
    .case-modal-name { font-size: 22px; }
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-item-icon {
    flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
    background: rgba(0, 212, 255, .1); border: 1px solid rgba(0, 212, 255, .2);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-item-label { font-size: 12px; color: var(--text-muted); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 3px; }
.contact-item-value { font-size: 15px; color: var(--text-primary); font-weight: 500; }

.form-group { margin-bottom: 18px; }

.contact-flash {
    padding: 14px 18px; border-radius: 14px; font-size: 14px; margin-bottom: 22px;
    border: 1px solid var(--glass-border); line-height: 1.5;
    animation: flashIn .4s ease both;
}
.contact-flash--ok { background: rgba(52, 211, 153, .1); border-color: rgba(52, 211, 153, .3); color: #6ee7b7; }
.contact-flash--err { background: rgba(251, 113, 133, .1); border-color: rgba(251, 113, 133, .3); color: #fda4af; }
@keyframes flashIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.form-group label { display: block; font-size: 13px; color: var(--text-muted); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 12px; padding: 14px 16px; color: var(--text-primary);
    font-family: inherit; font-size: 15px; transition: all .3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: rgba(0, 212, 255, .5); background: rgba(0, 212, 255, .05);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}
.form-group select option {
    background: #0e1226; color: var(--text-primary);
}

@media (max-width: 800px) {
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Footer */
.footer {
    position: relative; z-index: 10; background: var(--bg-2);
    border-top: 1px solid var(--glass-border);
    padding: 70px 24px 30px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr .9fr .9fr 1.3fr; gap: 40px;
    max-width: var(--max); margin: 0 auto 50px;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.footer-brand img { height: 36px; width: auto; flex: 0 0 auto; }
.footer-brand .footer-tag { margin: 0 auto; }
.footer-tag { font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-width: 320px; font-weight: 300; }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255, 255, 255, .04); border: 1px solid var(--glass-border);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-secondary); transition: all .25s;
}
.footer-social a:hover { color: var(--cyan); border-color: rgba(0, 212, 255, .3); background: rgba(0, 212, 255, .05); }

.footer-col--geo { display: flex; flex-direction: column; gap: 14px; }
.footer-geo-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-geo-line {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--text-secondary); transition: color .25s;
}
.footer-geo-line:hover { color: var(--cyan); }
.footer-geo-line--static { cursor: default; }
.footer-geo-line--static:hover { color: var(--text-secondary); }
.footer-geo-icon { font-size: 14px; opacity: .7; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; color: var(--text-primary); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-secondary); transition: color .3s; }
.footer-col ul a:hover { color: var(--cyan); }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 12px; color: var(--text-muted); }

@media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 62px; height: 62px; border-radius: 50%;
    background: #25d366; color: white;
    display: flex; align-items: center; justify-content: center; font-size: 32px;
    z-index: 999; box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
    transition: transform .3s, box-shadow .3s;
    text-decoration: none;
}
.whatsapp-float::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
    animation: whatsapp-pulse 2.2s ease-out infinite;
    pointer-events: none;
}
.whatsapp-float::after {
    content: attr(data-tip); position: absolute; right: 75px; top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: #0b1220; color: #fff; padding: 8px 14px;
    border-radius: 10px; font-size: 13px; font-family: 'Outfit', sans-serif;
    font-weight: 500; white-space: nowrap;
    opacity: 0; pointer-events: none;
    box-shadow: 0 10px 24px rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.08);
    transition: opacity .25s, transform .25s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 40px rgba(37, 211, 102, .55); }
.whatsapp-float:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.whatsapp-float:hover::before { animation-play-state: paused; }
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
    70% { box-shadow: 0 0 0 22px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
    .whatsapp-float { width: 56px; height: 56px; font-size: 28px; bottom: 18px; right: 18px; }
    .whatsapp-float::after { display: none; }
}

/* ===== PRODUCT PAGE ===== */
.product-hero { position: relative; z-index: 10; padding: 130px 24px 80px; }
.product-hero-inner { max-width: 1100px; margin: 0 auto; }
.product-back { font-size: 13px; color: var(--text-secondary); margin-bottom: 32px; display: inline-flex; align-items: center; gap: 8px; transition: gap .3s, color .3s; }
.product-back:hover { gap: 12px; color: var(--cyan); }

.product-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; margin-bottom: 36px; }
.product-hero-icon {
    width: 100px; height: 100px; border-radius: 24px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--p-color) 30%, transparent), color-mix(in srgb, var(--p-color) 10%, transparent));
    border: 1px solid color-mix(in srgb, var(--p-color) 40%, transparent);
    display: flex; align-items: center; justify-content: center; font-size: 48px;
    box-shadow: 0 0 60px color-mix(in srgb, var(--p-color) 25%, transparent);
    flex-shrink: 0;
}
.product-hero-icon--img {
    background: #f5f5f5; border-color: rgba(0, 0, 0, .08); padding: 14px;
}
.product-hero-icon--img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-platform-badge {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px; border-radius: 100px;
    background: color-mix(in srgb, var(--p-color) 15%, transparent);
    color: var(--p-color);
    border: 1px solid color-mix(in srgb, var(--p-color) 35%, transparent);
    margin-bottom: 18px;
}

.product-hero-name {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(40px, 6vw, 72px); line-height: 1; letter-spacing: -1px;
    color: var(--p-color); text-shadow: 0 0 40px color-mix(in srgb, var(--p-color) 30%, transparent);
}
.product-hero-sub { font-size: clamp(15px, 1.4vw, 18px); color: var(--text-secondary); text-transform: uppercase; letter-spacing: 3px; margin-top: 8px; font-weight: 500; }

.product-hero-desc { font-size: 18px; color: var(--text-secondary); line-height: 1.8; max-width: 780px; font-weight: 300; margin-bottom: 28px; }
.product-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.product-chip {
    padding: 7px 16px; border-radius: 100px; font-size: 11px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    background: color-mix(in srgb, var(--p-color) 12%, transparent);
    color: var(--p-color); border: 1px solid color-mix(in srgb, var(--p-color) 25%, transparent);
}

.product-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.product-cta {
    padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: 14px;
    letter-spacing: .5px; transition: all .3s; display: inline-flex; align-items: center; gap: 8px;
}
.product-cta--primary { background: var(--p-color); color: #06060e; box-shadow: 0 8px 24px color-mix(in srgb, var(--p-color) 30%, transparent); }
.product-cta--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px color-mix(in srgb, var(--p-color) 50%, transparent); }
.product-cta--whatsapp { background: rgba(37, 211, 102, .12); color: #25d366; border: 1px solid rgba(37, 211, 102, .3); }
.product-cta--whatsapp:hover { background: rgba(37, 211, 102, .2); }

.highlights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.highlight-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 18px; padding: 26px; transition: all .35s;
}
.highlight-card:hover { border-color: color-mix(in srgb, var(--p-color) 40%, transparent); transform: translateY(-3px); }
.highlight-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: color-mix(in srgb, var(--p-color) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--p-color) 25%, transparent);
    display: flex; align-items: center; justify-content: center; font-size: 22px;
    margin-bottom: 16px;
}
.highlight-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 8px; color: var(--p-color); }
.highlight-desc { color: var(--text-secondary); font-size: 14px; line-height: 1.7; font-weight: 300; }

/* Product page: clients section */
.product-clients-section { padding-bottom: 80px; }
.product-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}
.product-client-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 24px 18px;
    text-align: center; text-decoration: none; color: inherit;
    transition: all .35s;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.product-client-card:hover {
    border-color: color-mix(in srgb, var(--p-color) 40%, transparent);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .06);
}
.product-client-img {
    width: 100%; height: 80px;
    display: flex; align-items: center; justify-content: center;
    padding: 6px;
    filter: grayscale(80%); opacity: .85; transition: all .35s;
}
.product-client-card:hover .product-client-img { filter: grayscale(0); opacity: 1; }
.product-client-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-client-img--empty { background: linear-gradient(135deg, color-mix(in srgb, var(--p-color, #00d4ff) 18%, transparent), rgba(255, 255, 255, .03)); border: 1px solid color-mix(in srgb, var(--p-color, #00d4ff) 25%, transparent); }
.product-client-monogram { font-family: 'Syne', sans-serif; font-size: 38px; font-weight: 800; color: var(--p-color, var(--cyan)); letter-spacing: 1px; }
.product-client-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .5px; }

/* Mini orbit on product page */
.mini-orbit { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.mini-node {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 18px; padding: 18px; min-width: 150px; text-align: center;
    transition: all .35s; position: relative; overflow: hidden;
}
.mini-node::before { content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px; background: var(--card-color); opacity: .5; transition: all .35s; }
.mini-node:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--card-color) 40%, transparent); }
.mini-node:hover::before { left: 0; right: 0; opacity: 1; }
.mini-icon { font-size: 24px; margin-bottom: 8px; }
.mini-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1px; color: var(--card-color); }

/* Status footer */
.status {
    position: fixed; bottom: 0; left: 0; right: 0; padding: 12px 24px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 40; font-family: 'JetBrains Mono', monospace; font-size: 10px;
    letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase;
    pointer-events: none;
}
.status > * { pointer-events: auto; }
.status-live { display: flex; align-items: center; gap: 8px; }
.status-dot { width: 6px; height: 6px; background: var(--emerald); border-radius: 50%; animation: pulse 2.5s ease-in-out infinite; box-shadow: 0 0 10px var(--emerald); }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.85); } }
@media (max-width: 600px) { .status { display: none; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: all .9s cubic-bezier(.16, 1, .3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
    .product-hero-grid { grid-template-columns: 1fr; align-items: start; }
    .product-hero-icon { width: 80px; height: 80px; font-size: 40px; }
    section { padding: 80px 20px; }
}
