.landing-page {
    position: relative;
    padding-bottom: 42px;
    overflow: clip;
}

.landing-page::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 760px;
    background:
        radial-gradient(circle at 12% 12%, rgba(227, 74, 64, 0.22), transparent 26%),
        radial-gradient(circle at 82% 16%, rgba(82, 126, 255, 0.18), transparent 22%),
        radial-gradient(circle at 52% 0%, rgba(255, 202, 131, 0.12), transparent 30%),
        linear-gradient(180deg, #090c12 0%, #111722 34%, rgba(17, 23, 34, 0.72) 48%, rgba(239, 237, 232, 0) 100%);
    pointer-events: none;
    z-index: 0;
}

.landing-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0%, transparent 24%, rgba(255, 255, 255, 0.02) 48%, transparent 66%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 62%);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

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

.showcase {
    position: relative;
    padding: 34px 0 26px;
}

.showcase::before {
    content: '';
    position: absolute;
    inset: -28px -4vw -36px;
    border-radius: 44px;
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.08), transparent 18%),
        radial-gradient(circle at 78% 18%, rgba(227, 74, 64, 0.14), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 0;
}

.showcase-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: stretch;
    gap: 42px;
    padding: 56px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 18%),
        radial-gradient(circle at bottom left, rgba(229, 70, 60, 0.20), transparent 28%),
        linear-gradient(90deg, rgba(7, 14, 28, 0.94), rgba(9, 18, 34, 0.72) 46%, rgba(255, 255, 255, 0.06)),
        linear-gradient(135deg, #111923 0%, #67211b 52%, #d5a264 100%);
    box-shadow: 0 36px 80px rgba(7, 12, 22, 0.28);
    overflow: hidden;
    backface-visibility: hidden;
    contain: layout paint;
}

.showcase-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 28%, rgba(255, 255, 255, 0.18), transparent 16%),
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.12), transparent 18%),
        linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.14) 38% 41%, transparent 41% 100%);
    pointer-events: none;
}

.showcase__viewport {
    position: relative;
    min-height: 660px;
    transition: height 220ms ease;
    z-index: 1;
    contain: layout paint;
}

.showcase-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 42px;
    padding: 56px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 18%),
        radial-gradient(circle at bottom left, rgba(229, 70, 60, 0.20), transparent 28%),
        linear-gradient(90deg, rgba(7, 14, 28, 0.94), rgba(9, 18, 34, 0.72) 46%, rgba(255, 255, 255, 0.06)),
        linear-gradient(135deg, #111923 0%, #67211b 52%, #d5a264 100%);
    box-shadow: 0 36px 80px rgba(7, 12, 22, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 320ms ease, transform 320ms ease, box-shadow 280ms ease;
    overflow: hidden;
    backface-visibility: hidden;
    contain: layout paint;
}

.showcase-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 28%, rgba(255, 255, 255, 0.18), transparent 16%),
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.12), transparent 18%),
        linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.14) 38% 41%, transparent 41% 100%);
    pointer-events: none;
}

.showcase-slide--delivery {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 18%),
        radial-gradient(circle at bottom left, rgba(255, 160, 82, 0.18), transparent 26%),
        linear-gradient(90deg, rgba(8, 18, 30, 0.94), rgba(13, 25, 41, 0.76) 44%, rgba(255, 255, 255, 0.06)),
        linear-gradient(135deg, #23131a 0%, #8b281f 42%, #f0c86d 100%);
}

.showcase-slide--support {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 18%),
        radial-gradient(circle at bottom left, rgba(255, 212, 128, 0.16), transparent 24%),
        linear-gradient(90deg, rgba(8, 16, 28, 0.94), rgba(14, 21, 34, 0.76) 44%, rgba(255, 255, 255, 0.06)),
        linear-gradient(135deg, #17151d 0%, #6f1d25 38%, #c73b2b 70%, #f5cc87 100%);
}

.showcase-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

