/* Landing 2026 — fast, mobile-first, theme-aware */

.landing-page {
    --landing-radius: 18px;
    --landing-radius-sm: 12px;
    --landing-blur: 16px;
    --landing-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --landing-accent: var(--neon-cyan, #00d4ff);
    --landing-accent-2: var(--neon-blue, #0088ff);
    --landing-glow: color-mix(in srgb, var(--landing-accent) 35%, transparent);
    --landing-pad-x: clamp(16px, 4vw, 24px);
    font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
    overflow-x: hidden;
}

body.landing-page:not(.no-bottom-nav) {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

.landing-page .container {
    max-width: 1240px;
    padding-left: var(--landing-pad-x);
    padding-right: var(--landing-pad-x);
    box-sizing: border-box;
}

/* ── Background (lightweight) ── */
.landing-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.landing-mesh {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse 50% 40% at 20% 30%, color-mix(in srgb, var(--neon-blue) 14%, transparent), transparent 70%),
        radial-gradient(ellipse 45% 35% at 80% 20%, color-mix(in srgb, var(--neon-purple, #8855ff) 10%, transparent), transparent 65%),
        radial-gradient(ellipse 40% 45% at 60% 80%, color-mix(in srgb, var(--neon-cyan) 10%, transparent), transparent 70%);
    filter: blur(32px);
    will-change: transform;
    animation: landingMeshDrift 24s ease-in-out infinite alternate;
}

.landing-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(color-mix(in srgb, var(--text-primary) 3%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--text-primary) 3%, transparent) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
    opacity: 0.35;
}

@keyframes landingMeshDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(1.5%, -2%); }
}

/* ── Hero ── */
.landing-page .hero-section {
    position: relative;
    min-height: auto;
    display: block;
    padding: clamp(32px, 6vw, 80px) 0 clamp(28px, 5vw, 64px);
    background: var(--dark-bg);
    overflow: hidden;
}

.landing-page .hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.landing-page .hero-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.landing-page .hero-title {
    font-family: 'Syne', 'DM Sans', sans-serif;
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
    color: var(--text-primary);
    word-break: break-word;
}

.landing-page .hero-title span,
.landing-page .hero-title .highlight {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--landing-accent) 50%, var(--landing-accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .hero-subtitle {
    font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 auto 1.5rem;
    max-width: 540px;
}

.landing-page .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.landing-page .hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    transition: transform 0.2s var(--landing-ease), box-shadow 0.2s, background 0.2s, border-color 0.2s;
    border: none;
    cursor: pointer;
    min-height: 48px;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.landing-page .hero-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.landing-page .hero-btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--landing-accent-2), var(--landing-accent));
    box-shadow: 0 6px 24px color-mix(in srgb, var(--landing-accent) 25%, transparent);
}

.landing-page .hero-btn.secondary {
    color: var(--text-primary);
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
}

.landing-page .hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.25rem;
    justify-content: center;
}

.landing-page .hero-chip {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--dark-border);
    background: var(--dark-surface);
    white-space: nowrap;
}

/* Hero visual — desktop only */
.landing-page .hero-visual {
    display: none;
}

.landing-page .hero-orbit {
    position: relative;
    width: 100%;
    min-height: 320px;
}

.landing-page .hero-orbit-ring {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    border: 1px dashed color-mix(in srgb, var(--landing-accent) 18%, transparent);
}

.landing-page .hero-orbit-glow {
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--landing-accent) 12%, transparent), transparent 70%);
}

.landing-page .hero-float-card {
    position: absolute;
    width: clamp(120px, 32%, 180px);
    padding: 8px;
    border-radius: var(--landing-radius-sm);
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    box-shadow: 0 12px 32px color-mix(in srgb, black 30%, transparent);
}

.landing-page .hero-float-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.landing-page .hero-float-card .float-label {
    margin-top: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-page a.hero-float-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.landing-page a.hero-float-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--landing-accent) 45%, var(--dark-border));
    box-shadow: 0 16px 40px color-mix(in srgb, var(--landing-accent) 18%, transparent);
}

.landing-page a.hero-float-card:focus-visible {
    outline: 2px solid var(--landing-accent);
    outline-offset: 2px;
}

.landing-page .hero-orbit > a.hero-float-card:nth-of-type(1) { top: 8%; left: 8%; }
.landing-page .hero-orbit > a.hero-float-card:nth-of-type(2) { top: 38%; right: 0; }
.landing-page .hero-orbit > a.hero-float-card:nth-of-type(3) { bottom: 10%; left: 18%; }

.landing-page .hero-float-placeholder {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    padding: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--landing-accent) 35%, transparent), transparent);
}

.landing-page .hero-float-placeholder img,
.landing-page .hero-float-placeholder .float-label {
    display: none;
}

.landing-page .hero-stat-bar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: clamp(24px, 4vw, 40px);
    padding-top: 20px;
    border-top: 1px solid var(--dark-border);
}

.landing-page .hero-stat-item {
    padding: 14px 16px;
    border-radius: var(--landing-radius-sm);
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    text-align: center;
}

