/* ═══════════════════════════════════════════════════════
   T3i Experience – Transition Site
   Premium Tech Aesthetic
   ═══════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
    --black: #020204;
    --deep: #060609;
    --g0: #09090f;
    --g1: #0c0c14;
    --g2: #10101a;
    --g3: #161622;
    --surf: #1c1c2a;
    --brd: #1e1e30;
    --brd-l: #2a2a40;
    --muted: #4a4a66;
    --sec: #7e7e9c;
    --pri: #b8b8d0;
    --bright: #dcdcea;
    --white: #f0f0f8;
    --cy: #00d4ff;
    --cy-m: #00b4dc;
    --cy-d: #008aaa;
    --cy-dk: #005a72;
    --cy-g: rgba(0, 212, 255, .10);
    --cy-gm: rgba(0, 212, 255, .18);
    --cy-gl: rgba(0, 212, 255, .32);
    --blu: #2a44e0;
    --blu-g: rgba(42, 68, 224, .08);
    --desc-b: #3366ff;
    --desc-p: #c840a0;
    --desc-g: rgba(51, 102, 255, .12);
    --desc-pg: rgba(200, 64, 160, .08);
    --fd: 'Sora', sans-serif;
    --fb: 'Outfit', sans-serif;
    --fm: 'JetBrains Mono', monospace;
    --eo: cubic-bezier(.16, 1, .3, 1);
    --es: cubic-bezier(.34, 1.56, .64, 1);
    --radius: 14px;
    --radius-sm: 10px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--fb); background: var(--black); color: var(--pri); line-height: 1.7; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--brd); border-radius: 2px; }

/* ─── GRAIN OVERLAY ─── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .028;
    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");
    background-repeat: repeat;
    background-size: 180px;
}

/* ─── REVEALS ─── */
.rv {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity .85s var(--eo), transform .85s var(--eo);
}
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .19s; }
.rv-d3 { transition-delay: .28s; }
.rv-d4 { transition-delay: .37s; }
.rv-d5 { transition-delay: .46s; }
.rv-d6 { transition-delay: .55s; }
.rv-d7 { transition-delay: .64s; }
.rv-d8 { transition-delay: .73s; }

/* ─── LAYOUT ─── */
.ctn { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.ctn-s { max-width: 800px; }
.ctn-l { max-width: 1400px; }
section { padding: 140px 0; position: relative; }
@media (max-width: 768px) { section { padding: 90px 0; } }

.label {
    font-family: var(--fm);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cy);
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--cy), transparent);
}

/* ─── BEAM DIVIDERS ─── */
.beam { position: relative; }
.beam::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cy-dk) 20%, var(--cy-d) 50%, var(--cy-dk) 80%, transparent);
    opacity: .2;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fd);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
    border-radius: var(--radius);
    padding: 16px 36px;
    transition: all .4s var(--eo);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .35s var(--es); }
.btn:hover svg { transform: translateX(4px); }

.btn--cy {
    background: var(--cy);
    color: var(--black);
}
.btn--cy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    transition: left .7s ease;
}
.btn--cy:hover::before { left: 150%; }
.btn--cy:hover {
    background: var(--white);
    box-shadow: 0 0 48px var(--cy-gl), 0 4px 20px rgba(0,0,0,.25);
    transform: translateY(-3px);
}

.btn--gh {
    background: rgba(255,255,255,.03);
    color: var(--bright);
    border: 1px solid var(--brd);
    backdrop-filter: blur(8px);
}
.btn--gh:hover {
    border-color: var(--cy-d);
    color: var(--cy);
    background: rgba(0, 212, 255, .04);
    box-shadow: 0 0 24px var(--cy-g);
    transform: translateY(-2px);
}

.btn--wa { background: #25D366; color: white; }
.btn--wa:hover {
    background: #1db954;
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(37,211,102,.3);
}
.btn--lg { padding: 18px 44px; font-size: 14px; border-radius: 16px; }

/* ═══════════════════════════════════════════════
   STICKY NAV
   ═══════════════════════════════════════════════ */
.snav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(2, 2, 4, .5);
    backdrop-filter: blur(32px) saturate(1.6);
    -webkit-backdrop-filter: blur(32px) saturate(1.6);
    border-bottom: 1px solid rgba(255,255,255,.04);
    padding: 12px 0;
    transform: translateY(-100%);
    transition: transform .5s var(--eo);
}
.snav.show { transform: translateY(0); }
.snav__i { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.snav__logo { height: 26px; width: auto; object-fit: contain; }
.snav__c {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 22px; background: var(--cy); color: var(--black);
    font-family: var(--fd); font-weight: 700; font-size: 11px;
    letter-spacing: .06em; text-transform: uppercase; border-radius: 8px;
    transition: all .3s ease; position: relative; overflow: hidden;
}
.snav__c::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    transition: left .6s ease;
}
.snav__c:hover::before { left: 150%; }
.snav__c:hover { background: var(--white); box-shadow: 0 0 36px var(--cy-gl); }