html:not([data-theme='dark']) .landing-page::before {
    background:
        radial-gradient(circle at 10% 8%, rgba(227, 98, 84, 0.22), transparent 22%),
        radial-gradient(circle at 78% 12%, rgba(255, 196, 116, 0.24), transparent 22%),
        radial-gradient(circle at 60% 4%, rgba(255, 255, 255, 0.96), transparent 24%),
        radial-gradient(circle at 88% 36%, rgba(171, 188, 230, 0.14), transparent 20%),
        linear-gradient(180deg, #fffdf8 0%, #f6eee3 46%, rgba(241, 238, 232, 0) 100%);
}

html:not([data-theme='dark']) .landing-page::after {
    opacity: 0.22;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.34), transparent 12%),
        linear-gradient(115deg, rgba(197, 20, 27, 0.028) 0%, transparent 24%, rgba(255, 255, 255, 0.42) 48%, transparent 64%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 68%);
}

html:not([data-theme='dark']) .showcase::before {
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.74), transparent 18%),
        radial-gradient(circle at 78% 18%, rgba(229, 106, 84, 0.10), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
}

html:not([data-theme='dark']) .showcase-panel {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.90), transparent 18%),
        radial-gradient(circle at 82% 14%, rgba(229, 106, 84, 0.24), transparent 22%),
        radial-gradient(circle at 72% 78%, rgba(255, 208, 148, 0.20), transparent 28%),
        radial-gradient(circle at 92% 52%, rgba(170, 188, 228, 0.12), transparent 18%),
        linear-gradient(115deg, rgba(255, 250, 245, 0.98), rgba(248, 236, 224, 0.94) 42%, rgba(244, 215, 186, 0.86) 100%);
    border: 1px solid rgba(215, 192, 170, 0.46);
    box-shadow: 0 34px 68px rgba(126, 86, 58, 0.16), inset 0 1px 0 rgba(255,255,255,.76);
}

html:not([data-theme='dark']) .showcase-panel::after {
    background:
        radial-gradient(circle at 14% 28%, rgba(255, 255, 255, 0.42), transparent 16%),
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.26), transparent 18%),
        linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.42) 38% 41%, transparent 41% 100%);
}

html:not([data-theme='dark']) .showcase-slide {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.90), transparent 18%),
        radial-gradient(circle at 82% 14%, rgba(229, 106, 84, 0.24), transparent 22%),
        radial-gradient(circle at 72% 78%, rgba(255, 208, 148, 0.20), transparent 28%),
        radial-gradient(circle at 92% 52%, rgba(170, 188, 228, 0.12), transparent 18%),
        linear-gradient(115deg, rgba(255, 250, 245, 0.98), rgba(248, 236, 224, 0.94) 42%, rgba(244, 215, 186, 0.86) 100%);
    border: 1px solid rgba(215, 192, 170, 0.46);
    box-shadow: 0 34px 68px rgba(126, 86, 58, 0.16), inset 0 1px 0 rgba(255,255,255,.76);
}

html:not([data-theme='dark']) .showcase-slide--delivery {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.90), transparent 18%),
        radial-gradient(circle at 84% 18%, rgba(241, 148, 107, 0.24), transparent 22%),
        radial-gradient(circle at 76% 78%, rgba(255, 206, 132, 0.24), transparent 28%),
        radial-gradient(circle at 90% 54%, rgba(168, 182, 222, 0.10), transparent 18%),
        linear-gradient(115deg, rgba(255, 252, 248, 0.98), rgba(247, 234, 224, 0.94) 42%, rgba(239, 201, 141, 0.90) 100%);
    border: 1px solid rgba(219, 193, 166, 0.46);
}

html:not([data-theme='dark']) .showcase-slide--support {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.90), transparent 18%),
        radial-gradient(circle at 84% 18%, rgba(230, 118, 98, 0.20), transparent 22%),
        radial-gradient(circle at 76% 78%, rgba(255, 212, 160, 0.18), transparent 28%),
        radial-gradient(circle at 90% 54%, rgba(176, 189, 228, 0.12), transparent 18%),
        linear-gradient(115deg, rgba(255, 252, 248, 0.98), rgba(245, 234, 228, 0.94) 42%, rgba(241, 208, 161, 0.88) 100%);
    border: 1px solid rgba(218, 191, 172, 0.46);
}

html:not([data-theme='dark']) .showcase-slide::after {
    background:
        radial-gradient(circle at 14% 28%, rgba(255, 255, 255, 0.42), transparent 16%),
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.26), transparent 18%),
        linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.42) 38% 41%, transparent 41% 100%);
}

