@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
    --white: #ffffff;
    --char: #353439;
    --mute: #d9d9d9;
    --neut: #818084;
    --ink: #1a1a1a;
    --orange: #fa4b00;
    --orange2: #fb7405;
    --orange3: #351606;
    --orange4: #bc4e03;

    --bg: var(--white);
    --fg: var(--ink);
    --fg-soft: var(--neut);
    --line: rgba(26, 26, 26, 0.1);
    --pill: #0f0f11;
    --pill-fg: #ffffff;
    --chip: rgba(26, 26, 26, 0.06);
}
[data-theme="dark"] {
    --bg: #0b0b0d;
    --fg: #ffffff;
    --fg-soft: #818084;
    --line: rgba(255, 255, 255, 0.08);
    --pill: #1a1a1a;
    --pill-fg: #ffffff;
    --chip: rgba(255, 255, 255, 0.06);
}

* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--bg);
    color: var(--fg);
    /*  font-family: "Archivo", system-ui, sans-serif;*/
    font-family: "Inter", system-ui, sans-serif;
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    transition:
        background 0.4s ease,
        color 0.4s ease;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font-family: inherit;
}

.mono {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Letter-by-letter reveal */
.split-title {
    display: inline-block;
}
.split-title .ch {
    display: inline-block;
    color: var(--orange);
    opacity: 0;
    transition: color 0.55s ease;
    will-change: opacity, color;
}
.split-title .ch.space {
    width: 0.28em;
}
.split-title.revealed .ch {
    color: inherit;
}

.word {
    display: inline-block;
    white-space: nowrap;
}

.section {
    min-height: 100vh;
    position: relative;
    padding: 140px 40px 80px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 780px) {
    .section {
        padding: 120px 22px 60px;
    }
}

.hairline {
    height: 1px;
    background: var(--line);
    width: 100%;
}

/* ------------ NAVBAR ------------ */
.nav-wrap {
    position: fixed;
    top: 22px;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    pointer-events: none;
}
.nav-wrap > * {
    pointer-events: auto;
}
.logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*  background: var(--ink);*/
    color: #fff;
    position: relative;
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);*/
}
[data-theme="dark"] .logo {
    background: #fff;
    color: var(--ink);
}
.logo .mono-I {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    transform: translateY(-1px);
    letter-spacing: -0.02em;
}
.logo .dot {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 0 rgba(250, 75, 0, 0.5);
    animation: pulse 2.2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(250, 75, 0, 0.55);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(250, 75, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(250, 75, 0, 0);
    }
}

.pill {
    background: var(--pill);
    color: var(--pill-fg);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    min-width: 220px;
}
.pill .menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: transparent;
    color: inherit;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
}
.pill .menu-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}
.pill .divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.18);
}
.pill .icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pill .icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}
.pill .scroll-pct {
    background: #fff;
    color: #000;
    border-radius: 999px;
    padding: 8px 12px;
    font-variant-numeric: tabular-nums;
    font-size: 12px;
    font-weight: 600;
    min-width: 44px;
    text-align: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.user-chip {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--fg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
}
.cta {
    background: var(--ink);
    color: #fff;
    border: 0;
    cursor: pointer;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
[data-theme="dark"] .cta {
    background: #fff;
    color: var(--ink);
}
.cta:hover {
    transform: translateY(-1px);
    background-color: var(--orange);
}
/*
.cta .arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}
.cta:hover .arrow {
    transform: translateX(3px);
}
*/
.menu-panel {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    background: var(--mute);
    color: var(--pill);
    border-radius: 22px;
    padding: 26px 30px;
    min-width: 320px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transition:
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.3s ease;
}
[data-theme="dark"] .menu-panel {
    background: var(--pill);
    color: var(--pill-fg);
}

.menu-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.menu-panel h6 {
    font-family: "JetBrains Mono", monospace;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b6b70;
    margin: 0 0 10px;
}
.menu-panel a.menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 500;
    padding: 8px 0;
    letter-spacing: -0.01em;
    color: black;
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.4s ease,
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        color 0.2s;
}
[data-theme="dark"] .menu-panel a.menu-link {
    color: #fff;
}
.menu-panel.open a.menu-link {
    opacity: 1;
    transform: translateY(0);
}
.menu-panel a.menu-link:hover {
    color: var(--orange2);
}
.menu-panel a.menu-link .arr {
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.25s;
}
.menu-panel a.menu-link:hover .arr {
    opacity: 1;
    transform: translateX(0);
}
.menu-panel a.sub {
    display: block;
    font-size: 13px;
    padding: 4px 0;
    color: black;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.4s ease,
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-theme="dark"] .menu-panel a.sub {
    color: #8a8a8e;
}
.menu-panel.open a.sub {
    opacity: 1;
    transform: translateY(0);
}
.menu-panel a.sub:hover {
    color: #8a8a8e;
}
[data-theme="dark"] .menu-panel a.sub:hover {
    color: #fff;
}
.menu-panel hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 18px 0;
}