/* ═══════════════════════════════════════════════
   WA FLOAT
   ═══════════════════════════════════════════════ */
.waf {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 60px; height: 60px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,.35);
    transition: all .35s var(--es);
    animation: waPulse 3s infinite;
}
.waf:hover { transform: scale(1.1); box-shadow: 0 6px 40px rgba(37,211,102,.5); }
.waf svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,.35); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,.35), 0 0 0 12px rgba(37,211,102,.06); }
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}
.hero__canvas {
    position: absolute; inset: 0; z-index: 0;
}
.hero__canvas canvas { width: 100%; height: 100%; display: block; }
.hero__overlay {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero__grad-top {
    position: absolute; top: 0; left: 0; right: 0; height: 100px;
    background: linear-gradient(to bottom, rgba(2,2,4,.8), transparent);
}
.hero__grad-bot {
    position: absolute; bottom: 0; left: 0; right: 0; height: 320px;
    background: linear-gradient(to top, var(--black), transparent);
}
.hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}
.hero__orb--desc {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--desc-g) 0%, var(--desc-pg) 40%, transparent 70%);
    top: -150px; left: -100px;
    animation: orbFadeOut 5s 2.5s forwards, orbDrift 12s ease-in-out infinite alternate;
}
.hero__orb--t3i {
    width: 800px; height: 800px;
    background: radial-gradient(circle, var(--cy-g) 0%, transparent 60%);
    top: -250px; right: -200px;
    opacity: 0;
    animation: orbFadeIn 3s 2s forwards, orbDrift 9s ease-in-out infinite alternate-reverse;
}
.hero__orb--bot {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--blu-g) 0%, transparent 60%);
    bottom: -180px; left: -80px;
    opacity: 0;
    animation: orbFadeIn 3s 3s forwards;
}
.hero__scan {
    position: absolute; top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--cy-d) 40%, var(--cy) 50%, var(--cy-d) 60%, transparent 90%);
    opacity: 0;
    animation: heroScan 5s 1.5s forwards;
    box-shadow: 0 0 12px var(--cy-gm), 0 0 40px var(--cy-g);
}
@keyframes heroScan { 0% { top: 12%; opacity: 0; } 3% { opacity: .5; } 97% { opacity: .08; } 100% { top: 88%; opacity: 0; } }
@keyframes orbFadeOut { to { opacity: .02; } }
@keyframes orbFadeIn { to { opacity: 1; } }
@keyframes orbDrift { from { transform: translate(0, 0); } to { transform: translate(20px, -15px); } }

.hero__ct {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 28px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
}

/* Brand evolution bar */
.hero__brands {
    display: flex; align-items: center; gap: 24px; margin-bottom: 28px;
    padding: 12px 28px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 100px;
    backdrop-filter: blur(12px);
}
.hero__old-brand {
    opacity: 0; animation: brandOldIn 1s .4s forwards;
}
.hero__old-brand img {
    height: 44px; width: auto; object-fit: contain;
    filter: brightness(.72) grayscale(.15);
    transition: filter .5s ease;
}
.hero__arrow-evo {
    display: flex; align-items: center; gap: 10px;
    opacity: 0; animation: arrowIn 1s 1.4s forwards;
}
.hero__arrow-evo span {
    font-family: var(--fm); font-size: 9px; letter-spacing: .2em;
    text-transform: uppercase; color: var(--muted);
}
.hero__arrow-evo .arrow-line {
    width: 48px; height: 1px;
    background: linear-gradient(90deg, var(--desc-b), var(--cy));
    position: relative; overflow: hidden;
}
.hero__arrow-evo .arrow-line::after {
    content: ''; position: absolute; top: -1px; left: -100%;
    width: 50%; height: 3px; background: var(--cy);
    border-radius: 2px; animation: arrowBeam 2.5s 2s infinite;
}
@keyframes arrowBeam { 0% { left: -50%; } 100% { left: 150%; } }
.hero__new-brand {
    opacity: 0; animation: brandNewIn 1s 2s forwards;
}
.hero__new-brand img {
    height: 52px; width: auto; object-fit: contain;
    filter: drop-shadow(0 0 28px var(--cy-gm));
    transition: filter .5s ease;
}
.hero__new-brand:hover img {
    filter: drop-shadow(0 0 48px var(--cy-gl));
}