html:not([data-theme='dark']) .showcase-slide__content {
    color: var(--text);
}

html:not([data-theme='dark']) .showcase-slide__content .eyebrow {
    background: rgba(197, 20, 27, 0.10);
    color: var(--accent-strong);
}

html:not([data-theme='dark']) .showcase-slide__content h1,
html:not([data-theme='dark']) .showcase-slide__content h2 {
    color: #1e1713;
}

html:not([data-theme='dark']) .showcase-slide__content p {
    color: color-mix(in srgb, var(--muted) 88%, #44352c 12%);
}

html:not([data-theme='dark']) .showcase-badges span {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(197, 20, 27, 0.10);
    color: var(--text);
    box-shadow: 0 12px 26px rgba(61, 41, 27, 0.06);
}

html:not([data-theme='dark']) .showcase-card {
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.42), transparent 16%),
        radial-gradient(circle at 82% 14%, rgba(238, 166, 124, 0.14), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 247, 239, 0.92));
    border: 1px solid rgba(197, 20, 27, 0.12);
    box-shadow: 0 28px 56px rgba(61, 41, 27, 0.14);
}

html:not([data-theme='dark']) .intro-feature-list,
html:not([data-theme='dark']) .intro-contact-strip a,
html:not([data-theme='dark']) .offer-card,
html:not([data-theme='dark']) .cta-panel {
    background:
        radial-gradient(circle at 10% 12%, rgba(255,255,255,.88), transparent 18%),
        radial-gradient(circle at 88% 16%, rgba(238, 166, 124, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,241,233,.88));
    border-color: rgba(197,20,27,.08);
    box-shadow: 0 18px 38px rgba(93, 65, 46, 0.08);
}

html:not([data-theme='dark']) .intro-visual-frame {
    background: transparent;
    border-color: rgba(255,255,255,.12);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

html:not([data-theme='dark']) .reason-section {
    background:
        radial-gradient(circle at 14% 16%, rgba(255,255,255,.72), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(229, 106, 84, 0.10), transparent 20%),
        linear-gradient(180deg, #fffdfa 0%, #f4ebdf 100%);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

html:not([data-theme='dark']) .reason-section__heading .eyebrow {
    background: rgba(197, 20, 27, 0.10);
    color: var(--accent-strong);
}

html:not([data-theme='dark']) .reason-section__heading h2,
html:not([data-theme='dark']) .reason-card h3 {
    color: var(--text);
}

html:not([data-theme='dark']) .reason-section__heading p,
html:not([data-theme='dark']) .reason-card p {
    color: var(--muted);
}

html:not([data-theme='dark']) .reason-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(197, 20, 27, 0.08);
    box-shadow: var(--shadow-soft);
}

html:not([data-theme='dark']) .reason-card span {
    background: rgba(197, 20, 27, 0.08);
    color: var(--accent);
}

.showcase-slide__content,
.showcase-slide__visual {
    position: relative;
    z-index: 1;
}

.showcase-slide__visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-width: 0;
}

.showcase-slide__content {
    color: #fff;
    min-width: 0;
    align-self: center;
}

.showcase-slide__content .eyebrow {
    background: rgba(255, 255, 255, 0.16);
    color: #ffe2c5;
}

.showcase-slide__content h1,
.showcase-slide__content h2 {
    margin-top: 18px;
    font-size: clamp(3.1rem, 6vw, 5.7rem);
    color: #fff;
    line-height: 1.06;
    overflow: visible;
}

.showcase-slide__content [data-hero-title] {
    display: block;
    overflow: visible;
    text-wrap: balance;
}

.showcase-slide__content p {
    max-width: 640px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.12rem;
}

.showcase-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.showcase .site-btn[data-magnetic-button],
.cta-panel .site-btn[data-magnetic-button] {
    will-change: transform, box-shadow;
}

.showcase .site-btn[data-magnetic-button].is-magnetic-active,
.cta-panel .site-btn[data-magnetic-button].is-magnetic-active {
    box-shadow: 0 22px 46px rgba(197, 20, 27, 0.24);
}

.showcase .site-btn--ghost[data-magnetic-button].is-magnetic-active,
.cta-panel .site-btn--ghost[data-magnetic-button].is-magnetic-active {
    box-shadow: 0 18px 38px rgba(197, 20, 27, 0.12);
    border-color: rgba(197, 20, 27, 0.24);
}

.showcase-badges {
    margin-top: 26px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.showcase-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff9f0;
    font-weight: 700;
}

.showcase-card {
    min-height: 430px;
    padding: 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
    transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-card--hero {
    width: min(100%, 420px);
    min-height: clamp(420px, 62vw, 620px);
    margin-inline: auto;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-parallax-layer {
    position: relative;
    transform-style: preserve-3d;
    transform:
        translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0)
        rotateX(var(--parallax-rotate-y, 0deg))
        rotateY(var(--parallax-rotate-x, 0deg));
    transition: transform .45s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-parallax-layer .showcase-card {
    transform: translateZ(0);
}

.showcase-card--warm {
    background: rgba(255, 240, 221, 0.12);
}

.showcase-card--soft {
    background: rgba(235, 240, 248, 0.16);
}

.showcase-card img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
}

.showcase-device {
    position: relative;
    width: 100%;
    min-height: clamp(360px, 58vw, 560px);
    display: grid;
    place-items: center;
    padding: 10px;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.24), transparent 22%),
        radial-gradient(circle at 50% 100%, rgba(34, 36, 46, 0.22), transparent 32%),
        linear-gradient(180deg, rgba(245, 239, 233, 0.94), rgba(222, 223, 228, 0.86));
}

