:root {
    --ink: #0b1220;
    --ink-2: #121a2b;
    --ink-3: #1a2438;
    --paper: #ffffff;
    --paper-2: #f6f7f9;
    --white: #ffffff;
    --line: rgba(15, 23, 42, 0.08);
    --line-strong: rgba(15, 23, 42, 0.14);
    --muted: #5c6578;
    --text: #161d2e;
    --brand: #4f85e2;
    --brand-2: #3a6fd4;
    --brand-soft: rgba(79, 133, 226, 0.12);
    --gold: #c4a574;
    --success: #1f8a70;
    --danger: #c44b4b;
    --radius: 1.35rem;
    --radius-sm: 0.85rem;
    --shadow: 0 18px 40px rgba(11, 18, 32, 0.08);
    --shadow-sm: 0 6px 18px rgba(11, 18, 32, 0.04);
    --font: "Plus Jakarta Sans", system-ui, sans-serif;
    --serif: "Fraunces", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.25rem;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--brand-2);
    text-decoration: none;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

a:hover {
    color: var(--ink);
}

h1,
h2,
h3,
h4,
h5,
.font-serif {
    font-family: var(--serif);
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.15;
}

.container {
    max-width: 1180px;
}

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

.btn {
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.45rem;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    outline: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:focus,
.btn:focus-visible,
.btn:active,
.btn.active,
.btn:active:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn-primary {
    background: var(--brand) !important;
    border-color: var(--brand) !important;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(79, 133, 226, 0.28);
}

.btn-primary:hover {
    background: var(--brand-2) !important;
    border-color: var(--brand-2) !important;
    color: #fff !important;
}

.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active,
.btn-primary.active {
    background: var(--brand) !important;
    border-color: var(--brand) !important;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(79, 133, 226, 0.28) !important;
}

.btn-outline-primary {
    background: transparent;
    color: var(--ink) !important;
    border-color: var(--line-strong) !important;
}

.btn-outline-primary:hover {
    background: var(--ink) !important;
    color: #fff !important;
    border-color: var(--ink) !important;
}

.btn-outline-primary:focus,
.btn-outline-primary:focus-visible,
.btn-outline-primary:active,
.btn-outline-primary.active {
    background: transparent !important;
    color: var(--ink) !important;
    border-color: var(--line-strong) !important;
}

.btn-outline-light {
    color: #fff !important;
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
}

.btn-outline-light:focus,
.btn-outline-light:focus-visible,
.btn-outline-light:active,
.btn-outline-light.active {
    background: transparent !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
}

.btn-dark,
.btn-lg.btn-dark {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 1.35rem;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(-50%);
    animation: bounce-down 1.8s ease-in-out infinite;
}

.hero-scroll:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    animation-play-state: paused;
}

.hero-scroll i {
    font-size: 1.45rem;
    line-height: 1;
}

@keyframes bounce-down {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ---------- Loader ---------- */

#preloader {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

#status .spinner {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

#topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        padding 0.25s ease;
}

#topnav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

#topnav .logo img {
    height: 36px;
    width: auto;
}

#topnav .logo-on-dark {
    display: none;
}
#topnav .logo-on-light {
    display: inline;
}

#topnav.nav-on-dark:not(.nav-sticky) .logo-on-dark {
    display: inline;
}
#topnav.nav-on-dark:not(.nav-sticky) .logo-on-light {
    display: none;
}

#topnav.nav-sticky {
    background: #fff;
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
    padding: 0.75rem 0;
}

#navigation {
    margin-left: auto;
    margin-right: 1rem;
}

.navigation-menu {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation-menu > li > a {
    display: inline-flex;
    align-items: center;
    color: var(--text);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
}

#topnav.nav-on-dark:not(.nav-sticky) .navigation-menu > li > a {
    color: rgba(255, 255, 255, 0.86);
}

.navigation-menu > li > a:hover,
.navigation-menu > li.active > a,
#topnav .navigation-menu > li:hover > a {
    color: var(--brand-2);
    background: var(--brand-soft);
}

#topnav.nav-on-dark:not(.nav-sticky) .navigation-menu > li > a:hover,
#topnav.nav-on-dark:not(.nav-sticky) .navigation-menu > li.active > a {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.has-submenu {
    position: relative;
}

.menu-arrow {
    display: none;
}

.submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.has-submenu:hover > .submenu,
.submenu.open {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.submenu li a {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 0.6rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.submenu li a:hover,
.submenu li a.active {
    background: var(--paper);
    color: var(--brand-2);
}

.buy-button .btn {
    padding: 0.7rem 1.2rem;
}

.menu-extras {
    display: none;
}

.navbar-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    cursor: pointer;
}

.navbar-toggle .lines {
    width: 18px;
}

.navbar-toggle .lines span {
    display: block;
    height: 1.5px;
    background: var(--ink);
    margin: 4px 0;
    transition: 0.2s ease;
}

#topnav.nav-on-dark:not(.nav-sticky) .navbar-toggle {
    border-color: rgba(255, 255, 255, 0.2);
}

#topnav.nav-on-dark:not(.nav-sticky) .navbar-toggle .lines span {
    background: #fff;
}

.navbar-toggle.open .lines span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.navbar-toggle.open .lines span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.open .lines span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

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

.hero {
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 8rem 0 4rem;
    --hero-x: 0px;
    --hero-y: 0px;
    background:
        radial-gradient(
            820px 420px at calc(78% + var(--hero-x)) calc(-6% + var(--hero-y)),
            rgba(79, 133, 226, 0.32),
            transparent 58%
        ),
        radial-gradient(
            560px 320px at calc(12% - var(--hero-x)) calc(86% + var(--hero-y)),
            rgba(196, 165, 116, 0.12),
            transparent 52%
        ),
        var(--ink);
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.95rem 0.45rem 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    flex: none;
    border-radius: 50%;
    background: var(--gold);
}

.eyebrow-cycle {
    display: grid;
    overflow: hidden;
    line-height: 1.45;
}

.eyebrow-sizer,
.eyebrow-words {
    grid-area: 1 / 1;
}

.eyebrow-sizer {
    visibility: hidden;
    white-space: nowrap;
}

.eyebrow-words {
    display: grid;
}

.eyebrow-words span {
    grid-area: 1 / 1;
    white-space: nowrap;
    opacity: 0;
    animation: word-cycle 9s infinite;
}

.eyebrow-words span:nth-child(1) {
    animation-delay: 0s;
}
.eyebrow-words span:nth-child(2) {
    animation-delay: 3s;
}
.eyebrow-words span:nth-child(3) {
    animation-delay: 6s;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 600;
    margin: 1.25rem 0 1.1rem;
    max-width: 11ch;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    max-width: 38rem;
}

.hero h1.hero-price-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    max-width: none;
    font-size: clamp(2.1rem, 4.2vw, 3.6rem);
}

.hero-starting-label {
    display: block;
    font-size: 0.42em;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-starting-amount {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 0.45rem;
}

.hero-starting-price {
    font-family: var(--serif);
    color: var(--gold);
    letter-spacing: -0.03em;
}

.hero-starting-unit {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.42em;
    font-weight: 600;
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    position: relative;
    z-index: 4;
}

.hero-drop,
.product-drop {
    position: relative;
}

.hero-drop-btn,
.product-drop-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    list-style: none;
    cursor: pointer;
}

.hero-drop-btn::-webkit-details-marker,
.product-drop-btn::-webkit-details-marker {
    display: none;
}

.hero-drop-caret,
.product-drop-caret {
    width: 0.45rem;
    height: 0.45rem;
    margin-top: -0.15rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.hero-drop[open] .hero-drop-caret,
.product-drop[open] .product-drop-caret {
    margin-top: 0.2rem;
    transform: rotate(225deg);
}

.hero-drop-menu,
.product-drop-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    min-width: 220px;
    margin: 0;
    padding: 10px 0.5rem 0.5rem;
    list-style: none;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-drop-menu::before,
.product-drop-menu::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.hero-drop-menu a,
.product-drop-menu a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 0.6rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-drop-menu a:hover,
.product-drop-menu a:hover {
    background: var(--paper);
    color: var(--brand-2);
}

.hero-frame {
    position: relative;
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
    transform-style: preserve-3d;
    transition: transform 0.35s ease;
}

.hero-glow {
    position: absolute;
    inset: 12% -8% auto;
    height: 70%;
    background: radial-gradient(
        circle,
        rgba(79, 133, 226, 0.45),
        transparent 70%
    );
    filter: blur(20px);
    z-index: -1;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 9rem 0 4rem;
    background:
        radial-gradient(
            820px 420px at 78% -6%,
            rgba(79, 133, 226, 0.32),
            transparent 58%
        ),
        radial-gradient(
            560px 320px at 12% 86%,
            rgba(196, 165, 116, 0.12),
            transparent 52%
        ),
        var(--ink);
    color: #fff;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 0.85rem;
    color: #fff;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.05rem;
}

.page-hero .section-kicker {
    color: rgba(255, 255, 255, 0.62);
}

.page-hero-meta {
    display: inline-flex;
    margin-top: 1.2rem !important;
    padding: 0.38rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: none !important;
}

.breadcrumb-seo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.62);
}

.breadcrumb-seo a {
    color: rgba(255, 255, 255, 0.62);
}

.breadcrumb-seo a:hover {
    color: #fff;
}

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

.section {
    padding: 5.5rem 0;
}

.section-sm {
    padding: 4rem 0;
}

.section-title {
    max-width: 40rem;
}

.section-title.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-kicker {
    color: var(--brand-2);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.section-title h2 {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    margin-bottom: 0.85rem;
}

.section-title p,
.text-muted {
    color: var(--muted) !important;
}

.surface {
    background: var(--white);
}

.section-soft {
    background: var(--paper-2);
}

.surface-ink {
    background: var(--ink);
    color: #fff;
}

.surface-ink h2,
.surface-ink h3,
.surface-ink h4,
.surface-ink h5 {
    color: #fff;
}

.surface-ink .text-muted,
.surface-ink p {
    color: rgba(255, 255, 255, 0.68) !important;
}

/* ---------- Cards ---------- */

.z-card {
    --pointer-x: 50%;
    --pointer-y: 50%;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    box-shadow: none;
    transition:
        transform 0.35s ease,
        border-color 0.25s ease,
        box-shadow 0.35s ease;
}

.z-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        220px circle at var(--pointer-x) var(--pointer-y),
        rgba(79, 133, 226, 0.16),
        transparent 55%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.z-card > * {
    position: relative;
    z-index: 1;
}

.z-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(79, 133, 226, 0.32);
}