@keyframes brandOldIn { from { opacity: 0; transform: translateX(-12px); } to { opacity: .6; transform: translateX(0); } }
@keyframes arrowIn { from { opacity: 0; transform: scaleX(.4); } to { opacity: 1; transform: scaleX(1); } }
@keyframes brandNewIn { from { opacity: 0; transform: translateX(12px) scale(.95); } to { opacity: 1; transform: translateX(0) scale(1); } }

.hero__badge {
    font-family: var(--fm); font-size: 11px; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase; color: var(--cy);
    margin-bottom: 20px;
    opacity: 0; animation: heroFade 1s 2.8s forwards;
}
.hero__title {
    font-family: var(--fd);
    font-size: clamp(34px, 6.2vw, 76px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.04em;
    color: var(--white);
    margin-bottom: 22px;
    opacity: 0; animation: heroFade 1s 3s forwards;
}
.hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--cy) 0%, #5090ff 50%, var(--cy) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero__sub {
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.8; color: var(--sec);
    max-width: 580px; margin-bottom: 38px;
    opacity: 0; animation: heroFade 1s 3.2s forwards;
}
.hero__actions {
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
    opacity: 0; animation: heroFade 1s 3.5s forwards;
}
.hero__scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--muted); font-size: 9px; font-family: var(--fm);
    letter-spacing: .18em; text-transform: uppercase;
    opacity: 0; animation: heroFade 1s 4s forwards;
}
.hero__scroll-bar {
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, var(--cy-d), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: .25; } 50% { opacity: .8; } }
@keyframes heroFade { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero__scroll { display: none; }
    .hero__brands { flex-wrap: wrap; justify-content: center; gap: 14px; padding: 10px 20px; }
    .hero__old-brand img { height: 30px; }
    .hero__new-brand img { height: 36px; }
    .hero__arrow-evo .arrow-line { width: 28px; }
}

/* ═══════════════════════════════════════════════
   CARDS - SHARED
   ═══════════════════════════════════════════════ */
.card {
    background: var(--g1);
    border: 1px solid var(--brd);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all .45s var(--eo);
}
.card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--cy-d), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .5s ease;
}
.card:hover::before { opacity: .5; }
.card:hover {
    transform: translateY(-5px);
    background: var(--g2);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.card__icon {
    width: 50px; height: 50px; border-radius: 12px;
    background: var(--cy-g);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 24px;
    transition: all .4s ease;
}
.card:hover .card__icon {
    background: var(--cy-gm);
    box-shadow: 0 0 20px var(--cy-g);
    transform: scale(1.05);
}
.card h3 {
    font-family: var(--fd); font-size: 16px; font-weight: 700;
    color: var(--white); margin-bottom: 10px; letter-spacing: -.01em;
}
.card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   WHAT WE DO
   ═══════════════════════════════════════════════ */
.wwd {
    background: var(--g0);
    position: relative; overflow: hidden;
}
.wwd__glow {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, var(--cy-g) 0%, transparent 70%);
    top: -200px; left: 50%; transform: translateX(-50%);
    pointer-events: none;
}
.wwd__hd {
    text-align: center; max-width: 700px; margin: 0 auto 72px;
    position: relative; z-index: 1;
}
.wwd__hd h2 {
    font-family: var(--fd); font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 800; letter-spacing: -.03em;
    color: var(--white); line-height: 1.12; margin-bottom: 18px;
}
.wwd__hd p { color: var(--sec); font-size: 16px; line-height: 1.75; }
.wwd__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    position: relative; z-index: 1;
}
@media (max-width: 900px) { .wwd__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .wwd__grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   EVOLUTION
   ═══════════════════════════════════════════════ */
.evo { position: relative; overflow: hidden; }
.evo__bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,212,255,.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,.015) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 45% 45% at 50% 50%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 45% 45% at 50% 50%, black 10%, transparent 70%);
}
.evo__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
    position: relative; z-index: 1;
}
@media (max-width: 768px) { .evo__grid { grid-template-columns: 1fr; gap: 56px; } }
.evo__txt h2 {
    font-family: var(--fd); font-size: clamp(28px, 4vw, 42px);
    font-weight: 800; letter-spacing: -.03em; color: var(--white);
    line-height: 1.12; margin-bottom: 24px;
}
.evo__txt p { color: var(--sec); font-size: 15px; margin-bottom: 18px; line-height: 1.8; }
.evo__flow { display: flex; flex-direction: column; align-items: center; width: 100%; }
.evo__card {
    border-radius: 20px; padding: 36px; text-align: center;
    width: 100%; max-width: 360px;
}
.evo__card--old {
    background: linear-gradient(135deg, rgba(51,102,255,.05), rgba(200,64,160,.03));
    border: 1px solid rgba(51,102,255,.12);
    opacity: .6;
}
.evo__card--old img { height: 38px; width: auto; object-fit: contain; margin: 0 auto 10px; filter: brightness(.75); }
.evo__card--old .evo__tag { font-size: 12px; color: var(--desc-b); opacity: .6; }
.evo__card--new {
    background: var(--g2); border: 1px solid var(--cy);
    box-shadow: 0 0 50px var(--cy-g), 0 0 100px rgba(0,212,255,.03);
}
.evo__card--new img { height: 48px; width: auto; object-fit: contain; margin: 0 auto 10px; filter: drop-shadow(0 0 20px var(--cy-gm)); }
.evo__card--new .evo__tag { font-size: 11px; color: var(--cy); font-family: var(--fm); letter-spacing: .1em; }
.evo__arrow { display: flex; flex-direction: column; align-items: center; padding: 12px 0; }
.evo__arrow-line { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--desc-b), var(--cy)); }
.evo__arrow svg { width: 18px; height: 18px; color: var(--cy-d); animation: arrowBounce 2s infinite; }
@keyframes arrowBounce { 0%, 100% { opacity: .4; transform: translateY(0); } 50% { opacity: 1; transform: translateY(4px); } }

