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

:root {
    --bg:       #07091A;
    --bg2:      #0D1030;
    --card:     rgba(255,255,255,0.028);
    --border:   rgba(255,255,255,0.07);
    --primary:  #3F51B5;
    --plight:   #5C6BC0;
    --violet:   #7C4DFF;
    --cyan:     #00E5FF;
    --text:     #DDE2FF;
    --dim:      #5D6494;
    --muted:    #2E3260;
    --high:     #F44336;
    --mid:      #FF9800;
    --low:      #26A69A;
    --green:    #4CAF50;
    --blue:     #2196F3;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.65;
}

/* ── Grain overlay ─────────────────────────────────────────────── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* ── Background blobs ──────────────────────────────────────────── */
.blobs {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0;
    overflow: hidden;
}
.blob {
    position: absolute; border-radius: 50%;
    filter: blur(130px);
}
.blob-1 {
    width: 700px; height: 700px;
    background: var(--primary); opacity: 0.1;
    top: -250px; left: -180px;
    animation: b1 22s ease-in-out infinite;
}
.blob-2 {
    width: 500px; height: 500px;
    background: var(--violet); opacity: 0.09;
    top: 35%; right: -150px;
    animation: b2 28s ease-in-out infinite;
}
.blob-3 {
    width: 350px; height: 350px;
    background: var(--cyan); opacity: 0.055;
    bottom: 5%; left: 25%;
    animation: b3 19s ease-in-out infinite;
}
@keyframes b1 { 0%,100%{transform:translate(0,0)}40%{transform:translate(70px,90px)}70%{transform:translate(-40px,50px)} }
@keyframes b2 { 0%,100%{transform:translate(0,0)}50%{transform:translate(-80px,-60px)} }
@keyframes b3 { 0%,100%{transform:translate(0,0)}33%{transform:translate(90px,-60px)}66%{transform:translate(-70px,40px)} }

/* ── Layout ────────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── Nav ───────────────────────────────────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    padding: 20px 0;
    transition: all 0.4s;
}
nav.solid {
    background: rgba(7,9,26,0.88);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.nav-row { display: flex; align-items: center; justify-content: space-between; }
.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Oxanium', sans-serif; font-size: 20px; font-weight: 800;
    color: #fff; text-decoration: none; letter-spacing: -0.4px;
}
.logo-mark {
    width: 30px; height: 30px; border-radius: 9px;
    background: linear-gradient(135deg, var(--primary), var(--violet));
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: #fff;
}
.btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--violet));
    color: #fff; border: none; padding: 10px 22px; border-radius: 50px;
    font-family: 'Exo 2', sans-serif; font-size: 14px; font-weight: 600;
    cursor: pointer; text-decoration: none;
    transition: opacity .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(63,81,181,0.35);
}
.btn-nav:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(63,81,181,0.5); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
    position: relative; z-index: 1;
    min-height: 100vh; padding: 140px 0 100px;
    display: flex; align-items: center;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}

.badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(63,81,181,0.12);
    border: 1px solid rgba(63,81,181,0.32);
    color: #9EB1FF; padding: 6px 16px; border-radius: 50px;
    font-size: 12.5px; font-weight: 600; letter-spacing: 0.2px;
    margin-bottom: 30px;
}
.badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #9EB1FF;
    animation: blink 2.2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(.7)} }

h1 {
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(46px, 5.8vw, 76px);
    font-weight: 800; line-height: 1.03;
    letter-spacing: -2.5px; color: #fff;
    margin-bottom: 24px;
}
.grad {
    background: linear-gradient(120deg, #9EB1FF 0%, #B39DFF 45%, #4DDEFF 100%);
    background-size: 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gshift 5s ease-in-out infinite alternate;
}
@keyframes gshift { 0%{background-position:0%} 100%{background-position:100%} }

.hero-sub {
    font-size: 17px; color: var(--dim); line-height: 1.75;
    max-width: 460px; margin-bottom: 42px; font-weight: 400;
}

.ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-main {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--violet));
    color: #fff; text-decoration: none;
    padding: 15px 30px; border-radius: 14px;
    font-size: 15px; font-weight: 600;
    box-shadow: 0 8px 36px rgba(63,81,181,0.42);
    transition: transform .25s, box-shadow .25s;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(63,81,181,0.58); }

.btn-line {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--text); text-decoration: none;
    padding: 15px 26px; border-radius: 14px;
    font-size: 15px; font-weight: 500;
    border: 1px solid var(--border);
    transition: border-color .2s, background .2s, transform .2s;
}
.btn-line:hover { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); transform: translateY(-2px); }

/* ── Phone mockup ──────────────────────────────────────────────── */
.phone-wrap { display: flex; justify-content: center; position: relative; }
.phone-halo {
    position: absolute; width: 310px; height: 540px;
    background: radial-gradient(ellipse, rgba(63,81,181,.22) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    pointer-events: none;
}
.phone {
    width: 258px; height: 530px;
    background: #0E1128;
    border-radius: 24px;
    border: 1.5px solid rgba(255,255,255,.13);
    overflow: hidden; position: relative;
    box-shadow:
    0 50px 100px rgba(0,0,0,.65),
    0 0 0 1px rgba(255,255,255,.04),
    inset 0 1px 0 rgba(255,255,255,.09);
    animation: pfloat 5.5s ease-in-out infinite;
}
@keyframes pfloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-13px)} }