.z-card:hover::before {
    opacity: 1;
}

a.z-card-link {
    display: flex;
    flex-direction: column;
    color: inherit;
}

a.z-card-link:hover {
    color: inherit;
}

.z-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-soft);
    color: var(--brand-2);
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
    transition:
        transform 0.35s ease,
        background 0.25s ease;
}

.z-card:hover .icon-wrap {
    transform: scale(1.08) rotate(-6deg);
    background: rgba(79, 133, 226, 0.2);
}

.z-card h3 {
    font-family: var(--font);
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.55rem;
}

.z-card h3 a {
    color: inherit;
}

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

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1.1rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--brand-2);
}

.feature-link i {
    transition: transform 0.25s ease;
}

.z-card:hover .feature-link i {
    transform: translateX(5px);
}

/* ---------- Home apps ---------- */

#all-in-one {
    padding-bottom: 0;
    background: var(--paper-2);
}
#download {
    background: var(--paper-2);
}
.apps-section {
    overflow: hidden;
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    position: relative;
    align-items: stretch;
}

.apps-grid::before {
    content: "";
    position: absolute;
    top: 5.35rem;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(79, 133, 226, 0.35),
        rgba(31, 138, 112, 0.35),
        rgba(196, 165, 116, 0.45),
        transparent
    );
    background-size: 200% 100%;
    animation: apps-flow 4.5s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes apps-flow {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.app-card {
    --pointer-x: 50%;
    --pointer-y: 30%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    isolation: isolate;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: inherit;
    height: 100%;
    animation: app-float 5.8s ease-in-out infinite;
    transition:
        transform 0.35s ease,
        border-color 0.25s ease,
        box-shadow 0.35s ease;
}

.app-card.is-inventory {
    animation-delay: 0.45s;
}
.app-card.is-pos {
    animation-delay: 0.9s;
}

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

.app-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        240px circle at var(--pointer-x) var(--pointer-y),
        rgba(79, 133, 226, 0.16),
        transparent 58%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.app-card > * {
    position: relative;
    z-index: 1;
}

.app-card:hover {
    animation: none;
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(79, 133, 226, 0.32);
    color: inherit;
}

.app-card:hover::before {
    opacity: 1;
}

.app-card-stage {
    height: 200px;
    flex: none;
    display: flex;
    padding: 1.2rem 1.2rem 1.05rem;
    overflow: hidden;
    background:
        radial-gradient(
            420px 180px at 78% -20%,
            rgba(79, 133, 226, 0.38),
            transparent 58%
        ),
        radial-gradient(
            280px 140px at 8% 120%,
            rgba(196, 165, 116, 0.16),
            transparent 52%
        ),
        var(--ink);
}

.app-card.is-inventory .app-card-stage {
    background:
        radial-gradient(
            420px 180px at 78% -20%,
            rgba(45, 166, 140, 0.32),
            transparent 58%
        ),
        radial-gradient(
            280px 140px at 8% 120%,
            rgba(79, 133, 226, 0.14),
            transparent 52%
        ),
        var(--ink);
}

.app-card.is-pos .app-card-stage {
    background:
        radial-gradient(
            420px 180px at 78% -20%,
            rgba(196, 165, 116, 0.32),
            transparent 58%
        ),
        radial-gradient(
            280px 140px at 8% 120%,
            rgba(79, 133, 226, 0.14),
            transparent 52%
        ),
        var(--ink);
}

.app-mini {
    flex: 1;
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(12, 18, 32, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    color: #fff;
}

.app-mini .pos-slip li {
    overflow: visible;
    max-height: none;
}

.app-mini-kicker {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.app-mini-foot {
    margin: 0.5rem 0 0;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.62);
}

.app-mini .stock-sku {
    color: rgba(255, 255, 255, 0.86);
}

.app-mini .pos-total {
    font-size: 1.05rem;
}

.app-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.45rem 1.5rem 1.55rem;
}

.app-card-kicker {
    color: var(--brand-2);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.app-card h3 {
    font-family: var(--font);
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.app-card-body > p:not(.app-card-kicker) {
    color: var(--muted);
    margin-bottom: 0;
    font-size: 0.95rem;
    flex: 1;
}

.app-card-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: auto;
    padding-top: 1.05rem;
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--ink);
}

.app-card-price span {
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.app-card-price small {
    font-family: var(--font);
    font-size: 0.78rem;
    color: var(--muted);
}

.app-card .feature-link {
    margin-top: 0.85rem;
}

.app-card:hover .feature-link i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .apps-grid {
        grid-template-columns: 1fr;
        max-width: 26rem;
        margin: 0 auto;
    }

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

    .app-card {
        animation: none;
    }
}

.bento {
    display: grid;
    gap: 1.1rem;
}

.bento-wide {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius);
    padding: 2.25rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-wide h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.bento-wide p {
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

/* ---------- Clients / logos ---------- */

.clients-board {
    display: grid;
    grid-template-columns: minmax(16rem, 0.85fr) 1.2fr;
    gap: 3rem;
    align-items: center;
}

.clients-copy h2 {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    margin-bottom: 0.9rem;
}

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

.client-tile {
    --pointer-x: 50%;
    --pointer-y: 50%;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    min-height: 132px;
    padding: 1.15rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.7rem;
    transition:
        transform 0.3s ease,
        border-color 0.25s ease,
        box-shadow 0.3s ease;
}

.client-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        180px circle at var(--pointer-x) var(--pointer-y),
        rgba(79, 133, 226, 0.12),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.client-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 133, 226, 0.28);
    box-shadow: var(--shadow-sm);
}

.client-tile:hover::before {
    opacity: 1;
}

.client-tile img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.client-tile:hover img {
    transform: scale(1.06);
}

.client-tile img.is-black {
    filter: brightness(0);
}

.client-tile h3 {
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--muted);
}

.media-frame {
    --pointer-x: 50%;
    --pointer-y: 50%;
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.inuse-block {
    margin-bottom: 0;
}

.inuse-block .media-frame {
    max-width: 52rem;
    margin: 0 auto;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 50px rgba(11, 18, 32, 0.28);
}

.inuse-block .media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 18, 32, 0.12),
        rgba(11, 18, 32, 0.5)
    );
    pointer-events: none;
}

.inuse-block .play-btn {
    z-index: 1;
}

.media-frame img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.media-frame:hover img {
    transform: scale(1.03);
}

.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn i {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow);
    animation: pulse-ring 2.4s ease-out infinite;
    transition: transform 0.25s ease;
}

.play-btn:hover i {
    transform: scale(1.08);
    animation: none;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

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

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

.stat-item {
    text-align: center;
}

.stat-item h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stat-item h3 span {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: none;
    line-height: 1.1;
}

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

.surface-ink .stat-item p {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ---------- Mobile ---------- */

.mobile-board {
    display: grid;
    grid-template-columns: minmax(18rem, 0.95fr) 1.05fr;
    gap: 3.25rem;
    align-items: center;
}

.mobile-copy h2 {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    margin-bottom: 0.9rem;
}

.mobile-points {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.mobile-points li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
}

.mobile-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.mobile-stage {
    --pointer-x: 70%;
    --pointer-y: 20%;
    position: relative;
    display: grid;
    place-items: center;
    min-height: 32rem;
    padding: 1.5rem 0.5rem;
}

.mobile-stage::before {
    content: "";
    position: absolute;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(79, 133, 226, 0.18),
        transparent 68%
    );
    animation: phone-glow 6s ease-in-out infinite;
    pointer-events: none;
}

.phone {
    position: relative;
    z-index: 1;
    width: 16.25rem;
    padding: 0.62rem;
    border-radius: 2.15rem;
    background: linear-gradient(160deg, #2a354c 0%, #0c1322 42%, #080d18 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 28px 60px rgba(11, 18, 32, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: perspective(900px) rotateY(-10deg) rotateX(5deg);
    animation: phone-float 5.6s ease-in-out infinite;
}

.phone-btn {
    position: absolute;
    width: 3px;
    background: #1c2538;
    border-radius: 2px;
}

.phone-btn.is-vol {
    left: -3px;
    top: 5.4rem;
    height: 1.35rem;
    box-shadow: 0 1.7rem 0 0 #1c2538;
}

.phone-btn.is-pwr {
    right: -3px;
    top: 7.2rem;
    height: 2.4rem;
}

.phone-screen {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 26rem;
    padding: 0.7rem 0.7rem 0.55rem;
    border-radius: 1.65rem;
    overflow: hidden;
    background:
        radial-gradient(
            220px 140px at 85% -8%,
            rgba(79, 133, 226, 0.32),
            transparent 58%
        ),
        #0a101c;
    color: #fff;
}

.phone-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0.14),
        transparent 38%
    );
    pointer-events: none;
}