@media (max-width: 780px) {
    .nav-wrap {
        padding: 0 16px;
        top: 16px;
    }
    .pill {
        min-width: 0;
    }
    .pill .menu-btn span.lbl {
        display: none;
    }
    .cta {
        padding: 11px 16px;
        font-size: 13px;
    }
    .user-chip {
        width: 40px;
        height: 40px;
    }
    .logo {
        width: 40px;
        height: 40px;
    }
}

/* ------------ HERO + CURTAIN REVEAL ------------ */

/*--------MOCKUPS------- */

/* ─── RIGHT: MOCKUPS ─── */
.mockup-side {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp 0.8s 0.18s ease both;
}

/* ── DESKTOP MOCKUP ── */
.desktop-frame {
    position: relative;
    z-index: 1;
    width: min(520px, 48vw);
    filter: drop-shadow(0 32px 64px rgba(15, 15, 20, 0.18));
}

.desktop-shell {
    background: #1a1a24;
    border-radius: 14px 14px 8px 8px;
    padding: 28px 16px 14px;
    position: relative;
}
.desktop-shell::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3a3a4a;
}

.desktop-screen {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 4px;
    overflow: hidden;
    background: #0f0f14;
}
.desktop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.desktop-stand {
    width: 28%;
    height: 18px;
    background: #1a1a24;
    margin: 0 auto;
    border-radius: 0 0 6px 6px;
    position: relative;
}
.desktop-base {
    width: 44%;
    height: 6px;
    background: #23232f;
    border-radius: 100px;
    margin: 0 auto;
}

/* ── MOBILE MOCKUP ── */
.mobile-frame {
    position: absolute;
    bottom: 8vh;
    right: 3vw;
    z-index: 2;
    width: min(140px, 14vw);
    filter: drop-shadow(0 20px 48px rgba(15, 15, 20, 0.22));
    transform-origin: bottom right;
    animation: floatPhone 4s ease-in-out infinite;
}

.mobile-shell {
    background: #1a1a24;
    border-radius: 26px;
    padding: 10px 6px;
    position: relative;
}
/* notch */
.mobile-shell::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 5px;
    background: #0f0f14;
    border-radius: 100px;
    z-index: 10;
}

.mobile-screen {
    width: 100%;
    aspect-ratio: 9/19.5;
    border-radius: 20px;
    overflow: hidden;
    background: #0f0f14;
}
.mobile-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* side button */
.mobile-btn-right {
    position: absolute;
    right: -3px;
    top: 30%;
    width: 3px;
    height: 22px;
    background: #2e2e3e;
    border-radius: 0 2px 2px 0;
}

/*-------------- */
.hero-stage {
    position: relative;
    height: 260vh;
}
.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.curtain-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    color: #fff;
    padding: 120px 40px 40px;
    text-align: center;
}

/* ------------ UNDER CURTAIN ----------------- */
/*  */
/*  */

.under {
    position: relative;
    /*  background-color: blue;*/
    display: flex;
    width: 100%;
    @media (max-width: 928px) {
        flex-direction: column;
    }
}

.mockups {
    display: flex;
    position: relative;
    padding-right: 200px;

    @media (max-width: 928px) {
        padding-right: 0;
    }
}

.deal {
    display: flex;
    flex-direction: column;
    align-items: left;
    align-items: left;
    justify-content: left;
    text-align: left;
}

.deal-text {
    color: var(--orange);
    font-size: clamp(22px, 2.5vw, 60px);
    line-height: 1.5;
    font-weight: 600;
    margin-block: 0;
}

