:root {
    --font-display: "Playfair Display", "Times New Roman", Georgia, serif;
    --font-body: "Manrope", "PingFang SC", "Microsoft YaHei", sans-serif;
    --ivory: #f4eee4;
    --paper: #fbf8f2;
    --sand: #d7c8b1;
    --ink: #191510;
    --ink-soft: rgba(25, 21, 16, 0.68);
    --charcoal: #0b0d10;
    --glass: rgba(255, 255, 255, 0.16);
    --glass-strong: rgba(255, 255, 255, 0.24);
    --neon: #7dffcf;
    --shadow-soft: 0 22px 60px rgba(18, 12, 5, 0.12);
    --shadow-strong: 0 32px 80px rgba(6, 8, 15, 0.34);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --container: min(1260px, calc(100% - 48px));
    --header-height: 78px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}

body.is-nav-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

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

.site-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.08;
    mix-blend-mode: multiply;
    background-image:
        linear-gradient(transparent 0%, rgba(255, 255, 255, 0.6) 100%),
        repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0 1px, transparent 1px 4px);
}

.container {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.site-header {
    position: fixed;
    top: 12px;
    left: 0;
    right: 0;
    z-index: 20;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-condensed .header-shell {
    background: rgba(247, 240, 230, 0.72);
    box-shadow: 0 14px 34px rgba(25, 21, 16, 0.08);
    border-color: rgba(25, 21, 16, 0.08);
}

.header-shell {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 249, 241, 0.48);
    backdrop-filter: blur(18px);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark-frame {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(232, 218, 193, 0.66));
    border: 1px solid rgba(141, 106, 56, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    overflow: hidden;
}

.brand-mark-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-mark-frame.has-brand-mark .brand-mark-image {
    display: block;
}

.brand-mark-frame.has-brand-mark .brand-mark-fallback {
    display: none;
}

.brand-mark-fallback {
    font-family: var(--font-display);
    font-size: 1.08rem;
    letter-spacing: 0.06em;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand-copy strong {
    font-size: 0.92rem;
    font-weight: 800;
}

.brand-copy span {
    color: var(--ink-soft);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.global-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
}

.global-nav a,
.header-cta {
    border-radius: 999px;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.global-nav a {
    padding: 9px 12px;
    color: rgba(25, 21, 16, 0.72);
    font-size: 0.84rem;
    font-weight: 700;
}

.global-nav a:hover,
.global-nav a.is-active {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 26px rgba(25, 21, 16, 0.08);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    background: linear-gradient(135deg, rgba(25, 21, 16, 0.96), rgba(74, 51, 27, 0.9));
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 30px rgba(25, 21, 16, 0.16);
}

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(141, 106, 56, 0.14);
    padding: 0;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 251, 245, 0.94), rgba(239, 229, 213, 0.72));
    color: var(--ink);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 14px 28px rgba(25, 21, 16, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

.nav-toggle span:nth-child(2) {
    width: 14px;
}

.site-header.is-nav-open .nav-toggle {
    box-shadow: 0 16px 30px rgba(25, 21, 16, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-header.is-nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.space {
    position: relative;
    overflow: clip;
}

.space-brand::after,
.space-app::before,
.space-app::after,
.space-geek::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 0;
}

.space-brand {
    min-height: 100svh;
    padding: calc(var(--header-height) + 72px) 0 110px;
    background:
        radial-gradient(circle at top right, rgba(206, 184, 151, 0.34), transparent 28%),
        linear-gradient(180deg, #f6f0e7 0%, #f3eee6 62%, #ece6db 100%);
}

.space-brand::after {
    bottom: 0;
    height: 190px;
    background:
        linear-gradient(180deg, rgba(236, 230, 219, 0) 0%, rgba(86, 53, 138, 0.12) 44%, rgba(35, 20, 73, 0.5) 100%);
}

.brand-media-shell {
    position: absolute;
    inset: 0;
}

.brand-video-fallback,
.brand-loop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.brand-video-fallback {
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.72), transparent 22%),
        linear-gradient(135deg, rgba(233, 223, 207, 0.9), rgba(255, 248, 239, 0.52) 38%, rgba(88, 61, 30, 0.22) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(196, 177, 146, 0.32));
    transform: scale(1.03);
}

.brand-video-fallback::before,
.brand-video-fallback::after {
    content: "";
    position: absolute;
    inset: 0;
}

.brand-video-fallback::before {
    background: linear-gradient(90deg, rgba(244, 238, 228, 0.94) 12%, rgba(244, 238, 228, 0.48) 42%, rgba(15, 10, 6, 0.18) 100%);
}

.brand-video-fallback::after {
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.62), transparent 24%),
        radial-gradient(circle at 76% 68%, rgba(255, 214, 154, 0.14), transparent 28%);
    animation: heroPulse 12s ease-in-out infinite alternate;
}

.brand-loop {
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.brand-media-shell.has-video .brand-loop {
    opacity: 0.42;
}

.fallback-caption {
    position: absolute;
    right: 40px;
    bottom: 30px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(25, 21, 16, 0.34);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 56px;
    align-items: end;
}

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

.eyebrow {
    margin: 0 0 20px;
    color: rgba(25, 21, 16, 0.5);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.preview-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 30px;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 40px rgba(25, 21, 16, 0.08);
    color: rgba(25, 21, 16, 0.62);
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-title,
.section-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.hero-title {
    max-width: 12ch;
    font-size: clamp(4rem, 8vw, 7.7rem);
    color: var(--ink);
}

.hero-subtitle,
.section-subtitle {
    margin: 28px 0 0;
    font-size: clamp(1rem, 1.4vw, 1.24rem);
    line-height: 1.9;
}

.hero-subtitle {
    max-width: 46rem;
    color: rgba(25, 21, 16, 0.74);
}

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

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    overflow: hidden;
}

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

.btn-ivory {
    background: linear-gradient(135deg, rgba(31, 23, 15, 0.96), rgba(106, 73, 35, 0.92));
    color: #fff;
    box-shadow: 0 22px 44px rgba(25, 21, 16, 0.18);
}

.btn-ghost {
    border: 1px solid rgba(25, 21, 16, 0.12);
    background: rgba(255, 255, 255, 0.52);
    color: var(--ink);
}

.btn-dark {
    background: linear-gradient(135deg, #0c0d12, #23262f);
    color: #fff;
    box-shadow: 0 26px 48px rgba(6, 8, 15, 0.22);
}

.hero-editorial-panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 18px;
    padding: 34px 28px 28px;
    border-radius: var(--radius-xl);
    background: rgba(24, 18, 10, 0.88);
    color: rgba(255, 245, 233, 0.86);
    box-shadow: var(--shadow-soft);
}

.editorial-note {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.editorial-note:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.editorial-note span {
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
    color: rgba(255, 219, 170, 0.88);
}

.editorial-note p,
.editorial-quote p {
    margin: 0;
}

.editorial-quote {
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2vw, 2.1rem);
    line-height: 1.2;
    color: #fff;
}

.section-shell {
    padding: 124px 0;
}

.section-shell-wide {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 42px;
    align-items: center;
}

.section-copy {
    max-width: 34rem;
}

.section-title {
    font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.section-title-app {
    max-width: none;
    font-size: clamp(3rem, 5.1vw, 5.8rem);
    line-height: 0.91;
}

.section-title-app .title-line {
    display: inline-block;
    white-space: nowrap;
}

.title-tight {
    padding-left: 0.18ch;
}

.section-subtitle {
    color: rgba(25, 21, 16, 0.72);
}

.section-copy-app {
    max-width: 39rem;
}

.section-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.proof-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn-app-primary {
    min-width: 220px;
}

.btn-app-ghost {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-copy-light .eyebrow,
.section-copy-light .section-title,
.section-copy-light .section-subtitle {
    color: #f6fbff;
}

.section-copy-light .eyebrow {
    color: rgba(246, 251, 255, 0.5);
}

.section-copy-light .section-subtitle {
    color: rgba(246, 251, 255, 0.72);
}

.space-app {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 159, 219, 0.22), transparent 28%),
        radial-gradient(circle at 84% 14%, rgba(119, 175, 255, 0.18), transparent 22%),
        radial-gradient(circle at 58% 80%, rgba(255, 255, 255, 0.06), transparent 32%),
        linear-gradient(135deg, #0d1021 0%, #231449 38%, #130f32 68%, #0b1222 100%);
    color: #fff;
}

.space-app::before {
    top: 0;
    height: 180px;
    background:
        linear-gradient(180deg, rgba(244, 238, 228, 0.92) 0%, rgba(115, 78, 164, 0.18) 46%, rgba(13, 16, 33, 0) 100%);
}

.space-app::after {
    bottom: 0;
    height: 230px;
    background:
        linear-gradient(180deg, rgba(11, 18, 34, 0) 0%, rgba(8, 14, 28, 0.42) 38%, rgba(5, 7, 11, 0.96) 100%);
}

.space-app .section-copy,
.space-app .section-subtitle,
.space-app .eyebrow,
.space-app .section-title {
    color: #fff;
}

.space-app .section-subtitle {
    color: rgba(255, 255, 255, 0.78);
}

.space-app .eyebrow {
    color: rgba(255, 255, 255, 0.52);
}

.app-showcase {
    position: relative;
    min-height: 640px;
    padding: 34px 36px 32px;
    border-radius: 42px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04) 56%, rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(26px);
    box-shadow: var(--shadow-strong);
}

.app-showcase::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(255, 255, 255, 0.03));
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
}