.phone-island {
    display: block;
    width: 5rem;
    height: 0.78rem;
    margin: 0 auto 0.7rem;
    border-radius: 99px;
    background: #05080f;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-status {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding: 0 0.2rem;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.phone-card {
    position: relative;
    z-index: 1;
    flex: 1;
    min-height: 0;
    padding: 0.85rem 0.9rem 0.8rem;
    border-radius: 1.05rem;
    background: rgba(12, 18, 32, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
}

.phone-scenes {
    display: grid;
}

.phone-scene {
    grid-area: 1 / 1;
    opacity: 0;
    animation: home-scene 9s ease-in-out infinite;
}

.phone-scene:nth-child(1) {
    animation-delay: 0s;
}

.phone-scene:nth-child(2) {
    animation-delay: 3s;
}

.phone-scene:nth-child(3) {
    animation-delay: 6s;
}

.phone-card .home-spark {
    height: 38px;
    margin: 0.75rem 0 0.25rem;
}

.phone-screen .pos-slip li {
    overflow: visible;
    max-height: none;
    opacity: 1;
    animation: none;
}

.phone-screen .pos-total {
    margin: 0.75rem 0 0;
    font-size: 1.15rem;
    color: #fff;
}

.phone-tabs {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 0.35rem;
    margin: 0.75rem 0 0.55rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.phone-tabs span {
    flex: 1;
    text-align: center;
    padding: 0.4rem 0.2rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    animation: home-flow-on 9s ease-in-out infinite;
}

.phone-tabs span:nth-child(1) {
    animation-delay: 0s;
}

.phone-tabs span:nth-child(2) {
    animation-delay: 3s;
}

.phone-tabs span:nth-child(3) {
    animation-delay: 6s;
}

.phone-home {
    display: block;
    width: 5.5rem;
    height: 0.28rem;
    margin: 0 auto;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.28);
}

.phone-chip {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    animation: phone-chip 4.8s ease-in-out infinite;
}

.phone-chip.is-approve {
    top: 12%;
    left: 0;
}

.phone-chip.is-stock {
    top: 44%;
    right: 0;
}

.phone-chip.is-sale {
    bottom: 14%;
    left: 2%;
    animation-delay: 1.2s;
}

@keyframes phone-float {
    0%,
    100% {
        transform: perspective(900px) rotateY(-10deg) rotateX(5deg)
            translateY(0);
    }
    50% {
        transform: perspective(900px) rotateY(-10deg) rotateX(5deg)
            translateY(-12px);
    }
}

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

@keyframes phone-glow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.14);
        opacity: 1;
    }
}

@keyframes phone-chip {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

.cta-band {
    --pointer-x: 80%;
    --pointer-y: 20%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            420px circle at var(--pointer-x) var(--pointer-y),
            rgba(79, 133, 226, 0.38),
            transparent 55%
        ),
        var(--ink);
    color: #fff;
    border-radius: 1.75rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-band:hover {
    transform: translateY(-3px);
}

.cta-band h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0.4rem;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

.cta-band .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.cta-band.has-drop {
    overflow: visible;
}

.cta-band.has-drop:hover {
    transform: none;
}

.cta-band .product-drop-menu {
    left: auto;
    right: 0;
}

/* ---------- Forms ---------- */

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--ink);
}

.form-control,
.form-control:focus {
    border-radius: 0.85rem;
    border: 1px solid var(--line-strong);
    padding: 0.85rem 1rem;
    box-shadow: none;
    background: #fff;
}

.form-icon .form-control {
    padding-left: 2.6rem;
}

textarea.form-control {
    min-height: 130px;
}

.form-icon .icons {
    position: absolute;
    left: 14px;
    top: 14px;
    width: 16px;
    height: 16px;
    color: var(--muted);
}

.contact-shell {
    --pointer-x: 50%;
    --pointer-y: 0%;
    position: relative;
    isolation: isolate;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.contact-shell > * {
    position: relative;
    z-index: 1;
}

.contact-meta .icon-wrap {
    margin-bottom: 0.75rem;
}

.error {
    color: var(--danger);
    font-size: 0.82rem;
}

.alert {
    border: 0;
    border-radius: 0.9rem;
}

.input-group-text {
    border-radius: 0.85rem 0 0 0.85rem;
    background: var(--paper);
    border: 1px solid var(--line-strong);
    font-weight: 700;
}

.math-check {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.math-check-eq {
    display: inline-flex;
    align-items: center;
    min-height: 3.1rem;
    padding: 0.7rem 1.1rem;
    border-radius: 0.85rem;
    background: var(--paper-2);
    border: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    white-space: nowrap;
}

.math-check-equals {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--muted);
}

.math-check-input {
    max-width: 8.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
}

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

.pricing-section {
    background: var(--paper-2);
}

.plan-switch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 34rem;
    margin: 0 auto 2.75rem;
    padding: 0.28rem;
    gap: 0.2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    box-shadow: var(--shadow-sm);
}

.plan-switch-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.08rem;
    min-height: 3.35rem;
    border: 0;
    background: transparent;
    color: var(--muted);
    border-radius: 0.9rem;
    padding: 0.45rem 0.7rem;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.plan-switch-btn:hover {
    color: var(--ink);
    background: var(--paper-2);
}

.plan-switch-btn.is-active {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 10px 22px rgba(11, 18, 32, 0.16);
}

.plan-switch-name {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: -0.02em;
    color: inherit;
}

.plan-switch-price {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0.72;
}

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

.pricing-card {
    --pointer-x: 50%;
    --pointer-y: 0%;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.7rem 1.5rem 1.45rem;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        border-color 0.25s ease,
        box-shadow 0.3s ease;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        240px circle at var(--pointer-x) var(--pointer-y),
        rgba(79, 133, 226, 0.1),
        transparent 55%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: inherit;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 133, 226, 0.28);
    box-shadow: var(--shadow);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.is-active,
.pricing-card.is-active:hover {
    transform: translateY(-1.5rem);
    z-index: 2;
    border-color: var(--brand);
    box-shadow: 0 32px 56px rgba(79, 133, 226, 0.2);
}

.pricing-card-head {
    margin: -1.7rem -1.5rem 0;
    padding: 1.55rem 1.5rem 1.2rem;
    border-bottom: 1px solid var(--line);
    border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.pricing-card.is-featured .pricing-card-head {
    margin-top: -2.1rem;
    padding-top: 2.15rem;
}

.pricing-card.is-active .pricing-card-head {
    background:
        radial-gradient(
            240px 140px at 88% -10%,
            rgba(79, 133, 226, 0.4),
            transparent 62%
        ),
        var(--ink);
    border-bottom-color: transparent;
}

.pricing-card.is-active .pricing-card-kicker,
.pricing-card.is-active h3,
.pricing-card.is-active .pricing-card-price .currency,
.pricing-card.is-active .price,
.pricing-card.is-active .pricing-card-price .period {
    color: #fff;
}

.pricing-card.is-active .popular-pill {
    background: #fff;
    color: var(--brand);
}

.pricing-card.is-active.is-featured::after {
    display: none;
}

.pricing-card-kicker {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.pricing-card h3 {
    font-size: 1.7rem;
    margin: 0;
    transition: color 0.25s ease;
}

.pricing-card-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.3rem 0.45rem;
    margin-top: 0.8rem;
}

.pricing-card-price .currency {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--brand-2);
    transition: color 0.25s ease;
}

.price {
    font-family: var(--serif);
    font-size: 2.45rem;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--ink);
    transition: color 0.25s ease;
}

.pricing-card-price .period {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.88rem;
    transition: color 0.25s ease;
}

.pricing-limits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0.15rem 0 1.1rem;
    border-bottom: 1px solid var(--line);
}

.pricing-limits li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.pricing-limit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    width: 2rem;
    height: 2rem;
    border-radius: 0.65rem;
    background: var(--brand-soft);
    color: var(--brand-2);
}

.pricing-limit-unit {
    font-size: 0.78em;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-left: 0.08em;
    vertical-align: 0.15em;
}

.pricing-limits i {
    font-size: 0.95rem;
    line-height: 1;
    color: inherit;
}

.pricing-limits.is-on-dark {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0;
    border-bottom: 0;
}

.pricing-limits.is-on-dark li {
    padding: 0.28rem 0.7rem 0.28rem 0.32rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.78rem;
}

.pricing-limits.is-on-dark .pricing-limit-icon {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.pricing-features {
    list-style: none;
    margin: 0.15rem 0 0;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.55rem;
    color: var(--text);
    font-size: 0.9rem;
}

.pricing-features .compare-check {
    flex: none;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.12rem;
}

.pricing-features .compare-check svg {
    width: 0.68rem;
    height: 0.68rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

.popular-pill {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    padding: 0.32rem 0.8rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(79, 133, 226, 0.28);
    z-index: 2;
}

.pricing-card.is-featured {
    border-color: var(--brand);
    box-shadow: 0 24px 50px rgba(79, 133, 226, 0.16);
    padding-top: 2.1rem;
}

.pricing-card.is-featured.is-active,
.pricing-card.is-featured.is-active:hover {
    transform: translateY(-1.5rem);
    box-shadow: 0 36px 60px rgba(79, 133, 226, 0.24);
}

.pricing-card.is-featured::after {
    content: "";
    position: absolute;
    top: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: var(--brand);
}

.pricing-addons {
    border-radius: 0.95rem;
    background: var(--paper-2);
    padding: 0.85rem 1rem;
}

.pricing-addons-label {
    margin: 0 0 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.pricing-addons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-addons li {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0 0 0.28rem;
}

.pricing-addons li:last-child {
    margin-bottom: 0;
}

.pricing-addons strong {
    color: var(--ink);
    font-weight: 700;
}

.pricing-addons-note {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
}

.pricing-custom {
    --pointer-x: 80%;
    --pointer-y: 20%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.35rem;
    padding: 2.25rem 2rem;
    border-radius: var(--radius);
    background:
        radial-gradient(
            420px circle at var(--pointer-x) var(--pointer-y),
            rgba(79, 133, 226, 0.38),
            transparent 55%
        ),
        var(--ink);
    color: #fff;
}

.pricing-custom > * {
    position: relative;
    z-index: 1;
}

.pricing-custom h3 {
    color: #fff;
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    margin: 0 0 0.45rem;
}

.pricing-custom p {
    color: rgba(255, 255, 255, 0.68);
    margin: 0 0 1rem;
    max-width: 36rem;
}

.pricing-custom-note {
    margin: 0.85rem 0 0 !important;
    font-size: 0.85rem;
}

.pricing-custom.is-active {
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.feature-hero.is-pricing .hero-glow {
    background: radial-gradient(
        circle,
        rgba(79, 133, 226, 0.45),
        transparent 70%
    );
}

.product-stage-pricing {
    min-height: 380px;
    display: grid;
    place-items: center;
}

.price-orbit {
    position: relative;
    width: min(100%, 340px);
    height: 340px;
    display: grid;
    place-items: center;
}

.price-orbit-ring,
.price-orbit-arc {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    pointer-events: none;
}

.price-orbit-ring {
    border: 1px dashed rgba(255, 255, 255, 0.18);
    animation: orbit-spin 22s linear infinite;
}

.price-orbit-arc {
    inset: 6px;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    border-right-color: rgba(232, 168, 72, 0.25);
    animation: orbit-spin 8s linear infinite reverse;
}

.price-orbit-core {
    position: relative;
    z-index: 1;
    width: 196px;
    height: 196px;
}

.price-orbit-plan {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    margin: 0;
    padding: 1rem;
    appearance: none;
    font: inherit;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(10, 16, 28, 0.88);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    animation: plan-cycle 9s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 3s);
}

.price-orbit-value {
    font-family: var(--serif);
    font-size: 2.05rem;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.03em;
}

@keyframes orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes plan-cycle {
    0%,
    6% {
        opacity: 0;
        transform: scale(0.9);
    }
    10%,
    28% {
        opacity: 1;
        transform: scale(1);
    }
    34%,
    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

.price-orbit-chip.chip-a {
    top: 6%;
    right: -10%;
    animation: float-y 5.6s ease-in-out infinite;
}

.price-orbit-chip.chip-b {
    bottom: 8%;
    left: -10%;
    animation: float-y 6.2s ease-in-out infinite 0.4s;
}

/* ---------- Comparison ---------- */

.comparison-section {
    background: var(--paper-2);
}

#pricing-comparing {
    scroll-margin-top: 5.25rem;
}

.compare-board {
    --pointer-x: 50%;
    --pointer-y: 0%;
    --compare-min: 40.5rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
}

.compare-head,
.compare-prices,
.compare-row {
    display: grid;
    grid-template-columns: minmax(10rem, 1.3fr) repeat(3, minmax(6.25rem, 1fr));
    align-items: center;
}

.compare-head,
.compare-prices,
.compare-groups {
    min-width: var(--compare-min);
}

.compare-head {
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid var(--line);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
}

.compare-plan,
.compare-price {
    text-align: center;
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--ink);
}

.compare-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.compare-prices {
    padding: 0.85rem 1.5rem 1.1rem;
    border-bottom: 1px solid var(--line);
}

.compare-price {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.35rem;
    font-size: 1.55rem;
    color: var(--brand);
    line-height: 1.1;
}

.compare-price span {
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--brand-2);
}

.compare-groups {
    min-width: var(--compare-min);
    padding: 0.5rem 0 1rem;
}

.compare-group {
    border: 1px solid var(--line);
    border-radius: 1rem;
    margin: 0.65rem 1.25rem;
    overflow: hidden;
    background: #fff;
}

.compare-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
    background: #fff;
    padding: 1rem 1.15rem;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
    appearance: none;
    cursor: pointer;
}

