:root{
    --bg:#0B0B0F;
    --surface:#11111A;
    --surface-2:#0F0F16;

    --text:#F2F2F6;
    --muted:#A7A7B3;
    --border:rgba(255,255,255,.08);

    --red:#B80A24;
    --red-glow:#E1062C;
    --red-deep:#8A0018;

    --radius:18px;
    --container:1120px;

    --font-sans:"Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

    --fs-body:15.5px;
    --fs-small:13px;
    --fs-lead:18px;

    --lh-body:1.72;
    --lh-tight:1.08;
    --lh-title:1.15;
}

*{
    box-sizing:border-box;
}

html{
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-rendering:optimizeLegibility;
}

body{
    margin:0;
    font-family:var(--font-sans);
    font-size:var(--fs-body);
    line-height:var(--lh-body);
    font-weight:500;
    background:
        radial-gradient(900px 520px at 12% 0%, rgba(184,10,36,.05), transparent 62%),
        radial-gradient(760px 440px at 88% 10%, rgba(225,6,44,.04), transparent 66%),
        var(--bg);
    color:var(--text);
    position:relative;
}

a{
    text-decoration:none;
    color:inherit;
}

button,
input,
textarea,
select{
    font:inherit;
}

.container{
    max-width:var(--container);
    margin:0 auto;
    padding:0 20px;
}

.muted{
    color:var(--muted);
}

.maxw{
    max-width:65ch;
}

/* =========================
   Global site lines
   ========================= */

.site-lines{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    overflow:hidden;
}

.site-lines__inner{
    position:absolute;
    inset:0;
    width:min(96vw, 1920px);
    margin:0 auto;
}

.site-line{
    position:absolute;
    top:0;
    width:4px;
    height:100%;
    border-radius:999px;
    background:rgba(184,10,36,.12);
    box-shadow:
        0 0 0 1px rgba(184,10,36,.04),
        0 0 10px rgba(184,10,36,.08),
        0 0 20px rgba(184,10,36,.05);
    opacity:.55;
    overflow:hidden;
}

.site-line::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,.06),
        rgba(255,255,255,0)
    );
    opacity:.12;
}

.site-line::after{
    content:"";
    position:absolute;
    top:-24%;
    left:0;
    width:100%;
    height:24vh;
    border-radius:999px;
    background:linear-gradient(
        to bottom,
        rgba(184,10,36,0) 0%,
        rgba(184,10,36,.52) 68%,
        rgba(225,6,44,.72) 100%
    );
    box-shadow:
        0 0 10px rgba(225,6,44,.24),
        0 0 22px rgba(225,6,44,.12);
    animation:siteLineDrop 7.2s infinite;
    animation-timing-function:cubic-bezier(0.4, 0.26, 0, 0.97);
}

.site-line:nth-child(1){ left:6%; }
.site-line:nth-child(1)::after{ animation-delay:1.1s; }

.site-line:nth-child(2){ left:28%; }
.site-line:nth-child(2)::after{ animation-delay:2.6s; }

.site-line:nth-child(3){ left:50%; }
.site-line:nth-child(3)::after{ animation-delay:.2s; }

.site-line:nth-child(4){ left:72%; }
.site-line:nth-child(4)::after{ animation-delay:3.5s; }

.site-line:nth-child(5){ left:94%; }
.site-line:nth-child(5)::after{ animation-delay:1.8s; }

@keyframes siteLineDrop{
    0%{ top:-26%; }
    100%{ top:112%; }
}

/* =========================
   Layout sticky footer
   ========================= */

.layout{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    position:relative;
    z-index:1;
}

.site-main{
    flex:1;
    display:block;
    position:relative;
    z-index:1;
}

/* =========================
   Header
   ========================= */

.site-header,
.site-footer{
    position:relative;
}

.site-header{
    position:sticky;
    top:0;
    z-index:50;
    border-bottom:1px solid var(--border);
}