.deal-text2 {
    color: black;
    font-size: clamp(11px, 1.8vw, 30px);
    line-height: 1.5;
    font-weight: 300;
    margin-block: 0;
}
[data-theme="dark"] .deal-text2 {
    color: white;
}

/*
[data-theme="dark"] .curtain-content {
    background: #000;
    background: black;
}
*/
.curtain-half {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: #f7f7f7;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 140px 48px 48px;
    will-change: transform;
    overflow: hidden;
}
[data-theme="dark"] .curtain-half {
    background: var(--ink);
}
.curtain-left {
    left: 0;
    align-items: flex-start;
}
.curtain-right {
    right: 0;
    align-items: flex-end;
}

@media (max-width: 780px) {
    .curtain-half {
        width: 100%;
        height: 50%;
        padding: 100px 22px 22px;
    }
    .curtain-left {
        top: 0;
        bottom: auto;
        left: 0;
        right: 0;
    }
    .curtain-right {
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
    }
}
.curtain-left .inner {
    width: 100%;
    max-width: 560px;
    align-self: center;
    margin-top: auto;
    margin-bottom: auto;
}
.curtain-right .inner {
    width: 100%;
    max-width: 520px;
    height: 100%;
    position: relative;
    align-self: stretch;
}

.hero-title {
    font-size: clamp(44px, 5.2vw, 120px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    font-weight: 400;
    margin: 0;
    text-align: right;
}
.hero2-title {
    font-size: clamp(44px, 5.2vw, 120px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    font-weight: 400;
    margin: 0;
    color: black;
}
[data-theme="dark"] .hero2-title {
    color: white;
}
.hero-title .muted {
    color: var(--fg-soft);
}
.hero-sub {
    max-width: 440px;
    font-size: 17px;
    line-height: 1.5;
    color: var(--fg-soft);
    margin: 28px 0 36px;
    text-align: right;
    margin-left: auto;
}
.hero2-sub {
    max-width: 440px;
    font-size: 17px;
    line-height: 1.5;
    color: var(--fg-soft);
    margin: 28px 0 36px;
}

.hero2-sub span {
    color: var(--orange4);
    background-color: var(--orange3);
    border-radius: 999px;
    margin-right: 15px;
    padding-inline: 20px;
    padding-block: 5px;
}
.hero-ctas {
    display: flex;
    justify-content: right;
    gap: 12px;
    flex-wrap: wrap;
}
.cta-outline {
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--fg);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}
.cta-orange {
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    color: #fff;
    border: 0;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(250, 75, 0, 0.35);
    transition: transform 0.2s;
}
.cta-orange:hover {
    transform: translateY(-1px);
}

.hero-icons {
    position: relative;
    height: min(560px, 70vh);
}
.float-icon {
    position: absolute;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
    animation: float 8s ease-in-out infinite;
    transition: transform 0.3s ease;
}
[data-theme="dark"] .float-icon {
    background: #161618;
}
.float-icon:hover {
    transform: scale(1.08) rotate(-2deg);
}
.float-icon svg {
    display: block;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) rotate(var(--r, 0deg));
    }
    50% {
        transform: translate(var(--dx, 8px), var(--dy, -14px))
            rotate(calc(var(--r, 0deg) + 3deg));
    }
}

/* hero bottom/top split copy */
.hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: var(--fg-soft);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero-meta .scroll {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reveal-behind-inner {
    text-align: center;
    padding: 40px;
    max-width: 900px;
}
.reveal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.reveal-badge .d {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}
.reveal-title {
    font-size: clamp(40px, 6vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0;
    font-weight: 400;
}
.reveal-title .accent {
    color: var(--orange2);
}

/* ------------ WEB DESIGN 6 VIGNETTES ------------ */
.wd-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 56px;
    gap: 40px;
    flex-wrap: wrap;
}
.wd-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg-soft);
}
.wd-title {
    font-size: clamp(36px, 5vw, 76px);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 400;
    margin: 0;
    max-width: 15ch;
}
.wd-right {
    max-width: 360px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--fg-soft);
}

.wd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
}
@media (max-width: 980px) {
    .wd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 620px) {
    .wd-grid {
        grid-template-columns: 1fr;
    }
}