.compare-trigger i {
    color: var(--brand-2);
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.compare-trigger:not(.collapsed) i {
    transform: rotate(180deg);
}

.compare-row {
    padding: 0.7rem 1.15rem;
    border-top: 1px solid var(--line);
}

.compare-row:hover {
    background: rgba(79, 133, 226, 0.05);
}

.compare-label,
.compare-feature {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #fff;
}

.compare-head .compare-label,
.compare-prices .compare-label {
    z-index: 3;
}

.compare-row:hover .compare-feature {
    background: #f4f7fd;
}

.compare-feature {
    color: var(--text);
    font-size: 0.92rem;
    padding-right: 0.75rem;
}

.compare-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 1.6rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
}

.compare-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #f3fbf8 0%, #d9f3ea 100%);
    color: var(--success);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 0 0 1.5px rgba(31, 138, 112, 0.18),
        0 4px 10px rgba(31, 138, 112, 0.14);
}

.compare-check svg {
    width: 0.82rem;
    height: 0.82rem;
    display: block;
}

.compare-cell.is-no {
    color: rgba(92, 101, 120, 0.45);
    font-size: 1.1rem;
}

@media (max-width: 767.98px) {
    .compare-board::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 2.25rem;
        background: linear-gradient(90deg, transparent, #fff);
        pointer-events: none;
        z-index: 4;
    }

    .compare-label,
    .compare-feature {
        box-shadow: 10px 0 14px -10px rgba(11, 18, 32, 0.18);
        padding-left: 0.15rem;
    }
}

.text-success {
    color: var(--success) !important;
}
.text-danger {
    color: var(--danger) !important;
}

/* ---------- FAQ / legal ---------- */

.legal-section {
    padding-top: 4.25rem;
    padding-bottom: 5rem;
    background: var(--paper-2);
}

.legal-layout {
    display: grid;
    grid-template-columns: 15.5rem minmax(0, 1fr);
    gap: 2.75rem;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 6rem;
    padding: 1.35rem 1.3rem 1.45rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.legal-toc nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.legal-toc a {
    display: block;
    padding: 0.38rem 0;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
}

.legal-toc a:hover {
    color: var(--ink);
}

.legal-toc-related {
    margin-top: 1.15rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line);
}

.legal-prose {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.4rem 2.6rem 2.6rem;
    box-shadow: var(--shadow-sm);
}

.legal-prose h2 {
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    margin: 2.35rem 0 0.8rem;
    scroll-margin-top: 6.25rem;
}

.legal-prose h2:first-child {
    margin-top: 0;
}

.legal-prose h3 {
    font-family: var(--font);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 1.45rem 0 0.45rem;
    scroll-margin-top: 6.25rem;
}

.legal-prose p,
.legal-prose li {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.legal-prose p {
    margin-bottom: 0.9rem;
}

.legal-prose ul,
.legal-prose ol {
    margin: 0 0 1.1rem;
    padding-left: 1.2rem;
}

.legal-prose li + li {
    margin-top: 0.4rem;
}

.legal-prose a {
    color: var(--brand-2);
    font-weight: 600;
}

.legal-prose a:hover {
    color: var(--ink);
}

.legal-contact {
    margin-top: 0.4rem;
    padding: 1.2rem 1.3rem;
    background: var(--paper-2);
    border-radius: 1.05rem;
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 3.5rem 4rem;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 6rem;
}

.faq-intro h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0.85rem;
}

.faq-intro p {
    margin-bottom: 1.5rem;
}

.faq-list .accordion-item {
    border: 1px solid var(--line) !important;
    border-radius: 1.15rem !important;
    overflow: hidden;
    background: #fff;
    margin-bottom: 0.7rem;
    box-shadow: var(--shadow-sm);
}

.faq-list .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-list .accordion-button {
    font-family: var(--font);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
    background: #fff;
    box-shadow: none !important;
    padding: 1.15rem 1.3rem;
}

.faq-list .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--ink);
}

.faq-list .accordion-button:focus {
    box-shadow: none !important;
}

.faq-list .accordion-body {
    padding: 0 1.3rem 1.25rem;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .legal-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .legal-toc {
        position: static;
        padding: 1.15rem 1.15rem 1.25rem;
    }

    .faq-intro {
        position: static;
    }

    .legal-toc nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .legal-toc nav a {
        padding: 0.32rem 0.72rem;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: var(--paper-2);
        font-size: 0.8rem;
    }

    .legal-prose {
        padding: 1.6rem 1.35rem 1.75rem;
    }
}

.accordion-item {
    border: 1px solid var(--line) !important;
    border-radius: 1rem !important;
    overflow: hidden;
    background: #fff;
}

.accordion-button {
    font-weight: 700;
    color: var(--ink);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--paper);
    color: var(--ink);
}

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

.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.58);
    padding: 4rem 1.25rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr) repeat(3, minmax(0, 0.72fr))
        minmax(0, 1.05fr);
    gap: 2.75rem 2rem;
    align-items: start;
    padding-bottom: 3.25rem;
}

.footer-brand p {
    max-width: 18.5rem;
    margin: 1.15rem 0 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.52);
}

.logo-footer {
    display: inline-flex;
}

.logo-footer img {
    display: block;
    height: 32px;
    width: auto;
}

.footer-head {
    font-family: var(--font);
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0.2rem 0 1.05rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li + li {
    margin-top: 0.55rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    background-image: none;
    transition: color 0.2s ease;
}

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

.footer-social {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 1.35rem 0 0;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.78);
}

.footer-social a:hover {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

.footer-social svg {
    width: 15px;
    height: 15px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.15rem 0 1.35rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem 0.65rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.48);
}

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