/* ═══════════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════════ */
.man { position: relative; overflow: hidden; }
.man__wm {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: var(--fd); font-size: clamp(80px, 20vw, 300px);
    font-weight: 900; color: rgba(255,255,255,.01);
    letter-spacing: -.05em; white-space: nowrap;
    pointer-events: none; user-select: none;
}
.man__hl {
    font-family: var(--fd); font-size: clamp(30px, 4.8vw, 56px);
    font-weight: 800; line-height: 1.08; letter-spacing: -.035em;
    color: var(--white); margin-bottom: 60px; max-width: 700px;
}
.man__blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .man__blocks { grid-template-columns: 1fr; } }
.man__block {
    padding: 36px 32px; border-radius: var(--radius);
    background: var(--g1); border: 1px solid var(--brd);
    position: relative; overflow: hidden;
    transition: all .45s var(--eo);
}
.man__block::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--cy), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .6s var(--eo);
}
.man__block:hover { border-color: rgba(0,212,255,.12); transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,0,0,.2); }
.man__block:hover::after { transform: scaleX(1); }
.man__block p { font-size: 15px; line-height: 1.85; color: var(--sec); }
.man__block p strong { color: var(--bright); font-weight: 600; }
.man__close {
    margin-top: 72px; padding-top: 44px;
    border-top: 1px solid var(--brd); max-width: 620px;
}
.man__close p {
    font-family: var(--fd); font-size: clamp(21px, 2.8vw, 30px);
    font-weight: 700; line-height: 1.35; color: var(--white);
}
.man__close span { color: var(--cy); }

/* ═══════════════════════════════════════════════
   DECODE
   ═══════════════════════════════════════════════ */