.vignette {
    background: var(--bg);
    padding: 34px 30px 30px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    transition: background 0.3s ease;
}
.vignette:hover {
    background: var(--chip);
}
.vignette .num {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--fg-soft);
}
.vignette .glyph {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
[data-theme="dark"] .vignette .glyph {
    background: #fff;
    color: var(--ink);
}
.vignette.accent .glyph {
    background: var(--orange);
    color: #fff;
}
.vignette h3 {
    font-size: 24px;
    letter-spacing: -0.02em;
    margin: 0 0 2px;
    font-weight: 400;
    line-height: 1.1;
}
.vignette h3 .it {
    font-weight: 400;
    color: var(--fg-soft);
}
.vignette ul {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    color: var(--fg-soft);
    font-size: 14px;
    line-height: 1.55;
}
.vignette ul li {
    padding: 6px 0;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 10px;
}
.vignette ul li:first-child {
    border-top: 0;
}
.vignette ul li::before {
    content: "·";
    color: var(--orange);
    font-weight: 700;
}

/* ------------ MARKETING ------------ */
.mk {
    background: var(--ink);
    color: #fff;
    border-radius: 28px;
    padding: 80px 56px;
    position: relative;
    overflow: hidden;
}
.mk::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        circle at 70% 30%,
        rgba(250, 75, 0, 0.35),
        transparent 55%
    );
    pointer-events: none;
}
[data-theme="dark"] .mk {
    background: #121215;
}
.mk-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: end;
    position: relative;
    z-index: 2;
}
@media (max-width: 900px) {
    .mk-grid {
        grid-template-columns: 1fr;
    }
}
.mk-eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff9;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mk-eyebrow .d {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}
.mk h2 {
    font-size: clamp(40px, 5.6vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 400;
    margin: 18px 0 20px;
}
.mk h2 em {
    color: var(--orange2);
    font-style: normal;
    font-weight: 400;
}
.mk p.lead {
    color: #fffb;
    font-size: 18px;
    line-height: 1.55;
    max-width: 46ch;
}
.mk-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
}
.mk-list .item {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 14px;
}
.mk-list .item .k {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #fff9;
    text-transform: uppercase;
}
.mk-list .item .v {
    font-size: 17px;
    line-height: 1.35;
    margin-top: 4px;
}
.mk-platforms {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 2;
}
.platform-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #fff;
}
.mk-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
    position: relative;
    z-index: 2;
}
.mk-kpi {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
}
.mk-kpi .num {
    font-size: 48px;
    letter-spacing: -0.03em;
    font-weight: 400;
    line-height: 1;
}
.mk-kpi .num em {
    color: var(--orange2);
    font-style: normal;
    font-weight: 400;
}
.mk-kpi .cap {
    color: #fff9;
    font-size: 13px;
    margin-top: 6px;
}

/* ------------ APPS STACK ------------ */
.apps-stage {
    position: relative;
}
.app-card {
    position: sticky;
    top: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;

    padding: 56px 48px;
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s ease;
}
.app-card.one {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    top: 100px;
}
.app-card.two {
    background: #0f0f11;
    color: #fff;
    top: 100px;
}
[data-theme="dark"] .app-card.two {
    background: #1a1a1d;
}

.app-card .num {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
}
.app-card h3 {
    font-size: clamp(36px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 14px 0 10px;
    font-weight: 400;
}
.app-card h3 em {
    font-style: normal;
    font-weight: 400;
    opacity: 0.85;
}
.app-card p {
    font-size: 17px;
    line-height: 1.5;
    max-width: 46ch;
    opacity: 0.9;
}
.app-card .feats {
    margin-top: 28px;
    display: grid;
    gap: 10px;
}
.app-card .feats div {
    display: flex;
    gap: 10px;
    align-items: baseline;
    font-size: 15px;
    opacity: 0.92;
}
.app-card .feats div::before {
    content: "■";
    font-size: 9px;
    opacity: 0.7;
}
.app-card .cta-row {
    margin-top: 36px;
    display: flex;
    gap: 12px;
}
.app-card .cta-light {
    background: #fff;
    color: #111;
    padding: 12px 20px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
.app-card .cta-ghost {
    background: transparent;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
}

.app-mock {
    aspect-ratio: 4/5;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 80%;
}
.app-mock .dot-row {
    display: flex;
    gap: 6px;
    padding: 14px;
}
.app-mock .dot-row span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}
.app-mock .mock-body {
    padding: 0 22px 22px;
    display: grid;
    gap: 10px;
}
.app-mock .bar {
    height: 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.22);
}
.app-mock .bar.w70 {
    width: 70%;
}
.app-mock .bar.w40 {
    width: 40%;
}
.app-mock .bar.w55 {
    width: 55%;
}
.app-mock .card-in {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px;
    margin-top: 8px;
}
.app-mock .big-num {
    font-size: 48px;
    letter-spacing: -0.03em;
    font-weight: 400;
}
.app-mock .chip-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.app-mock .chip {
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 900px) {
    .app-card {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        min-height: auto;
    }
    .app-mock {
        max-width: 340px;
    }
}