.footer-legal span {
    color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.25rem 1.75rem;
        padding-bottom: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 28rem;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 3.25rem 1.25rem 0;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.85rem 1.25rem;
        justify-items: stretch;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-col {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

.modal-content {
    border: 0;
    border-radius: 1.2rem;
}

.close {
    background: none;
    border: 0;
    font-size: 1.6rem;
    line-height: 1;
}

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

.text-primary {
    color: var(--brand-2) !important;
}

main {
    min-height: 60vh;
}

.fea.icon-sm,
.social-icon svg,
.form-icon svg,
.back-to-top svg {
    width: 16px;
    height: 16px;
}

.rounded-4 {
    border-radius: 1.25rem !important;
}

#topnav .container {
    position: relative;
}

.table {
    --bs-table-bg: #fff;
}

@media (max-width: 991.98px) {
    .menu-extras {
        display: block;
    }

    .buy-button {
        margin-left: auto;
    }

    #navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 1.1rem;
        box-shadow: var(--shadow);
        padding: 0.75rem;
    }

    .navigation-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .navigation-menu > li > a {
        color: var(--ink) !important;
        width: 100%;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        display: none;
        padding-left: 0.5rem;
    }

    .submenu.open {
        display: block;
    }

    .hero {
        padding-top: 7.5rem;
        padding-bottom: 3.5rem;
        text-align: center;
    }

    .hero h1,
    .hero .lead {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .hero h1.hero-price-title {
        align-items: center;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-frame {
        margin-top: 2.5rem;
    }

    .cta-band {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .cta-band .product-drop-menu {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .stat-row,
    .clients-grid {
        grid-template-columns: 1fr 1fr;
    }

    .clients-board {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .clients-copy {
        max-width: 36rem;
        margin: 0 auto;
    }

    .mobile-board {
        grid-template-columns: 1fr;
        gap: 2.25rem;
        text-align: center;
    }

    .mobile-copy {
        max-width: 36rem;
        margin: 0 auto;
    }

    .mobile-actions {
        justify-content: center;
    }

    .mobile-stage {
        min-height: 28rem;
        order: -1;
    }

    .phone {
        transform: none;
        animation: phone-float-flat 5.6s ease-in-out infinite;
    }

    .mobile-points {
        justify-items: center;
    }

    .phone-chip.is-approve {
        left: 4%;
    }

    .phone-chip.is-stock {
        right: 4%;
    }
}

@media (min-width: 992px) {
    #navigation {
        display: block !important;
    }
}

@media (max-width: 575.98px) {
    .stat-row {
        grid-template-columns: 1fr;
    }

    .phone-chip {
        display: none;
    }
}

.contact-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        280px circle at var(--pointer-x) var(--pointer-y),
        rgba(79, 133, 226, 0.1),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-shell:hover::before {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .hero-frame {
        transform: none !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 26rem;
        margin: 0 auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .hero-frame,
    .hero-stage,
    .z-card:hover,
    .app-card:hover,
    .pricing-card:hover,
    .pricing-card.is-active,
    .pricing-card.is-active:hover,
    .client-tile:hover,
    .cta-band:hover,
    .stat-item:hover,
    .phone {
        transform: none !important;
    }

    .hero-scroll {
        transform: translateX(-50%) !important;
    }

    .about-pass-core span:first-child {
        opacity: 1 !important;
    }

    .about-panel li {
        color: #fff !important;
    }

    .about-panel.is-build {
        animation: none !important;
    }

    .eyebrow-words span:first-child,
    .home-board-words span:first-child,
    .home-scene:first-child,
    .phone-scene:first-child,
    .home-flow span:first-of-type,
    .phone-tabs span:first-child {
        opacity: 1 !important;
        transform: none !important;
        color: #fff !important;
    }

    .home-scene:not(:first-child),
    .phone-scene:not(:first-child) {
        opacity: 0 !important;
    }
}

/* ---------- Hero product stage ---------- */

.hero-stage {
    position: relative;
    min-height: 420px;
    padding: 0.5rem 0.75rem 1.5rem;
}

@keyframes word-cycle {
    0%,
    4% {
        opacity: 0;
        transform: translateY(8px);
    }
    8%,
    28% {
        opacity: 1;
        transform: translateY(0);
    }
    34%,
    100% {
        opacity: 0;
        transform: translateY(-8px);
    }
}

.op-card {
    position: absolute;
    width: 176px;
    padding: 0.85rem 0.95rem;
    border-radius: 1rem;
    background: rgba(12, 18, 32, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    z-index: 2;
}

.op-kicker {
    margin: 0 0 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.op-foot {
    margin: 0.55rem 0 0;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.62);
}

.op-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 0.35rem;
    border-radius: 50%;
    background: #3dd68c;
    box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.6);
    animation: pulse-dot 1.8s ease-out infinite;
}

@keyframes pulse-dot {
    70% {
        box-shadow: 0 0 0 8px rgba(61, 214, 140, 0);
    }
}

.product-stage-home {
    min-height: 0;
    padding: 0;
    display: grid;
    gap: 1.15rem;
}

.product-stage-home .hero-glow {
    inset: 8% 6% auto;
    animation: home-glow 9s ease-in-out infinite;
}

.home-board {
    position: relative;
    z-index: 2;
    padding: 1.15rem 1.2rem 1.2rem;
    border-radius: 1.35rem;
    background: rgba(10, 16, 28, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
    animation: home-rim 9s ease-in-out infinite;
}

.home-board-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1.05rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.home-board-dots {
    display: flex;
    gap: 0.28rem;
    flex: none;
}

.home-board-dots::before,
.home-board-dots::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.home-board-dots::before {
    box-shadow: 12px 0 0 rgba(255, 255, 255, 0.22);
    margin-right: 12px;
}

.home-board-title {
    display: grid;
    justify-items: center;
    overflow: hidden;
    line-height: 1.45;
    color: #fff;
}

.home-board-sizer,
.home-board-words {
    grid-area: 1 / 1;
}

.home-board-sizer {
    visibility: hidden;
    white-space: nowrap;
}

.home-board-words {
    display: grid;
}

.home-board-words span {
    grid-area: 1 / 1;
    white-space: nowrap;
    opacity: 0;
    animation: word-cycle 9s infinite;
}

.home-board-words span:nth-child(1) {
    animation-delay: 0s;
}
.home-board-words span:nth-child(2) {
    animation-delay: 3s;
}
.home-board-words span:nth-child(3) {
    animation-delay: 6s;
}

.home-scenes {
    display: grid;
}

.home-scene {
    grid-area: 1 / 1;
    opacity: 0;
    animation: home-scene 9s ease-in-out infinite;
}

.home-scene:nth-child(1) {
    animation-delay: 0s;
}
.home-scene:nth-child(2) {
    animation-delay: 3s;
}
.home-scene:nth-child(3) {
    animation-delay: 6s;
}

.home-spark {
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    height: 48px;
    margin: 1rem 0 0.35rem;
}

.home-spark span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #7dd3a8, rgba(45, 166, 140, 0.35));
    transform-origin: bottom;
    animation: home-spark 1.6s ease-in-out infinite alternate;
}

.home-spark span:nth-child(1) {
    height: 42%;
    animation-delay: 0s;
}
.home-spark span:nth-child(2) {
    height: 68%;
    animation-delay: 0.12s;
}
.home-spark span:nth-child(3) {
    height: 54%;
    animation-delay: 0.24s;
}
.home-spark span:nth-child(4) {
    height: 88%;
    animation-delay: 0.36s;
}
.home-spark span:nth-child(5) {
    height: 46%;
    animation-delay: 0.48s;
}
.home-spark span:nth-child(6) {
    height: 72%;
    animation-delay: 0.6s;
}

.home-flow {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-flow span {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    animation: home-flow-on 9s ease-in-out infinite;
}

.home-flow span:nth-of-type(1) {
    animation-delay: 0s;
}
.home-flow span:nth-of-type(2) {
    animation-delay: 3s;
}
.home-flow span:nth-of-type(3) {
    animation-delay: 6s;
}

.home-flow i {
    position: relative;
    width: 1.6rem;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
}

.home-flow i::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8px;
    border-radius: inherit;
    background: var(--gold);
    animation: home-flow-dot 9s linear infinite;
}

.home-flow i:last-of-type::after {
    animation-delay: 4.5s;
}

@keyframes home-scene {
    0%,
    4% {
        opacity: 0;
        transform: translateY(12px);
    }
    8%,
    28% {
        opacity: 1;
        transform: translateY(0);
    }
    34%,
    100% {
        opacity: 0;
        transform: translateY(-12px);
    }
}

@keyframes home-spark {
    from {
        transform: scaleY(0.72);
        opacity: 0.7;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes home-flow-on {
    0%,
    28% {
        color: #fff;
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.2);
    }
    36%,
    100% {
        color: rgba(255, 255, 255, 0.42);
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.08);
    }
}

@keyframes home-flow-dot {
    0% {
        left: -8px;
    }
    100% {
        left: 100%;
    }
}

@keyframes home-glow {
    0%,
    28% {
        background: radial-gradient(
            circle,
            rgba(45, 166, 140, 0.5),
            transparent 70%
        );
    }
    33%,
    61% {
        background: radial-gradient(
            circle,
            rgba(201, 165, 116, 0.5),
            transparent 70%
        );
    }
    66%,
    94% {
        background: radial-gradient(
            circle,
            rgba(232, 168, 72, 0.48),
            transparent 70%
        );
    }
    100% {
        background: radial-gradient(
            circle,
            rgba(45, 166, 140, 0.5),
            transparent 70%
        );
    }
}

@keyframes home-rim {
    0%,
    28% {
        box-shadow:
            0 28px 70px rgba(0, 0, 0, 0.32),
            0 0 0 1px rgba(45, 166, 140, 0.35);
    }
    33%,
    61% {
        box-shadow:
            0 28px 70px rgba(0, 0, 0, 0.32),
            0 0 0 1px rgba(201, 165, 116, 0.35);
    }
    66%,
    94% {
        box-shadow:
            0 28px 70px rgba(0, 0, 0, 0.32),
            0 0 0 1px rgba(232, 168, 72, 0.32);
    }
    100% {
        box-shadow:
            0 28px 70px rgba(0, 0, 0, 0.32),
            0 0 0 1px rgba(45, 166, 140, 0.35);
    }
}

.feature-hero.is-books .hero-glow {
    background: radial-gradient(
        circle,
        rgba(45, 166, 140, 0.42),
        transparent 70%
    );
}

.feature-hero.is-inventory .hero-glow {
    background: radial-gradient(
        circle,
        rgba(201, 165, 116, 0.42),
        transparent 70%
    );
}

.feature-hero.is-pos .hero-glow {
    background: radial-gradient(
        circle,
        rgba(232, 168, 72, 0.4),
        transparent 70%
    );
}

.feature-hero.is-about .hero-glow {
    background: radial-gradient(
        circle,
        rgba(79, 133, 226, 0.42),
        transparent 70%
    );
}

.feature-hero.is-about h1 {
    max-width: 16ch;
}

.feature-hero.is-contact .hero-glow {
    background: radial-gradient(
        circle,
        rgba(79, 133, 226, 0.42),
        transparent 70%
    );
}

.feature-hero.is-contact h1 {
    max-width: 14ch;
}

.hero-screen {
    position: relative;
    z-index: 1;
    min-height: 280px;
    padding: 1.1rem 1.2rem 1.25rem;
    border-radius: 1.35rem;
    background: rgba(10, 16, 28, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
    color: #fff;
}

.hero-screen-bar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.books-taccount {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.books-taccount small {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.books-taccount p {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0;
    padding: 0.28rem 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.books-balance {
    margin: 1rem 0 0;
    font-size: 0.82rem;
    color: #7dd3a8;
}

.stage-metric {
    margin: 0;
    font-family: var(--serif);
    font-size: 1.45rem;
    color: var(--gold);
}

.books-card-vat {
    top: 6%;
    right: -6%;
    animation: float-y 5.6s ease-in-out infinite;
}

.books-card-pl {
    bottom: 8%;
    left: -4%;
    animation: float-y 6s ease-in-out infinite 0.5s;
}

.inv-rows {
    list-style: none;
    margin: 0;
    padding: 0;
}

.inv-rows li {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.2rem 0.8rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
}

.inv-rows li span:nth-child(2) {
    font-variant-numeric: tabular-nums;
    color: #7dd3a8;
}

.inv-bar {
    grid-column: 1 / -1;
    display: block;
    height: 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.inv-bar i {
    display: block;
    height: 100%;
    width: var(--fill, 50%);
    border-radius: inherit;
    background: linear-gradient(90deg, #2a9d8f, #7dd3a8);
}

.inv-bar.is-low i {
    background: linear-gradient(90deg, #c97b63, #e8a848);
}

.inv-boxes {
    margin-top: 1rem;
}

.inv-route {
    margin: 0;
    font-size: 0.88rem;
}

.inv-card-move {
    top: 8%;
    right: -8%;
    animation: float-y 5.7s ease-in-out infinite;
}

.inv-card-batch {
    bottom: 6%;
    left: -6%;
    animation: float-y 6.1s ease-in-out infinite 0.4s;
}

.pos-screen {
    max-width: none;
    margin: 0;
}

.pos-card-kot {
    top: 8%;
    right: -8%;
    left: auto;
    animation: float-y 5.5s ease-in-out infinite;
}

.pos-card-floor {
    bottom: 6%;
    left: -8%;
    right: auto;
    animation: float-y 6.2s ease-in-out infinite 0.35s;
}

.pos-tables {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
}

.pos-tables span {
    display: grid;
    place-items: center;
    height: 36px;
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    font-weight: 700;
}

.pos-tables span.is-busy {
    background: rgba(232, 168, 72, 0.28);
    color: #f3d19a;
}

@media (max-width: 991.98px) {
    .hero {
        overflow-x: clip;
    }

    .hero-stage {
        overflow: hidden;
        min-height: 0;
        max-width: 26.5rem;
        margin-left: auto;
        margin-right: auto;
        padding: 1.1rem 0.7rem 1.5rem;
    }

    .hero-screen {
        min-height: 0;
    }

    .op-card {
        width: min(10.4rem, 46%);
        padding: 0.65rem 0.7rem;
    }

    .books-card-vat,
    .books-card-pl,
    .inv-card-move,
    .inv-card-batch,
    .pos-card-kot,
    .pos-card-floor,
    .price-orbit-chip.chip-a,
    .price-orbit-chip.chip-b,
    .contact-chip.chip-a,
    .contact-chip.chip-b {
        position: absolute;
        width: min(10.4rem, 44%);
        margin-top: 0;
    }

    .books-card-vat,
    .inv-card-move,
    .pos-card-kot,
    .price-orbit-chip.chip-a,
    .contact-chip.chip-a {
        top: 7%;
        right: 0.35rem;
        left: auto;
        bottom: auto;
    }

    .books-card-pl,
    .inv-card-batch,
    .pos-card-floor,
    .price-orbit-chip.chip-b,
    .contact-chip.chip-b {
        bottom: 7%;
        left: 0.35rem;
        right: auto;
        top: auto;
    }

    .price-orbit {
        width: min(100%, 16.5rem);
        height: 16.5rem;
    }

    .price-orbit-core {
        width: 9.5rem;
        height: 9.5rem;
    }

    .price-orbit-value {
        font-size: 1.45rem;
    }

    .books-taccount {
        gap: 0.65rem;
    }

    .home-board {
        padding: 1rem 0.95rem 1.05rem;
    }
}

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

.ledger-row,
.pos-slip li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.78rem;
    padding: 0.22rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ledger-row:last-child,
.pos-slip li:last-child {
    border-bottom: 0;
}

.is-credit {
    color: #7dd3a8;
}
.is-debit {
    color: #f0a3a3;
}

.ledger-row {
    opacity: 0;
    animation: row-in 4.8s ease-in-out infinite;
}

.ledger-row:nth-child(2) {
    animation-delay: 0.35s;
}
.ledger-row:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes row-in {
    0%,
    8% {
        opacity: 0;
        transform: translateX(-6px);
    }
    18%,
    82% {
        opacity: 1;
        transform: none;
    }
    92%,
    100% {
        opacity: 0.35;
    }
}

.pos-slip {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pos-slip li {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    animation: slip-print 5.5s ease-in-out infinite;
}

.pos-slip li:nth-child(2) {
    animation-delay: 0.45s;
}
.pos-slip li:nth-child(3) {
    animation-delay: 0.9s;
}

.product-stage-home .pos-slip li {
    overflow: visible;
    max-height: none;
    opacity: 1;
    animation: none;
}

@keyframes slip-print {
    0%,
    10% {
        max-height: 0;
        opacity: 0;
    }
    22%,
    78% {
        max-height: 32px;
        opacity: 1;
    }
    90%,
    100% {
        max-height: 0;
        opacity: 0;
    }
}

.pos-total {
    margin: 0.45rem 0 0;
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--gold);
}

.stock-sku {
    margin: 0 0 0.4rem;
    font-size: 0.78rem;
}

.stock-meter {
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.stock-meter span {
    display: block;
    height: 100%;
    width: 72%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2a9d8f, #7dd3a8);
    transform-origin: left;
    animation: meter-fill 3.6s ease-in-out infinite;
}

@keyframes meter-fill {
    0% {
        transform: scaleX(0.35);
    }
    55% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0.72);
    }
}

.stock-boxes {
    display: flex;
    gap: 0.35rem;
    margin-top: 0.65rem;
}

.stock-boxes span,
.fx-boxes span {
    width: 18px;
    height: 16px;
    border-radius: 3px;
    background: #c9a574;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    animation: box-stack 2.8s ease-in-out infinite;
}

.stock-boxes span:nth-child(2),
.fx-boxes span:nth-child(2) {
    animation-delay: 0.15s;
    height: 20px;
}
.stock-boxes span:nth-child(3),
.fx-boxes span:nth-child(3) {
    animation-delay: 0.3s;
    height: 14px;
}

@keyframes box-stack {
    0%,
    100% {
        transform: translateY(4px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
}

.feature-hero h1 {
    max-width: 14ch;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.breadcrumb-seo-light,
.breadcrumb-seo-light a {
    color: rgba(255, 255, 255, 0.62);
}

.breadcrumb-seo-light a:hover {
    color: #fff;
}

.feature-hero .breadcrumb-seo {
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

/* ---------- Feature tiles ---------- */

.feature-tile {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    background: #fff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.feature-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(79, 133, 226, 0.28);
}

.feature-tile-body {
    padding: 1.25rem 1.35rem 1.45rem;
}

.feature-tile-body h3 {
    font-family: var(--font);
    font-size: 1.12rem;
    margin-bottom: 0.45rem;
}

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

.feature-scene {
    position: relative;
    height: 148px;
    overflow: hidden;
    background:
        radial-gradient(
            180px 80px at 80% 20%,
            rgba(255, 255, 255, 0.18),
            transparent 70%
        ),
        #121a2b;
}

.scene-purchase .feature-scene {
    background-color: #17345c;
}
.scene-sales .feature-scene {
    background-color: #1d3f6e;
}
.scene-journal .feature-scene {
    background-color: #15263f;
}
.scene-payment .feature-scene {
    background-color: #3a2a1d;
}
.scene-receipt .feature-scene {
    background-color: #1d3a32;
}
.scene-reports .feature-scene {
    background-color: #1a2744;
}
.scene-inventory .feature-scene {
    background-color: #16352f;
}
.scene-pos .feature-scene {
    background-color: #2c2418;
}
.scene-kot .feature-scene {
    background-color: #32281c;
}
.scene-roles .feature-scene {
    background-color: #1b2438;
}
.scene-contacts .feature-scene {
    background-color: #243044;
}
.scene-audit .feature-scene {
    background-color: #141c2c;
}
.scene-returns .feature-scene {
    background-color: #3a2430;
}
.scene-bank .feature-scene {
    background-color: #1a3348;
}
.scene-coa .feature-scene {
    background-color: #162033;
}
.scene-opening .feature-scene {
    background-color: #1c2c24;
}
.scene-tax .feature-scene {
    background-color: #2a1f38;
}
.scene-budget .feature-scene {
    background-color: #1a2f44;
}
.scene-dashboard .feature-scene {
    background-color: #121a2e;
}
.scene-products .feature-scene {
    background-color: #1e2d3a;
}
.scene-batch .feature-scene {
    background-color: #24352a;
}
.scene-transfer .feature-scene {
    background-color: #1d3538;
}
.scene-consumption .feature-scene {
    background-color: #2a3320;
}
.scene-breakage .feature-scene {
    background-color: #3a2420;
}
.scene-tables .feature-scene {
    background-color: #2c2618;
}
.scene-split .feature-scene {
    background-color: #2a221c;
}
.scene-recipe .feature-scene {
    background-color: #2e2418;
}
.scene-branches .feature-scene {
    background-color: #1a2436;
}
.scene-calendar .feature-scene {
    background-color: #1c2838;
}
.scene-import .feature-scene {
    background-color: #1b3328;
}

.fx-tag {
    position: absolute;
    right: 0.85rem;
    bottom: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.fx-doc {
    position: absolute;
    left: 1.2rem;
    top: 1.2rem;
    width: 78px;
    height: 92px;
    border-radius: 6px;
    background: #fff;
    padding: 0.7rem 0.55rem;
    box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.18);
    animation: paper-in 3.2s ease-in-out infinite;
}

.fx-line {
    display: block;
    height: 5px;
    margin-bottom: 8px;
    border-radius: 99px;
    background: #d7deea;
}

.fx-line.short {
    width: 55%;
}

.fx-box {
    position: absolute;
    width: 42px;
    height: 36px;
    right: 1.6rem;
    top: 2.4rem;
    border-radius: 4px;
    background: var(--gold);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.fx-box.in {
    animation: slide-in 2.8s ease-in-out infinite;
}

.fx-npr {
    position: absolute;
    right: 1.4rem;
    top: 1.6rem;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.4rem;
    animation: npr-pop 2.6s ease-in-out infinite;
}

@keyframes paper-in {
    0%,
    100% {
        transform: translateY(6px) rotate(-2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes slide-in {
    0% {
        transform: translateX(16px);
        opacity: 0.3;
    }
    45%,
    100% {
        transform: none;
        opacity: 1;
    }
}

@keyframes npr-pop {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.7;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.fx-taccount {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 1.3rem 1.2rem 0;
    color: #fff;
}

.fx-taccount small {
    display: block;
    margin-bottom: 0.35rem;
    opacity: 0.6;
}

.fx-taccount span {
    display: block;
    height: 6px;
    margin-bottom: 0.4rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.2);
    transform-origin: left;
    animation: line-draw 2.4s ease-in-out infinite;
}

.fx-taccount div:last-child span {
    background: rgba(125, 211, 168, 0.7);
    animation-delay: 0.2s;
}

@keyframes line-draw {
    0% {
        transform: scaleX(0.2);
    }
    50% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0.65);
    }
}

.fx-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.4rem 1.4rem 0;
}

.fx-wallet,
.fx-vendor {
    width: 36px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.85);
}

.fx-vendor {
    border-radius: 50%;
    height: 36px;
    width: 36px;
}

.fx-coin {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
}

.fx-coin.out {
    animation: coin-out 1.8s ease-in-out infinite;
}
.fx-coin.in {
    animation: coin-in 1.8s ease-in-out infinite;
}
.fx-coin.delay {
    animation-delay: 0.35s;
}

@keyframes coin-out {
    0% {
        transform: translateX(-10px);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    100% {
        transform: translateX(10px);
        opacity: 0;
    }
}

@keyframes coin-in {
    0% {
        transform: translateX(10px);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    100% {
        transform: translateX(-10px);
        opacity: 0;
    }
}

.fx-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.55rem;
    height: 88px;
    padding: 2rem 1.5rem 0;
}

.fx-bars span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #8eb6f5, #4f85e2);
    animation: bar-grow 2.8s ease-in-out infinite;
}

.fx-bars span:nth-child(1) {
    height: 35%;
}
.fx-bars span:nth-child(2) {
    height: 58%;
    animation-delay: 0.1s;
}
.fx-bars span:nth-child(3) {
    height: 42%;
    animation-delay: 0.2s;
}
.fx-bars span:nth-child(4) {
    height: 78%;
    animation-delay: 0.3s;
}
.fx-bars span:nth-child(5) {
    height: 62%;
    animation-delay: 0.4s;
}

@keyframes bar-grow {
    0%,
    100% {
        transform: scaleY(0.55);
    }
    50% {
        transform: scaleY(1);
    }
}

.fx-boxes {
    display: flex;
    align-items: flex-end;
    gap: 0.45rem;
    padding: 1.6rem 1.3rem 0.4rem;
}

.fx-boxes span {
    width: 28px;
    height: 24px;
}

.feature-scene .stock-meter {
    margin: 0 1.3rem;
    background: rgba(255, 255, 255, 0.12);
}

.fx-till {
    position: absolute;
    left: 1.2rem;
    top: 1.2rem;
    width: 92px;
}

.fx-screen {
    display: block;
    height: 42px;
    border-radius: 6px;
    background: #4f85e2;
    animation: screen-blink 2.4s ease-in-out infinite;
}

.fx-key {
    display: inline-block;
    width: 18px;
    height: 10px;
    margin: 6px 4px 0 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
}

@keyframes screen-blink {
    0%,
    100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.35);
    }
}

.fx-slip {
    position: absolute;
    right: 1.5rem;
    top: 1.1rem;
    width: 46px;
    height: 0;
    background: #fff;
    border-radius: 0 0 3px 3px;
    animation: print-slip 3.2s ease-in-out infinite;
}

@keyframes print-slip {
    0% {
        height: 0;
    }
    45%,
    100% {
        height: 72px;
    }
}

.fx-ticket {
    width: 88px;
    margin: 1.3rem auto 0;
    padding: 0.7rem 0.6rem;
    background: #fff7e8;
    color: #3a2a1d;
    clip-path: polygon(
        0 8px,
        8px 0,
        16px 8px,
        24px 0,
        32px 8px,
        40px 0,
        48px 8px,
        56px 0,
        64px 8px,
        72px 0,
        80px 8px,
        88px 0,
        88px 100%,
        0 100%
    );
    animation: ticket-drop 2.6s ease-in-out infinite;
}

.fx-ticket span {
    display: block;
    height: 5px;
    margin-bottom: 6px;
    background: rgba(58, 42, 29, 0.2);
}

@keyframes ticket-drop {
    0% {
        transform: translateY(-12px) rotate(-4deg);
        opacity: 0;
    }
    35%,
    100% {
        transform: none;
        opacity: 1;
    }
}

.fx-avatars {
    display: flex;
    gap: 0.55rem;
    padding: 1.6rem 1.2rem 0;
}

.fx-avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #8eb6f5;
    animation: avatar-pop 2.2s ease-in-out infinite;
}

.fx-avatars span:nth-child(2) {
    background: var(--gold);
    animation-delay: 0.15s;
}
.fx-avatars span:nth-child(3) {
    background: #7dd3a8;
    animation-delay: 0.3s;
}

@keyframes avatar-pop {
    0%,
    100% {
        transform: scale(0.86);
    }
    50% {
        transform: scale(1);
    }
}

.fx-lock {
    position: absolute;
    right: 1.4rem;
    top: 1.5rem;
    width: 18px;
    height: 22px;
    border-radius: 3px;
    background: #fff;
    animation: lock-wiggle 2.8s ease-in-out infinite;
}

@keyframes lock-wiggle {
    0%,
    70%,
    100% {
        transform: rotate(0);
    }
    78% {
        transform: rotate(-12deg);
    }
    86% {
        transform: rotate(10deg);
    }
}

.fx-people {
    display: flex;
    gap: 0.6rem;
    padding: 2.1rem 1.1rem 0;
}

.fx-people span {
    flex: 1;
    padding: 0.7rem 0.4rem;
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    animation: card-swap 3s ease-in-out infinite;
}

.fx-people span:last-child {
    animation-delay: 0.35s;
}

@keyframes card-swap {
    0%,
    100% {
        transform: translateY(6px);
    }
    50% {
        transform: translateY(0);
    }
}

.fx-log {
    display: grid;
    gap: 0.4rem;
    padding: 1.5rem 1.1rem 0;
}

.fx-log span {
    display: block;
    padding: 0.35rem 0.55rem;
    border-radius: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.7rem;
    opacity: 0;
    animation: log-in 4.5s ease-in-out infinite;
}

.fx-log span:nth-child(2) {
    animation-delay: 0.45s;
}
.fx-log span:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes log-in {
    0%,
    8% {
        opacity: 0;
        transform: translateY(8px);
    }
    18%,
    70% {
        opacity: 1;
        transform: none;
    }
    85%,
    100% {
        opacity: 0;
    }
}

.fx-doc.reverse {
    animation: paper-out 3.2s ease-in-out infinite;
}

@keyframes paper-out {
    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(6px) rotate(-1deg);
    }
}

.fx-box.reverse {
    animation: slide-out 2.8s ease-in-out infinite;
}

@keyframes slide-out {
    0% {
        transform: none;
        opacity: 1;
    }
    55%,
    100% {
        transform: translateX(14px);
        opacity: 0.35;
    }
}

.fx-box.cracked {
    background: repeating-linear-gradient(
        -32deg,
        #c4a574,
        #c4a574 8px,
        #8a6a3e 8px,
        #8a6a3e 10px
    );
    animation: crack 2.4s ease-in-out infinite;
    left: 50%;
    top: 38%;
    right: auto;
    transform: translate(-50%, -50%);
}

@keyframes crack {
    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-4deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(3deg);
    }
}

.fx-banks,
.fx-transfer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 2.3rem 1.1rem 0;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.fx-banks span,
.fx-transfer span,
.fx-org span,
.fx-lots span {
    padding: 0.55rem 0.5rem;
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.12);
    text-align: center;
}

.fx-banks i,
.fx-transfer i {
    width: 28px;
    height: 2px;
    background: var(--gold);
    position: relative;
    animation: shuttle 1.6s ease-in-out infinite;
}

.fx-banks i::after,
.fx-transfer i::after {
    content: "";
    position: absolute;
    right: -1px;
    top: -3px;
    border: 4px solid transparent;
    border-left-color: var(--gold);
}

@keyframes shuttle {
    0%,
    100% {
        transform: scaleX(0.6);
        opacity: 0.5;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.fx-tree {
    display: grid;
    gap: 0.4rem;
    padding: 1.5rem 1.4rem 0;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.fx-tree span {
    padding: 0.35rem 0.6rem;
    border-radius: 0.4rem;
    background: rgba(255, 255, 255, 0.1);
}

.fx-tree span:nth-child(2) {
    margin-left: 1rem;
    animation: line-draw 2.4s ease-in-out infinite;
}
.fx-tree span:nth-child(3) {
    margin-left: 2rem;
    animation: line-draw 2.4s ease-in-out infinite 0.2s;
}

.fx-vat {
    width: 88px;
    height: 88px;
    margin: 1.4rem auto 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.4rem;
    color: #fff;
    border: 3px solid var(--gold);
    animation: npr-pop 2.6s ease-in-out infinite;
}

.fx-dash {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0.45rem;
    padding: 1.4rem 1.1rem 0;
}

.fx-dash span {
    height: 42px;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    animation: avatar-pop 2.4s ease-in-out infinite;
}

.fx-dash span:nth-child(1) {
    grid-column: 1 / -1;
    height: 36px;
}
.fx-dash span:nth-child(3) {
    animation-delay: 0.15s;
}
.fx-dash span:nth-child(4) {
    animation-delay: 0.3s;
}

.fx-catalog,
.fx-sheet {
    display: flex;
    gap: 0.5rem;
    padding: 2rem 1.2rem 0;
}

.fx-catalog span,
.fx-sheet span {
    flex: 1;
    height: 64px;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.14);
    animation: card-swap 2.8s ease-in-out infinite;
}

.fx-catalog span:nth-child(2),
.fx-sheet span:nth-child(2) {
    animation-delay: 0.15s;
    height: 76px;
}
.fx-sheet span {
    height: 54px;
    background: #1f8a70;
}

.fx-lots {
    display: flex;
    gap: 0.4rem;
    padding: 2.2rem 1rem 0;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}

.fx-lots span {
    animation: box-stack 2.8s ease-in-out infinite;
}

.fx-boxes.consume span:last-child {
    animation: consume 2.2s ease-in-out infinite;
}

@keyframes consume {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.15;
        transform: scale(0.6);
    }
}

.fx-tables,
.fx-org {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    padding: 1.5rem 1.1rem 0;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.fx-tables span,
.fx-org span {
    padding: 0.7rem 0.4rem;
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
}

.fx-tables span.busy {
    background: var(--gold);
    color: #1a140c;
    animation: screen-blink 2.2s ease-in-out infinite;
}

.fx-org span:first-child {
    grid-column: 1 / -1;
}

.fx-split {
    display: flex;
    gap: 0.55rem;
    padding: 2.2rem 1.1rem 0;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.fx-split span {
    flex: 1;
    padding: 0.85rem 0.4rem;
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.12);
    text-align: center;
    animation: card-swap 2.6s ease-in-out infinite;
}

.fx-split span:last-child {
    animation-delay: 0.25s;
}

.fx-recipe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding-top: 2.2rem;
}

.fx-recipe span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #7dd3a8;
    animation: avatar-pop 2s ease-in-out infinite;
}

.fx-recipe span:nth-child(2) {
    background: var(--gold);
    animation-delay: 0.15s;
}

.fx-dish {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    background: #fff !important;
}

.fx-cal {
    text-align: center;
    color: #fff;
    padding-top: 1.6rem;
}

.fx-cal strong {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    animation: npr-pop 2.8s ease-in-out infinite;
}

.fx-cal small {
    opacity: 0.65;
    letter-spacing: 0.12em;
}

@media (max-width: 575.98px) {
    .op-card {
        width: min(9.4rem, 48%);
        padding: 0.55rem 0.6rem;
    }

    .price-orbit {
        width: min(100%, 14.5rem);
        height: 14.5rem;
    }

    .price-orbit-core {
        width: 8.25rem;
        height: 8.25rem;
    }
}

/* ---------- About ---------- */

.product-stage-about {
    min-height: 420px;
    display: block;
    padding: 0.25rem 0 0.5rem;
}

.about-board {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-app-bar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.about-handoff {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.7rem;
    align-items: stretch;
}

.about-panel {
    padding: 1.15rem 1.15rem 1rem;
    border-radius: 1.2rem;
    background: rgba(10, 16, 28, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.about-panel.is-build {
    background:
        radial-gradient(
            180px 120px at 90% 0%,
            rgba(79, 133, 226, 0.28),
            transparent 60%
        ),
        rgba(10, 16, 28, 0.82);
    animation: about-build-glow 3.2s ease-in-out infinite;
}

.about-panel h3 {
    font-size: 1.15rem;
    color: #fff;
    margin: 0 0 0.75rem;
}

.about-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-panel li {
    position: relative;
    margin: 0;
    padding: 0.4rem 0 0.4rem 1.15rem;
    font-size: 0.84rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    animation: about-row 6s ease-in-out infinite;
}

.about-panel li:last-child {
    border-bottom: 0;
}

.about-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--brand);
    opacity: 0.45;
}

.about-panel li:nth-child(1) {
    animation-delay: 0s;
}
.about-panel li:nth-child(2) {
    animation-delay: 0.7s;
}
.about-panel li:nth-child(3) {
    animation-delay: 1.4s;
}

.about-pass {
    position: relative;
    width: 3.6rem;
    display: grid;
    place-items: center;
}

.about-pass::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(79, 133, 226, 0.15),
        rgba(79, 133, 226, 0.85),
        rgba(79, 133, 226, 0.15)
    );
}

.about-pass::after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 14px rgba(79, 133, 226, 0.9);
    animation: about-pass-dot 3.2s ease-in-out infinite;
}

.about-pass-core {
    position: relative;
    z-index: 1;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: rgba(10, 16, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 6px rgba(79, 133, 226, 0.12);
}

.about-pass-core span {
    position: absolute;
    font-family: var(--serif);
    font-size: 0.78rem;
    letter-spacing: -0.03em;
    color: #fff;
    opacity: 0;
    animation: word-cycle 9s infinite;
}

.about-pass-core span:nth-child(1) {
    animation-delay: 0s;
}
.about-pass-core span:nth-child(2) {
    animation-delay: 3s;
}
.about-pass-core span:nth-child(3) {
    animation-delay: 6s;
}

@keyframes about-pass-dot {
    0% {
        left: 0;
        opacity: 0.35;
    }
    45% {
        left: calc(100% - 10px);
        opacity: 1;
    }
    100% {
        left: 0;
        opacity: 0.35;
    }
}

@keyframes about-build-glow {
    0%,
    40% {
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    }
    55%,
    70% {
        box-shadow:
            0 18px 40px rgba(0, 0, 0, 0.28),
            0 0 0 1px rgba(79, 133, 226, 0.45);
    }
    100% {
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    }
}

@keyframes about-row {
    0%,
    12% {
        color: rgba(255, 255, 255, 0.38);
    }
    20%,
    34% {
        color: #fff;
    }
    46%,
    100% {
        color: rgba(255, 255, 255, 0.38);
    }
}

.about-who-copy {
    max-width: 44rem;
    margin-bottom: 2.5rem;
}

.about-who-copy h2 {
    margin-bottom: 1rem;
}

.about-who h2 {
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    margin-bottom: 1rem;
}

.about-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.about-who-grid article {
    padding: 1.25rem 1.3rem;
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    background: var(--paper-2);
}

.about-who-company {
    grid-column: 1 / -1;
    background: #fff;
}

.about-who-grid span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-2);
}

.about-who-grid strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.25rem;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.about-who-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.about-craft {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
}

.about-craft-card {
    --pointer-x: 80%;
    --pointer-y: 20%;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 2rem 1.75rem 1.7rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
}

.about-craft-card h3 {
    font-size: 1.7rem;
    margin: 0 0 0.7rem;
}

.about-craft-card p {
    color: var(--muted);
    margin-bottom: 1.1rem;
}

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

.about-craft-card li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.1rem;
    font-size: 0.92rem;
    font-weight: 600;
}

.about-craft-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--brand);
}

.about-craft-card.is-ink {
    background:
        radial-gradient(
            320px circle at var(--pointer-x) var(--pointer-y),
            rgba(79, 133, 226, 0.38),
            transparent 55%
        ),
        var(--ink);
    border-color: transparent;
    color: #fff;
}

.about-craft-card.is-ink h3 {
    color: #fff;
}

.about-craft-card.is-ink p {
    color: rgba(255, 255, 255, 0.68);
}

.about-craft-card.is-ink li::before {
    background: rgba(255, 255, 255, 0.7);
}

.about-stand h2 {
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    margin-bottom: 0.85rem;
}

.about-stand-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
}

.about-stand-list li {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--line);
}