.dec { background: var(--g0); position: relative; overflow: hidden; }
.dec__header { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.dec__title {
    font-family: var(--fd); font-size: clamp(26px, 4.2vw, 44px);
    font-weight: 800; letter-spacing: -.03em; color: var(--white);
    line-height: 1.12; margin-bottom: 14px;
}
.dec__title span { color: var(--cy); }
.dec__sub { font-size: 15px; color: var(--sec); line-height: 1.7; }
.dec__formula {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin-bottom: 52px; flex-wrap: wrap;
}
.dec__formula-t {
    font-family: var(--fd); font-size: clamp(32px, 5vw, 52px);
    font-weight: 900; color: var(--cy); letter-spacing: -.02em; line-height: 1;
}
.dec__formula-plus {
    font-family: var(--fd); font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300; color: var(--muted);
}
.dec__formula-i {
    font-family: var(--fd); font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300; color: var(--sec);
}
.dec__formula-i strong { font-weight: 800; color: var(--cy); }
.dec__pillars {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px;
    max-width: 1080px; margin: 0 auto;
}
@media (max-width: 900px) { .dec__pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .dec__pillars { grid-template-columns: 1fr; } }
.dec__pill {
    background: var(--g1); padding: 48px 24px; text-align: center;
    position: relative; overflow: hidden; transition: all .45s var(--eo);
}
.dec__pill:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.dec__pill:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
@media (max-width: 900px) { .dec__pill:first-child { border-radius: var(--radius) 0 0 0; } .dec__pill:nth-child(2) { border-radius: 0 var(--radius) 0 0; } .dec__pill:nth-child(3) { border-radius: 0 0 0 var(--radius); } .dec__pill:last-child { border-radius: 0 0 var(--radius) 0; } }
@media (max-width: 500px) { .dec__pill, .dec__pill:first-child, .dec__pill:last-child, .dec__pill:nth-child(2), .dec__pill:nth-child(3) { border-radius: 0; } .dec__pill:first-child { border-radius: var(--radius) var(--radius) 0 0; } .dec__pill:last-child { border-radius: 0 0 var(--radius) var(--radius); } }
.dec__pill::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--cy-g) 0%, transparent 60%);
    opacity: 0; transition: opacity .4s ease;
}
.dec__pill:hover::before { opacity: 1; }
.dec__pill:hover { background: var(--g2); }
.dec__pill-letter {
    font-family: var(--fd); font-size: 42px; font-weight: 900;
    color: var(--white); margin-bottom: 10px; line-height: 1;
    transition: all .4s ease; position: relative; z-index: 1;
}
.dec__pill:hover .dec__pill-letter { color: var(--cy); text-shadow: 0 0 30px var(--cy-gl); }
.dec__pill-word {
    font-family: var(--fm); font-size: 9px; letter-spacing: .28em;
    text-transform: uppercase; color: var(--cy); margin-bottom: 16px;
    position: relative; z-index: 1;
}
.dec__pill p { font-size: 13px; line-height: 1.7; color: var(--muted); position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════
   SOLUTIONS
   ═══════════════════════════════════════════════ */
.sol__hd { max-width: 620px; margin-bottom: 60px; }
.sol__hd h2 {
    font-family: var(--fd); font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 800; letter-spacing: -.03em; color: var(--white);
    line-height: 1.12; margin-bottom: 18px;
}
.sol__hd p { color: var(--sec); font-size: 15px; }
.sol__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
@media (max-width: 900px) { .sol__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .sol__grid { grid-template-columns: 1fr; } }
.sol__card {
    background: var(--g1); padding: 40px 28px;
    position: relative; overflow: hidden;
    transition: all .45s var(--eo);
}
.sol__card::before {
    content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--cy), var(--blu), var(--cy));
    background-size: 200% 100%; transform: scaleX(0); transform-origin: left;
    transition: transform .5s var(--eo);
    animation: gradShift 4s ease-in-out infinite;
}
@keyframes gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.sol__card:hover::before { transform: scaleX(1); }
.sol__card:hover { background: var(--g2); transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,.25); }
.sol__card-icon {
    font-size: 26px; margin-bottom: 18px; display: block;
    transition: transform .4s var(--es);
}
.sol__card:hover .sol__card-icon { transform: scale(1.12); }
.sol__card h3 { font-family: var(--fd); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.sol__card p { font-size: 13px; line-height: 1.7; color: var(--muted); }

/* ═══════════════════════════════════════════════
   PRESENCE
   ═══════════════════════════════════════════════ */
.pres { background: var(--g0); position: relative; overflow: hidden; }
.pres__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
@media (max-width: 768px) { .pres__inner { grid-template-columns: 1fr; gap: 48px; } }
.pres h2 { font-family: var(--fd); font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.03em; color: var(--white); line-height: 1.12; margin-bottom: 20px; }
.pres__lead { color: var(--sec); font-size: 15px; margin-bottom: 32px; line-height: 1.8; }
.pres__hq { background: var(--g1); border: 1px solid var(--brd); border-radius: var(--radius); padding: 28px; margin-bottom: 18px; transition: border-color .3s ease; }
.pres__hq:hover { border-color: var(--cy-dk); }
.pres__hq-label { font-family: var(--fm); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--cy); margin-bottom: 10px; }
.pres__hq-city { font-family: var(--fd); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pres__hq-addr { font-size: 13px; color: var(--muted); }
.pres__ops { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 500px) { .pres__ops { grid-template-columns: 1fr; } }
.pres__op { background: var(--g1); border: 1px solid var(--brd); border-radius: var(--radius-sm); padding: 18px 20px; transition: all .3s ease; }
.pres__op:hover { border-color: var(--cy-dk); transform: translateY(-2px); }
.pres__op-city { font-family: var(--fd); font-size: 14px; font-weight: 600; color: var(--bright); margin-bottom: 2px; }
.pres__op-type { font-size: 11px; color: var(--muted); }
.pres__right { display: flex; flex-direction: column; gap: 20px; }
.pres__stat { background: var(--g1); border: 1px solid var(--brd); border-radius: var(--radius); padding: 36px; text-align: center; transition: all .4s var(--eo); }
.pres__stat:hover { border-color: var(--cy-dk); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.18); }
.pres__stat-num { font-family: var(--fd); font-size: clamp(36px, 5vw, 56px); font-weight: 900; color: var(--cy); letter-spacing: -.03em; line-height: 1; margin-bottom: 6px; }
.pres__stat-label { font-size: 13px; color: var(--muted); }
.pres__global { background: var(--g1); border: 1px solid var(--brd); border-radius: var(--radius); padding: 32px; position: relative; overflow: hidden; transition: border-color .3s ease; }
.pres__global:hover { border-color: var(--cy-dk); }
.pres__global::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, var(--cy-g) 0%, transparent 60%); pointer-events: none; }
.pres__global h4 { font-family: var(--fd); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; position: relative; z-index: 1; }
.pres__global p { font-size: 13px; color: var(--sec); line-height: 1.7; position: relative; z-index: 1; }
.pres__global-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; position: relative; z-index: 1; }
.pres__global-tag {
    font-family: var(--fm); font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--cy); padding: 5px 12px; border: 1px solid rgba(0,212,255,.12);
    border-radius: 100px; background: rgba(0,212,255,.03);
    transition: all .3s ease;
}
.pres__global-tag:hover { background: rgba(0,212,255,.07); border-color: rgba(0,212,255,.25); }