.header-bar{
    width:100%;
    background:rgba(11,11,15,.92);
    padding:10px 0;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:88px;
    gap:18px;
}

.logo{
    font-size:20px;
    font-weight:800;
    letter-spacing:-0.03em;
}

.nav{
    display:flex;
    gap:20px;
    align-items:center;
}

.nav a{
    color:var(--muted);
    font-size:14px;
    font-weight:600;
    letter-spacing:-0.01em;
}

.nav a:hover{
    color:var(--text);
}

/* =========================
   Buttons
   ========================= */

.btn{
    position:relative;
    overflow:hidden;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:46px;
    padding:0 18px;
    border-radius:999px;
    border:1.5px solid transparent;
    font-family:var(--font-sans);
    font-weight:700;
    font-size:14px;
    letter-spacing:-0.01em;
    line-height:1;
    text-decoration:none;
    cursor:pointer;
    isolation:isolate;
    white-space:nowrap;
    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.btn::before{
    content:"";
    position:absolute;
    inset:auto;
    width:180%;
    height:220%;
    left:-40%;
    top:120%;
    border-radius:42%;
    background:
        radial-gradient(circle at center,
        rgba(255,255,255,.22) 0%,
        rgba(255,255,255,.1) 28%,
        rgba(255,255,255,0) 62%);
    transform:translateY(0) rotate(0deg);
    opacity:0;
    transition:
        transform .9s cubic-bezier(.22,1,.36,1),
        opacity .35s ease;
    z-index:-1;
}

.btn::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,.08) 35%,
        rgba(255,255,255,.2) 50%,
        transparent 65%
    );
    transform:translateX(-130%);
    transition:transform .7s ease;
    z-index:-1;
}

.btn:hover,
.btn:focus-visible{
    transform:translateY(-2px);
    outline:none;
}

.btn:hover::before,
.btn:focus-visible::before{
    opacity:1;
    transform:translateY(-82%) rotate(18deg);
}

.btn:hover::after,
.btn:focus-visible::after{
    transform:translateX(130%);
}

.btn:active{
    transform:translateY(0);
}

.btn--primary{
    background:linear-gradient(135deg, #b80a24 0%, #8f071c 100%);
    border-color:#b80a24;
    color:#ffffff;
    box-shadow:
        0 0 0 1px rgba(184,10,36,.28),
        0 10px 28px rgba(184,10,36,.24);
}

.btn--primary:hover,
.btn--primary:focus-visible{
    background:linear-gradient(135deg, #c80c28 0%, #a30820 100%);
    border-color:#d10d2a;
    box-shadow:
        0 0 0 1px rgba(184,10,36,.4),
        0 16px 36px rgba(184,10,36,.34),
        0 0 18px rgba(184,10,36,.18);
}

.btn--outline{
    background:rgba(184,10,36,.04);
    border:2px solid #b80a24;
    color:#ffffff;
    box-shadow:
        0 0 0 1px rgba(184,10,36,.08),
        inset 0 0 0 1px rgba(184,10,36,.04);
}

.btn--outline:hover,
.btn--outline:focus-visible{
    background:#b80a24;
    border-color:#b80a24;
    color:#ffffff;
    box-shadow:
        0 14px 32px rgba(184,10,36,.28),
        0 0 16px rgba(184,10,36,.16);
}

/* =========================
   User chip
   ========================= */

.user-chip{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.03);
    transition:border-color .2s ease, transform .2s ease, background .2s ease;
}

.user-chip:hover{
    border-color:rgba(184,10,36,.55);
    background:rgba(255,255,255,.05);
    transform:translateY(-1px);
}

.user-chip__avatar{
    width:42px;
    height:42px;
    border-radius:999px;
    overflow:hidden;
    object-fit:cover;
    object-position:center;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.05);
    flex:0 0 auto;
}

.user-chip__avatar--fallback{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:999px;
    font-weight:800;
    color:var(--text);
}

.user-chip__text{
    display:flex;
    flex-direction:column;
    line-height:1.05;
    min-width:0;
}