.showcase-device__glow {
    position: absolute;
    inset: auto 10% 4% 10%;
    height: 42%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(197, 20, 27, 0.18), rgba(197, 20, 27, 0.02) 60%, transparent 78%);
    filter: blur(28px);
    pointer-events: none;
}

.showcase-device__frame {
    position: relative;
    z-index: 1;
    width: min(100%, 286px);
    aspect-ratio: 0.53 / 1;
    border-radius: 34px;
    padding: 11px;
    background: linear-gradient(180deg, #12151c, #2a2f39 48%, #171920);
    box-shadow:
        0 26px 56px rgba(10, 14, 24, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.showcase-device__notch {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 38%;
    height: 16px;
    transform: translateX(-50%);
    border-radius: 0 0 14px 14px;
    background: rgba(8, 10, 14, 0.96);
    z-index: 3;
}

.showcase-device__screen {
    position: relative;
    height: 100%;
    border-radius: 24px;
    padding: 18px 16px 16px;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.58), transparent 20%),
        linear-gradient(180deg, #fbfaf7 0%, #eef0f4 52%, #e7eaee 100%);
    color: #151821;
    display: grid;
    grid-template-rows: auto auto auto auto 1fr;
    gap: 12px;
}

.showcase-device__screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(140deg, rgba(197, 20, 27, 0.08), transparent 34%),
        linear-gradient(320deg, rgba(80, 116, 196, 0.08), transparent 30%);
    pointer-events: none;
}

.showcase-device__status,
.showcase-device__hero,
.showcase-device__task-card,
.showcase-device__mini-grid,
.showcase-device__list {
    position: relative;
    z-index: 1;
}

.showcase-device__status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(21, 24, 33, 0.76);
}

.showcase-device__hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(197, 20, 27, 0.08);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.showcase-device__hero strong,
.showcase-device__task-top strong,
.showcase-device__mini-card strong,
.showcase-device__list-item strong {
    display: block;
}

.showcase-device__hero strong {
    font-size: 1rem;
    margin-bottom: 4px;
}

.showcase-device__hero p,
.showcase-device__task-top span,
.showcase-device__route p,
.showcase-device__mini-card span,
.showcase-device__list-item span {
    margin: 0;
    color: rgba(21, 24, 33, 0.68);
}

.showcase-device__hero p {
    font-size: 0.78rem;
    line-height: 1.45;
}

.showcase-device__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(197, 20, 27, 0.12);
    color: #b40f19;
    font-size: 0.74rem;
    font-weight: 800;
    white-space: nowrap;
}

.showcase-device__task-card {
    padding: 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(20, 24, 34, 0.98), rgba(30, 33, 44, 0.94));
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(13, 17, 28, 0.20);
}

.showcase-device__task-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.showcase-device__task-top strong {
    font-size: 0.94rem;
    margin-bottom: 4px;
}