.landing-page .hero-stat-item strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.landing-page .hero-stat-item span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* ── Section headers ── */
.landing-page .section-header {
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 40px);
}

.landing-page .section-eyebrow {
    display: none;
}

.landing-page .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.375rem, 4.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

.landing-page .section-title::after {
    display: none;
}

/* ── Product sections ── */
.landing-page .landing-products-section {
    position: relative;
    padding: clamp(36px, 6vw, 72px) 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.landing-page .landing-products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, color-mix(in srgb, var(--landing-accent) 5%, transparent), transparent 70%);
    pointer-events: none;
}

.landing-page .landing-promo-section::before {
    background: radial-gradient(ellipse 60% 40% at 50% 0%, color-mix(in srgb, var(--neon-pink, #ff0088) 6%, transparent), transparent 70%);
}

/* Horizontal scroll — one row on all screen sizes */
.landing-page .landing-products-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    margin-left: calc(-1 * var(--landing-pad-x));
    margin-right: calc(-1 * var(--landing-pad-x));
    padding-left: var(--landing-pad-x);
    padding-right: var(--landing-pad-x);
    position: relative;
    z-index: 1;
}

.landing-page .landing-products-grid::-webkit-scrollbar {
    display: none;
}

/* ── Product cards (modern) ── */
.landing-page .landing-product-card {
    position: relative;
    flex: 0 0 clamp(152px, 44vw, 220px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border-radius: var(--landing-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.landing-page .landing-product-card:active {
    transform: scale(0.98);
}

.landing-page .landing-product-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--dark-surface-2);
}

.landing-page .landing-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-page .landing-product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 10px;
    background: linear-gradient(to top, color-mix(in srgb, black 45%, transparent) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.landing-page .landing-product-view {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: color-mix(in srgb, white 92%, transparent);
    color: var(--dark-bg);
    box-shadow: 0 4px 12px color-mix(in srgb, black 25%, transparent);
}

.landing-page .landing-product-view svg {
    width: 16px;
    height: 16px;
}

.landing-page .landing-discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--neon-pink, #ff0088), var(--landing-accent-2));
    line-height: 1.2;
}

.landing-page .landing-product-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
}

.landing-page .landing-product-info h4 {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-page .landing-product-price {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.landing-page .landing-product-price .old {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.landing-page .landing-product-price .current {
    font-size: 1rem;
    font-weight: 700;
    color: var(--landing-accent);
}

.landing-page .landing-section-cta {
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.landing-page .landing-section-cta .hero-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

/* ── Reviews ── */
.landing-page .landing-reviews-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

.landing-page .landing-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.landing-page .landing-review-card {
    padding: 18px;
    border-radius: var(--landing-radius);
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
}

.landing-page .landing-review-product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    margin-bottom: 12px;
    border-radius: var(--landing-radius-sm);
    background: var(--dark-surface-2);
    text-decoration: none;
    color: inherit;
}

.landing-page .landing-review-product img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.landing-page .landing-review-product span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--landing-accent);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.landing-page .landing-review-author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 0.875rem;
}

.landing-page .landing-review-stars {
    color: #fbbf24;
    font-size: 0.8125rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.landing-page .landing-review-text {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

/* ── Features (static, no animated mesh — scroll-friendly) ── */
.landing-page .features-section {
    padding: clamp(36px, 6vw, 72px) 0;
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
    contain: layout style;
    isolation: isolate;
}

.landing-page .features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, color-mix(in srgb, var(--landing-accent) 6%, transparent), transparent 70%);
    pointer-events: none;
}

.landing-page .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.landing-page .feature-card {
    position: relative;
    padding: 20px;
    border-radius: var(--landing-radius);
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    text-align: left;
    transform: translateZ(0);
}

.landing-page .feature-icon {
    width: 44px;
    height: 44px;
    margin: 0 0 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--landing-accent-2), var(--landing-accent));
    color: #fff;
}

.landing-page .feature-icon svg {
    width: 20px;
    height: 20px;
}

.landing-page .feature-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.landing-page .feature-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ── About ── */
.landing-page .about-section {
    padding: clamp(36px, 6vw, 72px) 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.landing-page .about-section .section-header {
    margin-bottom: 1rem;
}

.landing-page .about-intro {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.9375rem;
    margin: 0 auto 1.5rem;
    max-width: 820px;
    text-align: center;
}

.landing-page .advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
}

.landing-page .advantage-card {
    padding: 16px 18px;
    border-radius: var(--landing-radius-sm);
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
}

.landing-page .advantage-card strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.35;
}

.landing-page .advantage-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    line-height: 1.55;
}

/* ── CTA ── */
.landing-page .cta-section {
    padding: clamp(36px, 6vw, 72px) 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.landing-page .cta-panel {
    position: relative;
    z-index: 1;
    padding: clamp(28px, 5vw, 48px) var(--landing-pad-x);
    border-radius: var(--landing-radius);
    text-align: center;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--landing-accent-2) 18%, var(--dark-surface)),
        color-mix(in srgb, var(--landing-accent) 10%, var(--dark-surface)));
    border: 1px solid color-mix(in srgb, var(--landing-accent) 22%, var(--dark-border));
}

