/* ══════════════════════════════════════════════════════════════
   TMA Store — Modern Premium SaaS Landing Page
   ══════════════════════════════════════════════════════════════ */

/* ── Accessibility / SEO ─────────────────────────────────────────────── */
.l-skip-link {
    position: absolute;
    top: -9999px; left: 0;
    background: #0d9488; color: #fff;
    padding: .5rem 1.25rem;
    border-radius: 0 0 .5rem .5rem;
    font-size: .9rem; font-weight: 600;
    z-index: 9999; text-decoration: none;
    transition: top .15s;
}
.l-skip-link:focus { top: 0; }

/* ─── Tokens ──────────────────────────────────────────────────────────── */
:root {
    /* System font stack as fallback while web fonts load (font-display:swap) */
    --f: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --f-head: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --ink:    #0f172a;
    --ink-2:  #1e293b;
    --ink-3:  #334155;
    --muted:  #64748b;
    --muted2: #94a3b8;
    --border: rgba(15,23,42,0.07);
    --bg:     #F8FAFC;
    --white:  #ffffff;

    --prim:   #0ea5e9;
    --prim-d: #0284c7;
    --prim-s: #f0f9ff;
    /* legacy alias – keeps existing var(--ind) references working */
    --ind:    #0ea5e9;
    --ind-d:  #0284c7;
    --ind-s:  #f0f9ff;
    --teal:   #059669;
    --teal-d: #047857;
    --teal-s: #ecfdf5;

    --sh-xs: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
    --sh-sm: 0 4px 16px rgba(15,23,42,0.08), 0 1px 4px rgba(15,23,42,0.04);
    --sh-md: 0 12px 40px rgba(15,23,42,0.11), 0 2px 8px rgba(15,23,42,0.05);
    --sh-lg: 0 24px 72px rgba(15,23,42,0.14), 0 4px 16px rgba(15,23,42,0.06);

    --r-sm: 0.75rem;
    --r-md: 1rem;
    --r-lg: 1.5rem;
    --r-xl: 2rem;
    --r-2xl: 2.5rem;
}

/* ─── Base ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--f);
    background: var(--white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── Container ─────────────────────────────────────────────────────────── */
