/* ═══════════════════════════════════════════════════════
   styles.css  —  Uprint Landing Page
   Design DNA: mirrors SmartOMR quality tier
   Palette: dark navy · electric blue · cyan accent
═══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
    --blue: #3b6ef8;
    --blue-mid: #2557e7;
    --blue-light: #6c9dff;
    --blue-dim: rgba(59, 110, 248, .13);
    --blue-dim2: rgba(59, 110, 248, .07);
    --cyan: #22d3ee;
    --green: #22c55e;
    --red-dim: rgba(239, 68, 68, .08);
    --red-border: rgba(239, 68, 68, .18);

    --ink0: #ffffff;
    --ink1: #e2e8f0;
    --ink2: #94a3b8;
    --ink3: #64748b;
    --ink4: #334155;

    --bg0: #07101f;
    --bg1: #0b1528;
    --bg2: #0f1e36;
    --bg3: #14263f;
    --bg-lt: #f1f5fb;
    --bg-lt2: #ffffff;

    --border0: rgba(59, 110, 248, .12);
    --border1: rgba(59, 110, 248, .20);
    --border2: rgba(59, 110, 248, .30);

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;

    --sh-card: 0 2px 20px rgba(0, 0, 0, .22);
    --sh-glow: 0 0 48px rgba(59, 110, 248, .18);

    --ease: cubic-bezier(.4, 0, .2, 1);
    --dur: .22s;

    --font: 'Inter', sans-serif;
    --font-bn: 'Noto Sans Bengali', 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--bg0);
    color: var(--ink1);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

/* ── LAYOUT ── */
.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.wrap-sm {
    max-width: 600px;
    margin: 0 auto;
}

.tc {
    text-align: center;
}

.sec-hd {
    margin-bottom: 52px;
}

/* ── TYPOGRAPHY ── */
.h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.8px;
    color: var(--ink0);
}

.body-lg {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink2);
}

.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--blue-light);
    background: var(--blue-dim);
    border: 1px solid var(--border1);
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 16px;
}

/* Light-section overrides */
.lt-eyebrow {
    color: var(--blue) !important;
    background: rgba(59, 110, 248, .08) !important;
    border-color: rgba(59, 110, 248, .18) !important;
}

.lt-h2 {
    color: var(--bg0) !important;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--r-md);
    padding: 11px 22px;
    cursor: pointer;
    border: none;
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 3px 16px rgba(59, 110, 248, .36);
}

.btn-primary:hover {
    background: var(--blue-mid);
    box-shadow: 0 5px 24px rgba(59, 110, 248, .46);
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255, 255, 255, .05);
    color: var(--ink1);
    border: 1px solid rgba(255, 255, 255, .11);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .20);
    transform: translateY(-1px);
}

.btn-white {
    background: #fff;
    color: var(--bg0);
    font-weight: 800;
}

.btn-white:hover {
    background: #f0f4ff;
    transform: translateY(-1px);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
}

.pill-green {
    background: rgba(34, 197, 94, .12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, .22);
}

/* ── REVEAL ANIMATION ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}

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

.reveal[style*="--i:1"] {
    transition-delay: .10s;
}

.reveal[style*="--i:2"] {
    transition-delay: .20s;
}

.reveal[style*="--i:3"] {
    transition-delay: .30s;
}

.reveal[style*="--i:4"] {
    transition-delay: .40s;
}

.reveal[style*="--i:5"] {
    transition-delay: .50s;
}

/* ══════════════════════════════════════════
     NAV
  ══════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}

nav.scrolled {
    background: rgba(7, 16, 31, .88);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 var(--border0);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink0);
    letter-spacing: -.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo .c-blue {
    color: var(--blue-light);
}

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

.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink2);
    transition: color var(--dur);
}

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

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

.lang-toggle-wrap {
    display: flex;
    gap: 4px;
}

.btn-lang {
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: var(--r-sm);
    border: 1px solid var(--border1);
    background: transparent;
    color: var(--ink2);
    cursor: pointer;
    font-family: var(--font);
    transition: all var(--dur);
}

.btn-lang.active,
.btn-lang:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.nav-ham {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border0);
    cursor: pointer;
    color: var(--ink1);
}

.nav-ham .ham-close {
    display: none;
}

.nav-ham.open .ham-open {
    display: none;
}

.nav-ham.open .ham-close {
    display: block;
}

/* Drawer */
.nav-drawer {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 850;
    background: var(--bg1);
    border-bottom: 1px solid var(--border0);
    padding: 20px 24px 24px;
    display: none;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
}