/* ------------ FAQ ------------ */
.faq {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
}
@media (max-width: 900px) {
    .faq {
        grid-template-columns: 1fr;
    }
}
.faq h2 {
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 400;
    margin: 0;
}
.faq h2 em {
    font-style: normal;
    font-weight: 400;
    color: var(--orange2);
}
.faq-list {
    border-top: 1px solid var(--line);
}
.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-item.in {
    opacity: 1;
    transform: translateY(0);
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 20px;
    letter-spacing: -0.01em;
    font-weight: 400;
    transition: color 0.3s;
}
.faq-item:hover .faq-q {
    color: var(--orange2);
}
.faq-q .mnum {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--fg-soft);
    letter-spacing: 0.12em;
}
.faq-plus {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        background 0.3s,
        color 0.3s,
        border-color 0.3s;
}
.faq-item.open .faq-plus {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: rotate(135deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.4s ease,
        padding-top 0.4s ease;
    color: var(--fg-soft);
    font-size: 15px;
    line-height: 1.55;
    padding-right: 40px;
}
.faq-item.open .faq-a {
    max-height: 320px;
    opacity: 1;
    padding-top: 16px;
}

/* ------------ CONTACT + FOOTER ------------ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-left h2 {
    font-size: clamp(36px, 5vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0 0 22px;
    font-weight: 400;
}
.contact-left h2 em {
    font-style: normal;
    font-weight: 400;
    color: var(--orange2);
}
.contact-left p {
    color: var(--fg-soft);
    font-size: 17px;
    line-height: 1.55;
    max-width: 42ch;
}
.contact-meta {
    margin-top: 34px;
    display: grid;
    gap: 14px;
}
.contact-meta .row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    font-size: 15px;
}
.contact-meta .row .k {
    color: var(--fg-soft);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form {
    background: var(--chip);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--line);
}
.field {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
}
.field label {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg-soft);
}
.field input,
.field select,
.field textarea {
    background: var(--bg);
    color: var(--fg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--orange);
}
.field textarea {
    min-height: 120px;
    resize: vertical;
}
.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.chip-group button {
    background: var(--bg);
    color: var(--fg);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}
.chip-group button.on {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
[data-theme="dark"] .chip-group button.on {
    background: #fff;
    color: var(--ink);
}

.submit {
    width: 100%;
    margin-top: 6px;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    color: #fff;
    padding: 16px;
    border: 0;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

footer {
    padding: 60px 40px 36px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
}
@media (max-width: 900px) {
    footer {
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
    }
}
@media (max-width: 520px) {
    footer {
        grid-template-columns: 1fr;
    }
}
footer h5 {
    font-family: "JetBrains Mono", monospace;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg-soft);
    margin: 0 0 14px;
}
footer a {
    display: block;
    padding: 4px 0;
    font-size: 14px;
}
footer a:hover {
    color: var(--orange2);
}
.foot-brand .bigword {
    font-size: clamp(80px, 14vw, 200px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    font-weight: 600;
    color: var(--fg);
    opacity: 0.9;
    margin: 20px 0 0;
}
.foot-brand .bigword em {
    font-style: normal;
    font-weight: 500;
    color: var(--orange2);
    -webkit-text-fill-color: var(--orange2);
}
.foot-bot {
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--fg-soft);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-top: 1px solid var(--line);
}

/* test */

.spacer {
    height: 60vh;
    position: relative;
}

.cards {
    position: relative;
    width: 90%;
    margin: 0 auto;
}
.card {
    position: relative;
    margin: 50px auto;
    width: 100%;
    height: auto;
}

.container {
    width: 100%;
    display: flex;
    align-items: top;
    justify-content: center;
}

img {
    max-width: 100%;
    width: 100%;
    will-change: transform, filter;
}

.following-content {
    height: 100vh;
    background-color: black;
    color: white;
    text-align: center;
    font-size: 30px;
    line-height: 100vh;
    position: relative;
}
.black {
    background-color: black;
}

/* ════════════════════════════════════════
   KANBAN MODULE — scoped under .kanban-module
   Drop the markup + this CSS into any page.
════════════════════════════════════════ */
.kanban-module {
    --black: #0d0d0d;
    --white: #f0ece4;
    --orange: #c04a1a;
    --muted: rgba(240, 236, 228, 0.42);
    --ui-bg: #141414;
    --ui-panel: #1c1c1c;
    --ui-border: rgba(255, 255, 255, 0.07);

    font-family: "Barlow", sans-serif;
    color: var(--white);
    /*  background-color: yellow;*/
    width: 100%;
}
.kanban-module *,
.kanban-module *::before,
.kanban-module *::after {
    box-sizing: border-box;
}

/* Scroll container — 300vh gives the build animation room to breathe.
   Reduce/increase to make the animation faster/slower. */
.kanban-module .scroll-section {
    height: 300vh;
    position: relative;
}
.kanban-module .sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
    /*   background: var(--black);*/
}

