:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-soft: #eef2f8;
    --surface-dark: #111827;
    --surface-darker: #0b1120;
    --text: #111827;
    --text-soft: #5f6b7a;
    --text-light: #d8deea;
    --border: #dfe5ee;
    --primary: #3867f4;
    --primary-dark: #244fd7;
    --primary-soft: #e8eeff;
    --success: #21a66d;
    --warning: #f0a326;
    --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
    --shadow-soft: 0 12px 35px rgba(17, 24, 39, 0.08);
    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 30px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--surface-dark);
    color: #ffffff;
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 247, 251, 0.88);
    border-bottom: 1px solid rgba(223, 229, 238, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--text);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

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

.main-nav a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--text);
}

.main-nav .nav-cta {
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--text);
    color: #ffffff;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
    color: #ffffff;
    background: #283449;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    border-radius: 99px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 82px;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(5px);
    pointer-events: none;
}

.hero-glow-one {
    width: 540px;
    height: 540px;
    top: -310px;
    left: 5%;
    background: radial-gradient(circle, rgba(56, 103, 244, 0.22), transparent 68%);
}

.hero-glow-two {
    width: 450px;
    height: 450px;
    right: -170px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(126, 87, 255, 0.15), transparent 68%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
    align-items: center;
    gap: 64px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
}

.eyebrow-light {
    color: #9db2ff;
}

.hero h1 {
    max-width: 690px;
    margin: 0;
    font-size: clamp(46px, 5.5vw, 74px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero-lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 750;
    transition:
        transform 160ms ease,
        background 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(56, 103, 244, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--primary-dark);
}

.button-secondary {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: #c6cfdd;
    background: #ffffff;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 26px;
    color: var(--text-soft);
    font-size: 14px;
}

.hero-proof p {
    margin: 0;
}

.proof-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(33, 166, 109, 0.12);
}

.product-visual {
    position: relative;
    padding: 38px 0 48px;
}

.browser-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
    transform: perspective(1300px) rotateY(-3deg) rotateX(1deg);
}

.browser-toolbar {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 17px;
    border-bottom: 1px solid #e8edf4;
    background: #f9fafc;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cfd6e1;
}

.browser-address {
    min-width: 210px;
    padding: 5px 13px;
    border-radius: 7px;
    background: #eef1f6;
    color: #7b8696;
    font-size: 10px;
}

.dashboard {
    min-height: 420px;
    display: grid;
    grid-template-columns: 70px 1fr;
    background: #f5f7fb;
}

.dashboard-sidebar {
    padding: 18px 14px;
    background: #111827;
}

.dashboard-logo {
    width: 32px;
    height: 32px;
    margin: 0 auto 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.sidebar-line {
    width: 32px;
    height: 6px;
    margin: 19px auto;
    border-radius: 99px;
    background: #3b4659;
}

.sidebar-line.active {
    background: #7795ff;
}

.sidebar-line.short {
    width: 23px;
}

.dashboard-content {
    padding: 27px 25px;
}

.dashboard-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-heading > div:first-child {
    display: flex;
    flex-direction: column;
}

.dashboard-label {
    color: #8b95a5;
    font-size: 10px;
}

.dashboard-heading strong {
    font-size: 18px;
}

.dashboard-avatar {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e5ebf6;
    color: #59667a;
    font-size: 9px;
    font-weight: 800;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin-top: 23px;
}

.metric-card {
    min-width: 0;
    padding: 15px;
    border: 1px solid #e5eaf1;
    border-radius: 12px;
    background: #ffffff;
}

.metric-card span,
.metric-card small {
    display: block;
    color: #8590a1;
    font-size: 9px;
}

.metric-card strong {
    display: block;
    margin: 5px 0 3px;
    font-size: 17px;
}

.dashboard-columns {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 12px;
    margin-top: 13px;
}

.chart-card,
.action-card {
    min-height: 190px;
    padding: 16px;
    border: 1px solid #e5eaf1;
    border-radius: 13px;
    background: #ffffff;
}

.card-heading {
    display: flex;
    justify-content: space-between;
    color: #59667a;
    font-size: 10px;
}

.card-heading small {
    color: #9aa4b3;
}

.chart-bars {
    height: 125px;
    display: flex;
    align-items: flex-end;
    gap: 9px;
    padding-top: 18px;
}

.chart-bars span {
    flex: 1;
    min-width: 7px;
    border-radius: 4px 4px 1px 1px;
    background: linear-gradient(180deg, #5d7eff, #abc0ff);
}

.action-card {
    background: #111827;
    color: #ffffff;
}

.action-label {
    display: inline-block;
    margin-bottom: 22px;
    color: #9db2ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.action-card strong {
    display: block;
    font-size: 13px;
    line-height: 1.4;
}

.action-card p {
    margin: 9px 0 15px;
    color: #aeb8c7;
    font-size: 9px;
    line-height: 1.5;
}

.fake-link {
    color: #9db2ff;
    font-size: 9px;
    font-weight: 700;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(223, 229, 238, 0.85);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.floating-card-orders {
    left: -30px;
    bottom: 8px;
}

.floating-card-stock {
    right: -28px;
    top: 20px;
}

.floating-icon {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(33, 166, 109, 0.14);
    color: var(--success);
    font-size: 13px;
    font-weight: 900;
}

.floating-icon.warning {
    background: rgba(240, 163, 38, 0.15);
    color: var(--warning);
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 10px;
}

.floating-card small {
    color: #8a95a6;
    font-size: 8px;
}

.trust-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.62);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
    padding: 26px 34px;
    border-right: 1px solid var(--border);
}

.trust-grid > div:first-child {
    padding-left: 0;
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    font-size: 14px;
}

.trust-grid span {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 12px;
}

.section {
    padding: 112px 0;
}

.section-heading {
    margin-bottom: 46px;
}

.section-heading-wide {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 0.75fr);
    align-items: end;
    gap: 70px;
}

