:root{
    --bg:#f5f8fb;
    --card:#ffffff;
    --text:#101828;
    --muted:#667085;
    --line:#e5e7eb;
    --brand:#1f9d74;
    --brand2:#57c49e;
    --soft:#eaf8f2;
    --soft2:#f8fafc;
    --shadow-sm:0 6px 16px rgba(16,24,40,.05);
    --shadow-md:0 12px 24px rgba(16,24,40,.06);
    --shadow-lg:0 20px 45px rgba(16,24,40,.08);
    --radius:20px;
    --anim-fast:.18s;
    --anim:.28s;
    --anim-slow:.5s;
    --blur:0px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Inter,"Noto Sans Devanagari",sans-serif;
    color:var(--text);
    background:linear-gradient(180deg,#f9fbfd 0%, #f3f7fb 100%);
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    transition:background .25s ease,color .25s ease,border-color .25s ease;
}
a{text-decoration:none;color:inherit}
button{font:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,92vw);margin:auto}

.bg-orb{
    position:fixed;
    border-radius:50%;
    pointer-events:none;
    opacity:.18;
    z-index:-1;
}
.bg-orb.one{width:220px;height:220px;left:-60px;top:80px;background:radial-gradient(circle, rgba(31,157,116,.20), transparent 70%)}
.bg-orb.two{width:260px;height:260px;right:-60px;top:220px;background:radial-gradient(circle, rgba(59,130,246,.12), transparent 70%)}
.bg-orb.three{width:220px;height:220px;left:40%;bottom:-80px;background:radial-gradient(circle, rgba(236,72,153,.08), transparent 70%)}

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.95);
    border-bottom:1px solid rgba(229,231,235,.95);
    transition:background .25s ease,border-color .25s ease,box-shadow .25s ease,color .25s ease;
}
.site-header.scrolled{box-shadow:var(--shadow-sm)}

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    min-height:74px;
}
.brand{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
}
.brand-badge{
    width:46px;
    height:46px;
    border-radius:16px;
    background:linear-gradient(135deg,var(--brand),var(--brand2));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:var(--shadow-md);
    flex:0 0 auto;
}
.brand-title{
    font-size:18px;
    font-weight:800;
    letter-spacing:-.02em;
    color:var(--text);
}
.brand-sub{
    margin-top:2px;
    font-size:12px;
    color:var(--muted);
}
.nav-links{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}
.nav-link{
    padding:10px 14px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    color:#344054;
    transition:background var(--anim), color var(--anim), border-color var(--anim);
}
.nav-link:hover,
.nav-link.active{
    background:#f3f6fa;
    color:#111827;
}
.nav-right{
    display:flex;
    align-items:center;
    gap:10px;
}
.btn-top{
    min-height:46px;
    padding:0 16px;
    border:none;
    border-radius:14px;
    font-weight:800;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    transition:background .25s ease,color .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.btn-top.primary{
    color:#fff;
    background:linear-gradient(135deg,var(--brand),var(--brand2));
    box-shadow:var(--shadow-md);
}
.btn-top.secondary{
    background:#f3f4f6;
    color:#111827;
    border:1px solid transparent;
}
.nav-toggle{
    display:none;
    width:46px;
    height:46px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#ffffff;
    color:#111827;
    font-size:18px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    transition:background .25s ease,color .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.nav-toggle:hover{
    background:#f8fafc;
    color:#111827;
}

.mobile-drawer-backdrop{
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.35);
    z-index:1200;
    display:none;
}
.mobile-drawer-backdrop.show{display:block}

.mobile-drawer{
    position:fixed;
    top:0;
    left:-290px;
    bottom:0;
    width:280px;
    background:#fff;
    color:var(--text);
    z-index:1300;
    border-right:1px solid var(--line);
    box-shadow:var(--shadow-lg);
    padding:16px;
    transition:left var(--anim) ease,background .25s ease,border-color .25s ease,color .25s ease;
    display:flex;
    flex-direction:column;
    gap:16px;
}
.mobile-drawer.open{left:0}
.mobile-drawer-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}
.drawer-close-btn{
    width:42px;
    height:42px;
    border:1px solid var(--line);
    border-radius:12px;
    background:#ffffff;
    color:#111827;
    cursor:pointer;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .25s ease,color .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.drawer-close-btn:hover{
    background:#f8fafc;
    color:#111827;
}
.mobile-drawer-links{
    display:grid;
    gap:10px;
}
.mobile-drawer-links a{
    min-height:48px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid var(--line);
    background:#fff;
    font-weight:700;
    color:#344054;
    transition:background .25s ease,color .25s ease,border-color .25s ease;
}
.mobile-drawer-links a:hover{
    background:#f8fafc;
    color:#111827;
}
.mobile-drawer-links a i{
    width:18px;
    text-align:center;
    color:#667085;
    transition:color .25s ease;
}

.hero{padding:60px 0 34px}
.hero-grid{
    display:grid;
    grid-template-columns:1.02fr .98fr;
    gap:26px;
    align-items:center;
}
.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:var(--shadow-sm);
    color:var(--brand);
    font-size:13px;
    font-weight:800;
}
.hero h1{
    margin:18px 0 14px;
    font-size:clamp(36px,5vw,64px);
    line-height:1.02;
    letter-spacing:-.045em;
    color:var(--text);
}
.hero p{
    margin:0;
    font-size:18px;
    line-height:1.8;
    color:var(--muted);
    max-width:660px;
}
.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:24px;
}
.btn{
    min-height:54px;
    padding:0 20px;
    border-radius:16px;
    border:none;
    cursor:pointer;
    font-weight:800;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:background .25s ease,color .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.btn.primary{
    color:#fff;
    background:linear-gradient(135deg,var(--brand),var(--brand2));
    box-shadow:var(--shadow-md);
}
.btn.secondary{
    background:#fff;
    color:#111827;
    border:1px solid var(--line);
}
.hero-stats{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    margin-top:22px;
}
.stat-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    padding:14px;
    box-shadow:var(--shadow-sm);
    transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.stat-card .v{
    font-size:22px;
    font-weight:800;
    line-height:1;
    color:var(--text);
}
.stat-card .t{
    margin-top:8px;
    font-size:13px;
    line-height:1.45;
    color:var(--muted);
}

.share-row{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:16px;
}
.share-pill{
    min-height:46px;
    padding:0 16px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--line);
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    box-shadow:var(--shadow-sm);
    color:var(--text);
    transition:background .25s ease,border-color .25s ease,color .25s ease;
}