.lc { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.lc-narrow { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Scroll animation ──────────────────────────────────────────────────── */
.sa {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.22,.61,.36,1);
}
.sa.vis { opacity: 1; transform: none; }
.sa.d1 { transition-delay: .08s; }
.sa.d2 { transition-delay: .16s; }
.sa.d3 { transition-delay: .24s; }
.sa.d4 { transition-delay: .32s; }
.sa.d5 { transition-delay: .40s; }
.sa.d6 { transition-delay: .48s; }

/* ─── Navbar ──────────────────────────────────────────────────────────── */
.l-nav {
    position: sticky; top: 0; z-index: 1000;
    height: 68px;
    display: flex; align-items: center;
    background: rgba(255,255,255,0.88);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid rgba(15,23,42,0.06);
    transition: box-shadow .3s ease, background .3s ease;
}
.l-nav.scrolled {
    box-shadow: 0 2px 20px rgba(15,23,42,0.08);
    background: rgba(255,255,255,0.96);
}
.l-nav-inner {
    width: 100%; display: flex; align-items: center; gap: 0;
}
.l-nav-brand {
    display: flex; align-items: center; gap: .75rem; flex-shrink: 0;
    text-decoration: none;
}
.l-nav-logo-box {
    width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--prim) 0%, var(--teal) 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 12px rgba(14,165,233,0.32);
    overflow: hidden;
}
.l-nav-logo-box img { width: 100%; height: 100%; object-fit: cover; }
.l-nav-logo-box-letter {
    color: #fff; font-weight: 900; font-size: 1.1rem; letter-spacing: -.02em;
}
.l-nav-brand-text { display: flex; flex-direction: column; gap: .05rem; }
.l-nav-name {
    font-size: .98rem; font-weight: 800; color: var(--ink);
    letter-spacing: -.025em; line-height: 1.1;
}
.l-nav-sub {
    font-size: .65rem; color: var(--muted); font-weight: 500; letter-spacing: .02em;
    line-height: 1;
}
.l-nav-links { display: flex; align-items: center; gap: .15rem; margin-left: auto; margin-right: .75rem; }
.l-nav-link {
    padding: .42rem .9rem; border-radius: 2rem; font-size: .84rem; font-weight: 500;
    color: var(--muted); transition: all .2s; border: none; background: none;
    cursor: pointer; letter-spacing: -.005em;
}
.l-nav-link:hover { color: var(--ink); background: var(--bg); }
.l-nav-right { display: flex; align-items: center; gap: .4rem; }
/* Language group */
.l-lang-group {
    display: flex; align-items: center;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 2rem; padding: .2rem; gap: .15rem;
}
.l-lang-btn {
    display: inline-flex; align-items: center; gap: .3rem;
    padding: .3rem .65rem; border-radius: 2rem;
    border: none; background: transparent;
    color: var(--muted); font-size: .78rem; font-weight: 600; font-family: var(--f);
    cursor: pointer; transition: all .2s; white-space: nowrap;
}
.l-lang-btn:hover { color: var(--ink); }
.l-lang-btn.active {
    background: var(--white); color: var(--ink);
    box-shadow: 0 1px 4px rgba(15,23,42,0.1);
}
.l-nav-cta {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .58rem 1.2rem; border-radius: 2rem;
    background: var(--ink); color: #fff !important; font-size: .84rem; font-weight: 700;
    transition: all .22s; box-shadow: 0 2px 10px rgba(15,23,42,0.2);
    white-space: nowrap; letter-spacing: -.01em;
}
.l-nav-cta:hover {
    background: var(--prim); transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(14,165,233,0.38);
}