.orb-one {
    top: 94px;
    right: 118px;
    width: 220px;
    height: 220px;
    background: rgba(255, 149, 214, 0.34);
}

.orb-two {
    left: 44px;
    bottom: 52px;
    width: 180px;
    height: 180px;
    background: rgba(94, 186, 255, 0.18);
}

.floating-tags {
    position: absolute;
    inset: 26px 30px auto auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: 250px;
}

.floating-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 28px rgba(18, 8, 40, 0.16);
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
}

.device {
    position: absolute;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(8, 10, 24, 0.3);
    backdrop-filter: blur(22px);
}

.device-screen {
    height: 100%;
    padding: 16px;
    border-radius: inherit;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(12, 18, 40, 0.94), rgba(38, 19, 80, 0.82)), linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 50%);
}

.device-phone {
    left: 4%;
    top: 142px;
    width: min(252px, 27vw);
    height: 430px;
    padding: 10px;
    transform: rotate(-9deg) scale(0.95);
}

.device-mini {
    right: 6%;
    bottom: 48px;
    width: min(236px, 24vw);
    height: 280px;
    padding: 10px;
    transform: rotate(8deg) scale(0.95);
}

.device-panel {
    right: 10%;
    top: 118px;
    width: min(468px, 46vw);
    height: 348px;
    padding: 12px;
    transform: rotate(4deg);
}

