:root {
    --brand-green: #70b000;
    --brand-green-deep: #3f7600;
    --brand-yellow: #f8b838;
    --ink: #173523;
    --ink-soft: #496454;
    --mist: #edf5e8;
    --cream: #f8f7ef;
    --surface: rgba(255, 255, 255, .72);
    --surface-strong: rgba(255, 255, 255, .92);
    --line: rgba(36, 78, 48, .12);
    --shadow-soft: 0 24px 70px rgba(50, 94, 35, .12), 0 4px 16px rgba(31, 62, 34, .06);
    --shadow-float: 0 34px 100px rgba(50, 94, 35, .18), inset 0 1px 0 rgba(255, 255, 255, .82);
    --font: "Geologica", "Onest", system-ui, sans-serif;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --spring: cubic-bezier(.34, 1.56, .64, 1);
    --shell: min(1180px, calc(100vw - 48px));
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-green) var(--mist);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 6%, rgba(248, 184, 56, .14), transparent 25rem),
        radial-gradient(circle at 92% 18%, rgba(112, 176, 0, .16), transparent 31rem),
        linear-gradient(180deg, #eff7ec 0%, #f8f7ef 42%, #eef5e9 100%);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection { color: #fff; background: var(--brand-green); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
[id] { scroll-margin-top: 112px; }

:focus-visible {
    outline: 3px solid var(--brand-yellow);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 10px 16px;
    border-radius: 999px;
    transform: translateY(-160%);
    background: var(--ink);
    color: #fff;
    transition: transform .3s var(--ease);
}

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

.announcement {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 7px 20px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .03em;
}

.site-header {
    position: sticky;
    top: 10px;
    z-index: 100;
    width: calc(100% - 24px);
    max-width: 1260px;
    min-height: 68px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    margin: 0 auto;
    padding: 10px 12px 10px 20px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .80), rgba(244, 250, 239, .70));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96), 0 10px 38px rgba(46, 89, 47, .10);
    backdrop-filter: blur(24px) saturate(150%);
    transition: min-height .45s var(--ease), box-shadow .45s var(--ease), background .45s var(--ease);
}

.site-header.is-scrolled {
    min-height: 60px;
    background: rgba(250, 252, 247, .90);
    box-shadow: inset 0 1px 0 #fff, 0 16px 50px rgba(46, 89, 47, .16);
}

.brand { width: 158px; }
.brand img { width: 100%; height: auto; }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
    position: relative;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 650;
    transition: color .3s var(--ease);
}
.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    border-radius: 99px;
    background: var(--brand-green);
    transition: transform .35s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta,
.button,
.submit-button {
    border: 0;
    cursor: pointer;
    transform: translate3d(var(--mx, 0), var(--my, 0), 0);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease);
}

.header-cta {
    justify-self: end;
    min-width: 132px;
    min-height: 46px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #83c91b, #599400);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.34), 0 10px 30px rgba(77, 137, 0, .27);
    font-size: 13px;
    font-weight: 760;
}

.header-cta:hover,
.button--primary:hover,
.submit-button:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 18px 42px rgba(77, 137, 0, .34); }

.hero {
    position: relative;
    width: calc(100% - 24px);
    max-width: 1380px;
    min-height: min(860px, calc(100svh - 108px));
    display: grid;
    grid-template-columns: minmax(0, .93fr) minmax(520px, 1.07fr);
    gap: clamp(24px, 4vw, 70px);
    align-items: center;
    margin: 16px auto 0;
    padding: clamp(68px, 7vw, 100px) clamp(32px, 5vw, 74px) 56px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 46px;
    background:
        radial-gradient(circle at 84% 48%, rgba(255,255,255,.96) 0 16%, rgba(255,255,255,.28) 17% 35%, transparent 58%),
        radial-gradient(circle at 14% 12%, rgba(248,184,56,.22), transparent 26rem),
        linear-gradient(135deg, rgba(248, 251, 244, .95), rgba(221, 241, 207, .90));
    box-shadow: inset 0 2px 0 rgba(255,255,255,.82), 0 22px 70px rgba(53, 94, 42, .10);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.hero::before {
    width: 400px;
    height: 400px;
    left: -180px;
    bottom: -220px;
    background: radial-gradient(circle, rgba(248,184,56,.32), transparent 68%);
    animation: ambient-breathe 9s ease-in-out infinite alternate;
}

.hero::after {
    width: 480px;
    height: 480px;
    top: -260px;
    right: -180px;
    background: radial-gradient(circle, rgba(112,176,0,.20), transparent 70%);
    animation: ambient-breathe 11s 1s ease-in-out infinite alternate-reverse;
}

.hero-copy { position: relative; z-index: 6; }

.eyebrow,
.section-index {
    margin-bottom: 20px;
    color: var(--brand-green-deep);
    font-size: 11px;
    font-weight: 760;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-eyebrow {
    width: fit-content;
    padding: 9px 14px;
    border: 1px solid rgba(112,176,0,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.58);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
    opacity: 0;
    animation: hero-enter .9s .08s var(--ease) forwards;
}

.hero h1 {
    margin-bottom: 30px;
    font-size: clamp(58px, 6.25vw, 92px);
    font-weight: 820;
    line-height: .98;
    letter-spacing: -.075em;
}

.headline-line { display: block; overflow: hidden; padding-bottom: .08em; }
.headline-line > span {
    display: block;
    opacity: 0;
    transform: translateY(112%) rotate(2deg);
    filter: blur(8px);
    animation: headline-land 1.1s .18s var(--ease) forwards;
}
.headline-line:nth-child(2) > span { animation-delay: .32s; }
.headline-line--accent { color: var(--brand-green); }

.hero-lede {
    max-width: 620px;
    margin-bottom: 28px;
    color: var(--ink-soft);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.65;
    opacity: 0;
    animation: hero-enter .95s .52s var(--ease) forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 34px;
    opacity: 0;
    animation: hero-enter .95s .64s var(--ease) forwards;
}

.button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 24px 0 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 760;
}

.button--primary {
    background: linear-gradient(135deg, #82c719, #579100);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.34), 0 16px 42px rgba(72,128,0,.28);
}

.button-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.17);
    transition: transform .45s var(--spring), background .3s var(--ease);
}
.button:hover .button-mark { transform: rotate(45deg) scale(1.08); background: rgba(255,255,255,.27); }