/* ─── Hero ────────────────────────────────────────────────────────────── */
.l-hero {
    position: relative; overflow: hidden;
    padding: 6rem 0 5rem;
    background: var(--white);
}
/* Animated gradient blobs — CLS fix: contain layout+paint, will-change */
.l-hero-blobs {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    contain: layout paint;      /* prevents blobs from causing CLS outside hero */
}
.blob {
    position: absolute; border-radius: 50%;
    filter: blur(72px); opacity: .45;
    will-change: transform;     /* promote to own layer → no layout recalc */
    contain: strict;            /* isolate fully */
    animation: blob-float 8s ease-in-out infinite alternate;
}
/* Fixed pixel positions → no CLS from percentage-based layout */
.blob-1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(14,165,233,.2), transparent 70%); top: -200px; right: -80px; animation-delay: 0s; }
.blob-2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(5,150,105,.16), transparent 70%); bottom: -150px; left: -60px; animation-delay: 2.5s; }
.blob-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(14,165,233,.1), transparent 70%); top: 40%; left: 45%; animation-delay: 5s; }
@keyframes blob-float {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 30px) scale(1.06); }
}
.l-hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1.25fr;
    gap: 3rem; align-items: center;
}
.l-hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .36rem 1rem; border-radius: 2rem; margin-bottom: 1.5rem;
    background: var(--prim-s); border: 1px solid rgba(14,165,233,.3);
    color: var(--prim-d); font-size: .78rem; font-weight: 700; letter-spacing: .01em;
    /* Contrast: prim-d on prim-s = #0284c7 on #f0f9ff → ratio ≥ 5.4 */
}
.l-hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--prim); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
.l-hero h1 {
    font-family: var(--f-head);
    font-size: clamp(2.1rem, 4.5vw, 3.3rem);
    font-weight: 900; letter-spacing: -.04em; line-height: 1.08;
    color: var(--ink); margin-bottom: 1.25rem;
}
.l-hero h1 .hl {
    background: linear-gradient(130deg, var(--prim) 0%, var(--teal) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.l-hero-sub {
    font-size: 1rem; color: var(--muted); line-height: 1.7;
    max-width: 440px; margin-bottom: 2rem;
}
.l-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.25rem; }
.l-btn-primary {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 1.75rem; border-radius: 2rem;
    background: linear-gradient(135deg, var(--prim) 0%, var(--teal) 100%);
    color: #fff; font-weight: 700; font-size: .95rem;
    transition: all .25s; box-shadow: 0 4px 20px rgba(14,165,233,.36);
    border: none; cursor: pointer; letter-spacing: -.01em;
}
.l-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(14,165,233,.5); filter: brightness(1.06); color: #fff; }
.l-btn-ghost {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 1.5rem; border-radius: 2rem;
    background: transparent; color: var(--ink-3); font-weight: 600; font-size: .95rem;
    border: 1.5px solid var(--border); transition: all .22s;
}
.l-btn-ghost:hover { background: var(--bg); border-color: rgba(15,23,42,.15); color: var(--ink); transform: translateY(-1px); }

/* Hero proof / mini stats */
.l-hero-proof { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.l-proof-stat {
    display: flex; align-items: center; gap: .6rem;
    padding: .5rem 1rem .5rem 0; margin-right: 1rem;
    border-right: 1px solid var(--border);
}
.l-proof-stat:last-child { border-right: none; margin-right: 0; }
.l-proof-icon {
    width: 2rem; height: 2rem; border-radius: .5rem; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.l-proof-text { flex: 1; }
.l-proof-val { font-size: 1.1rem; font-weight: 900; letter-spacing: -.03em; color: var(--ink); line-height: 1; }
.l-proof-val.ind { color: var(--ind); }
.l-proof-val.teal { color: var(--teal); }
.l-proof-lbl { font-size: .7rem; color: var(--ink-3); font-weight: 500; margin-top: .15rem; }

/* Button shimmer effect */
@keyframes btn-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.l-btn-primary::after, .l-btn-cta::after {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%);
    background-size: 200% 100%; opacity: 0;
    transition: opacity .3s;
}
.l-btn-primary, .l-btn-cta { position: relative; overflow: hidden; }
.l-btn-primary:hover::after, .l-btn-cta:hover::after {
    opacity: 1;
    animation: btn-shimmer .6s ease-in-out;
}

/* Glassmorphism mockup */
.l-hero-visual { position: relative; }
/* Floating bounce animation for the whole visual */
@keyframes hero-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}
.l-hero-visual { animation: hero-float 6s ease-in-out infinite; }
.l-hero-visual:hover { animation-play-state: paused; }

/* Glassmorphism wrapper — removed, image shown bare */
.l-glass-wrap { position: relative; }
.l-hero-img {
    display: block;
    width: 100%;
    border-radius: var(--r-xl);
    object-fit: cover; object-position: top center;
    transform: scale(1.06);
    transform-origin: center left;
}
.l-glass-placeholder {
    width: 100%; min-height: 280px; border-radius: var(--r-xl);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(160deg, #f1f5f9 0%, #e2e8f0 100%);
    color: var(--muted); gap: .5rem; font-size: .9rem; text-align: center;
    box-shadow: var(--sh-lg);
}
.l-float-tag {
    position: absolute; background: rgba(255,255,255,.96);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.85);
    border-radius: var(--r-md); padding: .6rem .95rem;
    box-shadow: 0 8px 24px rgba(15,23,42,0.12);
    display: flex; align-items: center; gap: .55rem;
    font-size: .78rem; font-weight: 600; color: var(--ink-2);
    white-space: nowrap;
}
.l-float-dot { width: 7px; height: 7px; border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0; }
.tag-1 { bottom: -1rem; left: -1.25rem; }
.tag-2 { top: -.75rem; right: -1rem; }

/* ─── Section helpers ──────────────────────────────────────────────────── */
.l-section { padding: 5.5rem 0; }
.l-section-alt { padding: 5.5rem 0; background: var(--bg); }
.l-sec-label {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--prim-d); margin-bottom: .75rem;
}
.l-sec-h {
    font-family: var(--f-head);
    font-size: clamp(1.75rem, 4vw, 2.4rem); font-weight: 900;
    letter-spacing: -.035em; line-height: 1.15; color: var(--ink);
}
.l-sec-sub { font-size: 1rem; color: var(--muted); line-height: 1.65; }