.device-main {
    z-index: 3;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 36px 90px rgba(5, 8, 24, 0.4);
}

.device-side {
    z-index: 1;
    opacity: 0.8;
}

.device-side .device-screen {
    background: linear-gradient(180deg, rgba(12, 18, 40, 0.88), rgba(38, 19, 80, 0.72)), linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 50%);
}

.device-header {
    display: flex;
    gap: 6px;
    padding: 4px 0 10px 4px;
}

.device-header span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.screenshot-screen {
    position: relative;
    color: #fff;
}

.screen-status,
.dashboard-topbar,
.miniapp-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.screen-status {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
}

.screen-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 14px;
    margin-top: 14px;
    padding: 18px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 166, 205, 0.28), rgba(111, 165, 255, 0.18)),
        rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.screen-hero-copy small,
.screen-summary-card small,
.product-copy span,
.dashboard-kpis small,
.chart-head span,
.miniapp-topline span,
.miniapp-banner-card p,
.miniapp-metrics small {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.74rem;
}

.screen-hero-copy strong,
.dashboard-topbar strong,
.miniapp-banner-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.26rem;
    line-height: 1.1;
    font-weight: 800;
}

.screen-hero-visual {
    border-radius: 22px;
    background:
        radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.84), transparent 18%),
        linear-gradient(180deg, rgba(34, 40, 80, 0.1), rgba(18, 19, 48, 0.42)),
        linear-gradient(145deg, rgba(255, 195, 141, 0.9), rgba(255, 108, 189, 0.76));
}

.screen-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.screen-chip-row span {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.74rem;
    font-weight: 800;
}

.screen-summary-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.screen-summary-card strong,
.dashboard-kpis strong,
.miniapp-metrics strong {
    display: block;
    margin-top: 6px;
    font-size: 1.4rem;
    line-height: 1;
}