.showcase-device__task-top span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
}

.showcase-device__task-top b {
    font-size: 0.98rem;
    color: #ffd8aa;
    white-space: nowrap;
}

.showcase-device__route + .showcase-device__route {
    margin-top: 10px;
}

.showcase-device__route span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
}

.showcase-device__route .is-start {
    background: rgba(255, 209, 102, 0.18);
    color: #ffd978;
}

.showcase-device__route .is-end {
    background: rgba(88, 183, 255, 0.18);
    color: #9dd7ff;
}

.showcase-device__route p {
    margin-top: 6px;
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.82);
}

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

.showcase-device__mini-card {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(197, 20, 27, 0.08);
}

.showcase-device__mini-card span {
    display: block;
    font-size: 0.72rem;
    margin-bottom: 4px;
}

.showcase-device__mini-card strong,
.showcase-device__list-item strong {
    font-size: 0.85rem;
}

.showcase-device__list {
    display: grid;
    gap: 8px;
}

.showcase-device__list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(21, 24, 33, 0.06);
}

html[data-theme='dark'] .showcase-device {
    background:
        radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.10), transparent 20%),
        radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.30), transparent 32%),
        linear-gradient(180deg, rgba(49, 55, 69, 0.92), rgba(31, 35, 45, 0.96));
}

html[data-theme='dark'] .showcase-device__screen {
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.16), transparent 18%),
        linear-gradient(180deg, #202634 0%, #151a24 100%);
    color: #f8fafc;
}

html[data-theme='dark'] .showcase-device__screen::before {
    background:
        linear-gradient(140deg, rgba(255, 184, 98, 0.08), transparent 34%),
        linear-gradient(320deg, rgba(86, 118, 205, 0.10), transparent 30%);
}

html[data-theme='dark'] .showcase-device__status,
html[data-theme='dark'] .showcase-device__hero p,
html[data-theme='dark'] .showcase-device__mini-card span,
html[data-theme='dark'] .showcase-device__list-item span {
    color: rgba(248, 250, 252, 0.68);
}