/* ─── Stats bar ─────────────────────────────────────────────────────────── */
.l-stats {
    background: var(--ink); padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,.04);
}
.l-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.l-stat-item {
    text-align: center; padding: 1rem 1.25rem;
    border-right: 1px solid rgba(255,255,255,.07);
}
.l-stat-item:last-child { border-right: none; }
.l-stat-icon { display:flex;align-items:center;justify-content:center; height:2rem; margin-bottom: .6rem; }
.l-stat-val {
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 900; letter-spacing: -.04em; color: #fff; line-height: 1;
}
.l-stat-val.ind { color: #7dd3fc; }
.l-stat-val.teal { color: #6ee7b7; }
.l-stat-lbl { font-size: .75rem; color: rgba(255,255,255,.72); font-weight: 500; margin-top: .4rem; line-height: 1.3; }

/* ─── Bento Grid ────────────────────────────────────────────────────────── */
.l-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.25rem;
}
.bento-card {
    border-radius: var(--r-xl);
    border: 1px solid rgba(15,23,42,.06);
    background: var(--white);
    box-shadow: var(--sh-xs);
    padding: 1.75rem;
    position: relative; overflow: hidden;
    transition: all .3s cubic-bezier(.22,.61,.36,1);
    display: flex; flex-direction: column;
}
.bento-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: rgba(15,23,42,.1); }
.bento-wide { grid-column: span 2; }
.bento-dark { background: var(--ink); border-color: transparent; }
.bento-dark:hover { background: var(--ink-2); }

.bento-icon-wrap {
    width: 2.75rem; height: 2.75rem; border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.bento-card-title { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; line-height: 1.3; }
.bento-dark .bento-card-title { color: #fff; }
.bento-card-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.bento-dark .bento-card-desc { color: rgba(255,255,255,.55); }
.bento-img-preview {
    margin: 1.25rem auto 0;
    border-radius: var(--r-md); overflow: hidden;
    background: var(--ink);
    aspect-ratio: 9/16;
    max-width: 288px;
    width: 100%;
    flex-shrink: 0;
    position: relative;
}
.bento-img-preview::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--prim), var(--teal));
    width: 100%; opacity: .45;
}
.bento-img-preview img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
/* Stat bento */
.bento-big-stat {
    font-size: 3.2rem; font-weight: 900; letter-spacing: -.05em;
    line-height: 1; color: #fff; margin-bottom: .35rem;
}
.bento-big-sub { font-size: .875rem; color: rgba(255,255,255,.5); font-weight: 500; }
.bento-ai-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .3rem .7rem; border-radius: 2rem; margin-bottom: .75rem;
    background: rgba(14,165,233,.15); color: #7dd3fc;
    font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.bento-card-overlay-glow {
    position: absolute; bottom: 0; right: 0;
    width: 120px; height: 120px; border-radius: 50%;
    opacity: .2; pointer-events: none;
    filter: blur(24px);
}