.screen-sparkline {
    width: 108px;
    height: 42px;
    border-radius: 18px;
    background:
        linear-gradient(90deg, transparent 0 10%, rgba(255, 255, 255, 0.12) 10% 12%, transparent 12% 28%, rgba(255, 255, 255, 0.16) 28% 30%, transparent 30% 46%, rgba(255, 255, 255, 0.2) 46% 48%, transparent 48% 64%, rgba(255, 255, 255, 0.26) 64% 66%, transparent 66%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
}

.screen-product-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.screen-product-list article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.product-thumb {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 191, 143, 0.94), rgba(255, 95, 156, 0.72));
}

.product-thumb.alt {
    background: linear-gradient(145deg, rgba(109, 199, 255, 0.92), rgba(116, 115, 255, 0.76));
}

.product-copy strong {
    display: block;
    font-size: 0.92rem;
}

.screen-product-list em {
    font-style: normal;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
}

.screen-tabbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 700;
}

.screen-tabbar .is-active {
    color: #fff;
}

.dashboard-topbar {
    padding-bottom: 16px;
}

.dashboard-topbar strong {
    font-size: 1.12rem;
}

.dashboard-topbar span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.76rem;
    font-weight: 700;
}

.dashboard-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.dashboard-kpis article {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 14px;
    margin-top: 14px;
}

.dashboard-chart-card,
.dashboard-feed-card {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.chart-head strong,
.dashboard-feed-card strong {
    display: block;
    font-size: 0.96rem;
}

.chart-bars {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: end;
    gap: 10px;
    height: 170px;
    margin-top: 18px;
}

.chart-bars span {
    display: block;
    border-radius: 999px 999px 14px 14px;
    background: linear-gradient(180deg, rgba(133, 193, 255, 0.96), rgba(255, 146, 222, 0.78));
}

.chart-bar-46 { height: 46%; }
.chart-bar-62 { height: 62%; }
.chart-bar-58 { height: 58%; }
.chart-bar-84 { height: 84%; }
.chart-bar-76 { height: 76%; }
.chart-bar-92 { height: 92%; }
.chart-bar-68 { height: 68%; }

.dashboard-feed-card ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.dashboard-feed-card li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
}

.dashboard-feed-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}

.miniapp-topline {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.74rem;
}

.miniapp-topline strong {
    font-size: 0.92rem;
}

.miniapp-banner-card {
    margin-top: 14px;
    padding: 18px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 108, 189, 0.2), rgba(110, 167, 255, 0.18)),
        rgba(255, 255, 255, 0.08);
}

.miniapp-badge {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.miniapp-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.miniapp-metrics article {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.miniapp-feed {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.miniapp-feed div {
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.miniapp-feed div:nth-child(1) {
    width: 88%;
}

.miniapp-feed div:nth-child(2) {
    width: 72%;
}

.miniapp-feed div:nth-child(3) {
    width: 94%;
}

.app-card-highlight {
    height: 120px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(133, 193, 255, 0.86), rgba(255, 136, 220, 0.7)), rgba(255, 255, 255, 0.2);
}

.metric-strip {
    margin-top: 16px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
}

.metric-strip span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
}

.metric-strip strong {
    font-size: 1.8rem;
    font-weight: 800;
}

.mini-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mini-grid div,
.panel-module,
.mini-banner,
.mini-lines span {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
}

.mini-grid div {
    height: 88px;
}

.panel-topline {
    width: 42%;
    height: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.panel-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
}

.panel-module {
    min-height: 110px;
}

.panel-module.tall {
    grid-row: span 2;
    min-height: 236px;
}

.mini-banner {
    height: 92px;
}

.mini-lines {
    margin-top: 18px;
}

.mini-lines span {
    display: block;
    height: 18px;
    margin-bottom: 10px;
}

.glass-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.glass-card {
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 44px rgba(8, 10, 24, 0.18);
    backdrop-filter: blur(22px);
}

.glass-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.glass-card h3,
.automation-card h3,
.web3-card h3,
.trust-grid strong {
    margin: 0;
}

.glass-card p,
.automation-card p,
.web3-card p,
.trust-grid p {
    margin: 14px 0 0;
}

.space-geek {
    background: radial-gradient(circle at top right, rgba(125, 255, 207, 0.12), transparent 18%), linear-gradient(180deg, #05070b 0%, #071019 100%);
    color: #f6fbff;
}

.space-geek::before {
    top: 0;
    height: 180px;
    background:
        linear-gradient(180deg, rgba(16, 18, 40, 0.92) 0%, rgba(7, 16, 25, 0.56) 42%, rgba(5, 7, 11, 0) 100%);
}

.data-rain {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 10, 12, 0.2), rgba(4, 10, 12, 0.84)), repeating-linear-gradient(180deg, rgba(125, 255, 207, 0.08) 0 2px, transparent 2px 36px);
    opacity: 0.32;
    mix-blend-mode: screen;
}

.geek-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.terminal-stage {
    border-radius: 30px;
    border: 1px solid rgba(125, 255, 207, 0.16);
    background: rgba(4, 9, 11, 0.84);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(125, 255, 207, 0.1);
    background: rgba(125, 255, 207, 0.05);
}

.terminal-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(125, 255, 207, 0.48);
}