/* ═══════════════════════════════════════════════
   TRUST
   ═══════════════════════════════════════════════ */
.trust__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 768px) { .trust__grid { grid-template-columns: 1fr; gap: 48px; } }
.trust h2 { font-family: var(--fd); font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.03em; color: var(--white); line-height: 1.12; margin-bottom: 20px; }
.trust p { color: var(--sec); font-size: 15px; margin-bottom: 18px; line-height: 1.8; }
.trust__checks { display: flex; flex-direction: column; gap: 14px; }
.trust__check {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 24px; background: var(--g1); border: 1px solid var(--brd);
    border-radius: var(--radius); transition: all .35s ease;
}
.trust__check:hover { border-color: var(--cy-dk); transform: translateX(5px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.trust__check-icon {
    width: 40px; height: 40px; background: var(--cy-g); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--cy); transition: all .3s ease;
}
.trust__check:hover .trust__check-icon { background: var(--cy-gm); box-shadow: 0 0 14px var(--cy-g); }
.trust__check h4 { font-family: var(--fd); font-size: 14px; font-weight: 700; color: var(--bright); margin-bottom: 4px; }
.trust__check p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ═══════════════════════════════════════════════
   REDIRECT
   ═══════════════════════════════════════════════ */
.rdr { padding: 160px 0; text-align: center; position: relative; overflow: hidden; }
.rdr__orb1 { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, var(--cy-gm) 0%, transparent 55%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; animation: orbDrift 7s ease-in-out infinite alternate; }
.rdr__orb2 { position: absolute; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, var(--blu-g) 0%, transparent 55%); top: 30%; left: 30%; pointer-events: none; animation: orbDrift 9s ease-in-out infinite alternate-reverse; }
.rdr .ctn { position: relative; z-index: 1; }
.rdr__logo { height: 48px; width: auto; margin: 0 auto 36px; display: block; filter: drop-shadow(0 0 36px var(--cy-gm)); image-rendering: -webkit-optimize-contrast; object-fit: contain; }
.rdr h2 { font-family: var(--fd); font-size: clamp(34px, 6.5vw, 68px); font-weight: 800; letter-spacing: -.04em; color: var(--white); line-height: 1.05; margin-bottom: 20px; }
.rdr h2 span { color: var(--cy); }
.rdr p { font-size: 17px; color: var(--sec); max-width: 500px; margin: 0 auto 48px; }

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.ctc { background: var(--g0); }
.ctc__inner { text-align: center; max-width: 580px; margin: 0 auto; }
.ctc h2 { font-family: var(--fd); font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; letter-spacing: -.02em; color: var(--white); margin-bottom: 14px; }
.ctc p { color: var(--sec); font-size: 15px; margin-bottom: 32px; line-height: 1.7; }
.ctc__phone { font-family: var(--fm); font-size: 13px; color: var(--muted); margin-top: 18px; }

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq h2 { font-family: var(--fd); font-size: clamp(26px, 3.8vw, 40px); font-weight: 800; letter-spacing: -.02em; color: var(--white); margin-bottom: 44px; }
.faq__list { max-width: 760px; display: flex; flex-direction: column; gap: 2px; }
.faq__item { background: var(--g1); overflow: hidden; }
.faq__item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.faq__item:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.faq__q { padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; user-select: none; transition: color .3s ease; }
.faq__q:hover { color: var(--cy); }
.faq__q h3 { font-family: var(--fd); font-size: 15px; font-weight: 600; color: inherit; line-height: 1.4; padding-right: 18px; }
.faq__toggle { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .35s var(--eo); color: var(--muted); }
.faq__item.open .faq__toggle { transform: rotate(45deg); color: var(--cy); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .5s var(--eo); }
.faq__item.open .faq__answer { max-height: 300px; }
.faq__answer-inner { padding: 0 28px 22px; color: var(--sec); font-size: 14px; line-height: 1.8; }
.faq__answer-inner a { color: var(--cy); transition: opacity .2s; }
.faq__answer-inner a:hover { opacity: .7; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer { border-top: 1px solid rgba(255,255,255,.03); padding: 56px 0 32px; background: var(--black); }
.ft-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 36px; flex-wrap: wrap; margin-bottom: 44px; }
.ft-brand { display: flex; flex-direction: column; gap: 12px; }
.ft-brand-mark { height: 26px; display: flex; align-items: center; }
.ft-brand-mark img { height: 100%; width: auto; object-fit: contain; image-rendering: -webkit-optimize-contrast; display: block; filter: brightness(.88); }
.ft-brand-sub { font-size: 12px; color: var(--muted); max-width: 320px; line-height: 1.6; }
.ft-links { display: flex; gap: 24px; flex-wrap: wrap; }
.ft-link { font-size: 13px; color: var(--sec); transition: color .3s ease; }
.ft-link:hover { color: var(--cy); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.03); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.ft-copy { font-size: 12px; color: var(--muted); }
.ft-seo { font-size: 10px; color: rgba(255,255,255,.05); max-width: 560px; line-height: 1.5; }