/* ─── Steps ──────────────────────────────────────────────────────────── */
.l-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.l-step-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-xl); overflow: hidden;
    box-shadow: var(--sh-xs); transition: all .3s ease;
}
.l-step-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.l-step-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg); }
.l-step-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.l-step-card:hover .l-step-img img { transform: scale(1.04); }
.l-step-img-placeholder {
    width: 100%; height: 100%; min-height: 140px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; background: linear-gradient(135deg, var(--bg), #e2e8f0);
}
.l-step-body { padding: 1.5rem 1.5rem 1.75rem; }
.l-step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2rem; height: 2rem; border-radius: 50%;
    background: linear-gradient(135deg, var(--prim), var(--teal)); color: #fff; font-size: .8rem; font-weight: 800;
    margin-bottom: 1rem;
}
.l-step-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.l-step-desc { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ─── Comparison ──────────────────────────────────────────────────────── */
.l-comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.l-comp-card { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-sm); }
.l-comp-head { padding: 1.1rem 1.5rem; font-size: .9rem; font-weight: 700; }
.l-comp-bad-head { background: #fef2f2; color: #ef4444; border-bottom: 1px solid #fee2e2; }
.l-comp-good-head { background: var(--prim-s); color: var(--prim-d); border-bottom: 1px solid rgba(14,165,233,.15); }
.l-comp-item {
    display: flex; align-items: flex-start; gap: .7rem;
    padding: .8rem 1.5rem; border-bottom: 1px solid var(--border);
    font-size: .875rem; color: var(--ink-3); background: var(--white);
    transition: background .2s;
}
.l-comp-item:last-child { border-bottom: none; }
.l-comp-item:hover { background: var(--bg); }
.l-comp-ico { width: 1.35rem; height: 1.35rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 800; flex-shrink: 0; margin-top: .05rem; }
.ico-x { background: #fee2e2; color: #ef4444; }
.ico-ok { background: #d1fae5; color: #059669; }

/* ─── Pricing ──────────────────────────────────────────────────────────── */
.l-pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; align-items: end;
}
.l-price-card {
    border-radius: 1.5rem; background: var(--white);
    border: 1.5px solid var(--border);
    box-shadow: var(--sh-sm); padding: 1.75rem 1.75rem 2rem;
    transition: all .3s cubic-bezier(.22,.61,.36,1); position: relative;
    display: flex; flex-direction: column;
}
.l-price-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }

/* Featured (Pro) — gradient card */
.l-price-card.l-featured {
    background: linear-gradient(145deg, var(--prim) 0%, #0369a1 40%, var(--teal-d) 100%);
    border-color: transparent;
    box-shadow: 0 28px 72px rgba(14,165,233,.35), 0 6px 20px rgba(5,150,105,.2);
    transform: translateY(-12px);
}
.l-price-card.l-featured:hover { transform: translateY(-17px); }

/* Badge top-right */
.l-price-top-badge {
    position: absolute; top: -1px; right: 1.5rem;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: #fff; font-size: .68rem; font-weight: 800;
    padding: .3rem .9rem; border-radius: 0 0 .75rem .75rem;
    letter-spacing: .04em; text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(251,191,36,.4);
}

/* Trial chip */
.l-price-trial {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .3rem .75rem; border-radius: 2rem; margin-bottom: 1.25rem;
    background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
    font-size: .72rem; font-weight: 700; border: 1px solid rgba(255,255,255,.25);
}
.l-price-trial-normal {
    background: var(--teal-s); color: var(--teal-d);
    border: 1px solid rgba(5,150,105,.2);
}
.l-price-trial-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse-dot 2s infinite; flex-shrink: 0; }

/* Plan name */
.l-price-name {
    font-family: var(--f-head);
    font-size: 1.05rem; font-weight: 800; color: var(--ink);
    letter-spacing: -.02em; margin-bottom: .3rem;
}
.l-featured .l-price-name { color: rgba(255,255,255,.7); font-weight: 700; font-size: .9rem; }

/* Big price */
.l-price-row { display: flex; align-items: baseline; gap: .4rem; margin-bottom: .2rem; }
.l-price-amount {
    font-family: var(--f-head);
    font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 900;
    letter-spacing: -.05em; color: var(--ink); line-height: 1;
}
.l-featured .l-price-amount { color: #fff; }
.l-price-currency {
    font-size: .9rem; font-weight: 700; color: var(--muted); letter-spacing: 0;
}
.l-featured .l-price-currency { color: rgba(255,255,255,.6); }
.l-price-period {
    font-size: .78rem; color: var(--muted); font-weight: 500; margin-bottom: 1.5rem;
}
.l-featured .l-price-period { color: rgba(255,255,255,.55); }
.l-price-free-label {
    font-family: var(--f-head);
    font-size: clamp(1.75rem,4vw,2.4rem); font-weight: 900;
    letter-spacing: -.04em; color: var(--ink); line-height: 1; margin-bottom: .2rem;
}

/* Desc */
.l-price-desc {
    font-size: .82rem; color: var(--muted); line-height: 1.55;
    margin-bottom: 1.25rem; flex: none;
}
.l-featured .l-price-desc { color: rgba(255,255,255,.6); }

/* Divider */
.l-price-divider { height: 1px; background: var(--border); margin: 1rem 0 1.25rem; }
.l-featured .l-price-divider { background: rgba(255,255,255,.15); }

/* Features */
.l-price-features { list-style: none; margin-bottom: 1.75rem; flex: 1; }
.l-price-feature {
    display: flex; align-items: center; gap: .65rem;
    padding: .4rem 0; font-size: .845rem; color: var(--ink-3); line-height: 1.4;
    border-bottom: 1px solid rgba(15,23,42,.04);
}
.l-price-feature:last-child { border-bottom: none; }
.l-featured .l-price-feature { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.08); }
.l-pf-icon {
    width: 1.5rem; height: 1.5rem; border-radius: .4rem; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: #d1fae5;
}
.l-featured .l-pf-icon { background: rgba(255,255,255,.15); }

/* Buttons */
.l-price-btn {
    display: flex; align-items: center; justify-content: center; gap: .45rem;
    padding: .9rem 1rem; border-radius: var(--r-md);
    font-family: var(--f-head); font-size: .9rem; font-weight: 700;
    transition: all .25s; cursor: pointer; border: none;
    width: 100%; text-align: center; letter-spacing: -.01em; margin-top: auto;
}
.l-price-btn-normal {
    background: var(--bg); color: var(--ink-2);
    border: 1.5px solid var(--border);
}
.l-price-btn-normal:hover { background: var(--prim-s); border-color: var(--prim); color: var(--prim-d); transform: translateY(-1px); }
.l-price-btn-feat {
    background: #fff; color: var(--prim-d);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    font-weight: 800;
}
.l-price-btn-feat:hover { background: #f0f9ff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); color: var(--prim-d); }

/* Pricing section accent */
.l-section-pricing {
    position: relative; overflow: hidden;
}
.l-section-pricing::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(14,165,233,.07) 0%, transparent 70%);
}