.about-stand-list span {
    font-family: var(--serif);
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    color: var(--brand);
    line-height: 1.2;
}

.about-stand-list h3 {
    font-size: 1.3rem;
    margin: 0 0 0.3rem;
}

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

.about-ways-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.about-way {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem 1.4rem 1.3rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    color: inherit;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.about-way:hover {
    color: inherit;
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(79, 133, 226, 0.28);
}

.about-way-index {
    display: block;
    margin-bottom: 1rem;
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--brand);
}

.about-way h3 {
    font-size: 1.55rem;
    margin: 0 0 0.45rem;
}

.about-way p {
    color: var(--muted);
    margin-bottom: 1.1rem;
    flex-grow: 1;
}

.about-way-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.2rem 0.35rem;
    margin-bottom: 1rem;
    font-family: var(--serif);
    font-size: 1.55rem;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.about-way-start {
    flex: 0 0 100%;
    font-family: var(--font);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.about-way-price span:not(.about-way-start) {
    font-family: var(--font);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-2);
}

.about-way-price small {
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
}

#contact-panel {
    scroll-margin-top: 5.25rem;
}

.product-stage-contact {
    min-height: 400px;
    display: grid;
    place-items: center;
}

.contact-board {
    position: relative;
    z-index: 2;
    width: min(100%, 340px);
}