.text-link,
.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
}
.text-link::after { content: "↓"; color: var(--brand-green); transition: transform .35s var(--ease); }
.text-link:hover::after { transform: translateY(4px); }

.hero-proof {
    max-width: 580px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    animation: hero-enter .95s .74s var(--ease) forwards;
}
.hero-proof li {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.80);
    border-radius: 999px;
    background: rgba(255,255,255,.58);
    box-shadow: inset 0 1px 0 #fff, 0 5px 18px rgba(47,86,45,.07);
    backdrop-filter: blur(12px);
}
.hero-proof strong { font-size: 13px; }
.hero-proof span { color: var(--ink-soft); font-size: 11px; }

.hero-stage {
    --px: 0px;
    --py: 0px;
    position: relative;
    z-index: 2;
    min-height: 630px;
    perspective: 1200px;
}

.hero-stage::before,
.hero-stage::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
}
.hero-stage::before {
    width: min(37vw, 520px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 34% 28%, rgba(255,255,255,.92), rgba(238,247,230,.55) 52%, rgba(112,176,0,.06) 72%);
    box-shadow: inset 0 2px 0 #fff, 0 36px 90px rgba(65,110,43,.16);
    animation: disc-breathe 7s ease-in-out infinite alternate;
}
.hero-stage::after {
    width: min(42vw, 590px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(87,145,33,.20);
    border-style: dashed;
    animation: ring-spin 30s linear infinite;
}

.hero-stage-grid {
    position: absolute;
    inset: 11%;
    border: 1px solid rgba(112,176,0,.10);
    border-radius: 50%;
    animation: ring-spin-reverse 22s linear infinite;
}
.hero-stage-grid::before,
.hero-stage-grid::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--brand-yellow);
    box-shadow: 0 0 0 8px rgba(248,184,56,.12);
}
.hero-stage-grid::before { width: 7px; height: 7px; top: 13%; left: 8%; }
.hero-stage-grid::after { width: 5px; height: 5px; right: 8%; bottom: 18%; }

.hero-stage-number {
    position: absolute;
    top: 7%;
    left: 6%;
    z-index: 0;
    color: rgba(63,118,0,.075);
    font-size: clamp(150px, 18vw, 270px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -.09em;
}
.hero-stage-number::after { content: "см³"; font-size: .20em; letter-spacing: 0; }

.hero-product {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 0;
    width: min(96%, 680px);
    max-width: none;
    transform: translate3d(calc(-50% + var(--px)), var(--py), 40px) rotate(-2deg);
    filter: saturate(1.06) drop-shadow(0 32px 34px rgba(37,74,34,.20));
    opacity: 0;
    animation: product-land 1.35s .34s var(--ease) forwards, product-float 5.8s 1.7s ease-in-out infinite alternate;
    transition: transform .2s linear;
}

.hero-callout,
.hero-price {
    position: absolute;
    z-index: 8;
    border: 1px solid rgba(255,255,255,.92);
    background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(245,250,239,.72));
    color: var(--ink);
    box-shadow: var(--shadow-float);
    backdrop-filter: blur(18px) saturate(145%);
}

.hero-callout--motor {
    top: 14%;
    right: 0;
    width: 190px;
    display: grid;
    padding: 16px 18px;
    border-radius: 18px;
    opacity: 0;
    animation: badge-land .9s 1s var(--spring) forwards, badge-float 5s 2s ease-in-out infinite alternate;
}
.hero-callout span { margin-bottom: 18px; color: var(--brand-green); font-size: 10px; font-weight: 800; }
.hero-callout strong { font-size: 14px; }
.hero-callout small { color: var(--ink-soft); font-size: 10px; }

.hero-price {
    left: 0;
    bottom: 10%;
    display: grid;
    grid-template-columns: auto auto;
    align-items: end;
    padding: 15px 18px;
    border-radius: 20px;
    opacity: 0;
    animation: badge-land .9s 1.1s var(--spring) forwards, badge-float 6s 2.2s ease-in-out infinite alternate-reverse;
}
.hero-price small { grid-column: 1/-1; color: var(--ink-soft); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.hero-price strong { font-size: 30px; line-height: 1.1; letter-spacing: -.05em; }
.hero-price span { padding: 0 0 2px 7px; color: var(--brand-green); font-size: 11px; font-weight: 800; }

.spec-tape {
    width: calc(100% - 24px);
    max-width: 1380px;
    margin: 16px auto 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.80);
    border-radius: 22px;
    background: rgba(255,255,255,.58);
    box-shadow: inset 0 1px 0 #fff, 0 10px 35px rgba(49,87,42,.07);
    backdrop-filter: blur(18px);
}
.spec-tape-track { width: max-content; display: flex; animation: tape 28s linear infinite; }
.spec-tape-track span {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 30px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 650;
}
.spec-tape-track b { color: var(--ink); font-size: 14px; }