.nav-drawer.open {
    display: flex;
}

.nav-drawer-links {
    display: flex;
    flex-direction: column;
}

.nav-drawer-links a {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink1);
    padding: 13px 0;
    border-bottom: 1px solid var(--border0);
    transition: color var(--dur);
}

.nav-drawer-links a:last-child {
    border-bottom: none;
}

.nav-drawer-links a:hover {
    color: var(--blue-light);
}

.nav-drawer-btns {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-drawer-btns .btn {
    justify-content: center;
}

/* ══════════════════════════════════════════
     HERO
  ══════════════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
    background: var(--bg0);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(59, 110, 248, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 110, 248, .055) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 40%, transparent 100%);
}

.hero-glow-a {
    position: absolute;
    width: 680px;
    height: 680px;
    top: -140px;
    left: -80px;
    background: radial-gradient(circle, rgba(37, 87, 231, .17) 0%, transparent 68%);
    pointer-events: none;
}

.hero-glow-b {
    position: absolute;
    width: 480px;
    height: 480px;
    top: 80px;
    right: -60px;
    background: radial-gradient(circle, rgba(34, 211, 238, .10) 0%, transparent 68%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-display {
    font-size: clamp(34px, 4.8vw, 56px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--ink0);
    margin-bottom: 18px;
}

.hero-display em {
    font-style: normal;
    color: var(--blue-light);
}

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink2);
    margin-bottom: 32px;
    max-width: 460px;
}

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

.hero-trust {
    margin-top: 36px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.htrust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink2);
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border0);
    border-radius: 100px;
    padding: 5px 12px;
}

.htrust-badge svg {
    color: var(--blue-light);
}

/* Hero mockup */
.hero-mockup-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-rig {
    position: relative;
    width: 380px;
    height: 480px;
}

.hc {
    position: absolute;
    background: rgba(11, 21, 40, .94);
    border: 1px solid var(--border1);
    border-radius: var(--r-lg);
    padding: 18px 20px;
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .40), 0 0 0 1px rgba(59, 110, 248, .06);
}

.hc-upload {
    width: 290px;
    top: 0;
    left: 0;
    z-index: 4;
    animation: floatA 4.2s ease-in-out infinite;
}

.hc-settings {
    width: 255px;
    top: 110px;
    right: 0;
    z-index: 3;
    animation: floatB 4.8s ease-in-out infinite .7s;
}

.hc-otp {
    width: 240px;
    bottom: 110px;
    left: 18px;
    z-index: 3;
    animation: floatA 5s ease-in-out infinite 1.1s;
}

.hc-ready {
    width: 225px;
    bottom: 10px;
    right: 8px;
    z-index: 4;
    animation: floatB 4.4s ease-in-out infinite 1.5s;
}

@keyframes floatA {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.hc-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.hc-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.hci-blue {
    background: rgba(59, 110, 248, .18);
}

.hci-cyan {
    background: rgba(34, 211, 238, .14);
}

.hci-indigo {
    background: rgba(99, 102, 241, .17);
}

.hci-green {
    background: rgba(34, 197, 94, .13);
}

.hc-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--ink2);
}

.hc-body {
    font-size: 12.5px;
    color: var(--ink1);
    line-height: 1.5;
}

.file-row {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(59, 110, 248, .08);
    border: 1px solid rgba(59, 110, 248, .14);
    border-radius: var(--r-sm);
    padding: 9px 11px;
    margin-top: 9px;
}

.file-name {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink1);
}

.file-size {
    font-size: 10.5px;
    color: var(--ink2);
}

.prog-bar {
    margin-top: 9px;
    height: 4px;
    border-radius: 2px;
    background: rgba(59, 110, 248, .14);
    overflow: hidden;
}

.prog-fill {
    height: 100%;
    width: 82%;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    border-radius: 2px;
}

.prog-done {
    font-size: 10px;
    color: var(--blue-light);
    margin-top: 5px;
    font-weight: 600;
}

.srow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(59, 110, 248, .07);
    font-size: 11.5px;
}

.srow:last-child {
    border-bottom: none;
}

.srow-lbl {
    color: var(--ink2);
}

.srow-val {
    font-weight: 700;
    color: var(--blue-light);
}