.user-chip__hello{
    font-size:11px;
    letter-spacing:.10em;
    text-transform:uppercase;
    color:var(--muted);
    font-weight:700;
}

.user-chip__name{
    font-size:14px;
    font-weight:800;
    color:var(--text);
    max-width:200px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

/* =========================
   Burger + Mobile nav
   ========================= */

.burger{
    display:none;
    position:relative;
    flex:0 0 auto;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    padding:0;
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
    background:rgba(255,255,255,.04);
    color:var(--text);
    cursor:pointer;
    box-shadow:
        0 12px 24px rgba(0,0,0,.16),
        inset 0 1px 0 rgba(255,255,255,.04);
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
    -webkit-tap-highlight-color:transparent;
}

.burger:hover{
    border-color:rgba(184,10,36,.42);
    background:rgba(255,255,255,.06);
    box-shadow:
        0 14px 28px rgba(0,0,0,.20),
        0 0 0 1px rgba(184,10,36,.06);
}

.burger:active{
    transform:translateY(1px);
}

.burger:focus-visible{
    outline:none;
    border-color:rgba(184,10,36,.7);
    box-shadow:
        0 0 0 3px rgba(184,10,36,.16),
        0 14px 28px rgba(0,0,0,.20);
}

.burger-lines{
    position:relative;
    display:block;
    width:18px;
    height:2px;
    border-radius:999px;
    background:var(--text);
    transition:background .2s ease;
}

.burger-lines::before,
.burger-lines::after{
    content:"";
    position:absolute;
    left:0;
    width:18px;
    height:2px;
    border-radius:999px;
    background:var(--text);
    transition:
        transform .26s ease,
        top .26s ease,
        opacity .2s ease;
}

.burger-lines::before{
    top:-6px;
}

.burger-lines::after{
    top:6px;
}

.mobile-nav{
    display:none;
    position:fixed;
    inset:0;
    z-index:120;
}

.mobile-nav__backdrop{
    position:absolute;
    inset:0;
    border:0;
    padding:0;
    background:rgba(6,6,9,.82);
    opacity:0;
    pointer-events:none;
    transition:opacity .2s ease;
}

.mobile-nav__panel{
    position:absolute;
    top:10px;
    right:10px;
    left:10px;
    max-height:calc(100vh - 20px);
    overflow:auto;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    background:#11111A;
    box-shadow:
        0 24px 56px rgba(0,0,0,.34),
        0 0 0 1px rgba(255,255,255,.02);
    opacity:0;
    pointer-events:none;
    transform:translateY(-8px);
    transition:
        opacity .2s ease,
        transform .2s ease;
}

.mobile-nav__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:16px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.mobile-nav__brand{
    display:flex;
    flex-direction:column;
    gap:3px;
    min-width:0;
}

.mobile-nav__brand-name{
    font-size:17px;
    font-weight:800;
    letter-spacing:-0.03em;
    color:var(--text);
}

.mobile-nav__brand-sub{
    font-size:11px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--muted);
}

.mobile-nav__close{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    padding:0;
    border:1px solid rgba(255,255,255,.10);
    border-radius:12px;
    background:rgba(255,255,255,.04);
    color:var(--text);
    cursor:pointer;
    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease;
}

.mobile-nav__close:hover{
    border-color:rgba(184,10,36,.38);
    background:rgba(255,255,255,.06);
}

.mobile-nav__close:active{
    transform:translateY(1px);
}

.mobile-nav__main{
    display:grid;
    gap:14px;
    padding:14px;
}

.mobile-nav__links{
    display:grid;
    gap:10px;
}

.mobile-link{
    display:block;
    padding:14px 16px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.08);
    background:#151521;
    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease;
}

.mobile-link:hover{
    transform:translateY(-1px);
    border-color:rgba(184,10,36,.34);
    background:#191927;
}

.mobile-link__label{
    display:block;
    margin:0 0 4px;
    font-size:15px;
    font-weight:700;
    color:var(--text);
    letter-spacing:-0.01em;
}