.product-gallery {
    padding-block: clamp(110px, 12vw, 170px);
}

.gallery-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
    gap: clamp(48px, 9vw, 132px);
    align-items: end;
    margin-bottom: clamp(44px, 6vw, 76px);
}

.gallery-heading h2 {
    margin-bottom: 0;
    font-size: clamp(42px, 5.4vw, 76px);
    font-weight: 770;
    line-height: 1.06;
    letter-spacing: -.06em;
}

.gallery-heading h2 span { color: var(--brand-green); }
.gallery-intro { margin-bottom: 4px; color: var(--ink-soft); font-size: 15px; }

.gallery-showcase {
    position: relative;
    padding: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.86);
    border-radius: 48px;
    background: linear-gradient(145deg, rgba(255,255,255,.76), rgba(229,243,215,.68));
    box-shadow: inset 0 2px 0 #fff, 0 28px 84px rgba(48,89,40,.12);
}

.gallery-showcase::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    top: -330px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248,184,56,.25), transparent 70%);
    animation: ambient-breathe 10s ease-in-out infinite alternate;
}

.gallery-stage {
    --gx: 0deg;
    --gy: 0deg;
    position: relative;
    min-height: 680px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.88);
    border-radius: 36px;
    background:
        radial-gradient(circle at 50% 46%, rgba(255,255,255,.98) 0 18%, rgba(239,248,230,.78) 34%, rgba(204,232,169,.38) 52%, transparent 72%),
        linear-gradient(135deg, rgba(248,250,244,.88), rgba(226,242,211,.76));
    box-shadow: inset 0 1px 0 #fff;
    perspective: 1200px;
}

.gallery-stage::before,
.gallery-stage::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.gallery-stage::before {
    top: 50%;
    left: 50%;
    width: min(56vw, 720px);
    aspect-ratio: 1;
    border: 1px solid rgba(112,176,0,.13);
    box-shadow: 0 0 0 62px rgba(255,255,255,.13), 0 0 0 124px rgba(112,176,0,.035);
    animation: disc-breathe 7s ease-in-out infinite alternate;
}

.gallery-stage::after {
    width: 14px;
    height: 14px;
    top: 18%;
    left: 14%;
    background: var(--brand-yellow);
    box-shadow: 0 0 0 12px rgba(248,184,56,.12), 0 0 32px rgba(248,184,56,.48);
    animation: spark-drift 5.6s ease-in-out infinite alternate;
}

.gallery-orbit {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
}

.gallery-orbit--one {
    width: min(68vw, 850px);
    aspect-ratio: 1;
    border: 1px dashed rgba(63,118,0,.19);
    animation: ring-spin 34s linear infinite;
}

.gallery-orbit--two {
    width: min(42vw, 560px);
    aspect-ratio: 1;
    border: 1px solid rgba(248,184,56,.22);
    animation: ring-spin 22s linear infinite reverse;
}

.gallery-spark {
    position: absolute;
    right: 13%;
    bottom: 25%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-green);
    box-shadow: 0 0 0 10px rgba(112,176,0,.10), 0 0 28px rgba(112,176,0,.42);
    animation: spark-pulse 2.8s ease-in-out infinite;
}

.gallery-main {
    position: relative;
    z-index: 3;
    width: min(68%, 620px);
    max-height: 560px;
    object-fit: contain;
    transform: rotateX(var(--gy)) rotateY(var(--gx)) translateZ(32px);
    filter: saturate(1.04) drop-shadow(0 36px 35px rgba(37,74,34,.19));
    animation: gallery-float 5.8s ease-in-out infinite alternate;
    transition: opacity .28s var(--ease), filter .28s var(--ease), transform .48s var(--ease);
    will-change: transform, opacity;
}

.gallery-stage.is-changing .gallery-main {
    opacity: 0;
    filter: blur(13px) saturate(.88) drop-shadow(0 20px 24px rgba(37,74,34,.10));
    transform: rotateX(var(--gy)) rotateY(var(--gx)) translateZ(10px) scale(.93);
}

.gallery-meta {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,.88);
    border-radius: 18px;
    background: rgba(251,253,248,.72);
    box-shadow: inset 0 1px 0 #fff, 0 12px 38px rgba(44,83,40,.09);
    backdrop-filter: blur(18px) saturate(140%);
}

.gallery-meta span { color: var(--brand-green-deep); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.gallery-meta strong { font-size: 13px; }

.gallery-thumbs {
    position: relative;
    z-index: 4;
    display: flex;
    gap: 10px;
    margin-top: 12px;
    padding: 4px 2px 6px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(112,176,0,.35) transparent;
}

.gallery-thumb {
    position: relative;
    width: 94px;
    height: 94px;
    flex: 0 0 94px;
    padding: 7px;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 20px;
    background: rgba(255,255,255,.50);
    box-shadow: inset 0 1px 0 #fff;
    transition: transform .45s var(--spring), border-color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}

.gallery-thumb::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 8px;
    left: 12px;
    height: 3px;
    transform: scaleX(0);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-yellow));
    transition: transform .35s var(--ease);
}