.phone::before {
    content: '';
    position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    width: 88px; height: 24px; background: #0E1128;
    border-radius: 0 0 16px 16px; z-index: 10;
    border: 1.5px solid rgba(255,255,255,.08); border-top: none;
}
.pscreen { height: 100%; overflow: hidden; padding-top: 42px; background: #0D1025; }

.pbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px 9px;
    background: linear-gradient(135deg, #3F51B5, #5C6BC0);
}
.pbar-title { font-family: 'Oxanium',sans-serif; font-size: 15px; font-weight: 700; color: #fff; }
.pbar-icons { display: flex; gap: 8px; }
.pi { width: 20px; height: 20px; color: rgba(255,255,255,.8); }

.pfilters { display: flex; gap: 6px; padding: 7px 10px; background: #0D1025; overflow: hidden; }
.pc {
    font-size: 8.5px; padding: 3px 10px; border-radius: 20px;
    font-weight: 600; white-space: nowrap;
}
.pc.on  { background: #3F51B5; color: #fff; border: 1px solid #4a5cc0; }
.pc.off { background: rgba(63,81,181,.12); color: #9EB1FF; border: 1px solid rgba(63,81,181,.22); }

.psec {
    font-size: 8px; font-weight: 700; letter-spacing: 1.8px;
    text-transform: uppercase; color: #3F51B5;
    padding: 7px 12px 3px;
}

.pcard {
    margin: 3px 8px;
    background: #151932;
    border-radius: 11px;
    border: 1px solid rgba(255,255,255,.055);
    display: flex; overflow: hidden;
}
.pstrip { width: 4px; flex-shrink: 0; }
.pbody  { flex: 1; padding: 8px 9px; }
.ptitle { font-size: 10px; font-weight: 600; color: #DDE2FF; margin-bottom: 5px; }
.pchips { display: flex; gap: 4px; flex-wrap: wrap; }
.pk {
    font-size: 7px; padding: 2px 6px; border-radius: 7px; font-weight: 600;
}
.pk-date { background: rgba(63,81,181,.2);  color: #9EB1FF; }
.pk-time { background: rgba(63,81,181,.2);  color: #9EB1FF; }
.pk-work { background: rgba(33,150,243,.18); color: #64B5F6; }
.pk-pers { background: rgba(76,175,80,.18);  color: #81C784; }
.pk-over { background: rgba(244,67,54,.15);  color: #EF9A9A; }

/* ── Ticker ────────────────────────────────────────────────────── */
.ticker-outer {
    position: relative; z-index: 1;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.012);
    overflow: hidden; padding: 14px 0;
}
.ticker-track {
    display: flex; gap: 0;
    animation: tick 30s linear infinite;
    width: max-content;
}
@keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.tick-item {
    display: flex; align-items: center; gap: 32px;
    padding: 0 32px; white-space: nowrap;
    font-size: 12.5px; font-weight: 600; letter-spacing: 0.3px;
    color: var(--dim);
}
.tick-item strong { color: var(--plight); }
.tick-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }

/* ── Stats ─────────────────────────────────────────────────────── */
.stats { position: relative; z-index: 1; padding: 70px 0; }
.stats-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-n {
    font-family: 'Oxanium', sans-serif; font-size: 42px; font-weight: 800;
    background: linear-gradient(135deg, var(--plight), var(--violet));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1;
}
.stat-l { font-size: 13px; color: var(--dim); margin-top: 6px; font-weight: 400; }
.stat-div { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* ── Features ──────────────────────────────────────────────────── */
.features { position: relative; z-index: 1; padding: 80px 0 100px; }

.sec-eyebrow {
    display: inline-block; font-size: 11.5px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--plight); margin-bottom: 18px;
}
.sec-title {
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(30px, 3.8vw, 46px);
    font-weight: 800; line-height: 1.1; letter-spacing: -1.5px;
    color: #fff; margin-bottom: 60px; max-width: 520px;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.fcard {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 26px 22px;
    backdrop-filter: blur(20px);
    opacity: 0; transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease, border-color .3s, background .3s;
}
.fcard.show { opacity: 1; transform: translateY(0); }
.fcard:hover {
    border-color: rgba(92,107,192,.45);
    background: rgba(63,81,181,.07);
    transform: translateY(-5px) !important;
}
.fcard:nth-child(2) { transition-delay: .07s; }
.fcard:nth-child(3) { transition-delay: .14s; }
.fcard:nth-child(4) { transition-delay: .21s; }
.fcard:nth-child(5) { transition-delay: .07s; }
.fcard:nth-child(6) { transition-delay: .14s; }
.fcard:nth-child(7) { transition-delay: .21s; }
.fcard:nth-child(8) { transition-delay: .28s; }

.fcard-head {
    display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.ficon {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
    background: rgba(92,107,192,0.12);
    border: 1px solid rgba(92,107,192,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #9EB1FF;
}
.ficon svg { width: 17px; height: 17px; }
.ftitle {
    font-family: 'Oxanium', sans-serif;
    font-size: 14.5px; font-weight: 700; color: #E0E4FF;
}
.fdesc { font-size: 13px; color: var(--dim); line-height: 1.65; }

/* priority pill accents on feature cards */
.fcard .priority-row { display: flex; gap: 5px; margin-top: 14px; }
.fpill {
    height: 5px; flex: 1; border-radius: 4px;
}

/* ── Showcase ──────────────────────────────────────────────────── */
.showcase { position: relative; z-index: 1; padding: 60px 0 100px; }
.show-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.show-phones { display: flex; justify-content: center; align-items: flex-end; gap: 20px; }
.sphone {
    background: #0E1128;
    border-radius: 18px;
    border: 1.5px solid rgba(255,255,255,.11);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.55);
}
.sphone-s { width: 170px; height: 350px; transform: translateY(24px) rotate(-3deg); animation: pfloat 7s ease-in-out infinite; }
.sphone-m { width: 210px; height: 430px; animation: pfloat 5.5s ease-in-out infinite .6s; }

.sph-screen { height: 100%; padding-top: 0; background: #0A0D1F; }

.chklist {
    list-style: none; margin-top: 36px;
}
.chklist li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 15px 0; border-bottom: 1px solid var(--border);
    font-size: 14.5px; color: var(--dim);
}
.chklist li:last-child { border-bottom: none; }
.chk-ring {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--violet));
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: #fff; margin-top: 2px;
}
.chk-bold { font-weight: 600; color: #E0E4FF; display: block; margin-bottom: 2px; }

/* ── CTA ───────────────────────────────────────────────────────── */
.cta-wrap { position: relative; z-index: 1; padding: 80px 0 100px; }
.cta-box {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, rgba(63,81,181,.13), rgba(124,77,255,.13));
    border: 1px solid rgba(92,107,192,.35);
    border-radius: 32px; padding: 80px 60px;
    text-align: center;
}
.cta-box::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 360px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(92,107,192,.7), transparent);
}
.cta-box::after {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 50% 0%, rgba(63,81,181,.12) 0%, transparent 60%);
}
.cta-title {
    position: relative; z-index: 1;
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(26px, 3.5vw, 42px); font-weight: 800;
    color: #fff; letter-spacing: -1px; margin-bottom: 14px;
}
.cta-sub {
    position: relative; z-index: 1;
    color: var(--dim); font-size: 16px; margin-bottom: 38px; line-height: 1.7;
}
.cta-btns { position: relative; z-index: 1; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────────────── */
footer {
    position: relative; z-index: 1;
    border-top: 1px solid var(--border);
    padding: 40px 0 48px;
}
.foot-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot-logo { font-family: 'Oxanium',sans-serif; font-size: 18px; font-weight: 800; color: #fff; }
.foot-info { font-size: 13px; color: var(--dim); text-align: right; line-height: 1.8; }
.foot-info a { color: var(--dim); text-decoration: none; transition: color .2s; }
.foot-info a:hover { color: var(--text); }

/* ── Responsive ────────────────────────────────────────────────── */
@media(max-width:1024px) {
    .feat-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:768px) {
    .hero-grid  { grid-template-columns: 1fr; }
    .phone-wrap { order: -1; }
    .phone      { width: 220px; height: 455px; }
    .feat-grid  { grid-template-columns: repeat(2,1fr); }
    .show-grid  { grid-template-columns: 1fr; }
    .stats-row  { justify-content: center; gap: 0; }
    .stat-div   { display: none; }
    .stat-item  { min-width: 160px; }
    .cta-box    { padding: 50px 28px; }
    .foot-row   { flex-direction: column; text-align: center; }
    .foot-info  { text-align: center; }
}
@media(max-width:520px) {
    .feat-grid  { grid-template-columns: 1fr; }
    .ctas, .cta-btns { flex-direction: column; }
    .btn-main, .btn-line { width: 100%; justify-content: center; }
}
