:root {
    --black: #080a0a;
    --black-2: #101313;
    --graphite: #181c1c;
    --steel: #262c2b;
    --paper: #f4f2e9;
    --white: #ffffff;
    --yellow: #f4df18;
    --yellow-hot: #fff04a;
    --orange: #ff6a2a;
    --green: #adff35;
    --muted: #9da5a3;
    --ink: #121515;
    --line: rgba(255, 255, 255, 0.13);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--white);
    background: var(--black);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input {
    font: inherit;
}

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

a {
    color: inherit;
}

.shell {
    width: min(1200px, calc(100% - 44px));
    margin-inline: auto;
}

.signal-bar {
    color: var(--black);
    background: var(--yellow);
}

.signal-bar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.signal-bar__inner span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.signal-bar__inner span::before {
    content: "";
    width: 9px;
    height: 9px;
    background: var(--black);
    transform: rotate(45deg);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 10, 10, 0.91);
    backdrop-filter: blur(16px);
}

.header__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand__icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 25px;
    font-weight: 950;
    clip-path: polygon(0 0, 82% 0, 100% 18%, 100% 100%, 18% 100%, 0 82%);
}

.brand > span:last-child {
    display: grid;
}

.brand strong {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: 0.09em;
}

.brand small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.2;
}

.header__specs {
    display: flex;
    align-items: center;
    gap: 0;
    color: #c9cfcd;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.header__specs span {
    padding-inline: 18px;
    border-right: 1px solid var(--line);
}

.header__specs span:first-child {
    border-left: 1px solid var(--line);
}

.action {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 30px;
    border: 0;
    color: var(--black);
    background: var(--yellow);
    box-shadow: 0 16px 40px rgba(244, 223, 24, 0.18);
    font-size: 16px;
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.action:hover {
    background: var(--yellow-hot);
    box-shadow: 0 20px 48px rgba(244, 223, 24, 0.28);
    transform: translateY(-2px);
}

.action:focus-visible,
.inline-action:focus-visible,
summary:focus-visible,
input:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

.action--compact {
    min-height: 48px;
    padding-inline: 24px;
    font-size: 14px;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 720px;
    padding: 78px 0 95px;
    background:
        linear-gradient(105deg, rgba(244, 223, 24, 0.05), transparent 34%),
        repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.025) 80px),
        var(--black);
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -14% -56% 22%;
    z-index: -1;
    height: 560px;
    border: 1px solid rgba(244, 223, 24, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 100px rgba(244, 223, 24, 0.09);
    transform: rotate(-8deg);
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.18;
    background-image:
        linear-gradient(135deg, transparent 49.5%, rgba(244, 223, 24, 0.16) 50%, transparent 50.5%);
    background-size: 120px 120px;
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(500px, 1.07fr);
    align-items: center;
    gap: 45px;
}

.hero__copy {
    position: relative;
    z-index: 3;
}

.kicker {
    margin: 0 0 19px;
    color: var(--yellow);
    font-size: 14px;
    font-weight: 950;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.kicker span {
    display: inline-flex;
    margin-right: 11px;
    padding: 5px 8px;
    color: var(--black);
    background: var(--yellow);
    letter-spacing: 0.04em;
}

.kicker--dark {
    color: #424a48;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2 {
    font-family: "Arial Black", Impact, Arial, sans-serif;
    font-weight: 950;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(52px, 6.4vw, 91px);
    line-height: 0.91;
}

h1 em {
    display: block;
    margin-top: 13px;
    color: var(--yellow);
    font-style: normal;
}

h2 {
    margin: 0;
    font-size: clamp(39px, 4.2vw, 66px);
    line-height: 0.98;
}

h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
}

.hero__lead {
    max-width: 670px;
    margin: 29px 0 26px;
    color: #c7cecc;
    font-size: 20px;
    line-height: 1.55;
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 0 0 32px;
}

.hero__features > div {
    min-height: 83px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
}

.hero__features b {
    color: var(--yellow);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 17px;
    letter-spacing: 0.05em;
}

.hero__features span {
    margin-top: 4px;
    color: #aeb6b4;
    font-size: 14px;
    line-height: 1.3;
}

.hero__buy {
    display: flex;
    align-items: flex-end;
    gap: 25px;
}

.pricing {
    display: flex;
    flex-direction: column;
    min-width: 185px;
}

.pricing > span,
.order-total > span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing s,
.order-total s {
    color: #8f9795;
    font-size: 15px;
}

.pricing i,
.order-total i {
    padding: 4px 7px;
    color: var(--black);
    background: var(--yellow);
    font-size: 14px;
    font-style: normal;
    font-weight: 950;
}