/* ─── FAQ ────────────────────────────────────────────────────────────── */
.l-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    margin-bottom: .65rem;
    background: var(--surface);
    overflow: hidden;
    transition: border-color .15s, box-shadow .15s;
}
.l-faq-item[open] {
    border-color: color-mix(in srgb, var(--ind) 30%, var(--border));
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.l-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: .95rem;
    color: var(--ink);
    user-select: none;
}
.l-faq-q::-webkit-details-marker { display: none; }
.l-faq-q:hover { background: var(--surface-2); }
.l-faq-chevron {
    flex-shrink: 0;
    color: var(--muted);
    transition: transform .2s ease;
}
.l-faq-item[open] .l-faq-chevron { transform: rotate(180deg); }
.l-faq-a {
    padding: 0 1.25rem 1.1rem;
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    border-top: 1px solid var(--border);
    padding-top: .85rem;
}
@media (max-width: 640px) {
    .l-faq-q { font-size: .875rem; padding: .9rem 1rem; }
    .l-faq-a { padding: .75rem 1rem 1rem; }
}

/* ─── CTA Banner ─────────────────────────────────────────────────────── */
.l-cta-banner {
    border-radius: var(--r-2xl); overflow: hidden; position: relative;
    background: linear-gradient(135deg, var(--ink) 0%, #1e293b 50%, #0f1f3d 100%);
    padding: 5rem 3rem; text-align: center;
}
.l-cta-banner::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(14,165,233,.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 20% 50%, rgba(5,150,105,.15) 0%, transparent 55%);
}
.l-cta-banner::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.l-cta-banner h2 {
    position: relative; z-index: 1;
    font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; letter-spacing: -.03em;
    color: #fff; margin-bottom: .75rem;
}
.l-cta-banner p { position: relative; z-index: 1; color: rgba(255,255,255,.55); font-size: 1.05rem; margin-bottom: 2.25rem; line-height: 1.6; }
.l-btn-cta {
    position: relative; z-index: 1;
    display: inline-flex; align-items: center; gap: .5rem;
    padding: 1rem 2.5rem; border-radius: 2rem;
    background: linear-gradient(135deg, var(--prim), var(--teal));
    color: #fff; font-weight: 800; font-size: 1.05rem;
    transition: all .25s; box-shadow: 0 4px 24px rgba(14,165,233,.5);
    border: none; cursor: pointer; letter-spacing: -.01em;
}
.l-btn-cta:hover { transform: translateY(-3px); filter: brightness(1.08); box-shadow: 0 12px 40px rgba(14,165,233,.65); color: #fff; }

/* ─── Footer ─────────────────────────────────────────────────────────── */
.l-footer {
    background: #060e1a;
    padding: 2rem 0 1.5rem;
    position: relative;
}
.l-footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14,165,233,.4), rgba(5,150,105,.4), transparent);
}

