/* ============================================================
   Vishav Book Publication — clone stylesheet (framework-free)
   ============================================================ */

:root {
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --teal-light: #14b8a6;
    --ink: #0f172a;
    --body: #334155;
    --muted: #64748b;
    --bg: #ffffff;
    --bg-soft: #f0fdfa;
    --bg-contrast: #f8fafc;
    --border: #e2e8f0;
    --card: #ffffff;
    --shadow: 0 10px 30px -12px rgba(15, 23, 42, .18);
    --shadow-lg: 0 24px 60px -20px rgba(13, 148, 136, .35);
    --radius: 18px;
    --radius-sm: 11px;
    --max: 1120px;
    --font: 'Inter', 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
    --font-head: 'Poppins', 'Inter', 'Segoe UI', system-ui, sans-serif;
    --grad: linear-gradient(135deg, #14b8a6, #0d9488 55%, #0891b2);
    --grad-soft: linear-gradient(135deg, #f0fdfa, #ecfeff);
}

/* ---------- Dark theme ---------- */

:root[data-theme="dark"] {
    --ink: #f1f5f9;
    --body: #cbd5e1;
    --muted: #94a3b8;
    --bg: #0b1220;
    --bg-soft: #0f1b2d;
    --bg-contrast: #0f1728;
    --border: #24324a;
    --card: #111c2e;
    --shadow: 0 10px 30px -12px rgba(0, 0, 0, .5);
    --grad-soft: linear-gradient(135deg, #0f1b2d, #0d1f24);
}

:root[data-theme="dark"] .site-header {
    background: rgba(11, 18, 32, .82);
}

:root[data-theme="dark"] .eyebrow,
:root[data-theme="dark"] .badge,
:root[data-theme="dark"] .art-card,
:root[data-theme="dark"] .card,
:root[data-theme="dark"] .step,
:root[data-theme="dark"] .price-card {
    background: var(--card);
}

:root[data-theme="dark"] .hero {
    background: radial-gradient(1000px 500px at 85% -10%, rgba(20, 184, 166, .18) 0%, transparent 60%), radial-gradient(800px 500px at 0% 110%, rgba(8, 145, 178, .18) 0%, transparent 55%), linear-gradient(180deg, var(--bg-soft), var(--bg) 75%);
}

:root[data-theme="dark"] .site-footer {
    background: #060b14;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--body);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: 20px;
}

/* ---------- Scroll progress bar ---------- */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 100;
    background: var(--grad);
    box-shadow: 0 0 10px rgba(13, 148, 136, .7);
    transition: width .1s linear;
}

/* ---------- Buttons ---------- */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.6rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .98rem;
    cursor: pointer;
    border: 1.5px solid transparent;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}

.btn:active {
    transform: translateY(1px) scale(.99);
}

/* shine sweep on primary/light buttons */

.btn-primary::after,
.btn-light::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease;
}

.btn-primary:hover::after,
.btn-light:hover::after {
    left: 130%;
}

.btn-primary {
    background: var(--grad);
    background-size: 160% 160%;
    color: #fff;
    box-shadow: 0 10px 24px -8px rgba(13, 148, 136, .65);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -10px rgba(13, 148, 136, .75);
}

.btn-ghost {
    background: transparent;
    color: var(--teal-dark);
    border-color: var(--teal);
}

.btn-ghost:hover {
    background: var(--bg-soft);
}

.btn-light {
    background: #fff;
    color: var(--teal-dark);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .35);
}

.w-100 {
    width: 100%;
}

/* ---------- Demo banner ---------- */

.demo-banner {
    background: #1e293b;
    color: #fde68a;
    text-align: center;
    font-size: .82rem;
    font-weight: 600;
    padding: .5rem 1rem;
    line-height: 1.4;
}

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .2s ease;
}