.pricing strong {
    margin-top: 2px;
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 48px;
    line-height: 1;
}

.pricing strong small {
    font-size: 17px;
}

.action--hero {
    min-width: 300px;
}

.action--hero span {
    font-size: 24px;
    line-height: 1;
}

.hero__note {
    margin: 18px 0 0;
    color: #858e8c;
    font-size: 14px;
}

.hero__visual {
    position: relative;
    isolation: isolate;
    aspect-ratio: 16 / 11;
    border: 1px solid rgba(244, 223, 24, 0.35);
    background: #151818;
    box-shadow: var(--shadow);
    clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 42px 100%, 0 calc(100% - 42px));
}

.hero__visual::before {
    content: "";
    position: absolute;
    inset: 15px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__beam {
    position: absolute;
    left: -12%;
    bottom: 16%;
    z-index: 1;
    width: 48%;
    height: 20%;
    opacity: 0.45;
    background: linear-gradient(90deg, transparent, rgba(244, 223, 24, 0.34));
    filter: blur(15px);
    transform: skewX(-24deg);
    pointer-events: none;
}

.hero__badge {
    position: absolute;
    z-index: 4;
    min-width: 112px;
    padding: 12px 16px;
    color: var(--black);
    background: var(--yellow);
    box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.55);
    text-align: center;
    transform: rotate(-2deg);
}

.hero__badge b {
    display: block;
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 25px;
    line-height: 1;
}

.hero__badge span {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.hero__badge--top {
    top: -18px;
    right: 24px;
}

.hero__badge--bottom {
    left: -18px;
    bottom: 28px;
}

.metrics {
    position: relative;
    z-index: 4;
    margin-top: -38px;
}

.metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: var(--black);
    background: var(--yellow);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.28);
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.metrics article {
    min-height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 27px;
    border-right: 2px solid rgba(8, 10, 10, 0.17);
}

.metrics article:last-child {
    border: 0;
}

.metrics b {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 29px;
    line-height: 1.1;
}

.metrics span {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.section {
    padding: 105px 0;
}

.section-title {
    margin-bottom: 48px;
}

.section-title--split {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: end;
    gap: 80px;
}

.section-title--split > p {
    margin: 0 0 6px;
    color: #525b59;
    font-size: 18px;
    line-height: 1.65;
}

.section-title--center {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
}

.problem-section {
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(8, 10, 10, 0.05) 1px, transparent 1px),
        var(--paper);
    background-size: 80px 80px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.problem-grid article {
    position: relative;
    min-height: 270px;
    padding: 34px 31px;
    border: 2px solid var(--ink);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 9px 9px 0 var(--ink);
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.problem-grid article > span {
    display: inline-grid;
    width: 49px;
    height: 49px;
    place-items: center;
    margin-bottom: 40px;
    color: var(--black);
    background: var(--yellow);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 16px;
}

.problem-grid h3 {
    text-transform: uppercase;
}

.problem-grid p {
    margin: 13px 0 0;
    color: #525a58;
    font-size: 16px;
}

.modes-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(244, 223, 24, 0.1), transparent 35%),
        var(--black-2);
}

.modes-layout,
.power-layout,
.kit-layout,
.specs-layout,
.faq-layout,
.order-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 74px;
}

.angled-image {
    position: relative;
    margin: 0;
    padding: 14px;
    background: var(--yellow);
    box-shadow: var(--shadow);
    clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 42px 100%, 0 calc(100% - 42px));
}

.angled-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #fff;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.angled-image figcaption {
    position: absolute;
    right: -15px;
    bottom: 34px;
    padding: 11px 15px;
    color: var(--black);
    background: var(--yellow);
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.72);
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
}

.section-lead {
    margin: 24px 0 31px;
    color: #aeb5b3;
    font-size: 18px;
    line-height: 1.65;
}

.mode-list {
    display: grid;
    gap: 8px;
}