/* ═══════════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════════ */
.lang-sw {
    display: flex; align-items: center; gap: 2px;
    margin-right: 16px;
}
.lang-sw a {
    font-family: var(--fm); font-size: 10px; font-weight: 500;
    letter-spacing: .04em; color: var(--muted);
    padding: 5px 8px; border-radius: 6px;
    transition: all .25s ease; text-decoration: none;
}
.lang-sw a:hover { color: var(--bright); background: rgba(255,255,255,.04); }
.lang-sw a.active {
    color: var(--cy); background: rgba(0,212,255,.06);
    border: 1px solid rgba(0,212,255,.12);
}
.snav__right { display: flex; align-items: center; }

@media (max-width: 520px) {
    .lang-sw a { padding: 4px 5px; font-size: 9px; }
    .lang-sw { gap: 1px; margin-right: 10px; }
}

/* ═══════════════════════════════════════════════
   HERO LANGUAGE SELECTOR (non-sticky, hero-level)
   ═══════════════════════════════════════════════ */
.hero__lang {
    position: absolute;
    top: 24px;
    right: 28px;
    left: auto;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    background: rgba(2, 2, 4, .35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 8px;
    opacity: 0;
    animation: heroFade .8s .1s forwards;
}
.hero__lang a {
    font-family: var(--fm);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .03em;
    color: var(--muted);
    padding: 5px 10px;
    border-radius: 5px;
    transition: all .25s ease;
    text-decoration: none;
    white-space: nowrap;
}
.hero__lang a:hover { color: var(--bright); background: rgba(255,255,255,.06); }
.hero__lang a.active {
    color: var(--cy);
    background: rgba(0, 212, 255, .08);
}
@media (max-width: 768px) {
    .hero__lang { top: 16px; right: 16px; gap: 2px; padding: 3px 4px; }
    .hero__lang a { padding: 4px 8px; font-size: 10px; }
}
@media (max-width: 400px) {
    .hero__lang { top: 12px; right: 12px; }
    .hero__lang a { padding: 4px 6px; font-size: 9px; }
}

/* ═══════════════════════════════════════════════
   MOBILE UX REFINEMENTS
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Hero brands: vertical stack on mobile */
    .hero__brands {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 16px 24px;
        border-radius: 16px;
        margin-bottom: 20px;
    }
    .hero__old-brand img { height: 32px; }
    .hero__new-brand img { height: 40px; }
    .hero__arrow-evo {
        flex-direction: row;
        gap: 8px;
    }
    .hero__arrow-evo .arrow-line { width: 24px; }
    .hero__arrow-evo span { font-size: 8px; letter-spacing: .18em; }

    /* Hero tighter spacing */
    .hero__badge { font-size: 10px; margin-bottom: 14px; letter-spacing: .18em; }
    .hero__title { margin-bottom: 16px; }
    .hero__sub { font-size: 15px; margin-bottom: 28px; line-height: 1.7; }
    .hero__actions { gap: 10px; }
    .hero__actions .btn--lg { padding: 14px 28px; font-size: 12px; }
    .hero__actions .btn--gh { padding: 14px 24px; font-size: 12px; }

    /* Cards: compact on mobile */
    .card { padding: 24px 20px; }
    .card__icon { width: 40px; height: 40px; font-size: 20px; margin-bottom: 14px; border-radius: 10px; }
    .card h3 { font-size: 15px; margin-bottom: 6px; }
    .card p { font-size: 13px; line-height: 1.6; }

    /* What We Do: tighter */
    .wwd__hd { margin-bottom: 48px; }
    .wwd__hd p { font-size: 14px; }
    .wwd__grid { gap: 12px; }

    /* Solution cards: compact */
    .sol__card { padding: 24px 20px; }
    .sol__card-icon { font-size: 22px; margin-bottom: 12px; }
    .sol__card h3 { font-size: 14px; margin-bottom: 5px; }
    .sol__card p { font-size: 12px; line-height: 1.6; }
    .sol__grid { gap: 2px; }
    .sol__hd { margin-bottom: 40px; }

    /* Decode pillars: compact */
    .dec__pill { padding: 32px 20px; }
    .dec__pill-letter { font-size: 32px; margin-bottom: 6px; }
    .dec__pill p { font-size: 12px; }
    .dec__formula { margin-bottom: 36px; }
    .dec__header { margin-bottom: 48px; }

    /* Manifesto: compact */
    .man__block { padding: 28px 24px; }
    .man__block p { font-size: 14px; line-height: 1.75; }
    .man__blocks { gap: 12px; }
    .man__close { margin-top: 48px; padding-top: 32px; }

    /* Presence: compact */
    .pres__hq { padding: 22px; }
    .pres__op { padding: 14px 18px; }
    .pres__stat { padding: 28px; }
    .pres__global { padding: 24px; }

    /* Trust: compact */
    .trust__check { padding: 20px; gap: 12px; }
    .trust__check-icon { width: 36px; height: 36px; }
    .trust__check h4 { font-size: 13px; }
    .trust__check p { font-size: 12px; }

    /* FAQ: compact */
    .faq__q { padding: 18px 20px; }
    .faq__q h3 { font-size: 14px; }
    .faq__answer-inner { padding: 0 20px 18px; font-size: 13px; }

    /* Redirect: less padding */
    .rdr { padding: 100px 0; }
    .rdr__logo { height: 40px; margin-bottom: 28px; }

    /* Contact: compact */
    .ctc__inner .btn--lg { padding: 16px 28px; font-size: 12px; }

    /* Section spacing: tighter */
    section { padding: 72px 0; }

    /* Evolution section: tighter */
    .evo__grid { gap: 40px; }
    .evo__card { padding: 28px; }
    .evo__card--old img { height: 30px; }
    .evo__card--new img { height: 36px; }

    /* Footer: compact */
    .ft-brand-sub { font-size: 11px; }
    .ft-links { gap: 16px; }
    .ft-link { font-size: 12px; }
}

/* Extra small screens */
@media (max-width: 400px) {
    .hero__brands { padding: 12px 18px; }
    .hero__old-brand img { height: 26px; }
    .hero__new-brand img { height: 34px; }
    .hero__actions { flex-direction: column; width: 100%; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .card { padding: 20px 16px; }
    .sol__card { padding: 20px 16px; }
}