.section-heading h2,
.about-copy h2,
.contact-inner h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading p {
    margin: 0;
    color: var(--text-soft);
    font-size: 17px;
}

.section-commerce {
    background: #ffffff;
}

.commerce-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 24px;
}

.commerce-main-card {
    padding: 44px;
    border-radius: var(--radius-large);
    background:
        radial-gradient(circle at 100% 0, rgba(83, 112, 255, 0.22), transparent 34%),
        var(--surface-dark);
    color: #ffffff;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.status-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.status-live {
    background: rgba(33, 166, 109, 0.13);
    color: #5bd29e;
}

.status-live span {
    background: #5bd29e;
}

.commerce-main-card h3 {
    max-width: 700px;
    margin: 28px 0 18px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.commerce-main-card > p {
    max-width: 670px;
    margin: 0;
    color: #b9c2d0;
    font-size: 17px;
}

.feature-list {
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: #e5e9f0;
    font-size: 14px;
}

.feature-list span {
    color: #829cff;
    font-size: 10px;
    font-weight: 800;
}

.card-actions {
    margin-top: 30px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
}

.text-link:hover {
    color: #aab9ff;
}

.commerce-side {
    display: grid;
    gap: 18px;
}

.mini-card {
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: #ffffff;
}

.mini-icon {
    width: 37px;
    height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.mini-card h3 {
    margin: 18px 0 9px;
    font-size: 18px;
    line-height: 1.3;
}

.mini-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
}

.section-process {
    overflow: hidden;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: process;
}

.process-list li {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 22px;
    padding: 27px 0;
    border-top: 1px solid var(--border);
}

.process-list li:last-child {
    border-bottom: 1px solid var(--border);
}

.process-number {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ffffff;
    color: var(--primary);
    box-shadow: var(--shadow-soft);
    font-weight: 800;
}

.process-list h3 {
    margin: 0 0 7px;
    font-size: 22px;
}

.process-list p {
    max-width: 750px;
    margin: 0;
    color: var(--text-soft);
}

.mission {
    padding: 105px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(73, 104, 255, 0.2), transparent 35%),
        var(--surface-darker);
    color: #ffffff;
}

.mission-inner {
    max-width: 980px;
}

.mission blockquote {
    margin: 0;
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.mission blockquote span {
    display: block;
    color: #829cff;
}

.mission p {
    max-width: 700px;
    margin: 30px 0 0;
    color: #b7c0cf;
    font-size: 18px;
}

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

.product-card {
    min-height: 280px;
    padding: 31px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: #ffffff;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

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

.product-card-featured {
    border-color: rgba(56, 103, 244, 0.25);
    background:
        radial-gradient(circle at 100% 0, rgba(56, 103, 244, 0.11), transparent 38%),
        #ffffff;
}

.product-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.product-symbol {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--surface-dark);
    color: #ffffff;
    font-weight: 800;
}

.status-technology {
    background: #eaf0ff;
    color: #3f5eb6;
}

.status-pilot {
    background: #fff2d9;
    color: #956113;
}

.status-lab {
    background: #f1ebff;
    color: #6d4caa;
}

.product-card h3 {
    margin: 36px 0 12px;
    font-size: 27px;
    letter-spacing: -0.025em;
}

.product-card p {
    max-width: 480px;
    margin: 0;
    color: var(--text-soft);
}

.section-about {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.65fr);
    align-items: center;
    gap: 90px;
}

.about-copy p {
    max-width: 710px;
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: 17px;
}

.experience-card {
    padding: 38px;
    border-radius: var(--radius-large);
    background: var(--surface-soft);
}

.experience-number {
    color: var(--primary);
    font-size: 76px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.07em;
}

.experience-card > span {
    color: var(--text-soft);
    font-size: 14px;
}

.experience-divider {
    height: 1px;
    margin: 29px 0;
    background: #d5dce7;
}

.experience-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.experience-card li {
    position: relative;
    padding: 9px 0 9px 20px;
    color: #3f4a59;
    font-size: 14px;
}

.experience-card li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

.contact-section {
    padding: 98px 0;
    background: var(--primary);
    color: #ffffff;
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 70px;
}

.contact-inner h2 {
    max-width: 760px;
}