.otp-digs {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--ink0);
    text-align: center;
    background: rgba(59, 110, 248, .10);
    border: 1px solid rgba(59, 110, 248, .20);
    border-radius: var(--r-sm);
    padding: 11px;
    margin-top: 8px;
}

.otp-hint {
    font-size: 10px;
    color: var(--ink2);
    text-align: center;
    margin-top: 5px;
}

.ready-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, .07);
    border: 1px solid rgba(34, 197, 94, .18);
    border-radius: var(--r-sm);
    padding: 8px 10px;
    margin-top: 8px;
}

.ready-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e88;
    flex-shrink: 0;
}

.ready-txt {
    font-size: 11.5px;
    font-weight: 700;
    color: #4ade80;
}

.ready-loc {
    font-size: 10.5px;
    color: var(--ink2);
    margin-top: 5px;
}

/* ══════════════════════════════════════════
     STATS STRIP
  ══════════════════════════════════════════ */
#compare-stats {
    background: var(--bg1);
    border-top: 1px solid var(--border0);
    border-bottom: 1px solid var(--border0);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-badge {
    padding: 26px 16px;
    text-align: center;
    border-right: 1px solid var(--border0);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-badge:last-child {
    border-right: none;
}

.stat-badge .s-ico {
    font-size: 20px;
    margin-bottom: 3px;
}

.stat-badge .s-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink0);
    line-height: 1.3;
}

.stat-badge .s-lbl {
    font-size: 11px;
    color: var(--ink2);
    line-height: 1.4;
}

/* ══════════════════════════════════════════
     COMPARE
  ══════════════════════════════════════════ */
#compare {
    background: var(--bg0);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

#compare::after {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    right: -160px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(59, 110, 248, .09) 0%, transparent 70%);
    pointer-events: none;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: start;
}

.compare-col {
    border-radius: var(--r-xl);
    padding: 32px 28px;
}

.compare-col.pain {
    background: var(--red-dim);
    border: 1px solid var(--red-border);
}

.compare-col.gain {
    background: var(--blue-dim2);
    border: 1px solid var(--border1);
}

.compare-col-hd {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.compare-col.pain .compare-col-hd {
    color: rgba(239, 68, 68, .75);
}

.compare-col.gain .compare-col-hd {
    color: var(--blue-light);
}

.compare-col h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink1);
    margin-bottom: 20px;
    line-height: 1.3;
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 13.5px;
    color: var(--ink2);
    line-height: 1.55;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.compare-item:last-child {
    border-bottom: none;
}

.ci-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.ci-bad {
    background: rgba(239, 68, 68, .12);
    color: #f87171;
}

.ci-good {
    background: rgba(34, 197, 94, .11);
    color: #4ade80;
}

.compare-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
}

.compare-vs {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg2);
    border: 1px solid var(--border1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: var(--ink2);
    letter-spacing: .06em;
}

/* ══════════════════════════════════════════
     HOW IT WORKS
  ══════════════════════════════════════════ */
#how-it-works {
    background: var(--bg-lt);
    padding: 96px 0;
}

#how-it-works .h2 {
    color: var(--bg0);
}

#how-it-works .eyebrow {
    color: var(--blue);
    background: rgba(59, 110, 248, .08);
    border-color: rgba(59, 110, 248, .18);
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
}

.hiw-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(12.5% + 18px);
    right: calc(12.5% + 18px);
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    opacity: .25;
    z-index: 0;
}

.hiw-card-new {
    background: #fff;
    border: 1px solid rgba(59, 110, 248, .10);
    border-radius: var(--r-lg);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: box-shadow var(--dur), transform var(--dur);
    box-shadow: 0 2px 14px rgba(59, 110, 248, .06);
}

.hiw-card-new:hover {
    box-shadow: 0 8px 28px rgba(59, 110, 248, .13);
    transform: translateY(-4px);
}

.hiw-card-bg {}

.hiw-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #6c5ce7);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(59, 110, 248, .35);
}

.hiw-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(59, 110, 248, .08);
    border: 1px solid rgba(59, 110, 248, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin: 12px auto 16px;
}

.hiw-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--bg0);
    margin-bottom: 7px;
}

.hiw-card-text {
    font-size: 12.5px;
    color: var(--ink3);
    line-height: 1.6;
}

/* ══════════════════════════════════════════
     USE CASES
  ══════════════════════════════════════════ */
#use-cases {
    background: var(--bg1);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

#use-cases::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 350px;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(59, 110, 248, .08) 0%, transparent 70%);
    pointer-events: none;
}

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