.mode-list article {
    min-height: 70px;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 14px;
    padding: 10px 15px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.mode-list article:hover {
    border-color: rgba(244, 223, 24, 0.55);
    transform: translateX(5px);
}

.mode-list article > span {
    color: var(--yellow);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 17px;
}

.mode-list article div {
    display: grid;
}

.mode-list b {
    font-size: 16px;
    text-transform: uppercase;
}

.mode-list small {
    margin-top: 2px;
    color: #909997;
    font-size: 14px;
    line-height: 1.35;
}

.inline-action {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 26px;
    color: var(--yellow);
    font-size: 16px;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.inline-action span {
    font-size: 25px;
}

.gesture-section {
    color: var(--ink);
    background: var(--paper);
}

.gesture-card {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: stretch;
    min-height: 570px;
    color: var(--black);
    background: var(--yellow);
    box-shadow: 14px 14px 0 var(--black);
    clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 48px 100%, 0 calc(100% - 48px));
}

.gesture-copy {
    padding: 62px 55px;
}

.gesture-copy > p:not(.kicker) {
    margin: 27px 0 31px;
    font-size: 18px;
    line-height: 1.65;
}

.gesture-points {
    display: grid;
    gap: 11px;
}

.gesture-points span {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 0;
    border-top: 2px solid rgba(8, 10, 10, 0.22);
    font-size: 15px;
    font-weight: 850;
}

.gesture-points b {
    font-family: "Arial Black", Arial, sans-serif;
}

.gesture-card figure {
    margin: 0;
    padding: 17px;
    background: var(--black);
}

.gesture-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.use-section {
    background:
        linear-gradient(135deg, rgba(244, 223, 24, 0.045) 25%, transparent 25%) 0 0 / 50px 50px,
        var(--black);
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.use-grid article {
    min-height: 330px;
    padding: 31px 26px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.use-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin-bottom: 58px;
    color: var(--black);
    background: var(--yellow);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 14px;
    transform: rotate(-3deg);
}

.use-grid h3 {
    min-height: 53px;
    text-transform: uppercase;
}

.use-grid p {
    margin: 14px 0 0;
    color: #a4adaa;
    font-size: 16px;
}

.power-section {
    color: var(--ink);
    background: var(--paper);
}

.power-copy > p:not(.kicker) {
    max-width: 560px;
    margin: 27px 0 32px;
    color: #505856;
    font-size: 18px;
    line-height: 1.65;
}

.power-bars {
    display: grid;
    border-top: 3px solid var(--ink);
}

.power-bars > div {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(18, 21, 21, 0.2);
}

.power-bars span {
    color: #68716f;
    font-size: 15px;
}

.power-bars b {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 20px;
    text-transform: uppercase;
}

.power-gallery {
    display: grid;
    grid-template-columns: 1fr 0.68fr;
    gap: 13px;
    align-items: end;
}

.power-gallery figure {
    margin: 0;
    padding: 10px;
    background: var(--black);
    box-shadow: var(--shadow);
}

.power-gallery figure:last-child {
    transform: translateY(35px);
}

.power-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #fff;
}

.kit-section {
    color: var(--black);
    background: var(--yellow);
}

.kit-section .angled-image {
    background: var(--black);
}

.kit-list {
    display: grid;
    gap: 0;
    margin: 31px 0 0;
    padding: 0;
    list-style: none;
    border-top: 3px solid var(--black);
}

.kit-list li {
    min-height: 82px;
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(8, 10, 10, 0.23);
}

.kit-list li > span {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 17px;
}

.kit-list li div {
    display: grid;
}

.kit-list b {
    font-size: 17px;
    text-transform: uppercase;
}

.kit-list small {
    color: #454b49;
    font-size: 14px;
}

.specs-section {
    background: var(--black-2);
}

.specs-layout {
    align-items: start;
}

.specs-head > p:not(.kicker) {
    max-width: 470px;
    margin: 25px 0 28px;
    color: #a3adaa;
    font-size: 17px;
}

.specs-head img {
    width: min(430px, 100%);
    aspect-ratio: 1;
    object-fit: contain;
    border: 12px solid var(--yellow);
    background: #fff;
    box-shadow: var(--shadow);
    clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 35px, 100% 100%, 35px 100%, 0 calc(100% - 35px));
}

.spec-table {
    margin: 0;
    border-top: 2px solid var(--yellow);
}

.spec-table > div {
    min-height: 62px;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.spec-table dt {
    color: #8f9896;
    font-size: 15px;
}

.spec-table dd {
    margin: 0;
    font-size: 16px;
    font-weight: 850;
    text-align: right;
}

.safety-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 42px;
    padding: 20px 23px;
    border-left: 6px solid var(--yellow);
    color: #bdc6c3;
    background: rgba(255, 255, 255, 0.04);
    font-size: 14px;
}

.safety-note b {
    color: var(--yellow);
    text-transform: uppercase;
}

.delivery-section {
    padding: 95px 0;
    color: var(--black);
    background: var(--paper);
}

.delivery-card {
    padding: 54px 55px;
    background: var(--yellow);
    box-shadow: 13px 13px 0 var(--black);
    clip-path: polygon(0 0, calc(100% - 45px) 0, 100% 45px, 100% 100%, 45px 100%, 0 calc(100% - 45px));
}