.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 7px 8px rgba(38,72,35,.13)); }
.gallery-thumb:hover { transform: translateY(-5px); background: rgba(255,255,255,.78); box-shadow: 0 12px 26px rgba(46,87,41,.10); }
.gallery-thumb.is-active { border-color: rgba(112,176,0,.58); background: rgba(237,247,224,.93); box-shadow: 0 0 0 3px rgba(112,176,0,.08), inset 0 1px 0 #fff; }
.gallery-thumb.is-active::after { transform: scaleX(1); }

.section-shell { width: var(--shell); margin-inline: auto; }

.manifesto { padding-block: clamp(110px, 12vw, 170px); }
.manifesto-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
    gap: clamp(56px, 9vw, 130px);
    align-items: end;
}

.manifesto h2,
.gallery-heading h2,
.performance-heading h2,
.use-intro h2,
.kit h2,
.specs-heading h2,
.order-copy h2,
.faq-heading h2 {
    margin-bottom: 0;
    font-size: clamp(42px, 5.4vw, 76px);
    font-weight: 770;
    line-height: 1.06;
    letter-spacing: -.06em;
}
.manifesto-copy p { margin-bottom: 26px; color: var(--ink-soft); font-size: 17px; }
.arrow-link { color: var(--brand-green-deep); }
.arrow-link span { font-size: 21px; transition: transform .35s var(--ease); }
.arrow-link:hover span { transform: translateX(5px); }

.performance {
    width: calc(100% - 24px);
    max-width: 1380px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0 auto;
    padding: clamp(70px, 8vw, 112px) clamp(18px, 4vw, 58px) clamp(24px, 4vw, 58px);
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 48px;
    background: linear-gradient(145deg, rgba(255,255,255,.77), rgba(236,246,230,.72));
    box-shadow: inset 0 2px 0 #fff, 0 28px 80px rgba(48,89,40,.10);
}
.performance-heading { grid-column: 1/-1; margin-bottom: 42px; }
.performance-heading h2 { max-width: 800px; }
.performance-row {
    position: relative;
    min-width: 0;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.90);
    border-radius: 30px;
    background: rgba(255,255,255,.58);
    box-shadow: inset 0 1px 0 #fff, 0 14px 42px rgba(49,89,41,.08);
    transition: transform .65s var(--ease), box-shadow .65s var(--ease), background .65s var(--ease);
}
.performance-row::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(112,176,0,.15), transparent 68%);
    transition: transform .8s var(--ease);
}
.performance-row:nth-of-type(3)::after { background: radial-gradient(circle, rgba(248,184,56,.18), transparent 68%); }
.performance-row:hover { transform: translateY(-10px); background: rgba(255,255,255,.78); box-shadow: var(--shadow-float); }
.performance-row:hover::after { transform: scale(1.35); }
.performance-number { display: flex; align-items: flex-end; gap: 8px; }
.performance-number strong { font-size: clamp(68px, 7vw, 98px); font-weight: 760; line-height: .85; letter-spacing: -.08em; }
.performance-number span { padding-bottom: 8px; color: var(--brand-green); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.performance-number--word strong { color: var(--brand-green); }
.performance-line { width: 100%; height: 1px; overflow: hidden; background: var(--line); }
.performance-line i { display: block; width: 40%; height: 100%; background: linear-gradient(90deg, var(--brand-green), var(--brand-yellow)); animation: line-breathe 4s ease-in-out infinite alternate; }
.performance-copy h3 { margin-bottom: 12px; font-size: 20px; line-height: 1.25; letter-spacing: -.025em; }
.performance-copy p:last-child { margin-bottom: 0; color: var(--ink-soft); font-size: 13px; }

.cut-width {
    position: relative;
    width: calc(100% - 24px);
    max-width: 1380px;
    margin: 16px auto 0;
    overflow: hidden;
    border-radius: 48px;
    background:
        radial-gradient(circle at 88% 24%, rgba(255,255,255,.60), transparent 25rem),
        linear-gradient(135deg, #dff2b7, #c8e989 52%, #edf7d6);
    box-shadow: inset 0 2px 0 rgba(255,255,255,.72), 0 24px 70px rgba(70,117,34,.12);
}
.cut-width::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    bottom: -320px;
    border: 1px solid rgba(63,118,0,.14);
    border-radius: 50%;
    box-shadow: 0 0 0 65px rgba(255,255,255,.10), 0 0 0 130px rgba(255,255,255,.08);
}
.cut-width-inner { width: var(--shell); margin-inline: auto; padding-block: clamp(82px, 9vw, 125px); }
.cut-measure { display: flex; align-items: center; gap: 14px; color: var(--ink-soft); font-size: 10px; }
.cut-measure i { flex: 1; height: 1px; background: rgba(23,53,35,.20); }
.cut-width h2 { display: grid; grid-template-columns: auto 1fr; gap: clamp(30px, 6vw, 84px); align-items: center; margin: 20px 0; }
.cut-width h2 strong { font-size: clamp(130px, 18vw, 250px); font-weight: 800; line-height: .82; letter-spacing: -.10em; }
.cut-width h2 span { max-width: 470px; font-size: clamp(36px, 5vw, 66px); font-weight: 760; line-height: 1; letter-spacing: -.06em; }
.cut-width-inner > p:last-child { max-width: 610px; margin: 0 0 0 auto; color: var(--ink-soft); }

.use-cases { padding-block: clamp(110px, 12vw, 170px); }
.use-intro { display: grid; grid-template-columns: .55fr 1fr; gap: 60px; margin-bottom: 62px; }
.use-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.use-item {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.88);
    border-radius: 28px;
    background: rgba(255,255,255,.55);
    box-shadow: inset 0 1px 0 #fff, 0 12px 38px rgba(49,86,43,.07);
    transition: transform .55s var(--ease), box-shadow .55s var(--ease), background .55s var(--ease);
}
.use-item:hover { transform: translateY(-8px); background: rgba(255,255,255,.80); box-shadow: var(--shadow-float); }
.use-item > span { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: auto; border-radius: 50%; background: rgba(112,176,0,.10); color: var(--brand-green-deep); font-size: 11px; font-weight: 800; }
.use-item h3 { margin: 34px 0 10px; font-size: 20px; line-height: 1.2; }
.use-item p { margin-bottom: 0; color: var(--ink-soft); font-size: 13px; }