.terminal-header strong {
    margin-left: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(125, 255, 207, 0.78);
}

.terminal-stream {
    min-height: 430px;
    margin: 0;
    padding: 24px 24px 30px;
    color: rgba(182, 255, 225, 0.9);
    font-family: "Cascadia Code", "JetBrains Mono", Consolas, monospace;
    font-size: 0.95rem;
    line-height: 1.75;
    white-space: pre-wrap;
}

.automation-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 8px;
}

.automation-card {
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(125, 255, 207, 0.16);
    background: linear-gradient(180deg, rgba(8, 14, 19, 0.92), rgba(6, 10, 14, 0.84));
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.automation-card:hover {
    transform: translateY(-4px);
    border-color: rgba(125, 255, 207, 0.34);
    box-shadow: 0 30px 58px rgba(0, 0, 0, 0.28);
}

.card-command {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(125, 255, 207, 0.68);
    font-family: "Cascadia Code", "JetBrains Mono", Consolas, monospace;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}

.space-web3 {
    background: radial-gradient(circle at top left, rgba(138, 183, 255, 0.18), transparent 20%), radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.08), transparent 14%), linear-gradient(180deg, #090c12 0%, #10141d 100%);
    color: #f6fbff;
}

.node-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.92;
}

.web3-shell {
    padding: 136px 0;
}

.web3-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 40px;
}

.web3-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(15, 20, 30, 0.88), rgba(10, 13, 22, 0.8)), radial-gradient(circle at top right, rgba(138, 183, 255, 0.14), transparent 34%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(20px);
}

.web3-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(215, 234, 255, 0.94);
    font-family: var(--font-display);
    font-size: 1.32rem;
    font-weight: 800;
}

.web3-card p {
    color: rgba(246, 251, 255, 0.68);
}