.mobile-link__hint{
    display:block;
    font-size:13px;
    line-height:1.5;
    color:var(--muted);
}

.mobile-nav__actions{
    display:grid;
    gap:10px;
}

.mobile-action{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 16px;
    border-radius:14px;
    font-size:14px;
    font-weight:700;
    text-align:center;
    letter-spacing:-0.01em;
    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease,
        color .18s ease;
}

.mobile-action:hover{
    transform:translateY(-1px);
}

.mobile-action--primary{
    background:linear-gradient(135deg, #b80a24 0%, #8f071c 100%);
    border:1px solid rgba(184,10,36,.85);
    color:#fff;
    box-shadow:0 10px 22px rgba(184,10,36,.20);
}

.mobile-action--primary:hover{
    box-shadow:0 14px 28px rgba(184,10,36,.24);
}

.mobile-action--secondary{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.10);
    color:var(--text);
}

.mobile-action--secondary:hover{
    border-color:rgba(184,10,36,.30);
    background:rgba(255,255,255,.05);
}

.mobile-action--ghost{
    background:transparent;
    border:1px solid rgba(255,255,255,.10);
    color:var(--muted);
}

.mobile-action--ghost:hover{
    border-color:rgba(255,255,255,.16);
    color:var(--text);
    background:rgba(255,255,255,.03);
}

.mobile-account{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.08);
    background:#151521;
    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease;
}

.mobile-account:hover{
    transform:translateY(-1px);
    border-color:rgba(184,10,36,.34);
    background:#191927;
}

.mobile-account__avatar{
    width:44px;
    height:44px;
    border-radius:12px;
    overflow:hidden;
    object-fit:cover;
    object-position:center;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.05);
    flex:0 0 auto;
}

.mobile-account__avatar--fallback{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border-radius:12px;
    font-weight:800;
    color:var(--text);
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
    flex:0 0 auto;
}

.mobile-account__text{
    min-width:0;
    display:flex;
    flex-direction:column;
    line-height:1.15;
}

.mobile-account__eyebrow{
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--muted);
    font-weight:700;
}

.mobile-account__name{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:14px;
    font-weight:800;
    color:var(--text);
}

body.nav-open{
    overflow:hidden;
}

body.nav-open .mobile-nav__backdrop{
    opacity:1;
    pointer-events:auto;
}

body.nav-open .mobile-nav__panel{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
}

body.nav-open .burger{
    border-color:rgba(184,10,36,.42);
    background:rgba(255,255,255,.06);
}

body.nav-open .burger-lines{
    background:transparent;
}

body.nav-open .burger-lines::before{
    top:0;
    transform:rotate(45deg);
}

body.nav-open .burger-lines::after{
    top:0;
    transform:rotate(-45deg);
}

.mobile-nav__panel::-webkit-scrollbar{
    width:8px;
}

.mobile-nav__panel::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,.10);
    border-radius:999px;
}

/* =========================
   Generic helpers
   ========================= */

.section{
    padding:64px 0;
}

.kicker{
    margin:0 0 12px;
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--muted);
    font-weight:700;
}

h1,h2,h3,h4,h5,h6{
    margin:0;
    color:var(--text);
}

h1{
    margin:0 0 16px;
    font-size:clamp(38px, 5vw, 54px);
    line-height:1;
    letter-spacing:-0.05em;
    font-weight:800;
}

h2{
    margin:0 0 12px;
    font-size:clamp(28px, 3vw, 42px);
    line-height:1.05;
    letter-spacing:-0.04em;
    font-weight:800;
}

h3{
    margin:0 0 10px;
    font-size:clamp(18px, 1.6vw, 22px);
    line-height:1.2;
    letter-spacing:-0.02em;
    font-weight:700;
}

.hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.section-head{
    margin-bottom:28px;
    max-width:70ch;
}