.uc-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--border0);
    border-radius: var(--r-lg);
    padding: 26px 22px;
    transition: background var(--dur), border-color var(--dur), transform var(--dur);
}

.uc-card:hover {
    background: rgba(59, 110, 248, .06);
    border-color: var(--border1);
    transform: translateY(-3px);
}

.uc-emoji {
    font-size: 26px;
    margin-bottom: 13px;
}

.uc-card h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink0);
    margin-bottom: 6px;
}

.uc-card p {
    font-size: 12.5px;
    color: var(--ink2);
    line-height: 1.65;
}

/* ══════════════════════════════════════════
     PHONE FEATURE
  ══════════════════════════════════════════ */
#phone-feat {
    background: var(--bg0);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

#phone-feat::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    left: -140px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(34, 211, 238, .09) 0%, transparent 70%);
    pointer-events: none;
}

.phone-feat-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 72px;
    align-items: center;
}

/* Phone frame */
.phone-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-frame {
    width: 234px;
    background: var(--bg1);
    border: 2px solid var(--border1);
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .55), 0 0 0 6px var(--bg2), var(--sh-glow);
}

.phone-notch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 26px;
    background: var(--bg0);
}

.phone-cam {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bg3);
}

.phone-speaker {
    width: 44px;
    height: 5px;
    border-radius: 3px;
    background: var(--bg3);
}

.phone-screen {
    background: var(--bg1);
    padding-bottom: 16px;
}

.phone-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 14px;
    font-size: 8.5px;
    font-weight: 600;
    color: var(--ink2);
}

.phone-app-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: rgba(59, 110, 248, .08);
    border-bottom: 1px solid var(--border0);
}

.phone-app-hdr-title {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--ink0);
}

.phone-app-hdr-sub {
    font-size: 8.5px;
    color: var(--ink2);
    margin-top: 1px;
}

.phone-app-body {
    padding: 11px 12px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.phone-sel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg2);
    border: 1px solid var(--border0);
    border-radius: var(--r-sm);
    padding: 7px 10px;
    font-size: 9.5px;
    font-weight: 600;
    color: var(--ink1);
}

.phone-upload-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.phone-upload-half {
    background: var(--bg2);
    border: 1px solid var(--border0);
    border-radius: var(--r-sm);
    padding: 11px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 600;
    color: var(--ink2);
    text-align: center;
}

.phone-btn {
    background: var(--blue);
    color: #fff;
    text-align: center;
    border-radius: var(--r-sm);
    padding: 9px;
    font-size: 10.5px;
    font-weight: 800;
}

.phone-result-card {
    background: var(--bg0);
    border: 1px solid var(--border1);
    border-radius: var(--r-sm);
    padding: 10px 11px;
}

.phone-score {
    font-size: 26px;
    font-weight: 900;
    color: var(--ink0);
    line-height: 1;
}

.phone-score-sub {
    font-size: 9px;
    color: var(--blue-light);
    font-weight: 700;
    margin-top: 2px;
}

.phone-meta {
    font-size: 8.5px;
    color: var(--ink2);
    margin-top: 6px;
}

.phone-feat-copy {
    max-width: 480px;
}

.phone-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
}

.phone-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.phone-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), #6c5ce7);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(59, 110, 248, .30);
    margin-top: 1px;
}

.phone-step-text {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.6;
}

.phone-step-text strong {
    color: var(--ink0);
}

/* ══════════════════════════════════════════
     BENEFITS
  ══════════════════════════════════════════ */
#benefits {
    background: var(--bg-lt);
    padding: 96px 0;
}

#benefits .h2 {
    color: var(--bg0);
}

#benefits .eyebrow {
    color: var(--blue);
    background: rgba(59, 110, 248, .08);
    border-color: rgba(59, 110, 248, .18);
}

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

.ben-card {
    background: #fff;
    border: 1px solid rgba(59, 110, 248, .09);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(59, 110, 248, .05);
    transition: box-shadow var(--dur), transform var(--dur);
}

.ben-card:hover {
    box-shadow: 0 8px 26px rgba(59, 110, 248, .11);
    transform: translateY(-4px);
}

.ben-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(59, 110, 248, .11), rgba(34, 211, 238, .08));
    border: 1px solid rgba(59, 110, 248, .14);
}

.ben-card h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--bg0);
    margin-bottom: 7px;
}