.phone-stage{
    position:relative;
    min-height:680px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.phone-glow{
    position:absolute;
    width:440px;
    height:440px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(87,196,158,.14), transparent 70%);
    pointer-events:none;
}
.phone-wrap{
    position:relative;
    width:360px;
    margin-left:auto;
    margin-right:auto;
    transform:translate3d(0,0,0);
}
.phone{
    position:relative;
    width:360px;
    height:730px;
    padding:12px;
    border-radius:42px;
    background:linear-gradient(145deg,#111827,#1f2937);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}
.phone::before{
    content:"";
    position:absolute;
    top:12px;
    left:50%;
    transform:translateX(-50%);
    width:124px;
    height:28px;
    border-radius:0 0 18px 18px;
    background:#0a0e14;
    z-index:4;
}
.phone-screen::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:30px;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
    pointer-events:none;
    z-index:1;
} 
.phone-screen{
    height:100%;
    border-radius:30px;
    background:linear-gradient(180deg,#f7fbff 0%, #ffffff 100%);
    overflow:hidden;
    position:relative;
    transition:background .25s ease;
}

.demo-splash{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#1f9d74,#64cfaa);
    color:#fff;
    z-index:15;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:16px;
    transition:opacity .35s ease, visibility .35s ease, transform .35s ease;
}
.demo-splash.hide{
    opacity:0;
    visibility:hidden;
    transform:scale(1.01);
}
.splash-logo{
    width:88px;
    height:88px;
    border-radius:28px;
    background:rgba(255,255,255,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    box-shadow:var(--shadow-md);
}
.splash-title{
    font-size:30px;
    font-weight:800;
    letter-spacing:-.03em;
}
.splash-sub{
    font-size:13px;
    opacity:.94;
}
.splash-loader{
    width:150px;
    height:6px;
    border-radius:999px;
    background:rgba(255,255,255,.26);
    overflow:hidden;
    margin-top:6px;
}
.splash-loader span{
    display:block;
    width:46%;
    height:100%;
    border-radius:999px;
    background:#fff;
}

.phone-top{
    height:68px;
    padding:18px 18px 12px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#fff;
    background:linear-gradient(135deg,#1f9d74,#66c8a6);
}
.phone-top .left{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
}
.app-mini-logo{
    width:34px;
    height:34px;
    border-radius:12px;
    background:rgba(255,255,255,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
}
.app-mini-title{
    font-size:16px;
    font-weight:800;
}
.app-mini-sub{
    font-size:11px;
    opacity:.92;
}

.phone-menu{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:8px;
    padding:10px 12px;
    background:#fff;
    border-bottom:1px solid var(--line);
    transition:background .25s ease,border-color .25s ease;
}
.phone-menu-btn{
    border:none;
    background:#f8fafc;
    border-radius:14px;
    min-height:58px;
    padding:8px 4px;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
    color:#667085;
    font-size:10px;
    font-weight:700;
    transition:background var(--anim), color var(--anim), border-color .25s ease;
}
.phone-menu-btn i{font-size:16px}
.phone-menu-btn.active{
    background:var(--soft);
    color:var(--brand);
}

.phone-body{
    height:calc(100% - 68px - 79px - 62px);
    position:relative;
    overflow:hidden;
    background:#f7fafc;
    transition:background .25s ease;
}
.app-page{
    position:absolute;
    inset:0;
    padding:14px;
    opacity:0;
    transform:translateX(12px);
    transition:opacity .24s ease, transform .24s ease;
    pointer-events:none;
    overflow:auto;
}
.app-page.active{
    opacity:1;
    transform:translateX(0);
    pointer-events:auto;
}
.app-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow-sm);
    transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.balance-box{
    padding:16px;
    border-radius:18px;
    background:linear-gradient(135deg,#edf9f4,#ffffff);
    border:1px solid #d8efe5;
    transition:background .25s ease,border-color .25s ease;
}
.balance-label{
    font-size:12px;
    font-weight:700;
    color:#667085;
}
.balance-value{
    margin-top:8px;
    font-size:29px;
    font-weight:800;
    color:var(--brand);
}
.balance-sub{
    margin-top:8px;
    color:#667085;
    font-size:12px;
}
.grid3{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
    margin-top:12px;
}
.mini-box{
    padding:12px;
    border-radius:16px;
    background:#fff;
    border:1px solid var(--line);
    transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.mini-box .n{
    font-size:16px;
    font-weight:800;
    color:var(--text);
}
.mini-box .s{
    margin-top:4px;
    font-size:11px;
    color:#667085;
    line-height:1.35;
}
.customer-list{
    display:grid;
    gap:10px;
    margin-top:12px;
}
.customer-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:12px;
    border-radius:16px;
    background:#fff;
    border:1px solid var(--line);
    transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.customer-left{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
}
.avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    background:linear-gradient(135deg,#e9f8f2,#dff5eb);
    color:var(--brand);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    flex:0 0 auto;
    transition:background .25s ease,color .25s ease;
}
.customer-name{
    font-size:14px;
    font-weight:800;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    color:var(--text);
}
.customer-sub{
    margin-top:4px;
    font-size:11px;
    color:#667085;
}
.customer-amt{
    font-size:14px;
    font-weight:800;
}
.red{color:#d54f4f}
.green{color:#1f9d74}

.quick-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    margin-top:12px;
}
.quick-btn{
    padding:14px;
    border-radius:16px;
    border:1px solid var(--line);
    background:#fff;
    transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.quick-btn i{
    color:var(--brand);
    font-size:18px;
}
.quick-btn .t{
    margin-top:8px;
    font-size:13px;
    font-weight:800;
    color:var(--text);
}
.quick-btn .s{
    margin-top:4px;
    font-size:11px;
    line-height:1.45;
    color:#667085;
}
.page-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:12px;
}
.page-title{
    font-size:20px;
    font-weight:800;
    color:var(--text);
}
.page-desc{
    margin-top:4px;
    font-size:12px;
    color:#667085;
}
.soft-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:36px;
    padding:0 12px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--line);
    font-size:12px;
    font-weight:800;
    color:var(--text);
    transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.progress{
    height:10px;
    border-radius:999px;
    background:#eef2f7;
    overflow:hidden;
    margin-top:12px;
    transition:background .25s ease;
}
.progress span{
    display:block;
    height:100%;
    width:72%;
    border-radius:999px;
    background:linear-gradient(135deg,var(--brand),var(--brand2));
}
.setting-list{display:grid;gap:10px}
.setting-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    padding:13px 14px;
    border-radius:16px;
    border:1px solid var(--line);
    background:#fff;
    transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.setting-left .h{
    font-size:14px;
    font-weight:800;
    color:var(--text);
}
.setting-left .d{
    margin-top:4px;
    color:#667085;
    font-size:11px;
}
.switch{
    width:52px;
    height:30px;
    border-radius:999px;
    background:#d9e0e8;
    position:relative;
    transition:background .25s ease;
}
.switch::after{
    content:"";
    position:absolute;
    top:4px;
    left:4px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 2px 6px rgba(0,0,0,.10);
}
.switch.on{background:linear-gradient(135deg,var(--brand),var(--brand2))}
.switch.on::after{left:26px}

.choice-group{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    justify-content:flex-end;
}
.choice-btn{
    min-height:36px;
    padding:0 12px;
    border:none;
    border-radius:999px;
    background:#eef2f7;
    color:#344054;
    font-size:12px;
    font-weight:800;
    cursor:pointer;
    transition:all .2s ease;
}
.choice-btn.active{
    background:linear-gradient(135deg,var(--brand),var(--brand2));
    color:#fff;
}

.phone-bottom{
    height:62px;
    border-top:1px solid var(--line);
    background:#fff;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:6px;
    padding:8px 10px;
    transition:background .25s ease,border-color .25s ease;
}
.bottom-btn{
    border:none;
    background:transparent;
    border-radius:14px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    font-size:10px;
    font-weight:700;
    color:#667085;
    cursor:pointer;
    transition:background .25s ease,color .25s ease;
}
.bottom-btn i{font-size:16px}
.bottom-btn.active{
    background:#f3faf7;
    color:var(--brand);
}

.float-badge{
    position:absolute;
    z-index:5;
    min-width:150px;
    padding:12px 14px;
    border-radius:18px;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(229,231,235,.96);
    box-shadow:var(--shadow-md);
    color:var(--text);
}
.float-badge .x{
    font-size:14px;
    font-weight:800;
    color:var(--text);
}
.float-badge .y{
    margin-top:4px;
    font-size:12px;
    color:#667085;
    line-height:1.45;
}
.fb1{left:-60px;top:94px}
.fb2{right:-72px;top:154px}
.fb3{right:-56px;bottom:106px}



.section{padding:78px 0}
.section-head{
    text-align:center;
    max-width:760px;
    margin:0 auto 42px;
}
.section-head h2{
    margin:0;
    font-size:clamp(30px,4vw,48px);
    line-height:1.06;
    letter-spacing:-.04em;
    color:var(--text);
}
.section-head p{
    margin:16px auto 0;
    font-size:17px;
    line-height:1.8;
    color:var(--muted);
}
.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.feature-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    padding:22px;
    box-shadow:var(--shadow-sm);
    transition:transform var(--anim), box-shadow var(--anim), background .25s ease,border-color .25s ease,color .25s ease;
}
.feature-card:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow-md);
}
.feature-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    background:linear-gradient(135deg,#ebf8f2,#eef4ff);
    color:var(--brand);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}
.feature-card h3{
    margin:16px 0 10px;
    font-size:20px;
    color:var(--text);
}
.feature-card p{
    margin:0;
    font-size:15px;
    line-height:1.75;
    color:var(--muted);
}
.split-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}
.info-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:28px;
    padding:22px;
    box-shadow:var(--shadow-sm);
    transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.step-list{display:grid;gap:14px}
.step-row{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:14px;
    border-radius:18px;
    background:#fafcff;
    border:1px solid var(--line);
    transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.step-no{
    width:38px;
    height:38px;
    border-radius:12px;
    background:var(--soft);
    color:var(--brand);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    flex:0 0 auto;
}
.step-row h4{
    margin:0 0 6px;
    font-size:16px;
    color:var(--text);
}
.step-row p{
    margin:0;
    font-size:14px;
    color:var(--muted);
    line-height:1.65;
}
.benefit-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}
.benefit{
    display:flex;
    gap:14px;
    padding:18px;
    border-radius:22px;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:var(--shadow-sm);
    transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.benefit i{
    width:46px;
    height:46px;
    border-radius:14px;
    background:var(--soft);
    color:var(--brand);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex:0 0 auto;
}
.benefit h4{
    margin:0 0 6px;
    font-size:18px;
    color:var(--text);
}
.benefit p{
    margin:0;
    font-size:14px;
    line-height:1.7;
    color:var(--muted);
}

.cta{padding:86px 0}
.cta-box{
    position:relative;
    overflow:hidden;
    border-radius:34px;
    padding:34px;
    background:linear-gradient(135deg,#1f9d74 0%, #54c39d 60%, #6ed2ac 100%);
    color:#fff;
    box-shadow:0 22px 55px rgba(31,157,116,.18);
}
.cta-box::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-60px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.10);
}
.cta-box h2{
    position:relative;
    margin:0;
    font-size:clamp(30px,4vw,46px);
    line-height:1.06;
    max-width:760px;
    letter-spacing:-.04em;
}
.cta-box p{
    position:relative;
    margin:16px 0 0;
    max-width:700px;
    font-size:17px;
    line-height:1.8;
    color:rgba(255,255,255,.92);
}
.cta-actions{
    position:relative;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:24px;
}
.btn.white{
    background:#fff;
    color:#111827;
}
.btn.glass{
    background:rgba(255,255,255,.14);
    color:#fff;
    border:1px solid rgba(255,255,255,.20);
}

.footer{
    padding:28px 0 44px;
    text-align:center;
    color:#667085;
    font-size:14px;
    transition:color .25s ease;
}

.reveal{opacity:1;transform:none}
.reveal.ready{
    opacity:0;
    transform:translateY(18px);
    transition:opacity .45s ease, transform .45s ease;
}
.reveal.ready.in{
    opacity:1;
    transform:none;
}

/* theme dark */
body.theme-dark{
    --bg:#0b1220;
    --card:#101827;
    --text:#f3f4f6;
    --muted:#98a2b3;
    --line:#1f2937;
    --brand:#34d399;
    --brand2:#10b981;
    --soft:#0f2b24;
    --soft2:#111827;
    --shadow-sm:0 6px 16px rgba(0,0,0,.28);
    --shadow-md:0 12px 24px rgba(0,0,0,.32);
    --shadow-lg:0 20px 45px rgba(0,0,0,.42);
}
body.theme-dark{
    background:linear-gradient(180deg,#07111d 0%, #0b1220 100%);
}
body.theme-dark .site-header{
    background:rgba(10,14,20,.92);
    border-bottom:1px solid rgba(31,41,55,.95);
}
body.theme-dark .brand-title{color:var(--text)}
body.theme-dark .mobile-drawer{
    background:#0f172a;
    border-right:1px solid var(--line);
}
body.theme-dark .mobile-drawer-links a,
body.theme-dark .feature-card,
body.theme-dark .info-card,
body.theme-dark .stat-card,
body.theme-dark .share-pill,
body.theme-dark .app-card,
body.theme-dark .customer-row,
body.theme-dark .mini-box,
body.theme-dark .quick-btn,
body.theme-dark .setting-row,
body.theme-dark .soft-pill,
body.theme-dark .drawer-setting-box{
    background:var(--card);
    border-color:var(--line);
    color:var(--text);
}
body.theme-dark .balance-box{
    background:linear-gradient(135deg,#0d1f1a,#111827);
    border-color:#1b3a31;
}
body.theme-dark .phone-screen{
    background:linear-gradient(180deg,#0f172a 0%, #111827 100%);
}
body.theme-dark .phone-body{
    background:#0b1220;
}
body.theme-dark .phone-menu,
body.theme-dark .phone-bottom{
    background:#0f172a;
    border-color:var(--line);
}
body.theme-dark .phone-menu-btn,
body.theme-dark .bottom-btn,
body.theme-dark .btn-top.secondary,
body.theme-dark .btn.secondary,
body.theme-dark .nav-toggle,
body.theme-dark .drawer-close-btn{
    background:#111827;
    color:#f3f4f6;
    border-color:var(--line);
}
body.theme-dark .nav-toggle:hover,
body.theme-dark .drawer-close-btn:hover{
    background:#1f2937;
    color:#ffffff;
}
body.theme-dark .choice-btn{
    background:#111827;
    color:#e5e7eb;
    border:1px solid var(--line);
}
body.theme-dark .nav-link{
    color:#d1d5db;
}
body.theme-dark .nav-link:hover,
body.theme-dark .nav-link.active{
    background:#111827;
    color:#fff;
}
body.theme-dark .mobile-drawer-links a{
    background:#111827;
    color:#f3f4f6;
}
body.theme-dark .mobile-drawer-links a:hover{
    background:#172033;
    color:#ffffff;
}
body.theme-dark .mobile-drawer-links a i{
    color:#cbd5e1;
}
body.theme-dark .section-head p,
body.theme-dark .hero p,
body.theme-dark .feature-card p,
body.theme-dark .benefit p,
body.theme-dark .step-row p,
body.theme-dark .page-desc,
body.theme-dark .customer-sub,
body.theme-dark .setting-left .d,
body.theme-dark .balance-sub,
body.theme-dark .stat-card .t,
body.theme-dark .mini-box .s,
body.theme-dark .quick-btn .s,
body.theme-dark .brand-sub,
body.theme-dark .drawer-setting-sub{
    color:var(--muted);
}
body.theme-dark .step-row{
    background:#0f172a;
    border-color:var(--line);
}
body.theme-dark .avatar{
    background:linear-gradient(135deg,#0f2b24,#12352d);
}
body.theme-dark .progress{
    background:#17202f;
}
body.theme-dark .switch{
    background:#243041;
}
body.theme-dark .footer{
    color:#98a2b3;
}
body.theme-dark .change-box{
    background:rgba(15,23,42,.96);
    border-color:rgba(31,41,55,.96);
}
body.theme-dark .change-progress{
    background:#1e293b;
}
body.theme-dark .float-badge{
    background:rgba(15,23,42,.96);
    border-color:rgba(31,41,55,.96);
    color:var(--text);
}
body.theme-dark .float-badge .x{color:var(--text)}
body.theme-dark .float-badge .y{color:var(--muted)}
body.theme-dark .eyebrow{
    background:#101827;
    border-color:var(--line);
    color:var(--brand);
}
body.theme-dark .step-row h4,
body.theme-dark .benefit h4,
body.theme-dark .feature-card h3,
body.theme-dark .mini-box .n,
body.theme-dark .page-title,
body.theme-dark .customer-name,
body.theme-dark .setting-left .h,
body.theme-dark .stat-card .v{
    color:var(--text);
}
body.theme-dark .choice-btn.active{
    background:linear-gradient(135deg,var(--brand),var(--brand2));
    color:#fff;
    border-color:transparent;
}
body.theme-dark .bottom-btn.active{
    background:#0f2b24;
    color:var(--brand);
}

/* changing overlay */
.change-overlay{
    position:fixed;
    inset:0;
    background:rgba(255,255,255,.35);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:3000;
    opacity:0;
    visibility:hidden;
    transition:opacity .25s ease, visibility .25s ease;
}
.change-overlay.show{
    opacity:1;
    visibility:visible;
}
body.theme-dark .change-overlay{
    background:rgba(2,6,23,.45);
}
.change-box{
    width:min(92vw,380px);
    background:rgba(255,255,255,.96);
    border:1px solid rgba(229,231,235,.96);
    border-radius:24px;
    box-shadow:var(--shadow-lg);
    padding:22px;
    text-align:center;
}
.change-icon{
    width:62px;
    height:62px;
    margin:0 auto 14px;
    border-radius:20px;
    background:linear-gradient(135deg,var(--brand),var(--brand2));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}
.change-title{
    font-size:20px;
    font-weight:800;
    color:var(--text);
}
.change-sub{
    margin-top:8px;
    font-size:13px;
    line-height:1.6;
    color:var(--muted);
}
.change-progress{
    margin-top:16px;
    height:10px;
    border-radius:999px;
    background:#edf2f7;
    overflow:hidden;
}
.change-progress-bar{
    width:0%;
    height:100%;
    border-radius:999px;
    background:linear-gradient(135deg,var(--brand),var(--brand2));
    transition:width .9s ease;
}
.change-toast{
    position:fixed;
    left:50%;
    bottom:24px;
    transform:translateX(-50%) translateY(14px);
    min-width:min(92vw,320px);
    max-width:92vw;
    padding:14px 18px;
    border-radius:16px;
    background:rgba(17,24,39,.96);
    color:#fff;
    box-shadow:var(--shadow-lg);
    z-index:3100;
    font-size:14px;
    font-weight:700;
    opacity:0;
    visibility:hidden;
    transition:all .25s ease;
    text-align:center;
}
.change-toast.show{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

/* iPhone / iOS / low graphics */
body.low-graphics,
body.low-graphics *{
    animation:none !important;
}
body.low-graphics .bg-orb,
body.low-graphics .phone-glow,
body.low-graphics .float-badge{
    display:none !important;
}
body.low-graphics .site-header{
    backdrop-filter:none !important;
}
body.low-graphics .feature-card:hover{
    transform:none !important;
    box-shadow:var(--shadow-sm) !important;
}
body.low-graphics .app-page{
    transition:none !important;
}
body.low-graphics .demo-splash{
    transition:opacity .2s ease !important;
}
body.low-graphics .brand-badge,
body.low-graphics .btn.primary,
body.low-graphics .btn-top.primary,
body.low-graphics .cta-box,
body.low-graphics .phone,
body.low-graphics .feature-card,
body.low-graphics .info-card,
body.low-graphics .benefit,
body.low-graphics .stat-card,
body.low-graphics .share-pill{
    box-shadow:var(--shadow-sm) !important;
}
body.low-graphics .phone-wrap{
    transform:none !important;
}

/* Android lightweight */
body.android-lite .bg-orb{opacity:.12}
body.android-lite .float-badge{display:none}
body.android-lite .feature-card:hover{transform:none}
body.android-lite .phone-wrap{transform:none !important}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
    *{animation:none !important;transition:none !important;scroll-behavior:auto !important}
    .bg-orb,.phone-glow,.float-badge{display:none !important}
}

@media (max-width:8210px){
    .hero-grid,.split-grid{grid-template-columns:1fr}
    .phone-stage{min-height:auto;padding-top:18px}
}
@media (max-width:860px){
    .feature-grid,.benefit-grid{grid-template-columns:1fr}
    .hero-stats{grid-template-columns:1fr}
    .float-badge{display:none}
    .phone-stage{justify-content:center;padding-left:0;padding-right:0}
    .phone-wrap{margin-left:auto;margin-right:auto;transform:none !important}
}
@media (max-width:760px){
    .nav-links,
    .nav-right .btn-top.secondary,
    .nav-right .btn-top.primary{display:none}
    .nav{min-height:70px}
    .brand-title{font-size:17px}
    .brand-sub{font-size:11px}
    .nav-toggle{display:inline-flex}
    .phone-wrap,.phone{width:min(88vw,340px)}
    .phone{height:700px}
}
@media (max-width:680px){
    .hero{padding-top:42px}
    .hero p,.section-head p,.cta-box p{font-size:15px}
    .hero-actions,.cta-actions{flex-direction:column}
    .btn{width:100%}
    .grid3{grid-template-columns:1fr}
    .quick-grid{grid-template-columns:1fr}
    .phone-menu{grid-template-columns:repeat(5,minmax(0,1fr));gap:6px;padding:8px}
    .phone-menu-btn{min-height:54px;font-size:9px}
    .cta-box{padding:24px}
    .share-row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
    .share-pill{justify-content:center}
    .setting-row{align-items:flex-start;flex-direction:column}
    .choice-group{justify-content:flex-start}
}
@media (max-width:430px){
    .share-row{grid-template-columns:1fr}
}

.drawer-setting-box{
    margin-top:4px;
    padding:14px;
    border:1px solid var(--line);
    border-radius:18px;
    background:#fff;
    box-shadow:var(--shadow-sm);
    transition:background .25s ease,border-color .25s ease,color .25s ease;
}
.drawer-setting-title{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    font-weight:800;
    color:var(--text);
}
.drawer-setting-title i{
    color:var(--brand);
}
.drawer-setting-sub{
    margin-top:6px;
    font-size:12px;
    line-height:1.55;
    color:var(--muted);
}
.drawer-choice-group{
    margin-top:12px;
    justify-content:flex-start;
}
.app-pad{
    padding:14px;
}
.app-space-bottom{
    margin-bottom:12px;
}
.card-title-sm,
.row-title-sm{
    font-size:14px;
    font-weight:800;
    color:var(--text);
}
.card-sub-sm,
.row-sub-sm{
    font-size:11px;
    color:var(--muted);
    margin-top:4px;
    line-height:1.5;
}
.card-title-sm{
    font-size:15px;
}
.card-sub-sm{
    font-size:12px;
    margin-top:6px;
}

.app-loading-card{
    padding:18px;
    text-align:center;
}
.loading-logo-box{
    width:72px;
    height:72px;
    border-radius:22px;
    background:linear-gradient(135deg,var(--brand),var(--brand2));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:6px auto 14px;
}
.loading-title{
    font-size:22px;
    font-weight:800;
    color:var(--text);
}
.loading-sub{
    margin-top:8px;
    color:var(--muted);
    font-size:13px;
    line-height:1.6;
}
.loading-note{
    margin-top:10px;
    font-size:12px;
    color:var(--muted);
}
.app-progress-top{
    margin-top:18px;
}
.portfolio-strip{
    padding: 6px 0 0;
}
.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
    margin-top:18px;
}
.portfolio-card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:24px;
    padding:20px;
    box-shadow:var(--shadow-sm);
    transition:transform var(--anim), box-shadow var(--anim), background .25s ease,border-color .25s ease,color .25s ease;
}
.portfolio-card:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow-md);
}
.portfolio-icon{
    width:54px;
    height:54px;
    border-radius:16px;
    background:linear-gradient(135deg,var(--soft),#eef6ff);
    color:var(--brand);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}
.portfolio-value{
    margin-top:14px;
    font-size:clamp(28px,3vw,40px);
    line-height:1;
    font-weight:800;
    letter-spacing:-.04em;
    color:var(--text);
}
.portfolio-label{
    margin-top:10px;
    font-size:15px;
    font-weight:800;
    color:var(--text);
}
.portfolio-desc{
    margin-top:8px;
    font-size:13px;
    line-height:1.65;
    color:var(--muted);
}

body.theme-dark .portfolio-card{
    background:var(--card);
    border-color:var(--line);
    color:var(--text);
}
body.theme-dark .portfolio-icon{
    background:linear-gradient(135deg,#0f2b24,#13263f);
}
body.theme-dark .portfolio-desc{
    color:var(--muted);
}

@media (max-width:980px){
    .portfolio-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}
@media (max-width:560px){
    .portfolio-grid{
        grid-template-columns:1fr;
    }
}
/* Center feature and portfolio cards */
.features-grid,
.portfolio-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:24px;
}

/* Individual card */
.feature-card,
.portfolio-card{
    max-width:420px;
    width:100%;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

/* Center icon */
.feature-icon,
.portfolio-icon{
    margin-left:auto;
    margin-right:auto;
}

/* Center text */
.feature-card h3,
.feature-card p,
.portfolio-card h3,
.portfolio-card p,
.portfolio-label,
.portfolio-desc,
.portfolio-value{
    text-align:center;
}
/* =========================================
   FORCE HERO PHONE SECTION BELOW IN ALL VIEWS
   Put this at the very bottom of the CSS file
========================================= */

.hero-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:26px !important;
    align-items:center !important;
}

.hero-grid > div:first-child{
    order:1 !important;
}

.hero-grid > div:last-child{
    order:2 !important;
}

.phone-stage{
    min-height:auto !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:visible !important;
    padding-top:18px !important;
    width:100% !important;
}

.phone-wrap{
    position:relative !important;
    width:min(88vw,360px) !important;
    margin-left:auto !important;
    margin-right:auto !important;
    transform:none !important;
}

.phone{
    width:min(88vw,360px) !important;
    height:730px !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

@media (max-width:760px){
    .phone-wrap,
    .phone{
        width:min(88vw,340px) !important;
    }

    .phone{
        height:700px !important;
    }
}

@media (max-width:680px){
    .phone-wrap,
    .phone{
        width:min(92vw,340px) !important;
    }

    .phone{
        height:680px !important;
    }
}

@media (max-width:430px){
    .phone-wrap,
    .phone{
        width:min(94vw,330px) !important;
    }

    .phone{
        height:660px !important;
    }
}
 
 /* ===== ONLY REMOVE HORIZONTAL SCROLL ===== */

html,
body{
    max-width:100%;
    overflow-x:hidden !important;
}

section,
header,
footer,
main,
div{
    max-width:100%;
}

.phone-stage{
    overflow:hidden !important;
}

.phone-wrap{
    max-width:100% !important;
}

.phone{
    max-width:100% !important;
}

.bg-orb,
.phone-glow{
    max-width:100vw !important;
    overflow:hidden !important;
}

.float-badge{
    max-width:min(220px, 60vw) !important;
}

@media (max-width:980px){
    .float-badge{
        display:none !important;
    }
}
/* =========================================
   FINAL MOBILE HORIZONTAL SWIPE FIX
========================================= */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden !important;
    overflow-x:clip !important;
}

body{
    position:relative;
}

.site-header,
.hero,
.section,
.portfolio-strip,
.cta,
.footer{
    width:100%;
    max-width:100%;
    overflow-x:clip !important;
}

/* stop decorative overflow */
.bg-orb{
    pointer-events:none;
}

.bg-orb.one{
    left:auto !important;
    right:auto !important;
}

.bg-orb.two{
    left:auto !important;
    right:auto !important;
}

.bg-orb.three{
    left:50% !important;
    transform:translateX(-50%) !important;
}

/* phone area must never overflow */
.phone-stage{
    overflow:hidden !important;
    max-width:100% !important;
}

.phone-wrap{
    max-width:100% !important;
    overflow:hidden !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

.phone{
    max-width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

/* floating badges are common overflow cause */
.float-badge{
    max-width:calc(100vw - 40px) !important;
}

@media (max-width:980px){
    .float-badge{
        display:none !important;
    }
}

/* extra safe mobile fix */
@media (max-width:760px){
    .bg-orb{
        display:none !important;
    }

    .phone-glow{
        display:none !important;
    }
}
/* =========================================================
   FINAL OVERRIDE BLOCK
   Paste at the VERY BOTTOM of CSS
========================================================= */

/* safe page width */
html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden !important;
}

body{
    position:relative;
}

/* keep container spacing */
.container{
    width:min(1180px, 92vw) !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

/* hero layout: phone below text in all views */
.hero-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:26px !important;
    align-items:center !important;
}

.hero-grid > div:first-child{
    order:1 !important;
}

.hero-grid > div:last-child{
    order:2 !important;
}

/* phone area */
.phone-stage{
    position:relative !important;
    min-height:auto !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:100% !important;
    max-width:100% !important;
    overflow:visible !important;
    padding-top:18px !important;
}

.phone-wrap{
    position:relative !important;
    width:min(88vw, 360px) !important;
    max-width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
    transform:none !important;
    overflow:visible !important;
}

.phone{
    width:min(88vw, 360px) !important;
    max-width:100% !important;
    height:730px !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

/* narration bubbles outside phone */
.float-badge{
    position:absolute !important;
    z-index:8 !important;
    width:170px !important;
    min-width:unset !important;
    max-width:170px !important;
    padding:12px 14px !important;
    border-radius:18px !important;
    background:rgba(255,255,255,.97) !important;
    border:1px solid rgba(229,231,235,.98) !important;
    box-shadow:var(--shadow-md) !important;
    color:var(--text) !important;
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}

.float-badge .x{
    font-size:13px !important;
    font-weight:800 !important;
    color:var(--text) !important;
    line-height:1.3 !important;
}

.float-badge .y{
    margin-top:5px !important;
    font-size:11px !important;
    color:var(--muted) !important;
    line-height:1.45 !important;
}

/* speech-bubble tails */
.float-badge::after{
    content:"" !important;
    position:absolute !important;
    width:14px !important;
    height:14px !important;
    background:rgba(255,255,255,.97) !important;
    border-right:1px solid rgba(229,231,235,.98) !important;
    border-bottom:1px solid rgba(229,231,235,.98) !important;
}

/* left bubble */
.fb1{
    left:-145px !important;
    right:auto !important;
    top:110px !important;
    bottom:auto !important;
}
.fb1::after{
    right:-7px !important;
    left:auto !important;
    top:28px !important;
    transform:rotate(45deg) !important;
}

/* right top bubble */
.fb2{
    right:-145px !important;
    left:auto !important;
    top:150px !important;
    bottom:auto !important;
}
.fb2::after{
    left:-7px !important;
    right:auto !important;
    top:28px !important;
    transform:rotate(225deg) !important;
}

/* right bottom bubble */
.fb3{
    right:-145px !important;
    left:auto !important;
    bottom:110px !important;
    top:auto !important;
}
.fb3::after{
    left:-7px !important;
    right:auto !important;
    top:28px !important;
    transform:rotate(225deg) !important;
}

/* dark mode bubbles */
body.theme-dark .float-badge{
    background:rgba(15,23,42,.96) !important;
    border-color:rgba(31,41,55,.96) !important;
    color:var(--text) !important;
}
body.theme-dark .float-badge::after{
    background:rgba(15,23,42,.96) !important;
    border-right:1px solid rgba(31,41,55,.96) !important;
    border-bottom:1px solid rgba(31,41,55,.96) !important;
}
body.theme-dark .float-badge .x{
    color:var(--text) !important;
}
body.theme-dark .float-badge .y{
    color:var(--muted) !important;
}

/* stop decorative overflow causing swipe */
.bg-orb,
.phone-glow{
    pointer-events:none !important;
}

@media (max-width:1100px){
    .fb1{
        left:-120px !important;
    }

    .fb2,
    .fb3{
        right:-120px !important;
    }
}

@media (max-width:980px){
    .float-badge{
        width:150px !important;
        max-width:150px !important;
    }

    .fb1{
        left:-105px !important;
        top:108px !important;
    }

    .fb2{
        right:-105px !important;
        top:148px !important;
    }

    .fb3{
        right:-105px !important;
        bottom:102px !important;
    }
}

/* mobile: hide side bubbles to avoid cramped look */
@media (max-width:760px){
    .phone-wrap,
    .phone{
        width:min(88vw, 340px) !important;
    }

    .phone{
        height:700px !important;
    }

    .float-badge{
        display:none !important;
    }

    .bg-orb,
    .phone-glow{
        display:none !important;
    }
}

@media (max-width:680px){
    .phone-wrap,
    .phone{
        width:min(92vw, 340px) !important;
    }

    .phone{
        height:680px !important;
    }
}

@media (max-width:430px){
    .phone-wrap,
    .phone{
        width:min(94vw, 330px) !important;
    }

    .phone{
        height:660px !important;
    }
}
/* =========================================
   DEVICE STYLE OVERRIDE
   iPhone = dynamic island
   Samsung = punch hole style
========================================= */

/* default phone top */
.phone::before{
    content:"";
    position:absolute;
    top:12px;
    left:50%;
    transform:translateX(-50%);
    width:124px;
    height:28px;
    border-radius:0 0 18px 18px;
    background:#0a0e14;
    z-index:4;
} 


/* iPhone 15 style dynamic island */
body.device-iphone .phone::before,
body.device-iphone15 .phone::before{
    top:16px !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    width:126px !important;
    height:34px !important;
    border-radius:999px !important;
    background:linear-gradient(180deg,#050608,#111317) !important;
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.05),
        0 2px 8px rgba(0,0,0,.30) !important;
}

/* samsung s26 style top camera hole area */
body.device-samsung .phone::before,
body.device-samsung-s26 .phone::before{
    top:14px !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    width:84px !important;
    height:18px !important;
    border-radius:999px !important;
    background:transparent !important;
    box-shadow:none !important;
}

/* samsung punch hole */
body.device-samsung .phone::after,
body.device-samsung-s26 .phone::after{
    content:"";
    position:absolute;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    width:14px;
    height:14px;
    border-radius:50%;
    background:#050608;
    box-shadow:
        0 0 0 2px rgba(255,255,255,.03),
        0 1px 4px rgba(0,0,0,.35);
    z-index:5;
    pointer-events:none;
}

/* keep original frame line for samsung by moving it to screen */
body.device-samsung .phone-screen,
body.device-samsung-s26 .phone-screen{
    position:relative;
}

body.device-samsung .phone-screen::before,
body.device-samsung-s26 .phone-screen::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:30px;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
    pointer-events:none;
    z-index:1;
}

/* iPhone dynamic island feel */
body.device-iphone .phone-top,
body.device-iphone15 .phone-top{
    padding-top:26px;
}

/* Samsung top spacing */
body.device-samsung .phone-top,
body.device-samsung-s26 .phone-top{
    padding-top:24px;
}
/* =========================================
   DEVICE TOP STYLE OVERRIDE
   Any iPhone/iOS = Dynamic Island
   Any Android = Samsung-style punch hole
========================================= */

/* iPhone / iOS dynamic island */
body.device-ios .phone::before,
body.device-dynamic-island .phone::before{
    top:16px !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    width:126px !important;
    height:34px !important;
    border-radius:999px !important;
    background:linear-gradient(180deg,#050608,#111317) !important;
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.05),
        0 2px 8px rgba(0,0,0,.32) !important;
    z-index:5 !important;
}

/* Android / Samsung style punch-hole */
body.device-android .phone::before,
body.device-punch-hole .phone::before{
    content:"" !important;
    top:15px !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    width:16px !important;
    height:16px !important;
    border-radius:50% !important;
    background:#050608 !important;
    box-shadow:
        0 0 0 2px rgba(255,255,255,.03),
        0 1px 5px rgba(0,0,0,.35) !important;
    z-index:5 !important;
}

/* spacing adjustment for iPhone island */
body.device-ios .phone-top,
body.device-dynamic-island .phone-top{
    padding-top:28px !important;
}

/* spacing adjustment for Android punch hole */
body.device-android .phone-top,
body.device-punch-hole .phone-top{
    padding-top:24px !important;
}