.landing-page .cta-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.375rem, 4.5vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.landing-page .cta-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0 auto 1.5rem;
    max-width: 480px;
    line-height: 1.6;
}

.landing-page .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--landing-accent-2), var(--landing-accent));
    min-height: 48px;
    box-sizing: border-box;
}

.landing-page .cta-btn svg {
    width: 18px;
    height: 18px;
}

/* ── Footer ── */
.landing-page .footer {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    padding: 32px 0 24px;
}

.landing-page .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.landing-page .footer-section h3 {
    font-family: 'Syne', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.landing-page .footer-section p,
.landing-page .footer-section a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.55;
    word-break: break-word;
}

.landing-page .particles-container,
.landing-page .geometric-shape {
    display: none;
}

body.landing-order-modal-open {
    overflow: hidden;
}

.landing-order-modal {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.landing-order-modal[hidden] {
    display: none !important;
}

.landing-order-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.landing-order-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    max-height: min(88vh, 720px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px 20px 20px;
    border-radius: var(--landing-radius);
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.landing-order-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: var(--dark-surface-2);
    color: var(--text-secondary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.landing-order-modal__title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 36px 10px 0;
    padding-right: 8px;
}

.landing-order-modal__intro {
    margin: 0 0 18px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.landing-order-modal__steps {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    counter-reset: order-step;
}

.landing-order-modal__step {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 14px 14px 44px;
    border-radius: var(--landing-radius-sm);
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    position: relative;
    counter-increment: order-step;
}

.landing-order-modal__step::before {
    content: counter(order-step);
    position: absolute;
    left: 12px;
    top: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--landing-accent-2), var(--landing-accent));
}

.landing-order-modal__step strong {
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 700;
}

.landing-order-modal__step span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.landing-order-modal__cta {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

/* ── About ── */
@media (min-width: 640px) {
    .landing-page .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .landing-page .hero-btn {
        width: auto;
        min-width: 160px;
    }

    .landing-page .landing-reviews-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .landing-page .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .landing-page .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .landing-page .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 28px;
    }
}

/* ── Desktop ── */
@media (min-width: 960px) {
    .landing-page .hero-layout {
        grid-template-columns: 1.05fr 0.9fr;
        text-align: left;
    }

    .landing-page .hero-content {
        text-align: left;
        margin: 0;
        max-width: none;
    }

    .landing-page .hero-buttons,
    .landing-page .hero-chips {
        justify-content: flex-start;
    }

    .landing-page .hero-visual {
        display: block;
    }

    .landing-page .hero-orbit-ring {
        animation: landingOrbitSpin 50s linear infinite;
    }

    .landing-page .hero-float-card {
        animation: landingFloat 7s ease-in-out infinite;
    }

    .landing-page .hero-float-card:nth-of-type(4) { animation-delay: -2s; }
    .landing-page .hero-float-card:nth-of-type(5) { animation-delay: -4s; }

    .landing-page .landing-products-grid {
        gap: 16px;
    }

    .landing-page .landing-product-card {
        flex: 0 0 200px;
    }

    .landing-page .landing-product-card:hover {
        border-color: color-mix(in srgb, var(--landing-accent) 28%, var(--dark-border));
        box-shadow: 0 16px 40px color-mix(in srgb, black 28%, transparent);
    }

    .landing-page .landing-product-card:hover .landing-product-overlay {
        opacity: 1;
    }

    .landing-page .landing-product-card:hover .landing-product-image img {
        transform: scale(1.04);
    }

    .landing-page .landing-product-image img {
        transition: transform 0.35s var(--landing-ease);
    }

    .landing-page .landing-product-info h4 {
        font-size: 0.9375rem;
    }

    .landing-page .landing-product-price .current {
        font-size: 1.0625rem;
    }

    .landing-page .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .landing-page .advantage-card {
        padding: 18px 20px;
    }

    .landing-page .hero-btn.primary:hover {
        transform: translateY(-2px);
    }

    .landing-page .hero-btn.secondary:hover {
        border-color: color-mix(in srgb, var(--landing-accent) 35%, var(--dark-border));
    }

    .landing-page .cta-btn {
        width: auto;
    }

    .landing-page .landing-section-cta .hero-btn {
        width: auto;
    }
}

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

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

@media (max-width: 768px) {
    .landing-page .landing-mesh {
        animation: none;
        filter: blur(24px);
    }

    .landing-page .hero-section .landing-grid-overlay {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-page .landing-mesh,
    .landing-page .hero-orbit-ring,
    .landing-page .hero-float-card {
        animation: none;
    }
}

@media (hover: none) {
    .landing-page .landing-product-overlay {
        opacity: 1;
    }

    .landing-page .landing-product-view {
        width: 32px;
        height: 32px;
    }
}