.site-header.scrolled {
    box-shadow: 0 6px 20px -12px rgba(15, 23, 42, .25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.brand {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
}

.brand-mark {
    font-size: 1.4rem;
}

.brand-text strong {
    color: var(--teal);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-weight: 500;
    color: var(--body);
    position: relative;
    transition: color .18s ease;
}

.nav-link:hover {
    color: var(--teal);
}

.nav-link:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.nav-link:not(.nav-cta):hover::after,
.nav-link.active:not(.nav-cta)::after {
    transform: scaleX(1);
}

.nav-link.active:not(.nav-cta) {
    color: var(--teal);
}

.nav-cta {
    background: var(--teal);
    color: #fff;
    padding: .55rem 1.15rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--teal-dark);
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.theme-toggle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px) rotate(-12deg);
    box-shadow: var(--shadow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-bar {
    width: 24px;
    height: 2.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(1000px 500px at 85% -10%, #ccfbf1 0%, transparent 60%), radial-gradient(800px 500px at 0% 110%, #cffafe 0%, transparent 55%), linear-gradient(180deg, var(--bg-soft), #fff 75%);
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--teal-dark);
    font-weight: 600;
    font-size: .85rem;
    padding: .4rem .85rem;
    border-radius: 999px;
    margin: 0 0 1.25rem;
    box-shadow: var(--shadow);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .6);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.12;
    color: var(--ink);
    margin: 0 0 1.1rem;
    font-weight: 800;
    letter-spacing: -.5px;
}

.accent {
    white-space: nowrap;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--teal);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 34rem;
    margin: 0 0 1.8rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 1.8rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.badge {
    font-size: .82rem;
    font-weight: 600;
    color: var(--body);
    background: #fff;
    border: 1px solid var(--border);
    padding: .4rem .8rem;
    border-radius: 999px;
}

/* hero art card */

.hero-art {
    display: flex;
    justify-content: center;
}

.art-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.4rem;
    box-shadow: var(--shadow-lg);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.art-header {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.2rem;
}

.art-emoji {
    font-size: 1.8rem;
    background: var(--bg-soft);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
}

.art-title {
    margin: 0;
    font-weight: 700;
    color: var(--ink);
}

.art-sub {
    margin: 0;
    font-size: .85rem;
    color: var(--muted);
}

.art-body {
    display: grid;
    gap: .7rem;
    margin-bottom: 1.3rem;
}

.book-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 16px rgba(15, 23, 42, .12));
}

.art-line {
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, #e2e8f0, #f1f5f9, #e2e8f0);
    background-size: 200% 100%;
    animation: shimmer 1.8s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: -200% 0;
    }
}

.w-90 {
    width: 90%;
}

.w-85 {
    width: 85%;
}

.w-75 {
    width: 75%;
}

.w-60 {
    width: 60%;
}

.art-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed var(--border);
    padding-top: 1rem;
}

.pill {
    font-size: .78rem;
    font-weight: 600;
    color: var(--teal-dark);
    background: var(--bg-soft);
    padding: .35rem .7rem;
    border-radius: 999px;
}

.art-amount {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--teal);
}

/* hero background orbs */

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .45;
}

.orb-1 {
    width: 340px;
    height: 340px;
    background: #5eead4;
    top: -80px;
    right: -60px;
}

.orb-2 {
    width: 280px;
    height: 280px;
    background: #99f6e4;
    bottom: -100px;
    left: -60px;
}

/* ---------- Stats ---------- */

.stats {
    background: var(--grad);
    background-size: 200% 200%;
    animation: gradShift 8s ease infinite;
    color: #fff;
    padding: 2.4rem 0;
}

@keyframes gradShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-value {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    margin-top: .4rem;
    font-size: .95rem;
    opacity: .9;
}

.stat+.stat {
    border-left: 1px solid rgba(255, 255, 255, .2);
}

/* ---------- Sections ---------- */

.section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-contrast {
    background: var(--bg-contrast);
}

.section-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.8rem;
}

.h2 {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    color: var(--ink);
    font-weight: 800;
    margin: 0 0 .6rem;
    letter-spacing: -.3px;
}

.h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    color: var(--ink);
    font-weight: 700;
    margin: 0 0 .4rem;
}

.p {
    margin: 0;
    color: var(--muted);
}

.muted {
    color: var(--muted);
    margin: 0;
}

/* ---------- Feature cards ---------- */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -18px rgba(13, 148, 136, .4);
    border-color: #5eead4;
}

.card-icon {
    font-size: 1.6rem;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    margin-bottom: 1.1rem;
    box-shadow: 0 8px 18px -8px rgba(15, 23, 42, .3);
    transition: transform .25s ease;
}

.card:hover .card-icon {
    transform: scale(1.08) rotate(-4deg);
}