.ben-card p {
    font-size: 12.5px;
    color: var(--ink3);
    line-height: 1.65;
}

/* ══════════════════════════════════════════
     FAQ
  ══════════════════════════════════════════ */
#faq {
    background: var(--bg0);
    padding: 96px 0;
    position: relative;
}

#faq::after {
    content: '';
    position: absolute;
    width: 560px;
    height: 380px;
    bottom: -60px;
    right: -80px;
    background: radial-gradient(ellipse, rgba(59, 110, 248, .07) 0%, transparent 70%);
    pointer-events: none;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border0);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color var(--dur);
}

.faq-item.open {
    border-color: var(--border1);
}

.faq-item-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
}

.faq-item-hd:hover .faq-item-q {
    color: var(--ink0);
}

.faq-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
    background: var(--blue-dim);
    border: 1px solid var(--border0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
}

.faq-item-q {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink1);
    flex: 1;
}

.faq-item-arrow {
    color: var(--ink2);
    transition: transform var(--dur);
    flex-shrink: 0;
}

.faq-item.open .faq-item-arrow {
    transform: rotate(180deg);
    color: var(--blue-light);
}

.faq-item-body {
    display: none;
    padding: 0 20px 18px 60px;
}

.faq-item.open .faq-item-body {
    display: block;
}

.faq-item-a {
    font-size: 13.5px;
    color: var(--ink2);
    line-height: 1.75;
}

/* ══════════════════════════════════════════
     FINAL CTA
  ══════════════════════════════════════════ */
#final-cta {
    background: var(--bg1);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.fcta-glow {
    position: absolute;
    width: 640px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(59, 110, 248, .17) 0%, transparent 65%);
    pointer-events: none;
}

.fcta-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 110, 248, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 110, 248, .04) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(ellipse 65% 80% at 50% 50%, black 40%, transparent 100%);
}

.fcta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.fcta-inner h2 {
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 900;
    color: var(--ink0);
    letter-spacing: -1px;
    line-height: 1.12;
    margin-bottom: 14px;
}

.fcta-inner p {
    font-size: 16px;
    color: var(--ink2);
    margin-bottom: 32px;
    line-height: 1.7;
}

.fcta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════
     FOOTER
  ══════════════════════════════════════════ */
footer {
    background: #050d19;
    border-top: 1px solid var(--border0);
    padding: 56px 0 28px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 44px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink0);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-logo-mark {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-tagline {
    font-size: 12.5px;
    color: var(--ink2);
    line-height: 1.7;
    max-width: 240px;
}

.footer-col-hd {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--ink1);
    margin-bottom: 14px;
}

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

.footer-links a {
    font-size: 12.5px;
    color: var(--ink2);
    transition: color var(--dur);
}

.footer-links a:hover {
    color: var(--blue-light);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: var(--ink2);
    transition: color var(--dur);
    line-height: 1.5;
}

.footer-contact-item:hover {
    color: var(--blue-light);
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid var(--border0);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11.5px;
    color: var(--ink3);
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a {
    font-size: 11.5px;
    color: var(--ink3);
    transition: color var(--dur);
}

.footer-bottom-links a:hover {
    color: var(--ink1);
}

/* ══════════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════════ */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-ham {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-card-rig {
        width: 330px;
        height: 420px;
    }

    .hc-upload {
        width: 250px;
    }

    .hc-settings {
        width: 220px;
    }

    .hc-otp {
        width: 210px;
    }

    .hc-ready {
        width: 200px;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-badge:nth-child(2) {
        border-right: none;
    }

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

    .compare-center {
        padding: 8px 0;
    }

    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hiw-grid::before {
        display: none;
    }

    .uc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .phone-feat-inner {
        grid-template-columns: 1fr;
    }

    .phone-visual {
        justify-content: center;
    }

    .ben-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .stats-strip {
        grid-template-columns: 1fr;
    }

    .stat-badge {
        border-right: none;
        border-bottom: 1px solid var(--border0);
    }

    .stat-badge:last-child {
        border-bottom: none;
    }

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

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

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

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-card-rig {
        width: 295px;
        height: 380px;
    }

    .hc-upload {
        width: 220px;
    }

    .hc-settings {
        width: 195px;
    }

    .hc-otp {
        width: 185px;
    }

    .hc-ready {
        width: 178px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    .hc-upload,
    .hc-settings,
    .hc-otp,
    .hc-ready {
        animation: none;
    }

    .reveal {
        transition: none;
    }
}