/* ── Top row ── */
.l-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 1rem;
}

/* Brand: logo + name + tagline inline */
.l-footer-brand-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
.l-footer-logo-box {
    width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--prim), var(--teal));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 900; font-size: 1.1rem;
    overflow: hidden;
}
.l-footer-brand-info { display: flex; flex-direction: column; gap: .1rem; }
.l-footer-brand-name { font-size: .95rem; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.2; }
.l-footer-tagline    { font-size: .75rem; color: rgba(255,255,255,.55); line-height: 1.3; }

/* Nav links */
.l-footer-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.l-footer-nav-link {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .15s;
    white-space: nowrap;
}
.l-footer-nav-link:hover { color: #fff; }

/* Social icons */
.l-footer-socials {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}
.l-footer-social-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.75);
    transition: background .2s, color .2s;
    text-decoration: none;
}
.l-footer-social-btn:hover {
    background: rgba(14,165,233,.35);
    color: #fff;
}

/* Bottom row */
.l-footer-bottom {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.l-footer-copy { font-size: .78rem; color: rgba(255,255,255,.45); }

/* Mobile: stack brand-row and nav */
@media (max-width: 768px) {
    .l-footer-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .l-footer-nav  { gap: .85rem; }
    .l-footer-socials { align-self: flex-start; }
}

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .l-hero { padding: 4rem 0 3.5rem; }
    .l-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .l-hero-visual { max-width: 580px; margin: 0 auto; animation: none; }
    .l-bento { grid-template-columns: repeat(2, 1fr); }
    .bento-wide { grid-column: span 2; }
    .l-pricing-grid { grid-template-columns: 1fr 1fr; align-items: end; }
}
@media (max-width: 768px) {
    .l-section, .l-section-alt { padding: 3.5rem 0; }
    .l-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .l-stat-item:nth-child(2) { border-right: none; }
    .l-stat-item { border-bottom: 1px solid rgba(255,255,255,.07); }
    .l-stat-item:nth-child(3),
    .l-stat-item:nth-child(4) { border-bottom: none; }
    .l-bento { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
    .l-steps-grid { grid-template-columns: 1fr; }
    .l-comp-grid { grid-template-columns: 1fr; }
    .l-pricing-grid { grid-template-columns: 1fr; }
    .l-price-card.l-featured { transform: none; margin-top: 0; }
    .l-nav-links { display: none; }
    .l-cta-banner { padding: 3rem 1.5rem; }
    .l-hero-proof { flex-wrap: wrap; gap: 0; }
    .l-proof-stat { padding: .4rem .75rem .4rem 0; margin-right: .75rem; }
    .l-proof-stat { border-right-color: transparent; }
}
@media (max-width: 640px) {
    .l-nav { height: 60px; }
    .l-nav-sub { display: none; }
    .l-hero h1 { font-size: clamp(1.85rem, 7vw, 2.4rem); }
    .l-hero-sub { font-size: .95rem; }
    .l-stats { padding: 2rem 0; }
    .l-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .l-hero-visual { animation: none; }
}
@media (max-width: 480px) {
    .l-hero { padding: 3rem 0 2.5rem; }
    .l-hero h1 { font-size: 1.85rem; }
    .l-hero-actions { flex-direction: column; }
    .l-btn-primary, .l-btn-ghost { width: 100%; justify-content: center; }
    .l-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Video elements ──────────────────────────────────────────────────── */
.l-vid {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    pointer-events: none;
}
.l-phone-mock {
    position: relative;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 1.25rem;
    filter: drop-shadow(0 20px 40px rgba(15,23,42,.22));
}
.l-phone-frame {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 405 / 729;  /* matches new frame 405×729 px */
    position: relative;
    z-index: 3;
    pointer-events: none;
}
.l-phone-screen {
    position: absolute;
    top:    0.1%;
    bottom: 2.33%;
    left:   3.58%;
    right:  3.58%;
    overflow: hidden;
    background: #fff;
    z-index: 1;
}
.l-phone-screen video,
.l-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;  /* keep left-aligned content visible */
    display: block;
    pointer-events: none;
}
.l-step-img-video {
    aspect-ratio: 9/16;
    overflow: hidden;
    background: var(--ink);
    position: relative;
}
.l-step-img-video video {
    width: 100%; height: 100%; object-fit: cover; display: block;
    pointer-events: none;
}
.l-step-img-video::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--prim), var(--teal));
    width: 100%;
    opacity: .45;
}
.bento-img-preview video {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    display: block; pointer-events: none;
}
.l-steps-grid.has-video .l-step-card { max-width: 300px; margin: 0 auto; }