.contact-inner p {
    max-width: 690px;
    margin: 24px 0 0;
    color: #d8e0ff;
    font-size: 17px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    min-width: 255px;
}

.button-light {
    background: #ffffff;
    color: var(--text);
}

.button-light:hover,
.button-light:focus-visible {
    background: #f1f4fa;
}

.contact-demo-link {
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
}

.site-footer {
    padding: 54px 0;
    background: var(--surface-darker);
    color: #ffffff;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: end;
    gap: 50px;
}

.footer-brand {
    color: #ffffff;
}

.footer-brand .brand-mark {
    background: var(--primary);
}

.footer-inner > div:first-child p {
    margin: 13px 0 0;
    color: #929dad;
    font-size: 13px;
}

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

.footer-links a {
    color: #b8c0cd;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    margin: 0;
    color: #7f8998;
    font-size: 12px;
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 780px;
    }

    .product-visual {
        width: min(100%, 780px);
        margin: 0 auto;
    }

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

    .commerce-side {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        gap: 55px;
    }
}

@media (max-width: 840px) {
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 102;
    }

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

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

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

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 101;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 0;
        padding: 90px 30px 40px;
        background: rgba(245, 247, 251, 0.98);
        transform: translateX(100%);
        transition: transform 200ms ease;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav a {
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
        font-size: 18px;
    }

    .main-nav .nav-cta {
        margin-top: 18px;
        padding: 14px 18px;
        border: 0;
        text-align: center;
    }

    .section-heading-wide,
    .about-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .commerce-side {
        grid-template-columns: 1fr;
    }

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

    .trust-grid > div {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .trust-grid > div:last-child {
        border-bottom: 0;
    }

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

    .contact-actions {
        min-width: 0;
        align-items: flex-start;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        min-height: 68px;
    }

    .hero {
        padding: 65px 0 55px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .product-visual {
        margin-top: 15px;
        padding: 22px 0 30px;
    }

    .browser-frame {
        transform: none;
        border-radius: 17px;
    }

    .browser-address {
        min-width: 0;
        flex: 1;
    }

    .dashboard {
        min-height: 340px;
        grid-template-columns: 48px 1fr;
    }

    .dashboard-sidebar {
        padding: 14px 8px;
    }

    .dashboard-logo {
        width: 27px;
        height: 27px;
    }

    .sidebar-line {
        width: 23px;
    }

    .dashboard-content {
        padding: 18px 12px;
    }

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

    .metric-card:last-child {
        display: none;
    }

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

    .action-card {
        display: none;
    }

    .floating-card-stock {
        display: none;
    }

    .floating-card-orders {
        left: 8px;
        bottom: 0;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .commerce-main-card {
        padding: 29px 23px;
        border-radius: 22px;
    }

    .process-list li {
        grid-template-columns: 54px 1fr;
        gap: 14px;
    }

    .process-number {
        width: 42px;
        height: 42px;
    }

    .mission {
        padding: 78px 0;
    }

    .product-card {
        min-height: 0;
        padding: 25px;
    }

    .product-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .experience-card {
        padding: 29px 24px;
        border-radius: 22px;
    }

    .contact-section {
        padding: 76px 0;
    }

    .contact-actions {
        width: 100%;
    }

    .contact-demo-link {
        justify-content: flex-start;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* PLAPP logo asset */
.brand-header {
    flex: 0 0 auto;
}

.brand-logo-image {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;
}

@media (max-width: 620px) {
    .brand-logo-image {
        height: 35px;
    }
}

/* PLAPP landing v2: screenshot and product map */

.product-screenshot {
    margin: 0;
    padding: 10px 0 12px;
}

.product-screenshot-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
    transform: perspective(1300px) rotateY(-2deg) rotateX(1deg);
}

.product-screenshot-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.product-screenshot-label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 7px 11px;
    border: 1px solid rgba(223, 229, 238, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.product-screenshot figcaption {
    max-width: 580px;
    margin: 15px auto 0;
    color: var(--text-soft);
    font-size: 12px;
    text-align: center;
}

.tool-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 26px 0 20px;
    padding: 0;
    list-style: none;
}

.tool-list li {
    padding: 7px 10px;
    border: 1px solid #dfe5ee;
    border-radius: 999px;
    background: #f7f9fc;
    color: #3f4a59;
    font-size: 11px;
    font-weight: 750;
}

.product-card-note {
    margin-top: 18px !important;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 13px;
}

.finance-topics {
    display: grid;
    gap: 16px;
    margin-top: 25px;
}

.finance-topics > div {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #f8f9fc;
}

.finance-topics strong,
.finance-topics span {
    display: block;
}

.finance-topics strong {
    margin-bottom: 6px;
    color: var(--text);
    font-size: 14px;
}

.finance-topics span {
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.55;
}

@media (max-width: 620px) {
    .product-screenshot-frame {
        border-radius: 16px;
        transform: none;
    }

    .product-screenshot-label {
        top: 10px;
        left: 10px;
        padding: 5px 8px;
        font-size: 8px;
    }

    .product-screenshot figcaption {
        padding: 0 12px;
    }
}