.kit {
    width: calc(100% - 24px);
    max-width: 1380px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.86);
    border-radius: 48px;
    background: rgba(255,255,255,.66);
    box-shadow: inset 0 2px 0 #fff, 0 28px 80px rgba(48,89,40,.11);
}
.kit-visual { position: relative; min-height: 760px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle, rgba(255,255,255,.92) 0 28%, rgba(205,235,157,.55) 29% 53%, rgba(112,176,0,.05) 54% 70%, transparent 71%); }
.kit-visual::before { content: ""; position: absolute; top: 50%; left: 50%; width: 70%; aspect-ratio: 1; transform: translate(-50%, -50%); border: 1px dashed rgba(63,118,0,.18); border-radius: 50%; animation: ring-spin 34s linear infinite; }
.kit-visual img { position: relative; z-index: 2; width: 88%; filter: saturate(1.04) drop-shadow(0 28px 35px rgba(42,75,32,.14)); animation: kit-float 6.4s ease-in-out infinite alternate; transition: transform 1s var(--ease); }
.kit-visual:hover img { transform: scale(1.035) rotate(-1deg); }
.kit-stamp { position: absolute; top: 28px; left: 28px; z-index: 4; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.75); box-shadow: inset 0 1px 0 #fff, 0 8px 24px rgba(48,88,42,.09); color: var(--brand-green-deep); font-size: 10px; font-weight: 800; text-transform: uppercase; backdrop-filter: blur(16px); }
.kit-content { padding: clamp(54px, 7vw, 98px); }
.kit-lede { max-width: 500px; margin: 24px 0 34px; color: var(--ink-soft); }
.kit-list { margin: 0; padding: 0; list-style: none; }
.kit-list li { min-height: 56px; display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); }
.kit-list span { color: var(--brand-green); font-size: 10px; font-weight: 800; }
.kit-list strong { font-size: 13px; }

.review { padding-block: clamp(110px, 12vw, 170px); }
.review blockquote {
    margin: 0;
    padding: clamp(34px, 6vw, 76px);
    border: 1px solid rgba(255,255,255,.86);
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(255,255,255,.74), rgba(228,243,213,.72));
    box-shadow: inset 0 2px 0 #fff, 0 20px 64px rgba(49,89,42,.09);
}
.review blockquote p { max-width: 980px; margin-bottom: 42px; font-size: clamp(31px, 4.2vw, 58px); font-weight: 680; line-height: 1.16; letter-spacing: -.05em; }
.review blockquote footer { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); font-size: 12px; }
.review blockquote footer::before { content: ""; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-yellow), var(--brand-green)); }
.review blockquote footer strong { color: var(--ink); }
.review-note { max-width: 670px; margin: 30px 0 0 auto; color: var(--ink-soft); font-size: 12px; }