@media (max-width: 860px) {
    .kanban-module .sticky-wrapper {
        padding: 16px;
    }
}

/* ── Side reveal panel (left of the kanban) ── */
.kanban-module .kb-reveal {
    position: absolute;
    left: 3%;
    top: 50%;
    width: min(28vw, 320px);
    text-align: left;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    color: var(--fg);
    font-family: "Archivo", sans-serif;
}
.kanban-module .kb-reveal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-soft);
}
.kanban-module .kb-reveal-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}
.kanban-module .kb-reveal-title {
    font-size: clamp(28px, 3.2vw, 52px);
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 400;
    margin: 18px 0 0;
}
.kanban-module .kb-reveal-sub {
    color: var(--fg-soft);
    line-height: 1.55;
    margin-top: 18px;
    font-size: 15px;
    max-width: 32ch;
}
@media (max-width: 1180px) {
    .kanban-module .kb-reveal {
        display: none;
    }
}

/* ── Browser shell ── */
.kanban-module .browser {
    background: var(--ui-bg);
    border: 1px solid var(--ui-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    height: 100%;
    max-height: 720px;
}

.kanban-module .build-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--orange);
    width: 0%;
    z-index: 50;
}

.kanban-module .b-bar {
    background: #0f0f0f;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border-bottom: 1px solid var(--ui-border);
}
.kanban-module .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.kanban-module .d-r {
    background: #ff5f57;
}
.kanban-module .d-y {
    background: #ffbd2e;
}
.kanban-module .d-g {
    background: #28c840;
}
.kanban-module .b-url {
    flex: 1;
    height: 18px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    margin: 0 8px;
    display: flex;
    align-items: center;
    padding: 0 7px;
    gap: 4px;
    opacity: 0;
}
.kanban-module .b-url-txt {
    font-family: "JetBrains Mono", monospace;
    font-size: 7.5px;
    color: rgba(255, 255, 255, 0.25);
}
.kanban-module .b-url-lock {
    font-size: 7px;
    color: var(--orange);
}

.kanban-module .b-body {
    display: flex;
    flex: 1;
    min-height: 0;
}

/* Sidebar */
.kanban-module .b-sidebar {
    width: 44px;
    background: #0f0f0f;
    border-right: 1px solid var(--ui-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 4px;
    flex-shrink: 0;
}
.kanban-module .si {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.18);
    opacity: 0;
}
.kanban-module .si.active {
    background: var(--orange);
    color: white;
}
.kanban-module .s-sep {
    width: 20px;
    height: 1px;
    background: var(--ui-border);
    margin: 3px 0;
    opacity: 0;
}

@media (max-width: 380px) {
    .kanban-module .b-sidebar {
        display: none;
    }
}

/* Main */
.kanban-module .b-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