.delivery-card__copy {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    align-items: start;
    gap: 40px;
}

.delivery-card h2 {
    font-size: clamp(34px, 4vw, 59px);
}

.delivery-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 43px 0 32px;
    padding: 0;
    list-style: none;
}

.delivery-steps li {
    min-height: 112px;
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 15px;
    padding: 17px;
    border: 2px solid var(--black);
}

.delivery-steps li > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--yellow);
    background: var(--black);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 19px;
}

.delivery-steps li div {
    display: grid;
}

.delivery-steps b {
    font-size: 16px;
    text-transform: uppercase;
}

.delivery-steps small {
    margin-top: 3px;
    color: #474d4b;
    font-size: 14px;
}

.action--dark {
    color: var(--yellow);
    background: var(--black);
    box-shadow: none;
}

.action--dark:hover {
    color: var(--black);
    background: var(--white);
}

.reviews-section {
    background: var(--black);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.review-grid article {
    min-height: 355px;
    display: flex;
    flex-direction: column;
    padding: 30px 27px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
    clip-path: polygon(0 0, calc(100% - 27px) 0, 100% 27px, 100% 100%, 27px 100%, 0 calc(100% - 27px));
}

.review-head {
    display: flex;
    align-items: center;
    gap: 13px;
}

.review-head > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 21px;
}

.review-head div {
    display: grid;
}

.review-head b {
    font-size: 16px;
}

.review-head i {
    color: var(--yellow);
    font-size: 15px;
    font-style: normal;
    letter-spacing: 0.12em;
}

.review-grid p {
    margin: 28px 0 25px;
    color: #bac2c0;
    font-size: 16px;
    line-height: 1.7;
}

.review-grid article > small {
    margin-top: auto;
    color: var(--yellow);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.faq-section {
    color: var(--ink);
    background: var(--paper);
}

.faq-layout {
    align-items: start;
}

.faq-copy > p:not(.kicker) {
    max-width: 460px;
    margin: 25px 0 0;
    color: #565e5c;
    font-size: 17px;
}

.faq-list {
    border-top: 3px solid var(--black);
}

.faq-list details {
    border-bottom: 1px solid rgba(18, 21, 21, 0.2);
}

.faq-list summary {
    position: relative;
    padding: 23px 46px 23px 0;
    font-size: 17px;
    font-weight: 900;
    list-style: none;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 21px;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: -2px 55px 23px 0;
    color: #535b59;
    font-size: 16px;
    line-height: 1.65;
}

.order-section {
    padding: 108px 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(244, 223, 24, 0.13), transparent 30%),
        repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.025) 80px),
        var(--black-2);
}

.order-layout {
    align-items: center;
}

.order-copy > p:not(.kicker) {
    max-width: 560px;
    margin: 27px 0 28px;
    color: #aab3b0;
    font-size: 18px;
    line-height: 1.65;
}

.order-product {
    display: grid;
    grid-template-columns: 84px 1fr;
    align-items: center;
    gap: 17px;
    max-width: 560px;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.order-product img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    background: #fff;
}

.order-product div {
    display: grid;
}

.order-product b {
    font-size: 16px;
    text-transform: uppercase;
}

.order-product span {
    margin-top: 4px;
    color: #969f9d;
    font-size: 14px;
}

.order-total {
    max-width: 560px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-top: 27px;
}

.order-total strong {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 46px;
    line-height: 1;
}

.order-form {
    position: relative;
    padding: 38px 39px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 13px 13px 0 var(--yellow);
    clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 38px, 100% 100%, 38px 100%, 0 calc(100% - 38px));
}

.order-form::before {
    content: "ORDER / 192";
    position: absolute;
    top: 0;
    right: 35px;
    padding: 7px 11px;
    color: var(--black);
    background: var(--yellow);
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 0.05em;
}

.order-form__head {
    display: grid;
    margin-bottom: 29px;
}

.order-form__head span {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 30px;
    line-height: 1.1;
    text-transform: uppercase;
}

.order-form__head small {
    margin-top: 7px;
    color: #6f7775;
    font-size: 14px;
}

.order-form label {
    display: block;
    margin: 20px 0 8px;
    font-size: 15px;
    font-weight: 900;
}

.order-form input {
    width: 100%;
    min-height: 64px;
    padding: 0 18px;
    border: 2px solid #c7cdcb;
    border-radius: 0;
    color: var(--ink);
    background: #fbfcfa;
    font-size: 17px;
    outline: 0;
}

.order-form input:focus {
    border-color: var(--black);
    box-shadow: 6px 6px 0 var(--yellow);
}