.specifications { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 128px); padding-bottom: clamp(110px, 12vw, 170px); }
.specs-heading { position: sticky; top: 110px; align-self: start; }
.specs-table { padding: 18px 26px; border: 1px solid rgba(255,255,255,.88); border-radius: 30px; background: rgba(255,255,255,.58); box-shadow: inset 0 1px 0 #fff, 0 18px 56px rgba(48,88,41,.08); }
.spec-row { min-height: 74px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: center; border-bottom: 1px solid var(--line); }
.spec-row:last-child { border-bottom: 0; }
.spec-row span { color: var(--ink-soft); font-size: 12px; }
.spec-row strong { font-size: 12px; font-weight: 760; }

.order-section {
    position: relative;
    width: calc(100% - 24px);
    max-width: 1380px;
    display: grid;
    grid-template-columns: 1fr minmax(390px, .78fr);
    gap: clamp(50px, 8vw, 110px);
    margin: 0 auto;
    padding: clamp(68px, 8vw, 112px) clamp(28px, 6vw, 88px);
    overflow: hidden;
    border-radius: 48px;
    background:
        radial-gradient(circle at 83% 10%, rgba(248,184,56,.25), transparent 25rem),
        radial-gradient(circle at 5% 94%, rgba(208,239,160,.20), transparent 30rem),
        linear-gradient(135deg, #315f24, #5d9519 58%, #74ae21);
    color: #fff;
    box-shadow: inset 0 2px 0 rgba(255,255,255,.18), 0 30px 90px rgba(37,76,26,.18);
}
.order-section::before { content: ""; position: absolute; width: 620px; height: 620px; right: -270px; bottom: -360px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.04), 0 0 0 160px rgba(255,255,255,.03); }
.order-copy, .form-panel { position: relative; z-index: 2; }
.order-section .section-index { color: #d9f3a7; }
.order-lede { max-width: 570px; margin: 24px 0 34px; color: rgba(255,255,255,.73); }
.order-price { display: grid; gap: 4px; margin-bottom: 26px; }
.order-price small { color: rgba(255,255,255,.66); font-size: 11px; }
.order-price strong { font-size: clamp(58px, 7vw, 92px); line-height: .95; letter-spacing: -.075em; }
.order-price strong span { font-size: .25em; letter-spacing: 0; }
.order-benefits { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.order-benefits li { position: relative; padding-left: 24px; color: rgba(255,255,255,.84); font-size: 13px; }
.order-benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-yellow); font-weight: 900; }

.form-panel {
    align-self: center;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(243,249,238,.84));
    color: var(--ink);
    box-shadow: inset 0 2px 0 #fff, 0 28px 80px rgba(20,54,18,.24);
    backdrop-filter: blur(20px);
}
.form-panel-top { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 24px; color: var(--ink-soft); font-size: 10px; font-weight: 760; text-transform: uppercase; }
.form-alert { margin-bottom: 18px; padding: 13px 15px; border-radius: 14px; background: #fff1ed; color: #a33e24; font-size: 12px; }
.lead-form { display: grid; gap: 16px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-field { display: grid; gap: 7px; }
.form-field label { color: var(--ink-soft); font-size: 11px; font-weight: 700; }
.form-field input {
    width: 100%;
    height: 58px;
    padding: 0 17px;
    border: 1px solid rgba(34,75,43,.13);
    border-radius: 16px;
    outline: 0;
    background: rgba(255,255,255,.78);
    color: var(--ink);
    box-shadow: inset 0 1px 0 #fff, 0 4px 14px rgba(37,74,40,.04);
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.form-field input:focus { border-color: rgba(112,176,0,.55); box-shadow: 0 0 0 5px rgba(112,176,0,.10), inset 0 1px 0 #fff; transform: translateY(-1px); }
.form-field input[aria-invalid="true"] { border-color: #dc6b4c; box-shadow: 0 0 0 4px rgba(220,107,76,.10); }
.field-error { min-height: 16px; color: #ae4429; font-size: 10px; }
.submit-button { min-height: 60px; display: grid; place-items: center; margin-top: 2px; border-radius: 999px; background: linear-gradient(135deg, #83c91b, #579100); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 16px 42px rgba(72,128,0,.26); font-size: 14px; font-weight: 800; }
.submit-state { display: none; }
.lead-form.is-submitting .submit-label { display: none; }
.lead-form.is-submitting .submit-state { display: block; }
.form-privacy { margin: 0; color: var(--ink-soft); font-size: 9px; text-align: center; }

.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 9vw, 120px); padding-block: clamp(110px, 12vw, 170px); }
.faq-list { display: grid; gap: 10px; }
.faq details { padding: 0 22px; border: 1px solid rgba(255,255,255,.88); border-radius: 20px; background: rgba(255,255,255,.58); box-shadow: inset 0 1px 0 #fff, 0 8px 28px rgba(49,87,42,.05); transition: background .4s var(--ease), box-shadow .4s var(--ease); }
.faq details[open] { background: rgba(255,255,255,.84); box-shadow: var(--shadow-soft); }
.faq summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 13px; font-weight: 720; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { position: relative; width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; background: rgba(112,176,0,.10); }
.faq summary span::before, .faq summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1.5px; border-radius: 2px; background: var(--brand-green-deep); transform: translate(-50%,-50%); transition: transform .35s var(--ease); }
.faq summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.faq details p { margin: -4px 42px 24px 0; color: var(--ink-soft); font-size: 13px; }

.site-footer {
    width: calc(100% - 24px);
    max-width: 1380px;
    min-height: 120px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    margin: 0 auto 12px;
    padding: 24px clamp(22px, 4vw, 50px);
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 30px;
    background: rgba(255,255,255,.52);
    color: var(--ink-soft);
    font-size: 11px;
}
.site-footer img { width: 150px; }
.site-footer a { justify-self: end; color: var(--ink); font-weight: 700; }

.mobile-order-bar { display: none; }
.noscript { padding: 12px; background: var(--brand-yellow); color: var(--ink); font-size: 12px; text-align: center; }

.reveal {
    opacity: 0;
    transform: translateY(28px) scale(.985);
    filter: blur(8px);
    transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}
.reveal[data-delay="1"] { transition-delay: .10s; }
.reveal[data-delay="2"] { transition-delay: .20s; }
.reveal.is-visible { opacity: 1; transform: none; filter: blur(0); }

.thank-page { min-height: 100svh; padding: 12px; background: linear-gradient(135deg, #eef6e9, #f8f7ef); }
.thank-header { min-height: 72px; display: flex; align-items: center; padding: 10px 20px; border: 1px solid rgba(255,255,255,.82); border-radius: 22px; background: rgba(255,255,255,.70); box-shadow: var(--shadow-soft); }
.thank-header img { width: 158px; }
.thank-main { position: relative; min-height: calc(100svh - 96px); display: grid; place-items: center; overflow: hidden; border-radius: 42px; background: radial-gradient(circle at 72% 35%, rgba(255,255,255,.96), transparent 22rem), linear-gradient(135deg, #dff0ce, #eff6e9); }
.thank-code { position: absolute; right: -3vw; bottom: -15vw; color: rgba(112,176,0,.11); font-size: 42vw; font-weight: 850; line-height: 1; letter-spacing: -.12em; }
.thank-content { position: relative; z-index: 2; max-width: 900px; padding: 42px; text-align: center; }
.thank-content h1 { margin-bottom: 28px; font-size: clamp(58px, 9vw, 128px); font-weight: 820; line-height: .93; letter-spacing: -.08em; }
.thank-content h1 span { display: inline-block; margin-top: 16px; color: var(--brand-green); font-size: .38em; line-height: 1.08; letter-spacing: -.045em; }
.thank-content > p { max-width: 660px; margin: 0 auto 32px; color: var(--ink-soft); }

@keyframes hero-enter { from { opacity: 0; transform: translateY(22px); filter: blur(7px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes headline-land { to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes product-land { from { opacity: 0; transform: translate3d(-46%, 80px, 0) rotate(5deg) scale(.84); filter: blur(12px) saturate(.9); } to { opacity: 1; transform: translate3d(calc(-50% + var(--px)), var(--py), 40px) rotate(-2deg) scale(1); filter: saturate(1.06) drop-shadow(0 32px 34px rgba(37,74,34,.20)); } }
@keyframes product-float { from { margin-bottom: 0; } to { margin-bottom: 15px; } }
@keyframes gallery-float { from { margin-top: 8px; } to { margin-top: -10px; } }
@keyframes kit-float { from { translate: 0 8px; } to { translate: 0 -10px; } }
@keyframes spark-drift { to { transform: translate3d(36px, -22px, 0) scale(1.2); } }
@keyframes spark-pulse { 50% { transform: scale(1.45); opacity: .58; } }
@keyframes badge-land { from { opacity: 0; transform: translateY(30px) scale(.82); filter: blur(8px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes badge-float { from { translate: 0 0; } to { translate: 0 -8px; } }
@keyframes ambient-breathe { to { transform: translate3d(32px,-18px,0) scale(1.12); } }
@keyframes disc-breathe { from { transform: translate(-50%,-50%) scale(.97); } to { transform: translate(-50%,-50%) scale(1.035); } }
@keyframes ring-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes ring-spin-reverse { to { transform: rotate(-360deg); } }
@keyframes tape { to { transform: translateX(-50%); } }
@keyframes line-breathe { from { transform: translateX(-40%); } to { transform: translateX(150%); } }

@media (max-width: 1080px) {
    .site-nav { display: none; }
    .site-header { grid-template-columns: 1fr auto; }
    .hero { grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); }
    .performance-row { padding: 24px; }
    .kit-content { padding: 54px 38px; }
}

@media (max-width: 860px) {
    :root { --shell: calc(100vw - 36px); }
    .announcement span:nth-child(2), .announcement span:nth-child(3) { display: none; }
    .hero { min-height: auto; grid-template-columns: 1fr; padding: 70px 24px 22px; }
    .hero-copy { padding-inline: 4px; }
    .hero-stage { min-height: 610px; }
    .hero-stage::before { width: min(78vw, 520px); }
    .hero-stage::after { width: min(88vw, 590px); }
    .hero-product { width: min(106%, 680px); }
    .gallery-heading { grid-template-columns: 1fr; gap: 22px; }
    .gallery-stage { min-height: 590px; }
    .gallery-stage::before { width: min(78vw, 610px); }
    .gallery-orbit--one { width: min(92vw, 720px); }
    .gallery-orbit--two { width: min(68vw, 520px); }
    .gallery-main { width: min(78%, 580px); max-height: 500px; }
    .manifesto-grid, .specifications, .faq { grid-template-columns: 1fr; }
    .manifesto-grid > *, .specifications > *, .faq > * { min-width: 0; }
    .performance { grid-template-columns: 1fr; }
    .performance-row { min-height: 330px; }
    .cut-width h2 { grid-template-columns: 1fr; gap: 20px; }
    .cut-width h2 strong { font-size: 33vw; }
    .use-intro { grid-template-columns: 1fr; gap: 10px; }
    .use-list { grid-template-columns: 1fr; }
    .use-item { min-height: 210px; }
    .kit { grid-template-columns: 1fr; }
    .kit-visual { min-height: 620px; }
    .specs-heading { position: static; }
    .order-section { grid-template-columns: 1fr; }
    .faq { gap: 46px; }
    .site-footer { grid-template-columns: 1fr auto; }
    .site-footer p { display: none; }
}

@media (max-width: 560px) {
    body { padding-bottom: 72px; }
    .announcement { min-height: 28px; font-size: 9px; }
    .site-header { top: 7px; width: calc(100% - 14px); min-height: 60px; padding: 8px 10px 8px 14px; border-radius: 18px; }
    .brand { width: 138px; }
    .header-cta { min-width: 102px; min-height: 42px; font-size: 12px; }
    .hero { width: calc(100% - 14px); margin-top: 12px; padding: 18px 18px 28px; border-radius: 32px; }
    .hero-stage { grid-row: 1; min-height: 410px; }
    .hero-copy { grid-row: 2; padding-top: 28px; }
    .hero h1 { font-size: clamp(46px, 14vw, 66px); }
    .hero-lede { font-size: 15px; }
    .hero-actions { display: grid; gap: 14px; }
    .button { width: 100%; justify-content: space-between; }
    .text-link { padding-left: 8px; }
    .hero-proof li:nth-child(3) { display: none; }
    .hero-stage-number { font-size: 42vw; }
    .hero-product { bottom: 0; width: 108%; }
    .hero-callout--motor { top: 8%; right: -4px; width: 150px; padding: 12px 13px; }
    .hero-callout span { margin-bottom: 10px; }
    .hero-price { left: 0; bottom: 5%; }
    .spec-tape { width: calc(100% - 14px); border-radius: 18px; }
    .spec-tape-track span { min-height: 56px; padding-inline: 22px; }
    .product-gallery, .manifesto, .use-cases, .review, .faq { padding-block: 88px; }
    .gallery-heading h2, .manifesto h2, .performance-heading h2, .use-intro h2, .kit h2, .order-copy h2, .faq-heading h2 { font-size: clamp(35px, 10.5vw, 48px); }
    .gallery-showcase { width: calc(100vw - 14px); margin-left: calc((var(--shell) - (100vw - 14px)) / 2); padding: 8px; border-radius: 32px; }
    .gallery-stage { min-height: 470px; border-radius: 25px; }
    .gallery-stage::before { width: 82vw; }
    .gallery-orbit--one { width: 110vw; }
    .gallery-orbit--two { width: 76vw; }
    .gallery-main { width: 96%; max-width: 390px; max-height: 350px; }
    .gallery-meta { right: 12px; bottom: 12px; left: 12px; padding: 12px 14px; border-radius: 15px; }
    .gallery-meta strong { max-width: 64%; text-align: right; }
    .gallery-thumbs { gap: 8px; margin-top: 8px; }
    .gallery-thumb { width: 82px; height: 82px; flex-basis: 82px; border-radius: 17px; }
    .specs-heading h2 { font-size: clamp(29px, 8.6vw, 36px); }
    .performance { width: calc(100% - 14px); padding: 70px 12px 12px; border-radius: 32px; }
    .performance-heading { padding-inline: 8px; }
    .performance-row { min-height: 300px; border-radius: 24px; }
    .performance-number strong { font-size: 78px; }
    .cut-width { width: calc(100% - 14px); border-radius: 32px; }
    .cut-width-inner { padding-block: 76px; }
    .cut-width h2 strong { font-size: 42vw; }
    .cut-width h2 span { font-size: 34px; }
    .use-item { border-radius: 24px; }
    .kit { width: calc(100% - 14px); border-radius: 32px; }
    .kit-visual { min-height: 440px; }
    .kit-content { padding: 52px 22px; }
    .review blockquote { padding: 26px; border-radius: 28px; }
    .review blockquote p { font-size: 28px; }
    .review blockquote footer { align-items: flex-start; flex-direction: column; }
    .specifications { gap: 34px; padding-bottom: 90px; }
    .specs-table { padding: 8px 18px; border-radius: 24px; }
    .spec-row { min-height: 84px; grid-template-columns: 1fr; gap: 4px; align-content: center; }
    .order-section { width: calc(100% - 14px); gap: 46px; padding: 70px 18px 24px; border-radius: 32px; }
    .order-price strong { font-size: 60px; }
    .form-panel { padding: 20px; border-radius: 24px; }
    .form-panel-top span:last-child { display: none; }
    .faq details { padding-inline: 18px; }
    .site-footer { width: calc(100% - 14px); min-height: 92px; margin-bottom: 7px; padding: 18px; border-radius: 24px; }
    .site-footer img { width: 130px; }
    .mobile-order-bar {
        position: fixed;
        right: 8px;
        bottom: 8px;
        left: 8px;
        z-index: 120;
        height: 62px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 8px 8px 8px 16px;
        transform: translateY(130%);
        border: 1px solid rgba(255,255,255,.76);
        border-radius: 20px;
        background: rgba(248,250,244,.90);
        color: var(--ink);
        box-shadow: 0 18px 50px rgba(37,75,37,.20);
        backdrop-filter: blur(22px);
        transition: transform .5s var(--ease);
    }
    .mobile-order-bar.is-visible { transform: none; }
    .mobile-order-bar div { display: grid; align-content: center; line-height: 1.1; }
    .mobile-order-bar small { color: var(--ink-soft); font-size: 8px; text-transform: uppercase; }
    .mobile-order-bar strong { font-size: 15px; }
    .mobile-order-bar a { display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, #82c719, #579100); color: #fff; font-size: 13px; font-weight: 760; }
    .thank-page { padding: 7px; }
    .thank-header { min-height: 62px; border-radius: 18px; }
    .thank-header img { width: 138px; }
    .thank-main { min-height: calc(100svh - 76px); border-radius: 30px; }
    .thank-content { padding: 28px 18px; text-align: left; }
    .thank-content h1 { font-size: 54px; }
    .thank-content .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; filter: none; }
}