html[data-theme='dark'] .showcase-device__hero,
html[data-theme='dark'] .showcase-device__mini-card,
html[data-theme='dark'] .showcase-device__list-item {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

html[data-theme='dark'] .showcase-device__hero strong,
html[data-theme='dark'] .showcase-device__mini-card strong,
html[data-theme='dark'] .showcase-device__list-item strong {
    color: #ffffff;
}

html[data-theme='dark'] .showcase-device__badge {
    background: rgba(255, 181, 132, 0.18);
    color: #ffd0a8;
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.showcase-dots button {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(22, 34, 52, 0.18);
    cursor: pointer;
    transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-dots button.is-active {
    width: 44px;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(197, 20, 27, 0.18), 0 8px 24px rgba(197, 20, 27, 0.28);
}

.showcase-dots button:hover {
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce), (pointer: coarse) {
    .landing-page::after,
    .showcase::before {
        display: none;
    }

    .showcase-parallax-layer {
        transform: none !important;
        transition: none;
    }
}

.intro-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 44px;
    align-items: center;
    padding-top: 42px;
    padding-bottom: 24px;
    content-visibility: auto;
    contain-intrinsic-size: 820px;
    position: relative;
    isolation: isolate;
}

.intro-split::before {
    content: '';
    position: absolute;
    inset: 10px -26px -8px;
    border-radius: 42px;
    pointer-events: none;
    z-index: -1;
}

html:not([data-theme='dark']) .intro-split::before {
    background:
        radial-gradient(circle at 14% 18%, rgba(255,255,255,.72), transparent 18%),
        radial-gradient(circle at 84% 16%, rgba(236, 151, 118, 0.14), transparent 18%),
        radial-gradient(circle at 88% 72%, rgba(173, 190, 228, 0.10), transparent 16%),
        linear-gradient(180deg, rgba(255,251,247,.84), rgba(245,236,226,.66));
    border: 1px solid rgba(214, 198, 183, 0.48);
    box-shadow: 0 24px 52px rgba(94, 66, 44, 0.08);
}

.intro-split__content h2 {
    margin-top: 18px;
    font-size: clamp(2.4rem, 4.4vw, 4.4rem);
}

.intro-feature-list {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    padding: 24px;
    border-left: 3px solid var(--accent);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
}

.intro-feature-list div {
    display: flex;
    gap: 10px;
    color: var(--text);
    font-weight: 600;
}

.intro-feature-list span {
    color: var(--accent);
    font-weight: 800;
}

.intro-contact-strip {
    margin-top: 24px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.intro-contact-strip a {
    min-width: 220px;
    padding: 18px 20px;
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(197, 20, 27, 0.08);
}

.intro-contact-strip strong,
.intro-contact-strip span {
    display: block;
}

.intro-contact-strip strong {
    margin-bottom: 8px;
    color: var(--text);
}

.intro-contact-strip span {
    color: var(--muted);
}

.intro-visual-frame {
    padding: 0;
    border-radius: 16px;
    background: transparent;
    max-height: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255,255,255,.12);
    overflow: hidden;
}

.intro-visual-frame img {
    width: 100%;
    height: auto;
    max-height: 250px;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.offer-section {
    padding-top: 34px;
}

.offer-section__heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.offer-section__heading h2 {
    margin-top: 16px;
    font-size: clamp(2.3rem, 4.4vw, 4rem);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.offer-card {
    padding: 26px;
    border-radius: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.offer-card h3 {
    margin: 0 0 14px;
    font-size: 1.24rem;
}

.reason-section {
    margin-top: 74px;
    padding: 82px 0;
    background: linear-gradient(180deg, var(--navy-soft) 0%, var(--navy) 100%);
    color: #fff;
}

.reason-section__heading {
    max-width: 780px;
    margin: 0 auto 36px;
    text-align: center;
}

.reason-section__heading .eyebrow {
    background: rgba(255, 255, 255, 0.10);
    color: #ffcbab;
}

.reason-section__heading h2 {
    margin-top: 16px;
    font-size: clamp(2.5rem, 4.8vw, 4.4rem);
    color: #fff;
}

.reason-section__heading p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.reason-card {
    padding: 28px 22px 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
}

.reason-card span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    font-weight: 900;
}

.reason-card h3 {
    margin: 0 0 12px;
    font-size: 1.24rem;
    color: #fff;
}

.reason-card p {
    color: rgba(255, 255, 255, 0.76);
}

.cta-panel {
    margin-top: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: 30px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
    content-visibility: auto;
    contain-intrinsic-size: 280px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

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

html:not([data-theme='dark']) .cta-panel::before {
    background:
        radial-gradient(circle at 12% 18%, rgba(255,255,255,.54), transparent 18%),
        radial-gradient(circle at 86% 16%, rgba(229, 106, 84, 0.12), transparent 20%),
        radial-gradient(circle at 92% 84%, rgba(173, 190, 228, 0.10), transparent 18%),
        linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
}

.cta-panel h2 {
    margin-top: 16px;
    font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.showcase-card:hover,
.intro-feature-list:hover,
.intro-contact-strip a:hover,
.intro-visual-frame:hover,
.cta-panel:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft), 0 0 0 1px rgba(197, 20, 27, 0.12), 0 22px 48px rgba(197, 20, 27, 0.14);
}

.showcase-card:hover {
    border-color: rgba(255, 255, 255, 0.26);
}

.intro-contact-strip a:hover,
.intro-visual-frame:hover,
.cta-panel:hover,
.intro-feature-list:hover {
    border-color: rgba(197, 20, 27, 0.18);
}

@media (max-width: 1120px) {
    .showcase-panel,
    .showcase-slide,
    .intro-split,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .showcase-panel {
        min-height: auto;
    }

    .showcase-card--hero {
        width: min(100%, 420px);
        min-height: clamp(360px, 74vw, 560px);
    }

    .offer-grid,
    .reason-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .showcase-panel,
    .showcase-slide {
        padding: 28px;
    }

    .showcase-card--hero {
        width: 100%;
        min-height: clamp(320px, 84vw, 470px);
        padding: 10px;
    }

    .showcase-slide__content h1,
    .showcase-slide__content h2 {
        font-size: clamp(2.4rem, 11vw, 4.1rem);
    }

    .showcase-card {
        min-height: 280px;
    }

    .showcase-device {
        min-height: clamp(300px, 78vw, 430px);
    }

    .intro-feature-list,
    .offer-grid,
    .reason-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel,
    .intro-contact-strip {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .landing-page {
        padding-bottom: 16px;
    }

    .showcase__viewport {
        min-height: 0;
    }

    .showcase {
        padding: 12px 0 10px;
    }

    .showcase-panel {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px 14px;
    }

    .showcase-slide__content,
    .showcase-slide__visual,
    .intro-split__content,
    .intro-split__visual,
    .cta-panel > div {
        width: 100%;
    }

    .showcase-slide__visual {
        order: -1;
        justify-content: stretch;
    }

    .showcase-slide__content h1,
    .showcase-slide__content h2 {
        margin-top: 10px;
        font-size: clamp(1.52rem, 7.2vw, 2.1rem);
        line-height: 0.98;
        letter-spacing: -0.04em;
    }

    .showcase-slide__content p {
        margin-top: 10px;
        font-size: 0.9rem;
        line-height: 1.42;
    }

    .showcase-actions {
        margin-top: 14px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        flex-wrap: nowrap;
    }

    .showcase-actions .site-btn,
    .cta-panel .site-btn {
        width: 100%;
        max-width: none;
        min-height: 48px;
        justify-content: center;
    }

    .showcase-actions .site-btn + .site-btn,
    .cta-panel .site-btn + .site-btn,
    .intro-contact-strip a + a {
        margin-top: 0;
    }

    .showcase-actions .site-btn:last-child,
    .cta-panel .site-btn:last-child,
    .intro-contact-strip a:last-child {
        margin-bottom: 0;
    }

    .showcase-badges {
        margin-top: 14px;
        gap: 8px;
    }

    .showcase-badges span {
        min-height: 30px;
        padding: 0 10px;
        font-size: 0.78rem;
    }

    .showcase-card {
        min-height: 0;
        height: auto;
        padding: 8px;
    }

    .showcase-card--hero {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        max-height: none;
        aspect-ratio: auto;
        padding: 6px;
    }

    .showcase-device {
        width: 100%;
        min-height: clamp(290px, 82vw, 410px);
        padding: 8px;
        border-radius: 18px;
    }

    .showcase-device__frame {
        width: min(100%, 246px);
        border-radius: 30px;
        padding: 9px;
    }

    .showcase-device__screen {
        padding: 16px 14px 14px;
        border-radius: 21px;
        gap: 10px;
    }

    .showcase-device__hero,
    .showcase-device__task-card,
    .showcase-device__mini-card,
    .showcase-device__list-item {
        padding-left: 12px;
        padding-right: 12px;
    }

    .showcase-device__hero strong,
    .showcase-device__task-top strong {
        font-size: 0.88rem;
    }

    .showcase-device__hero p,
    .showcase-device__route p,
    .showcase-device__task-top span {
        font-size: 0.74rem;
    }

    .showcase-card img,
    .intro-visual-frame img {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .intro-split {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 14px;
        padding-bottom: 8px;
    }

    .intro-split__content h2,
    .offer-section__heading h2,
    .reason-section__heading h2,
    .cta-panel h2 {
        margin-top: 10px;
        font-size: clamp(1.42rem, 6.6vw, 1.92rem);
        line-height: 1.02;
        letter-spacing: -0.03em;
    }

    .intro-feature-list {
        margin-top: 14px;
        grid-template-columns: 1fr;
        padding: 14px;
        gap: 10px;
    }

    .intro-feature-list div {
        font-size: 0.92rem;
        line-height: 1.36;
    }

    .intro-contact-strip {
        margin-top: 14px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .intro-contact-strip a {
        width: 100%;
        min-width: 0;
        padding: 13px 14px;
        margin-bottom: 0;
    }

    .intro-visual-frame {
        padding: 0;
        border-radius: 16px;
        max-height: 220px;
    }

    .offer-section {
        padding-top: 10px;
    }

    .offer-section__heading {
        margin-bottom: 14px;
    }

    .offer-card {
        padding: 14px;
    }

    .reason-section {
        margin-top: 28px;
        padding: 28px 0;
    }

    .reason-section__heading {
        margin-bottom: 16px;
    }

    .reason-card {
        padding: 14px;
    }

    .cta-panel {
        margin-top: 22px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px 14px;
    }
}