.order-form input.is-invalid {
    border-color: #d84227;
}

.field-hint,
.field-error {
    display: block;
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.45;
}

.field-hint {
    color: #747c7a;
}

.field-error {
    min-height: 20px;
    color: #c93620;
}

.action--submit {
    width: 100%;
    margin-top: 15px;
}

.form-consent {
    margin: 16px 0 0;
    color: #737b79;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.form-trust {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #d8dcda;
}

.form-trust > span {
    width: 44px;
    height: 44px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
    font-size: 22px;
    font-weight: 950;
}

.form-trust div {
    display: grid;
}

.form-trust b {
    font-size: 16px;
}

.form-trust small {
    color: #6c7472;
    font-size: 14px;
}

footer {
    border-top: 1px solid var(--line);
    background: var(--black);
}

.footer__inner {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: #8c9593;
    font-size: 14px;
}

.mobile-order {
    display: none;
}

@media (max-width: 1080px) {
    .hero__inner {
        grid-template-columns: 1fr 0.92fr;
        gap: 30px;
    }

    h1 {
        font-size: clamp(50px, 6.5vw, 72px);
    }

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

    .action--hero {
        width: min(360px, 100%);
    }

    .use-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-grid article {
        min-height: 270px;
    }

    .use-icon {
        margin-bottom: 38px;
    }
}