.section-head h2{
    margin:0 0 12px;
    font-size:clamp(30px, 3vw, 52px);
    line-height:1.02;
    letter-spacing:-.03em;
}

.section-head p{
    margin:0;
    color:var(--muted);
    line-height:1.8;
}

.stitch{
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:2px;
    background:linear-gradient(90deg, rgba(184,10,36,0), rgba(184,10,36,.9), rgba(184,10,36,0));
}

.badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:7px 11px;
    border-radius:999px;
    background:rgba(184,10,36,.14);
    border:1px solid rgba(184,10,36,.35);
    color:var(--text);
    font-size:12px;
    font-weight:700;
}

.dot{
    width:8px;
    height:8px;
    border-radius:999px;
    background:rgba(184,10,36,.95);
}

.card{
    border-radius:var(--radius);
    border:1px solid var(--border);
    background:rgba(255,255,255,.03);
    padding:18px;
    transition:transform .2s ease, border-color .2s ease;
}

.card:hover{
    border-color:rgba(184,10,36,.5);
    transform:translateY(-3px);
}

.reveal{
    opacity:1;
    transform:none;
    filter:none;
}

.card,
.service-tile,
.user-chip,
.mobile-account{
    letter-spacing:-0.01em;
}

.service-tile__text,
.footer-text,
.section-head p,
.muted{
    font-size:15px;
    line-height:1.75;
}

.js-enabled .reveal{
    opacity:0;
    transform:translateY(30px) scale(.985);
    filter:blur(8px);
    transition:
        opacity .8s cubic-bezier(.2,.9,.2,1),
        transform .8s cubic-bezier(.2,.9,.2,1),
        filter .8s cubic-bezier(.2,.9,.2,1);
}

.js-enabled .reveal.is-visible{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
}

.delay-1{ --delay:90ms; }
.delay-2{ --delay:180ms; }
.delay-3{ --delay:270ms; }

.reveal{
    transition-delay:var(--delay,0ms);
}

.hero-pop{
    opacity:1;
    transform:none;
    filter:none;
}

.js-enabled .hero-pop{
    opacity:0;
    transform:translateY(24px) scale(.985);
    filter:blur(10px);
    transition:
        opacity .9s cubic-bezier(.2,.9,.2,1),
        transform .9s cubic-bezier(.2,.9,.2,1),
        filter .9s cubic-bezier(.2,.9,.2,1);
}