.space-contact {
    background: radial-gradient(circle at top right, rgba(204, 177, 136, 0.28), transparent 22%), linear-gradient(180deg, #f5efe6 0%, #efe7dd 100%);
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
    gap: 30px;
    padding: 120px 0;
}

.contact-copy-card,
.qr-card {
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
}

.contact-copy-card {
    padding: 42px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(18px);
}

.contact-title {
    max-width: 14ch;
    font-size: clamp(2.8rem, 5vw, 4.9rem);
}

.contact-subtitle {
    max-width: 42rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.trust-grid article {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(25, 21, 16, 0.08);
}

.trust-grid span {
    display: block;
    margin-bottom: 10px;
    color: rgba(25, 21, 16, 0.48);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trust-grid strong {
    display: block;
    font-size: 1.1rem;
}

.trust-grid p,
.copy-feedback,
.qr-footnote {
    color: rgba(25, 21, 16, 0.68);
}

.copy-feedback {
    align-self: center;
    font-size: 0.94rem;
}

.contact-id-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 4px 0 0;
    color: rgba(25, 21, 16, 0.68);
    font-size: 0.96rem;
    font-weight: 600;
}

.contact-id-line strong {
    color: var(--ink);
    font-size: 1.04rem;
    letter-spacing: 0.02em;
}

.qr-interaction-shell {
    display: flex;
}

.qr-card {
    width: 100%;
    min-height: 100%;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(26px);
    cursor: pointer;
    text-align: left;
}

.qr-card-head span {
    display: block;
    color: rgba(25, 21, 16, 0.48);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.qr-card-head strong {
    display: block;
    margin-top: 12px;
    font-size: clamp(1.6rem, 2.4vw, 2.4rem);
    line-height: 1.18;
}

.qr-visual {
    position: relative;
    margin-top: 24px;
    min-height: 340px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(214, 223, 236, 0.22)), rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.qr-placeholder,
.qr-image {
    transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.qr-placeholder {
    position: absolute;
    inset: 24px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 24px;
    border: 1px dashed rgba(25, 21, 16, 0.14);
    background: rgba(255, 255, 255, 0.44);
    color: rgba(25, 21, 16, 0.74);
}

.qr-placeholder span {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.qr-placeholder p {
    max-width: 18rem;
    margin: 0;
}

.qr-image {
    width: min(78%, 320px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    opacity: 0;
    transform: scale(0.96);
    filter: blur(16px);
}

.qr-card.has-qr .qr-image {
    opacity: 0.42;
}

.qr-card.has-qr:hover .qr-image,
.qr-card.has-qr.is-revealed .qr-image {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.qr-card.has-qr:hover .qr-placeholder,
.qr-card.has-qr.is-revealed .qr-placeholder {
    opacity: 0;
    transform: scale(0.96);
}

.qr-footnote {
    margin: 18px 6px 0;
}

.site-footer {
    padding: 0 0 34px;
    background: #efe7dd;
}

.footer-shell {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(25, 21, 16, 0.08);
    color: rgba(25, 21, 16, 0.54);
    font-size: 0.88rem;
}

.js-enhanced [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-enhanced [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ripple-surface {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    animation: rippleBurst 0.7s ease-out forwards;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(110, 167, 255, 0.6);
    outline-offset: 4px;
}

@keyframes rippleBurst {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(18);
    }
}

@keyframes heroPulse {
    from {
        transform: scale(1) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.06) translate3d(-1.2%, 1.6%, 0);
    }
}

@media (max-width: 1140px) {
    .hero-grid,
    .section-shell-wide,
    .geek-shell,
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .hero-editorial-panel,
    .section-copy,
    .contact-title,
    .contact-subtitle {
        max-width: none;
    }

    .glass-grid,
    .automation-grid,
    .web3-grid,
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .device-phone {
        left: 0;
    }

    .device-panel {
        right: 2%;
    }
}

@media (max-width: 920px) {
    :root {
        --container: min(1260px, calc(100% - 28px));
    }

    .site-header {
        top: 10px;
    }

    .header-shell {
        width: var(--container);
        gap: 10px;
        padding: 9px 10px;
        border-radius: 28px;
        background: rgba(249, 242, 233, 0.78);
        border-color: rgba(255, 255, 255, 0.52);
    }

    .nav-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .header-cta {
        display: none;
    }

    .global-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: grid;
        gap: 8px;
        padding: 14px;
        border-radius: 24px;
        background: rgba(250, 243, 235, 0.92);
        box-shadow: 0 22px 40px rgba(25, 21, 16, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .site-header.is-nav-open .global-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .global-nav a {
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.72);
    }

    .space-brand {
        padding-top: calc(var(--header-height) + 32px);
    }

    .hero-title {
        max-width: none;
        font-size: clamp(3.2rem, 11vw, 5.4rem);
        line-height: 0.92;
        letter-spacing: -0.04em;
    }

    .section-title-app .title-line {
        white-space: normal;
    }

    .app-showcase {
        min-height: 650px;
        padding: 24px;
    }

    .device-phone,
    .device-mini,
    .device-panel {
        transform: none;
    }

    .device-phone {
        left: 12px;
        top: 198px;
        width: min(220px, 52vw);
        height: 430px;
    }

    .device-panel {
        right: 18px;
        top: 86px;
        width: min(360px, 72vw);
        height: 300px;
    }

    .device-mini {
        right: 12px;
        bottom: 18px;
        width: min(210px, 48vw);
        height: 260px;
    }
}

@media (max-width: 720px) {
    .space-brand {
        padding-top: calc(var(--header-height) + 24px);
        min-height: auto;
        padding-bottom: 18px;
    }

    .space-brand::after {
        display: none;
    }

    .space-app::before {
        display: none;
    }

    .space-app::after {
        height: 132px;
    }

    .space-geek::before {
        display: none;
    }

    .section-shell,
    .web3-shell,
    .contact-shell {
        padding-top: 84px;
        padding-bottom: 84px;
    }

    .eyebrow {
        margin-bottom: 14px;
        font-size: 0.74rem;
        letter-spacing: 0.18em;
    }

    .preview-pill {
        margin-bottom: 22px;
        padding: 10px 14px;
        font-size: 0.94rem;
    }

    .hero-title {
        font-size: clamp(2.95rem, 14vw, 4.5rem);
    }

    .hero-subtitle {
        max-width: 34rem;
    }

    .hero-subtitle,
    .section-subtitle {
        margin-top: 22px;
    }

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

    .hero-grid {
        gap: 20px;
    }

    .btn {
        width: 100%;
        padding: 16px 18px;
    }

    .preview-pill,
    .floating-tags {
        max-width: 100%;
    }

    .app-showcase {
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        gap: 14px;
        min-height: auto;
        padding: 18px;
        border-radius: 30px;
    }

    .floating-tags {
        position: relative;
        inset: auto;
        order: 0;
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 2px;
    }

    .section-proof {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .proof-chip {
        width: auto;
        min-height: 44px;
        padding: 9px 12px;
        justify-content: center;
        text-align: center;
    }

    .gradient-orb {
        filter: blur(28px);
        opacity: 0.72;
    }

    .orb-one {
        top: 72px;
        right: -16px;
        width: 160px;
        height: 160px;
    }

    .orb-two {
        left: -20px;
        bottom: 78px;
        width: 120px;
        height: 120px;
    }

    .device {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none !important;
    }

    .device-panel {
        order: 1;
        width: 100%;
        height: 308px;
    }

    .device-phone,
    .device-mini {
        width: calc(50% - 7px);
        height: 292px;
        opacity: 0.92;
    }

    .device-phone {
        order: 2;
    }

    .device-mini {
        order: 3;
    }

    .screen-hero-card {
        grid-template-columns: 1fr;
    }

    .screen-hero-visual {
        min-height: 84px;
    }

    .dashboard-kpis,
    .dashboard-grid,
    .miniapp-metrics {
        grid-template-columns: 1fr;
    }

    .chart-bars {
        height: 128px;
    }

    .glass-grid,
    .automation-grid,
    .web3-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .contact-copy-card,
    .qr-card {
        padding: 24px;
    }

    .fallback-caption {
        display: none;
    }

    .space-app {
        margin-top: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
}

@media (max-width: 560px) {
    :root {
        --container: min(1260px, calc(100% - 20px));
    }

    .site-header {
        top: 8px;
    }

    .header-shell {
        gap: 10px;
        padding: 8px 10px;
        border-radius: 24px;
    }

    .brand-lockup {
        flex: 1 1 auto;
        gap: 10px;
        min-width: 0;
    }

    .brand-mark-frame {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .brand-copy {
        display: flex;
        min-width: 0;
    }

    .brand-copy strong {
        max-width: 44vw;
        font-size: 0.98rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-copy span {
        display: none;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
        border-radius: 15px;
    }

    .hero-grid {
        gap: 16px;
    }

    .eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
    }

    .preview-pill {
        font-size: 0.9rem;
        padding: 10px 14px;
    }

    .hero-title {
        font-size: clamp(2.7rem, 16vw, 4.1rem);
        line-height: 0.9;
    }

    .hero-subtitle,
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.72;
    }

    .hero-editorial-panel {
        padding: 18px 18px;
        border-radius: 24px;
    }

    .section-shell,
    .web3-shell,
    .contact-shell {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .app-showcase {
        gap: 12px;
        padding: 16px;
    }

    .space-app {
        margin-top: 0;
    }

    .section-proof {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .proof-chip {
        min-height: 40px;
        padding: 8px 10px;
        font-size: 0.72rem;
    }

    .device-panel {
        height: 272px;
        border-radius: 24px;
    }

    .device-phone {
        width: 100%;
        height: 282px;
        border-radius: 24px;
    }

    .device-mini {
        display: none;
    }

    .device-screen {
        padding: 13px;
    }

    .screen-product-list article {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .screen-product-list em {
        grid-column: 2;
    }

    .terminal-stream {
        min-height: 280px;
        padding: 18px;
        font-size: 0.82rem;
    }

    .qr-visual {
        min-height: 228px;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
    }

    .js-enhanced [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
