:root{
    --primary:#41aa28;
    --primary-d:#2e8a1a;
    --primary-l:#5ec441;
    --primary-soft:rgba(65,170,40,.12);
    --primary-border:rgba(65,170,40,.22);
    --blue:#4154f1;
    --blue-d:#2d3ecf;
    --blue-l:#6b7fff;
    --blue-soft:rgba(65,84,241,.10);
    --blue-border:rgba(65,84,241,.25);
    --dark:#090b12;
    --dark2:#0f1118;
    --dark3:#161a28;
    --card-bg:#111520;
    --border:rgba(65,84,241,.16);
    --border-g:rgba(65,170,40,.18);
    --text-muted:#7a85b0;
    --text-body:#c2c8e8;
    --white:#f0f2ff;
    --amber:#febc2e;
    --red:#e06c75;
    --purple:#c792ea;
    --topbar-h:60px
}
*,*::before,*::after{
    box-sizing:border-box;
    margin:0;
    padding:0
}
html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%
}
body{
    font-family:'DM Sans',sans-serif;
    background:var(--dark);
    color:var(--text-body);
    overflow-x:hidden;
    line-height:1.65
}
::-webkit-scrollbar{
    width:5px
}
::-webkit-scrollbar-track{
    background:var(--dark2)
}
::-webkit-scrollbar-thumb{
    background:var(--blue-border);
    border-radius:4px
}
body::before{
    content:'';
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:0;
    opacity:.35;
    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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E")
}
nav{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:100;
    height:var(--topbar-h);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 24px;
    background:rgba(9,11,18,.92);
    backdrop-filter:blur(20px);
    border-bottom:1px solid var(--border)
}
.nav-logo{
    display:flex;
    align-items:center;
    text-decoration:none
}
.nav-logo img{
    height:36px;
    width:auto;
    display:block
}
.nav-links{
    display:flex;
    align-items:center;
    gap:2px;
    list-style:none
}
.nav-links a{
    text-decoration:none;
    color:var(--text-muted);
    font-size:13.5px;
    font-weight:500;
    padding:6px 12px;
    border-radius:7px;
    transition:color .2s,background .2s
}
.nav-links a:hover{
    color:var(--white);
    background:var(--blue-soft)
}
.nav-cta{
    display:flex;
    align-items:center;
    gap:8px
}
.btn-ghost{
    background:none;
    border:1px solid var(--border);
    color:var(--text-body);
    font-size:13px;
    font-weight:500;
    padding:7px 16px;
    border-radius:8px;
    cursor:pointer;
    transition:border-color .2s,color .2s;
    text-decoration:none;
    font-family:'DM Sans',sans-serif
}
.btn-ghost:hover{
    border-color:var(--blue-l);
    color:var(--white)
}
.btn-primary{
    background:var(--primary);
    border:none;
    color:#fff;
    font-size:13px;
    font-weight:600;
    padding:8px 18px;
    border-radius:8px;
    cursor:pointer;
    text-decoration:none;
    transition:background .2s,transform .15s;
    white-space:nowrap;
    font-family:'DM Sans',sans-serif;
    display:inline-flex;
    align-items:center;
    gap:6px
}
.btn-primary:hover{
    background:var(--primary-d);
    transform:translateY(-1px)
}
.nav-hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    padding:4px
}
.nav-hamburger span{
    display:block;
    width:22px;
    height:2px;
    background:var(--text-body);
    border-radius:2px;
    transition:transform .25s,opacity .25s
}
.mob-nav{
    display:none;
    position:fixed;
    inset:0;
    top:var(--topbar-h);
    background:rgba(9,11,18,.98);
    backdrop-filter:blur(20px);
    z-index:99;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:32px 24px
}
.mob-nav.open{
    display:flex
}
.mob-nav a{
    font-size:17px;
    font-weight:500;
    color:var(--text-body);
    text-decoration:none;
    padding:13px 0;
    width:100%;
    text-align:center;
    border-bottom:1px solid var(--border);
    transition:color .2s
}
.mob-nav a:hover{
    color:var(--white)
}
.mob-nav .btn-primary{
    width:100%;
    justify-content:center;
    padding:14px;
    font-size:15px;
    margin-top:8px
}
.hero{
    min-height:100svh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:calc(var(--topbar-h) + 52px) 20px 64px;
    position:relative;
    text-align:center
}
.blob{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    pointer-events:none;
    z-index:0
}
.blob-green{
    width:440px;
    height:440px;
    background:rgba(65,170,40,.07);
    top:8%;
    left:-12%
}
.blob-blue{
    width:520px;
    height:520px;
    background:rgba(65,84,241,.08);
    bottom:4%;
    right:-14%
}
.hero-grid{
    position:absolute;
    inset:0;
    z-index:0;
    background-image:linear-gradient(var(--border) 1px,transparent 1px),linear-gradient(90deg,var(--border) 1px,transparent 1px);
    background-size:48px 48px;
    mask-image:radial-gradient(ellipse 80% 70% at 50% 50%,black 30%,transparent 100%)
}
.hero-content{
    position:relative;
    z-index:1;
    max-width:760px
}
.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:7px;
    background:var(--blue-soft);
    border:1px solid var(--blue-border);
    border-radius:100px;
    padding:5px 14px;
    font-size:12px;
    font-weight:500;
    color:var(--blue-l);
    margin-bottom:26px;
    animation:fadeUp .6s ease both
}
.badge-dot{
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--primary);
    box-shadow:0 0 6px var(--primary);
    animation:pulse 2s infinite;
    flex-shrink:0
}
@keyframes pulse{
    0%,100%{
        opacity:1;
        transform:scale(1)
    }
    50%{
        opacity:.5;
        transform:scale(1.35)
    }
}
.hero-title{
    font-family:'Space Mono',monospace;
    font-size:clamp(2rem,7vw,4rem);
    font-weight:700;
    color:var(--white);
    line-height:1.1;
    letter-spacing:-1px;
    margin-bottom:20px;
    animation:fadeUp .7s .1s ease both
}
.hero-title .accent{
    color:var(--primary)
}
.hero-title .accent-blue{
    color:var(--blue-l)
}
.hero-sub{
    font-size:clamp(15px,3.5vw,18px);
    color:var(--text-muted);
    max-width:520px;
    margin:0 auto 36px;
    animation:fadeUp .7s .2s ease both
}
.shorten-box{
    background:var(--card-bg);
    border:1px solid var(--border);
    border-radius:16px;
    padding:20px;
    max-width:620px;
    margin:0 auto 40px;
    animation:fadeUp .7s .3s ease both;
    box-shadow:0 4px 40px rgba(65,84,241,.07)
}
.shorten-row{
    display:flex;
    gap:8px
}
.shorten-input{
    flex:1;
    min-width:0;
    background:var(--dark3);
    border:1px solid var(--border);
    border-radius:10px;
    padding:12px 16px;
    font-size:14px;
    color:var(--white);
    font-family:'DM Sans',sans-serif;
    outline:none;
    transition:border-color .2s,box-shadow .2s
}
.shorten-input::placeholder{
    color:var(--text-muted)
}
.shorten-input:focus{
    border-color:var(--blue);
    box-shadow:0 0 0 3px var(--blue-soft)
}
.shorten-btn{
    background:var(--primary);
    border:none;
    color:#fff;
    font-size:14px;
    font-weight:600;
    padding:12px 22px;
    border-radius:10px;
    cursor:pointer;
    white-space:nowrap;
    font-family:'DM Sans',sans-serif;
    transition:background .2s,transform .15s;
    display:flex;
    align-items:center;
    gap:6px
}
.shorten-btn:hover{
    background:var(--primary-d);
    transform:translateY(-1px)
}
.shorten-result{
    display:none;
    margin-top:14px;
    background:var(--dark3);
    border:1px solid var(--border-g);
    border-radius:10px;
    padding:12px 16px;
    align-items:center;
    justify-content:space-between;
    gap:12px
}
.shorten-result.visible{
    display:flex;
    animation:fadeUp .3s ease
}
.result-link{
    font-family:'Space Mono',monospace;
    font-size:13px;
    color:var(--primary)
}
.copy-btn{
    background:var(--blue-soft);
    border:1px solid var(--blue-border);
    color:var(--blue-l);
    font-size:12px;
    font-weight:600;
    padding:5px 12px;
    border-radius:6px;
    cursor:pointer;
    transition:background .2s,color .2s;
    white-space:nowrap;
    font-family:'DM Sans',sans-serif;
    display:inline-flex;
    align-items:center;
    gap:5px
}
.copy-btn:hover{
    background:var(--blue);
    color:#fff
}
.copy-btn.copied{
    background:var(--primary-soft);
    border-color:var(--border-g);
    color:var(--primary)
}
.hero-meta{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
    color:var(--text-muted);
    font-size:13px;
    animation:fadeUp .7s .4s ease both
}
.hero-meta span{
    display:flex;
    align-items:center;
    gap:6px
}
.stats-bar{
    background:var(--dark2);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    padding:32px 20px
}
.stats-inner{
    max-width:960px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    text-align:center
}
.stat-val{
    font-family:'Space Mono',monospace;
    font-size:clamp(1.5rem,4vw,2.1rem);
    font-weight:700;
    color:var(--white)
}
.stat-val span{
    color:var(--primary)
}
.stat-lbl{
    font-size:12px;
    color:var(--text-muted);
    margin-top:5px
}
.section{
    padding:84px 20px
}
.section-inner{
    max-width:960px;
    margin:0 auto
}
.section-eyebrow{
    display:inline-block;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--primary);
    margin-bottom:12px
}
.section-title{
    font-family:'Space Mono',monospace;
    font-size:clamp(1.5rem,4vw,2.2rem);
    font-weight:700;
    color:var(--white);
    line-height:1.2;
    margin-bottom:14px
}
.section-sub{
    font-size:15px;
    color:var(--text-muted);
    max-width:480px
}
.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(262px,1fr));
    gap:16px;
    margin-top:48px
}
.feat-card{
    background:var(--card-bg);
    border:1px solid var(--border);
    border-radius:16px;
    padding:24px;
    transition:transform .25s,border-color .25s,box-shadow .25s
}
.feat-card:hover{
    transform:translateY(-4px);
    border-color:var(--blue-border);
    box-shadow:0 8px 32px rgba(65,84,241,.1)
}
.feat-card.payment-highlight{
    border-color:var(--primary-border);
    background:#0d1a0d
}
.feat-card.payment-highlight:hover{
    border-color:var(--primary);
    box-shadow:0 8px 32px rgba(65,170,40,.12)
}
.feat-icon{
    width:44px;
    height:44px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
    flex-shrink:0
}
.feat-icon.green{
    background:var(--primary-soft);
    color:var(--primary)
}
.feat-icon.blue{
    background:var(--blue-soft);
    color:var(--blue-l)
}
.feat-icon.amber{
    background:rgba(254,188,46,.12);
    color:var(--amber)
}
.feat-icon.purple{
    background:rgba(199,146,234,.12);
    color:var(--purple)
}
.feat-icon.red{
    background:rgba(224,108,117,.12);
    color:var(--red)
}
.feat-icon.teal{
    background:rgba(56,189,190,.12);
    color:#38bdbe
}
.feat-card.payment-highlight .feat-icon{
    background:var(--primary-soft);
    color:var(--primary)
}
.feat-title{
    font-family:'Space Mono',monospace;
    font-size:14px;
    font-weight:700;
    color:var(--white);
    margin-bottom:8px
}
.feat-desc{
    font-size:13.5px;
    color:var(--text-muted);
    line-height:1.65
}
.payment-section{
    background:var(--dark2);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border)
}
.payment-inner{
    max-width:960px;
    margin:0 auto;
    padding:84px 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:52px;
    align-items:center
}
.payment-visual{
    background:var(--card-bg);
    border:1px solid var(--primary-border);
    border-radius:20px;
    padding:24px
}
.pv-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px
}
.pv-label{
    font-size:11px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--text-muted)
}
.pv-live{
    display:inline-flex;
    align-items:center;
    gap:5px;
    font-size:11px;
    font-weight:600;
    color:var(--primary);
    background:var(--primary-soft);
    border:1px solid var(--primary-border);
    border-radius:100px;
    padding:3px 10px
}
.pv-live::before{
    content:'';
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--primary);
    box-shadow:0 0 5px var(--primary)
}
.pay-link-row{
    background:var(--dark3);
    border:1px solid var(--border);
    border-radius:12px;
    padding:14px 16px;
    margin-bottom:10px;
    display:flex;
    align-items:center;
    gap:12px
}
.pay-link-icon{
    width:36px;
    height:36px;
    border-radius:9px;
    background:var(--primary-soft);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0
}
.pay-link-info{
    flex:1;
    min-width:0
}
.pay-link-slug{
    font-family:'Space Mono',monospace;
    font-size:12px;
    color:var(--primary);
    margin-bottom:3px
}
.pay-link-meta{
    font-size:11px;
    color:var(--text-muted)
}
.pay-link-amount{
    font-family:'Space Mono',monospace;
    font-size:14px;
    font-weight:700;
    color:var(--white);
    white-space:nowrap
}
.pay-methods{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin-top:16px
}
.pay-method{
    background:var(--dark3);
    border:1px solid var(--border);
    border-radius:8px;
    padding:6px 12px;
    font-size:11px;
    font-weight:600;
    color:var(--text-muted);
    display:flex;
    align-items:center;
    gap:5px
}
.highlight-section{
    background:var(--dark2);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border)
}
.highlight-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:52px;
    align-items:center;
    max-width:960px;
    margin:0 auto;
    padding:84px 20px
}
.highlight-visual{
    background:var(--card-bg);
    border:1px solid var(--blue-border);
    border-radius:20px;
    padding:24px
}
.vis-label{
    font-size:11px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--text-muted);
    margin-bottom:14px
}
.lpc-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:12px
}
.lpc-url{
    font-family:'Space Mono',monospace;
    font-size:12px;
    color:var(--primary)
}
.lpc-badge{
    font-size:10px;
    padding:2px 8px;
    border-radius:100px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:4px
}
.lpc-badge.live{
    background:var(--primary-soft);
    color:var(--primary)
}
.lpc-bar-wrap{
    margin-bottom:8px
}
.lpc-bar-label{
    display:flex;
    justify-content:space-between;
    font-size:11px;
    color:var(--text-muted);
    margin-bottom:4px
}
.lpc-bar{
    height:5px;
    background:var(--dark3);
    border-radius:3px;
    overflow:hidden
}
.lpc-bar-fill{
    height:100%;
    border-radius:3px;
    background:var(--primary)
}
.lpc-bar-fill.blue{
    background:var(--blue)
}
.lpc-bar-fill.dim{
    background:var(--text-muted)
}
.device-tags{
    display:flex;
    gap:6px;
    flex-wrap:wrap;
    margin-top:12px
}
.dtag{
    font-size:11px;
    padding:3px 9px;
    border-radius:6px;
    border:1px solid var(--border);
    color:var(--text-muted);
    display:flex;
    align-items:center;
    gap:4px
}
.redirect-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    margin-top:8px
}
.r-cell{
    background:var(--dark3);
    border:1px solid var(--border);
    border-radius:10px;
    padding:10px 12px;
    text-align:center
}
.r-cell-label{
    font-size:10px;
    color:var(--text-muted);
    margin-bottom:4px
}
.r-cell-val{
    font-size:12px;
    font-weight:600;
    color:var(--white)
}
.steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:32px;
    margin-top:48px
}
.step-num{
    font-family:'Space Mono',monospace;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    color:var(--blue-l);
    margin-bottom:14px;
    display:flex;
    align-items:center;
    gap:10px
}
.step-num::after{
    content:'';
    flex:1;
    height:1px;
    background:var(--border)
}
.steps-grid .step:last-child .step-num::after{
    display:none
}
.step-title{
    font-family:'Space Mono',monospace;
    font-size:14px;
    font-weight:700;
    color:var(--white);
    margin-bottom:8px
}
.step-desc{
    font-size:13px;
    color:var(--text-muted)
}
.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(262px,1fr));
    gap:16px;
    margin-top:48px;
    align-items:start
}
.plan-card{
    background:var(--card-bg);
    border:1px solid var(--border);
    border-radius:20px;
    padding:28px;
    position:relative;
    transition:transform .25s,border-color .25s
}
.plan-card:hover{
    transform:translateY(-4px)
}
.plan-card.featured{
    border-color:var(--blue-border);
    background:#0e1020
}
.plan-badge{
    position:absolute;
    top:16px;
    right:16px;
    font-size:10px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    background:var(--primary);
    color:#fff;
    padding:3px 10px;
    border-radius:100px
}
.plan-name{
    font-family:'Space Mono',monospace;
    font-size:13px;
    font-weight:700;
    color:var(--text-muted);
    text-transform:uppercase;
    letter-spacing:1.5px;
    margin-bottom:14px
}
.plan-price{
    font-family:'Space Mono',monospace;
    font-size:2.2rem;
    font-weight:700;
    color:var(--white);
    line-height:1
}
.plan-price sup{
    font-size:1rem;
    vertical-align:super
}
.plan-price sub{
    font-size:.85rem;
    color:var(--text-muted);
    font-weight:400
}
.plan-desc{
    font-size:13px;
    color:var(--text-muted);
    margin:12px 0 20px
}
.plan-divider{
    height:1px;
    background:var(--border);
    margin-bottom:20px
}
.plan-features{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:24px
}
.plan-features li{
    display:flex;
    align-items:flex-start;
    gap:8px;
    font-size:13.5px;
    color:var(--text-body)
}
.plan-features li .chk{
    flex-shrink:0;
    margin-top:2px;
    color:var(--primary)
}
.plan-features li.muted{
    color:var(--text-muted)
}
.plan-features li.muted .chk{
    color:var(--text-muted)
}
.plan-btn{
    width:100%;
    padding:13px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    justify-content:center
}
.testi-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(262px,1fr));
    gap:16px;
    margin-top:48px
}
.testi-card{
    background:var(--card-bg);
    border:1px solid var(--border);
    border-radius:16px;
    padding:24px;
    transition:transform .25s
}
.testi-card:hover{
    transform:translateY(-3px)
}
.testi-stars{
    color:var(--amber);
    font-size:14px;
    margin-bottom:14px
}
.testi-text{
    font-size:14px;
    color:var(--text-body);
    line-height:1.7;
    margin-bottom:18px;
    font-style:italic
}
.testi-author{
    display:flex;
    align-items:center;
    gap:10px
}
.testi-avatar{
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0
}
.testi-name{
    font-size:13px;
    font-weight:600;
    color:var(--white)
}
.testi-role{
    font-size:12px;
    color:var(--text-muted)
}
.faq-list{
    margin-top:48px;
    display:flex;
    flex-direction:column;
    gap:8px;
    max-width:700px
}
.faq-item{
    background:var(--card-bg);
    border:1px solid var(--border);
    border-radius:12px;
    overflow:hidden
}
.faq-q{
    width:100%;
    background:none;
    border:none;
    text-align:left;
    padding:18px 20px;
    font-size:14.5px;
    font-weight:500;
    color:var(--white);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    font-family:'DM Sans',sans-serif;
    transition:color .2s
}
.faq-q:hover{
    color:var(--blue-l)
}
.faq-chevron{
    flex-shrink:0;
    transition:transform .25s;
    color:var(--text-muted)
}
.faq-item.open .faq-chevron{
    transform:rotate(180deg)
}
.faq-a{
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease,padding .3s;
    padding:0 20px;
    font-size:13.5px;
    color:var(--text-muted);
    line-height:1.75
}
.faq-item.open .faq-a{
    max-height:220px;
    padding:0 20px 18px
}
.cta-band{
    background:var(--dark2);
    border-top:1px solid var(--border);
    padding:84px 20px;
    text-align:center
}
.cta-band-inner{
    max-width:580px;
    margin:0 auto
}
.cta-band h2{
    font-family:'Space Mono',monospace;
    font-size:clamp(1.4rem,4vw,2rem);
    font-weight:700;
    color:var(--white);
    margin-bottom:14px
}
.cta-band p{
    font-size:15px;
    color:var(--text-muted);
    margin-bottom:30px
}
.cta-band-btns{
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap
}
.btn-big{
    padding:14px 32px;
    font-size:15px;
    border-radius:12px
}
footer{
    background:var(--dark);
    border-top:1px solid var(--border);
    padding:44px 20px 28px
}
.footer-inner{
    max-width:960px;
    margin:0 auto
}
.footer-top{
    display:grid;
    grid-template-columns:1.6fr repeat(3,1fr);
    gap:32px;
    margin-bottom:36px
}
.footer-brand p{
    font-size:13px;
    color:var(--text-muted);
    margin:14px 0 18px;
    max-width:220px;
    line-height:1.65
}
.footer-brand img{
    height:32px;
    width:auto
}
.footer-social{
    display:flex;
    gap:8px
}
.social-btn{
    width:34px;
    height:34px;
    border-radius:8px;
    background:var(--dark3);
    border:1px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--text-muted);
    text-decoration:none;
    transition:border-color .2s,color .2s,background .2s
}
.social-btn:hover{
    border-color:var(--blue-border);
    color:var(--white);
    background:var(--blue-soft)
}
.footer-col h4{
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--white);
    margin-bottom:14px
}
.footer-col ul{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:9px
}
.footer-col ul a{
    font-size:13px;
    color:var(--text-muted);
    text-decoration:none;
    transition:color .2s
}
.footer-col ul a:hover{
    color:var(--white)
}
.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    border-top:1px solid var(--border);
    padding-top:20px
}
.footer-bottom p{
    font-size:12px;
    color:var(--text-muted)
}
.footer-bottom a{
    color:var(--text-muted);
    text-decoration:none;
    transition:color .2s
}
.footer-bottom a:hover{
    color:var(--white)
}
.status-dot{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    color:var(--primary)
}
.status-dot::before{
    content:'';
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--primary);
    box-shadow:0 0 6px var(--primary)
}
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(18px)
    }
    to{
        opacity:1;
        transform:translateY(0)
    }
}
.reveal{
    opacity:0;
    transform:translateY(22px);
    transition:opacity .6s ease,transform .6s ease
}
.reveal.visible{
    opacity:1;
    transform:translateY(0)
}
@media(max-width:768px){
    .nav-links,.nav-cta{
        display:none
    }
    .nav-hamburger{
        display:flex
    }
    .shorten-row{
        flex-direction:column
    }
    .shorten-btn{
        width:100%;
        justify-content:center
    }
    .payment-inner{
        grid-template-columns:1fr;
        gap:32px
    }
    .highlight-grid{
        grid-template-columns:1fr;
        gap:32px
    }
    .steps-grid{
        grid-template-columns:1fr;
        gap:24px
    }
    .steps-grid .step .step-num::after{
        display:none
    }
    .footer-top{
        grid-template-columns:1fr 1fr
    }
    .footer-brand{
        grid-column:1/-1
    }
}
@media(max-width:420px){
    .stats-inner{
        gap:6px
    }
    .plan-badge{
        display:none
    }
}
.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border-width:0
}