@media (max-width: 900px) {
    .header__specs {
        display: none;
    }

    .hero {
        padding-top: 58px;
    }

    .hero__inner,
    .modes-layout,
    .power-layout,
    .kit-layout,
    .specs-layout,
    .faq-layout,
    .order-layout {
        grid-template-columns: 1fr;
    }

    .hero__inner {
        gap: 52px;
    }

    .hero__copy {
        max-width: 720px;
    }

    .hero__visual {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .metrics__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics article:nth-child(2) {
        border-right: 0;
    }

    .metrics article:nth-child(-n + 2) {
        border-bottom: 2px solid rgba(8, 10, 10, 0.17);
    }

    .section-title--split {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .section-title--split > p {
        max-width: 680px;
    }

    .problem-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid article {
        min-height: 230px;
    }

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

    .gesture-card figure {
        min-height: 470px;
    }

    .power-gallery {
        max-width: 700px;
    }

    .specs-head img {
        width: min(530px, 100%);
    }

    .delivery-card__copy {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .delivery-steps {
        grid-template-columns: 1fr;
    }

    .review-grid article {
        min-height: 0;
    }

    .order-copy {
        max-width: 700px;
    }
}

@media (max-width: 620px) {
    html {
        scroll-padding-top: 76px;
    }

    body {
        padding-bottom: 82px;
        font-size: 16px;
    }

    .shell {
        width: min(100% - 28px, 1200px);
    }

    .signal-bar__inner {
        min-height: 52px;
        flex-wrap: wrap;
        gap: 2px 14px;
        padding-block: 7px;
        font-size: 14px;
        line-height: 1.25;
        text-align: center;
    }

    .signal-bar__inner span::before {
        width: 7px;
        height: 7px;
    }

    .header__inner {
        min-height: 68px;
    }

    .brand__icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .brand strong,
    .brand small {
        font-size: 14px;
    }

    .header__inner > .action {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 46px 0 78px;
    }

    .hero__inner {
        gap: 40px;
    }

    .kicker {
        font-size: 14px;
        letter-spacing: 0.08em;
    }

    h1 {
        font-size: clamp(45px, 14vw, 62px);
    }

    h2 {
        font-size: clamp(36px, 11.5vw, 50px);
    }

    h3 {
        font-size: 21px;
    }

    .hero__lead,
    .section-title--split > p,
    .section-lead,
    .gesture-copy > p:not(.kicker),
    .power-copy > p:not(.kicker),
    .order-copy > p:not(.kicker) {
        font-size: 17px;
    }

    .hero__features {
        grid-template-columns: 1fr;
    }

    .hero__features > div {
        min-height: 70px;
    }

    .hero__buy {
        gap: 19px;
    }

    .pricing strong {
        font-size: 44px;
    }

    .action--hero {
        width: 100%;
        min-width: 0;
    }

    .hero__note {
        font-size: 14px;
        text-align: center;
    }

    .hero__visual {
        aspect-ratio: 16 / 10;
        clip-path: polygon(0 0, calc(100% - 29px) 0, 100% 29px, 100% 100%, 29px 100%, 0 calc(100% - 29px));
    }

    .hero__visual::before {
        inset: 9px;
    }

    .hero__badge {
        min-width: 95px;
        padding: 10px 12px;
    }

    .hero__badge b {
        font-size: 21px;
    }

    .hero__badge span {
        font-size: 14px;
    }

    .hero__badge--top {
        top: -13px;
        right: 13px;
    }

    .hero__badge--bottom {
        left: -7px;
        bottom: 14px;
    }

    .metrics {
        margin-top: -26px;
    }

    .metrics article {
        min-height: 105px;
        padding: 17px;
    }

    .metrics b {
        font-size: 23px;
    }

    .metrics span {
        font-size: 14px;
    }

    .section,
    .order-section {
        padding: 74px 0;
    }

    .section-title {
        margin-bottom: 34px;
    }

    .problem-grid {
        gap: 12px;
    }

    .problem-grid article {
        min-height: 0;
        padding: 26px 23px;
        box-shadow: 6px 6px 0 var(--ink);
    }

    .problem-grid article > span {
        margin-bottom: 24px;
    }

    .modes-layout,
    .power-layout,
    .kit-layout,
    .specs-layout,
    .faq-layout,
    .order-layout {
        gap: 44px;
    }

    .angled-image {
        padding: 9px;
        clip-path: polygon(0 0, calc(100% - 29px) 0, 100% 29px, 100% 100%, 29px 100%, 0 calc(100% - 29px));
    }

    .angled-image figcaption {
        right: -5px;
        bottom: 18px;
        max-width: 210px;
        font-size: 14px;
    }

    .mode-list article {
        grid-template-columns: 40px 1fr;
        padding: 11px 12px;
    }

    .gesture-card {
        min-height: 0;
        box-shadow: 7px 7px 0 var(--black);
        clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    }

    .gesture-copy {
        padding: 35px 24px;
    }

    .gesture-card figure {
        min-height: 0;
        padding: 9px;
    }

    .gesture-card img {
        height: auto;
        aspect-ratio: 1;
    }

    .use-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .use-grid article {
        min-height: 0;
        padding: 26px 23px;
    }

    .use-icon {
        margin-bottom: 29px;
    }

    .use-grid h3 {
        min-height: 0;
    }

    .power-gallery {
        grid-template-columns: 1fr 0.72fr;
    }

    .power-gallery figure:last-child {
        transform: translateY(16px);
    }

    .kit-list li {
        min-height: 78px;
    }

    .spec-table > div {
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 13px 0;
    }

    .spec-table dd {
        text-align: left;
    }

    .safety-note {
        flex-direction: column;
        gap: 4px;
        margin-top: 30px;
        font-size: 14px;
    }

    .delivery-section {
        padding: 74px 0;
    }

    .delivery-card {
        padding: 34px 23px;
        box-shadow: 7px 7px 0 var(--black);
        clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    }

    .delivery-steps {
        margin: 30px 0 25px;
    }

    .action--dark {
        width: 100%;
    }

    .review-grid article {
        padding: 26px 23px;
    }

    .faq-list summary {
        font-size: 16px;
    }

    .faq-list details p {
        margin-right: 0;
        font-size: 16px;
    }

    .order-product {
        grid-template-columns: 75px 1fr;
    }

    .order-product img {
        width: 75px;
        height: 75px;
    }

    .order-total strong {
        font-size: 40px;
    }

    .order-form {
        padding: 34px 21px;
        box-shadow: 7px 7px 0 var(--yellow);
        clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
    }

    .order-form__head span {
        padding-top: 9px;
        font-size: 27px;
    }

    .order-form input {
        min-height: 62px;
        font-size: 17px;
    }

    .field-hint,
    .field-error,
    .form-consent,
    .form-trust small {
        font-size: 14px;
    }

    .footer__inner {
        min-height: 126px;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding-block: 24px;
        font-size: 14px;
        text-align: center;
    }

    .mobile-order {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 10px;
        z-index: 60;
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 23px;
        border: 3px solid var(--black);
        color: var(--black);
        background: var(--yellow);
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.4);
        font-size: 16px;
        text-decoration: none;
        text-transform: uppercase;
        transform: translateY(110px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
        clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    }

    .mobile-order.is-visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-order span {
        font-family: "Arial Black", Arial, sans-serif;
        font-size: 22px;
    }

    .mobile-order b {
        font-size: 15px;
    }
}

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

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

/* v2: compact first viewport and rounded CTA system */
.signal-bar__inner {
    min-height: 32px;
}

.header__inner {
    min-height: 64px;
}

.action {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(244, 223, 24, 0.72);
    border-radius: 16px;
    background: linear-gradient(135deg, #fff239 0%, var(--yellow) 58%, #d9bd00 100%);
    box-shadow: 0 12px 32px rgba(244, 223, 24, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    clip-path: none;
}

.action:hover {
    background: linear-gradient(135deg, #fff878 0%, var(--yellow-hot) 66%, #e5c900 100%);
    box-shadow: 0 17px 42px rgba(244, 223, 24, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.action--compact {
    min-height: 46px;
    border-radius: 999px;
    color: var(--yellow);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.action--compact:hover {
    color: var(--black);
    background: var(--yellow);
}

.action--hero {
    min-height: 64px;
    justify-content: space-between;
    padding: 7px 8px 7px 25px;
    border-radius: 999px;
}

.action--hero span {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--yellow);
    background: var(--black);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.inline-action {
    gap: 10px;
    padding: 7px 8px 7px 19px;
    border: 1px solid rgba(244, 223, 24, 0.52);
    border-radius: 999px;
    background: rgba(244, 223, 24, 0.06);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.inline-action:hover {
    border-color: var(--yellow);
    background: rgba(244, 223, 24, 0.12);
    transform: translateY(-2px);
}

.inline-action span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--black);
    background: var(--yellow);
    font-size: 22px;
}

.action--dark {
    border: 2px solid var(--black);
    border-radius: 999px;
    color: var(--white);
    background: var(--black);
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.2);
}

.action--dark:hover {
    color: var(--black);
    background: var(--white);
}

.action--submit {
    min-height: 66px;
    justify-content: space-between;
    padding: 8px 9px 8px 25px;
    border-radius: 18px;
}

.action--submit::after {
    content: "→";
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--yellow);
    background: var(--black);
    font-size: 22px;
}

.hero {
    min-height: calc(100svh - 96px);
    display: flex;
    padding: clamp(32px, 5svh, 58px) 0;
}

.hero__inner {
    flex: 1;
}

.hero__visual {
    overflow: hidden;
    border-radius: 28px;
    clip-path: none;
}

.hero__visual::before {
    border-radius: 18px;
    clip-path: none;
}

@media (min-width: 901px) and (max-height: 820px) {
    .hero {
        padding-block: 28px;
    }

    .hero__lead,
    .hero__features,
    .hero__note {
        display: none;
    }

    h1 {
        font-size: clamp(50px, 5.7vw, 74px);
    }

    .hero__buy {
        margin-top: 30px;
    }

    .hero__visual {
        max-height: calc(100svh - 152px);
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: calc(100svh - 96px);
        padding: 24px 0 28px;
    }

    .hero__inner {
        display: grid;
        grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
        grid-template-rows: auto 1fr auto;
        grid-template-areas:
            "kicker visual"
            "title visual"
            "buy visual";
        align-items: center;
        gap: 14px 28px;
    }

    .hero__copy {
        display: contents;
    }

    .hero__copy > .kicker {
        grid-area: kicker;
        align-self: end;
        margin: 0;
    }

    .hero__copy > h1 {
        grid-area: title;
        align-self: center;
    }

    .hero__lead,
    .hero__features,
    .hero__note {
        display: none;
    }

    .hero__buy {
        grid-area: buy;
        align-self: start;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .hero__buy .pricing {
        min-width: 135px;
    }

    .hero__buy .action--hero {
        width: auto;
        min-width: 0;
        flex: 1;
    }

    .hero__visual {
        grid-area: visual;
        width: 100%;
        height: 100%;
        min-height: 360px;
        max-height: calc(100svh - 146px);
        aspect-ratio: auto;
        border-radius: 24px;
    }
}

@media (max-width: 620px) {
    body {
        padding-bottom: 82px;
    }

    .signal-bar__inner {
        min-height: 32px;
        flex-wrap: nowrap;
        padding-block: 4px;
    }

    .signal-bar__inner span:nth-child(2) {
        display: none;
    }

    .header__inner {
        min-height: 58px;
    }

    .brand__icon {
        width: 36px;
        height: 36px;
    }

    .brand small {
        display: none;
    }

    .hero {
        min-height: calc(100svh - 90px);
        padding: 12px 0 18px;
    }

    .hero__inner {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto minmax(165px, 1fr) auto;
        grid-template-areas:
            "kicker"
            "title"
            "visual"
            "buy";
        gap: clamp(7px, 1.5svh, 12px);
    }

    .hero__copy > .kicker {
        display: none;
    }

    .hero__copy > h1 {
        align-self: center;
        font-size: clamp(36px, 11.4vw, 48px);
        line-height: 0.9;
    }

    .hero__copy > h1 em {
        margin-top: 5px;
    }

    .hero__visual {
        min-height: 0;
        max-height: none;
        border-radius: 18px;
    }

    .hero__visual::before {
        inset: 7px;
        border-radius: 13px;
    }

    .hero__badge--bottom {
        display: none;
    }

    .hero__badge--top {
        top: 8px;
        right: 8px;
    }

    .hero__badge {
        min-width: 82px;
        padding: 8px 10px;
        border-radius: 12px;
        box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.48);
        transform: none;
    }

    .hero__badge b {
        font-size: 19px;
    }

    .hero__buy {
        display: grid;
        grid-template-columns: 108px minmax(0, 1fr);
        align-items: center;
        gap: 9px;
    }

    .hero__buy .pricing {
        min-width: 0;
    }

    .pricing > span {
        gap: 5px;
    }

    .pricing s,
    .pricing i {
        font-size: 14px;
    }

    .pricing strong {
        font-size: 38px;
    }

    .pricing strong small {
        font-size: 14px;
    }

    .hero__buy .action--hero {
        min-height: 60px;
        padding: 6px 7px 6px 16px;
        gap: 8px;
        border-radius: 18px;
        font-size: 14px;
        line-height: 1.15;
    }

    .action--hero span {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 20px;
    }

    .metrics {
        margin-top: 0;
    }

    .mobile-order {
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 18px;
        background: linear-gradient(135deg, #fff239 0%, var(--yellow) 68%, #d9bd00 100%);
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
        clip-path: none;
    }
}

@media (max-width: 620px) and (max-height: 700px) {
    .hero__copy > h1 {
        font-size: clamp(34px, 10.7vw, 42px);
    }

    .hero__inner {
        grid-template-rows: auto auto minmax(140px, 1fr) auto;
        gap: 6px;
    }

    .hero__badge {
        display: none;
    }

    .pricing strong {
        font-size: 35px;
    }

    .hero__buy .action--hero {
        min-height: 56px;
    }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 600px) {
    .signal-bar {
        display: none;
    }

    .header__inner {
        min-height: 54px;
    }

    .hero {
        min-height: calc(100svh - 54px);
        padding: 10px 0 12px;
    }

    .hero__inner {
        grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
        grid-template-rows: 1fr auto;
        grid-template-areas:
            "title visual"
            "buy visual";
        gap: 8px 20px;
    }

    .hero__copy > .kicker {
        display: none;
    }

    .hero__copy > h1 {
        font-size: clamp(32px, 5.2vw, 48px);
    }

    .hero__visual {
        min-height: 0;
        max-height: none;
    }

    .hero__badge {
        display: none;
    }

    .hero__buy .pricing strong {
        font-size: 35px;
    }

    .hero__buy .action--hero {
        min-height: 54px;
    }
}

/* V3: збалансований перший екран на смартфонах */
@media (max-width: 620px) {
    .hero {
        min-height: 0;
        height: auto;
        padding: 18px 0 26px;
    }

    .hero__inner {
        width: 100%;
        max-width: 560px;
        margin-inline: auto;
        padding-inline: 18px;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto auto auto;
        gap: 14px;
        align-content: start;
    }

    .hero__copy > h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(34px, 10.5vw, 46px);
        line-height: 0.92;
        overflow-wrap: normal;
    }

    .hero__visual {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
        margin: 2px 0 4px;
        aspect-ratio: 16 / 10;
        border-radius: 18px;
    }

    .hero__visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero__buy {
        width: 100%;
        grid-template-columns: minmax(118px, 126px) minmax(0, 1fr);
        gap: 12px;
        margin-top: 2px;
    }

    .hero__buy .pricing {
        min-width: 0;
    }

    .pricing > span {
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .pricing strong {
        display: flex;
        align-items: baseline;
        gap: 5px;
        font-size: 38px;
        line-height: 1;
        white-space: nowrap;
    }

    .pricing strong small {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .hero__buy .action--hero {
        width: 100%;
        min-width: 0;
        min-height: 60px;
        padding: 6px 7px 6px 18px;
    }
}

@media (max-width: 620px) and (max-height: 700px) {
    .signal-bar {
        display: none;
    }

    .hero {
        padding: 12px 0 18px;
    }

    .hero__inner {
        padding-inline: 14px;
        gap: 9px;
    }

    .hero__copy > h1 {
        font-size: clamp(32px, 10vw, 40px);
    }

    .hero__visual {
        aspect-ratio: 16 / 9;
        margin-block: 0;
    }

    .hero__buy {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 9px;
    }

    .pricing strong {
        font-size: 35px;
    }

    .hero__buy .action--hero {
        min-height: 56px;
        padding-left: 14px;
    }
}