/* Topbar */
.kanban-module .b-topbar {
    height: 38px;
    background: #111;
    border-bottom: 1px solid var(--ui-border);
    display: flex;
    align-items: center;
    padding: 0 14px;
    justify-content: space-between;
    flex-shrink: 0;
    opacity: 0;
}
.kanban-module .b-page-title {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}
.kanban-module .b-breadcrumb {
    font-family: "JetBrains Mono", monospace;
    font-size: 7px;
    color: rgba(255, 255, 255, 0.18);
    margin-top: 1px;
}
.kanban-module .b-topbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
}
.kanban-module .b-pill {
    font-family: "JetBrains Mono", monospace;
    font-size: 7px;
    padding: 2px 7px;
    border-radius: 2px;
    background: rgba(192, 74, 26, 0.12);
    color: var(--orange);
    border: 1px solid rgba(192, 74, 26, 0.28);
}
.kanban-module .b-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 9px;
    color: white;
}

@media (max-width: 480px) {
    .kanban-module .b-breadcrumb,
    .kanban-module .b-pill {
        display: none;
    }
}

/* Content */
.kanban-module .b-content {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    min-height: 0;
}

/* ── Kanban ── */
.kanban-module .kanban-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    opacity: 0;
    flex-shrink: 0;
}
.kanban-module .k-col {
    background: var(--ui-panel);
    border: 1px solid var(--ui-border);
    border-radius: 5px;
    padding: 8px;
    min-width: 0;
}
.kanban-module .k-col-head {
    font-family: "JetBrains Mono", monospace;
    font-size: 7px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.kanban-module .k-col-head::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}
.kanban-module .k-col-head.doing {
    color: var(--orange);
}
.kanban-module .k-col-head.done {
    color: #4ade80;
}
.kanban-module .k-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--ui-border);
    border-radius: 4px;
    padding: 7px;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(5px);
}
.kanban-module .k-card:last-child {
    margin-bottom: 0;
}
.kanban-module .k-card.doing {
    border-color: rgba(192, 74, 26, 0.22);
}
.kanban-module .k-card.done {
    border-color: rgba(74, 222, 128, 0.15);
}
.kanban-module .k-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 6.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 3px;
}
.kanban-module .k-tag.done {
    color: #4ade80;
}
.kanban-module .k-title {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.3;
    margin-bottom: 5px;
}
.kanban-module .k-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.kanban-module .k-ava {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.kanban-module .k-pri {
    font-family: "JetBrains Mono", monospace;
    font-size: 6px;
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 380px) {
    .kanban-module .k-title {
        font-size: 8px;
    }
    .kanban-module .k-foot {
        display: none;
    }
}

/* ── Bottom row : Avancement + Retours ── */
.kanban-module .b-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 7px;
    opacity: 0;
    flex: 1;
    min-height: 0;
}

@media (max-width: 480px) {
    .kanban-module .b-bottom {
        grid-template-columns: 1fr;
    }
    .kanban-module .n-panel {
        display: none;
    }
}

.kanban-module .t-panel,
.kanban-module .n-panel {
    background: var(--ui-panel);
    border: 1px solid var(--ui-border);
    border-radius: 5px;
    padding: 9px 10px;
    overflow: hidden;
    min-height: 0;
}
.kanban-module .panel-lbl {
    font-family: "JetBrains Mono", monospace;
    font-size: 7px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 8px;
}
.kanban-module .tl-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.kanban-module .tl-row {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateX(-5px);
}
.kanban-module .tl-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}
.kanban-module .tl-name {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.52);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kanban-module .tl-track {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
}
.kanban-module .tl-fill {
    height: 100%;
    border-radius: 2px;
}
.kanban-module .tl-pct {
    font-family: "JetBrains Mono", monospace;
    font-size: 6.5px;
    color: rgba(255, 255, 255, 0.2);
    width: 22px;
    text-align: right;
    flex-shrink: 0;
}

.kanban-module .n-item {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(4px);
}
.kanban-module .n-ava {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    margin-top: 1px;
}
.kanban-module .n-bubble {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 4px 4px 4px;
    padding: 4px 7px;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}
.kanban-module .n-bubble strong {
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 6.5px;
    color: rgba(255, 255, 255, 0.18);
    font-weight: 400;
    margin-bottom: 2px;
}
.kanban-module .cursor-blink {
    display: inline-block;
    width: 4px;
    height: 8px;
    background: var(--orange);
    vertical-align: middle;
    animation: kb-blink 1s step-end infinite;
    opacity: 0;
}
@keyframes kb-blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