.js-enabled .hero-pop.is-visible{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.cta-box{
    border-radius:calc(var(--radius) + 2px);
    border:1px solid var(--border);
    background:rgba(17,17,26,.55);
    overflow:hidden;
}

.cta-line{
    height:2px;
    background:linear-gradient(90deg, rgba(184,10,36,0), rgba(184,10,36,.9), rgba(184,10,36,0));
}

.cta-content{
    padding:24px;
}

/* =========================
   Footer
   ========================= */

.site-footer{
    margin-top:56px;
    border-top:1px solid var(--border);
    background:
        radial-gradient(900px 480px at 18% 10%, rgba(184,10,36,.10), transparent 62%),
        radial-gradient(760px 420px at 82% 18%, rgba(225,6,44,.06), transparent 66%),
        linear-gradient(180deg, rgba(17,17,26,.22), rgba(11,11,15,.72));
    position:relative;
    z-index:1;
}

.footer-grid{
    padding:32px 0 24px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:18px;
    align-items:start;
}

.footer-brand{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-logo{
    font-size:18px;
    line-height:1.05;
    letter-spacing:-0.03em;
    font-weight:800;
}

.footer-text{
    margin:0;
    max-width:58ch;
    line-height:1.7;
}

.footer-links{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.footer-col{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-col__title{
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:rgba(255,255,255,.68);
    font-weight:700;
}

.footer-col a{
    display:inline-block;
    color:var(--muted);
    font-size:14px;
    line-height:1.25;
    transition:color .18s ease, transform .18s ease;
}

.footer-col a:hover{
    color:var(--text);
    transform:translateX(1px);
}

.footer-social{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:6px;
}

.social-btn{
    position:relative;
    height:44px;
    width:44px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.03);
    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.social-btn:hover{
    transform:translateY(-3px) scale(1.04);
    background:rgba(255,255,255,.06);
    border-color:rgba(255,255,255,.18);
    box-shadow:
        0 14px 30px rgba(0,0,0,.35),
        0 0 12px rgba(184,10,36,.25);
}

.social-btn:hover svg{
    transform:scale(1.08);
}

.social-btn svg{
    transition:transform .18s ease;
}

.social-btn:active{
    transform:translateY(-1px) scale(.98);
}

.social-btn[aria-label="Instagram"]:hover{
    border-color:#E4405F;
    box-shadow:
        0 14px 30px rgba(0,0,0,.35),
        0 0 14px rgba(228,64,95,.35);
}

.social-btn[aria-label="TikTok"]:hover{
    border-color:#ffffff;
    box-shadow:
        0 14px 30px rgba(0,0,0,.35),
        0 0 14px rgba(255,255,255,.25);
}

.social-btn[aria-label="WhatsApp"]:hover{
    border-color:#25D366;
    box-shadow:
        0 14px 30px rgba(0,0,0,.35),
        0 0 14px rgba(37,211,102,.35);
}

.social-btn[aria-label="Facebook"]:hover{
    border-color:#1877F2;
    box-shadow:
        0 14px 30px rgba(0,0,0,.35),
        0 0 14px rgba(24,119,242,.35);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    background:rgba(11,11,15,.55);
}

.footer-bottom__inner{
    min-height:56px;
    padding:10px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    font-size:13px;
    color:var(--muted);
}

/* =========================
   Responsive
   ========================= */

@media (max-width:980px){
    .container{
        padding:0 18px;
    }

    .header-bar{
        padding:8px 0;
    }

    .header-inner{
        min-height:72px;
        gap:12px;
    }

    .logo{
        font-size:17px;
    }

    .nav--desktop{
        display:none;
    }

    .burger{
        display:inline-flex;
    }

    .mobile-nav{
        display:block;
    }

    .grid-3{
        grid-template-columns:1fr;
    }

    .site-footer{
        margin-top:42px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:24px;
        padding:28px 16px 20px;
    }

    .footer-links{
        grid-template-columns:1fr;
        gap:22px;
    }

    .footer-bottom__inner{
        min-height:auto;
        padding:14px 16px 16px;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
        gap:6px;
        font-size:13px;
    }

    .site-line:nth-child(4),
    .site-line:nth-child(5){
        display:none;
    }

    .site-line:nth-child(1){
        left:10%;
    }

    .site-line:nth-child(2){
        left:50%;
    }

    .site-line:nth-child(3){
        left:90%;
    }
}

@media (max-width:640px){
    .container{
        padding:0 16px;
    }

    .header-inner{
        min-height:68px;
    }

    .burger{
        width:44px;
        height:44px;
    }

    .mobile-nav__panel{
        top:8px;
        right:8px;
        left:8px;
        max-height:calc(100vh - 16px);
        border-radius:20px;
    }

    .mobile-nav__top{
        padding:14px;
    }

    .mobile-nav__main{
        padding:12px;
        gap:12px;
    }

    .mobile-link{
        padding:13px 14px;
        border-radius:15px;
    }

    .mobile-link__label{
        font-size:14px;
    }

    .mobile-link__hint{
        font-size:12px;
    }

    .mobile-action{
        min-height:44px;
        border-radius:13px;
        font-size:14px;
    }

    .mobile-account{
        padding:13px;
        border-radius:15px;
    }

    .mobile-account__avatar,
    .mobile-account__avatar--fallback{
        width:42px;
        height:42px;
        border-radius:11px;
    }

    .footer-grid{
        padding:24px 16px 18px;
        gap:22px;
    }

    .footer-bottom__inner{
        padding:14px 16px 16px;
    }
}