.contact-ticket {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-ticket li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-ticket span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.contact-ticket strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    text-align: right;
}

.contact-chip.chip-a {
    top: 10%;
    right: -6%;
    animation: float-y 5.6s ease-in-out infinite;
}

.contact-chip.chip-b {
    bottom: 8%;
    left: -8%;
    width: 200px;
    animation: float-y 6s ease-in-out infinite 0.4s;
}

.contact-details {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.contact-details article {
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    background: #fff;
}

.contact-details span {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-2);
}

.contact-details strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 0.2rem;
}

.contact-details strong a {
    color: inherit;
}

.contact-details strong a:hover {
    color: var(--brand-2);
}

.contact-details p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .about-craft,
    .about-who-grid,
    .about-ways-grid {
        grid-template-columns: 1fr;
        max-width: 32rem;
        margin-left: auto;
        margin-right: auto;
    }

    .about-who-company {
        grid-column: auto;
    }

    .about-handoff {
        grid-template-columns: 1fr;
        max-width: 26rem;
        margin: 0 auto;
    }

    .about-pass {
        width: 100%;
        height: 3.6rem;
    }

    .about-pass::before {
        top: 50%;
        bottom: auto;
        left: 12%;
        right: 12%;
        height: 2px;
        width: auto;
    }

    .product-stage-contact {
        min-height: 0;
        width: 100%;
    }

    .contact-board {
        width: 100%;
    }

    .contact-chip.chip-a,
    .contact-chip.chip-b {
        position: absolute;
        margin-top: 0;
    }

    .contact-chip.chip-a {
        top: 8%;
        right: 0.35rem;
        bottom: auto;
        left: auto;
        width: min(11.25rem, 58%);
    }

    .contact-chip.chip-b {
        bottom: 8%;
        left: 0.35rem;
        top: auto;
        right: auto;
        width: min(13.5rem, 72%);
    }

    .contact-chip .op-foot {
        overflow-wrap: anywhere;
    }

    .contact-ticket li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .contact-ticket strong {
        text-align: left;
    }
}