.ic-1 {
    background: linear-gradient(135deg, #99f6e4, #5eead4);
}

.ic-2 {
    background: linear-gradient(135deg, #fde68a, #fbbf24);
}

.ic-3 {
    background: linear-gradient(135deg, #bfdbfe, #93c5fd);
}

.ic-4 {
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
}

.ic-5 {
    background: linear-gradient(135deg, #bbf7d0, #86efac);
}

.ic-6 {
    background: linear-gradient(135deg, #fecdd3, #fda4af);
}

/* ---------- Steps ---------- */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.step {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.6rem 1.6rem;
    text-align: center;
}

.step-num {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    background: var(--teal);
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 50%;
    box-shadow: 0 8px 18px -6px rgba(13, 148, 136, .55);
}

/* ---------- Pricing ---------- */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    transition: transform .2s ease, box-shadow .2s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.price-card.featured {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.price-card.featured::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #14b8a6, #0891b2, #14b8a6);
    background-size: 200% 200%;
    animation: gradShift 6s ease infinite;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.price-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: .35rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 6px 14px -6px rgba(13, 148, 136, .6);
}

.price-top {
    margin-bottom: .5rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: .35rem;
    margin: .3rem 0 1.2rem;
}

.price-value {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--ink);
}

.price-unit {
    color: var(--muted);
    font-weight: 500;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem;
    display: grid;
    gap: .65rem;
    flex: 1;
}

.list li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--body);
}

.list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--teal);
    font-weight: 800;
}

/* ---------- CTA ---------- */

.cta {
    position: relative;
    overflow: hidden;
    background: radial-gradient(600px 300px at 20% 0%, rgba(255, 255, 255, .18), transparent 60%), radial-gradient(600px 300px at 80% 100%, rgba(255, 255, 255, .14), transparent 60%), linear-gradient(135deg, #14b8a6, #0d9488 55%, #0891b2);
    color: #fff;
    padding: clamp(3.5rem, 7vw, 5rem) 0;
    text-align: center;
}

.cta-inner {
    max-width: 42rem;
}

.cta-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 800;
    margin: 0 0 .8rem;
}

.cta-text {
    font-size: 1.1rem;
    opacity: .95;
    margin: 0 auto 1.8rem;
    max-width: 34rem;
}

.cta-note {
    margin-top: 1rem;
    font-weight: 600;
    min-height: 1.2rem;
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--ink);
    color: #cbd5e1;
    padding: 1.8rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .9rem;
}

.footer-right a:hover {
    color: #fff;
}

/* ---------- Floating Telegram button ---------- */

.tg-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 61;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #2aabee, #229ed9);
    box-shadow: 0 12px 28px -8px rgba(34, 158, 217, .75);
    transition: transform .2s ease, box-shadow .25s ease;
}

.tg-fab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 34px -10px rgba(34, 158, 217, .85);
}

.tg-fab svg {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1;
}

.tg-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #229ed9;
    z-index: 0;
    animation: tgPulse 2s ease-out infinite;
}

@keyframes tgPulse {
    0% {
        transform: scale(1);
        opacity: .6;
    }
    70%,
    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

/* ---------- Floating back-to-top ---------- */

.to-top {
    position: fixed;
    right: 27px;
    bottom: 92px;
    z-index: 60;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 12px 28px -8px rgba(13, 148, 136, .7);
    opacity: 0;
    transform: translateY(20px) scale(.8);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.to-top.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.to-top:hover {
    transform: translateY(-3px);
}

/* ---------- Reveal-on-scroll ---------- */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.22, 1, .36, 1);
}

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

/* staggered entrance within a grid */

.cards-grid .reveal.in {
    transition-delay: calc(var(--i, 0) * 80ms);
}

.pricing-grid .reveal.in {
    transition-delay: calc(var(--i, 0) * 90ms);
}

.steps-grid .reveal.in {
    transition-delay: calc(var(--i, 0) * 90ms);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition-duration: .01ms !important;
    }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
    .hero-grid,
    .cards-grid,
    .steps-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .hero-art {
        order: -1;
    }
    .price-card.featured {
        transform: none;
    }
    .price-card.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 720px) {
    .nav-toggle {
        display: flex;
    }
    .site-nav {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: .5rem 20px 1rem;
        box-shadow: var(--shadow);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }
    .site-nav.open {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
    .nav-link {
        padding: .8rem .2rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-cta {
        text-align: center;
        margin-top: .6rem;
        border-bottom: 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
    .stat+.stat {
        border-left: 0;
    }
}