.l-laptop-mock {
    position: relative;
    width: 100%;
    filter: drop-shadow(0 20px 48px rgba(15,23,42,.18));
}
.l-laptop-frame {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 637 / 345;  /* prevent CLS — matches width/height attrs */
    position: relative;
    z-index: 3;
    pointer-events: none;
}
.l-laptop-screen {
    position: absolute;
    top: 1.8%;
    left: 12.60%;
    right: 12.35%;
    bottom: 18.5%;
    border-radius: 0.3rem;
    overflow: hidden;
    background: #0f172a;
    z-index: 1;
}
.l-laptop-screen video,
.l-laptop-screen img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: left top;
    display: block;
    pointer-events: none;
}

/* ─── Tab switcher (platform showcase) ──────────────────────────────── */
.l-tab-btn {
    display:inline-flex;align-items:center;gap:.45rem;
    padding:.55rem 1.25rem;border-radius:2rem;border:none;background:transparent;
    font-family:var(--f);font-size:.82rem;font-weight:600;color:var(--muted);cursor:pointer;
    transition:all .22s;
}
.l-tab-btn:hover { color:var(--ink); }
.l-tab-btn.active { background:var(--white);color:var(--ink);box-shadow:var(--sh-xs); }
.l-showcase-tab { transition:opacity .3s ease; }
@media(max-width:768px){
    #tab-cabinet > div,
    #tab-miniapp > div { grid-template-columns:1fr !important; }
    #tab-miniapp > div > div:first-child { order:2; }
}
