:root {
  --bg: #eef2f7;
  --surface: #ffffff;
  --line: #d7deea;
  --text: #101828;
  --text-muted: #4a5a73;
  --blue: #0a57d0;
  --blue-deep: #093580;
  --blue-hover: #0c63ea;
  --shadow-xl: 0 32px 80px rgba(9, 53, 128, 0.16);
  --shadow-lg: 0 20px 45px rgba(16, 24, 40, 0.12);
  --shadow-md: 0 12px 28px rgba(16, 24, 40, 0.1);
  --shadow-sm: 0 8px 18px rgba(16, 24, 40, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: 1220px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(10, 87, 208, 0.12), transparent 30%),
    linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
}

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

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

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), rgba(10, 87, 208, 0.2));
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-head p:last-child {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0f65e5 0%, var(--blue) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: linear-gradient(180deg, #1b71f0 0%, var(--blue-hover) 100%);
  box-shadow: var(--shadow-md);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 16px 0;
  border-bottom: 1px solid rgba(215, 222, 234, 0.6);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.header-logo {
  height: 28px;
  width: auto;
}

.header-lockup {
  justify-self: center;
  height: 26px;
  width: auto;
}

.header-divider {
  width: 1px;
  height: 26px;
  background: var(--line);
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(10, 87, 208, 0.08);
  color: var(--blue);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-link:hover,
.header-link:focus-visible {
  background: var(--blue);
  color: #fff;
}

.hero {
  padding: 0 0 26px;
  overflow-x: clip;
  background: #fff;
}

.hero-shell {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
}

.hero-topline {
  position: relative;
  width: 100%;
  height: 142px;
  overflow: hidden;
  --hero-brand-top: 36px;
  --hero-brand-lockup-width: 148px;
  --hero-ribbon-width: 286px;
  --hero-ribbon-height: 112px;
  --hero-badge-top: 22px;
  --hero-badge-width: 68px;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 12px;
  min-height: 600px;
  margin-inline: 0;
  padding: 18px 0 24px;
  background: #e5e5e5;
  box-shadow: 0 0 0 100vmax #e5e5e5;
  clip-path: inset(0 -100vmax);
}

.hero-brand-row {
  position: absolute;
  z-index: 2;
  top: var(--hero-brand-top);
  left: 0;
  width: max(0px, calc(50% - (var(--hero-ribbon-width) / 2)));
  display: flex;
  align-items: center;
}

.hero-brand-lockup {
  display: block;
  width: min(100%, var(--hero-brand-lockup-width));
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.hero-ribbon {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--hero-ribbon-width);
  height: var(--hero-ribbon-height);
  background: #1151d6;
  clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
  flex: 0 0 auto;
}

.hero-cpu-badge {
  position: absolute;
  z-index: 3;
  top: var(--hero-badge-top);
  right: 0;
  width: var(--hero-badge-width);
  height: auto;
  flex: 0 0 auto;
}

.hero-device-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 0;
}

.hero-device {
  width: auto;
  max-width: min(100%, 900px);
  height: auto;
}

.hero-copy {
  width: 100%;
  max-width: 470px;
  margin: 0;
  text-align: left;
  align-self: center;
}

.hero-copy h1 {
  font-size: clamp(3.15rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-subtitle {
  max-width: 420px;
  margin-top: 22px;
  color: #111;
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.hero-text {
  width: 100%;
  max-width: 540px;
  margin: 28px 0 0;
  color: #1d1d1f;
  font-size: clamp(1rem, 1.08vw, 1.22rem);
  line-height: 1.34;
  letter-spacing: -0.02em;
}

.benefits {
  padding: 24px 0 36px;
  background: #fff;
}

.products {
  padding: 28px 0 28px;
}

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

.benefit-card {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 18px 18px 20px;
  border-radius: 14px;
  background: #f4f4f4;
  box-shadow: none;
}

.benefit-media {
  aspect-ratio: 1.32 / 1;
  overflow: hidden;
  border-radius: 10px;
}

.benefit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-body {
  display: grid;
  gap: 18px;
  padding: 2px 4px 4px;
}

.benefit-body h3 {
  color: #111;
  font-size: clamp(1.4rem, 1.9vw, 1.95rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.benefit-body p {
  color: #232323;
  font-size: clamp(0.98rem, 1.12vw, 1.12rem);
  line-height: 1.36;
  letter-spacing: -0.025em;
}

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

.product-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 14px 14px 18px;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 296px;
  padding: 8px 10px 2px;
  border-radius: 8px;
  background: transparent;
}

.product-media img {
  width: min(100%, 356px);
  max-height: 278px;
  object-fit: contain;
}

.product-content {
  display: grid;
  gap: 18px;
}

.product-content h3 {
  color: #111;
  font-size: clamp(1.28rem, 1.85vw, 1.72rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.product-title-main,
.product-title-code {
  display: block;
}

.product-title-code {
  margin-top: 6px;
}

.product-price {
  color: #0a0a0a;
  font-size: clamp(1.5rem, 2.05vw, 1.98rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.product-specs {
  color: #1f1f1f;
  font-size: clamp(0.98rem, 1.06vw, 1.14rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.buy-stack {
  --buy-button-height: 72px;
  --buy-step: 78px;
  position: relative;
  overflow: visible;
  min-height: var(--buy-button-height);
}

.buy-stack.is-open {
  z-index: 18;
}

.buy-toggle {
  position: relative;
  z-index: 8;
  justify-content: center;
  min-height: var(--buy-button-height);
  padding-inline: 24px;
  border: 1px solid #1151d6;
  border-radius: 10px;
  background: #1151d6;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  box-shadow:
    0 20px 36px rgba(17, 81, 214, 0.2),
    0 10px 22px rgba(16, 24, 40, 0.12);
  transition:
    transform 0.24s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.buy-toggle:hover,
.buy-toggle:focus-visible,
.buy-stack.is-open .buy-toggle {
  background: #1151d6;
  color: #fff;
  border-color: #1151d6;
  box-shadow:
    0 20px 36px rgba(17, 81, 214, 0.22),
    0 10px 22px rgba(16, 24, 40, 0.12);
}

.buy-toggle:active {
  transform: translateY(1px);
}

.buy-fan {
  position: absolute;
  inset: 0 0 auto 0;
  height: var(--buy-button-height);
  pointer-events: none;
  z-index: 4;
}

.buy-stack.is-open .buy-fan {
  height: calc(var(--buy-button-height) + (var(--store-count) * var(--buy-step)));
  pointer-events: auto;
}

.store-link {
  position: absolute;
  inset-inline: 0;
  top: 0;
  min-height: var(--buy-button-height);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-inline: 14px;
  border: 1px solid rgba(17, 81, 214, 0.22);
  border-radius: 10px;
  background: #fff;
  color: #1151d6;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.985);
  transform-origin: center top;
  z-index: calc(12 - var(--fan-index));
  box-shadow:
    0 16px 30px rgba(17, 81, 214, 0.08),
    0 6px 16px rgba(16, 24, 40, 0.08);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.buy-stack.is-open .store-link {
  opacity: 1;
  pointer-events: auto;
  transition-delay: var(--stack-delay, 0ms);
  transform:
    translateY(calc((var(--fan-index) + 1) * var(--buy-step)))
    scale(1);
}

.buy-stack.is-open .store-link:active {
  transform:
    translateY(calc(((var(--fan-index) + 1) * var(--buy-step)) + 1px))
    scale(1);
}

.store-link:hover,
.store-link:focus-visible {
  background: #1151d6;
  color: #fff;
  border-color: #1151d6;
  box-shadow:
    0 22px 42px rgba(17, 81, 214, 0.24),
    0 12px 22px rgba(16, 24, 40, 0.14);
}

.store-copy {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 3px;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 auto;
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.store-copy strong {
  font-weight: 700;
}

.store-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 112px;
  min-height: 34px;
  padding: 0;
  margin-left: auto;
}

.store-brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 96px;
  max-height: 26px;
}

.store-link--rozetka .store-brand img {
  max-width: 96px;
  max-height: 16px;
}

.store-link--comfy .store-brand img {
  max-width: 82px;
  max-height: 24px;
}

.store-link--brain .store-brand img {
  max-width: 88px;
  max-height: 26px;
}

.site-footer {
  margin-top: 40px;
  padding: 52px 0 42px;
  background: #fff;
}

.footer-shell {
  display: grid;
  gap: 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
}

.footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.footer-lockup__hp {
  width: 56px;
  height: auto;
  flex: 0 0 auto;
}

.footer-lockup__slash {
  color: #5a5a5a;
  font-size: 2.9rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
  flex: 0 0 auto;
}

.footer-lockup__platform {
  width: 104px;
  height: auto;
  flex: 0 0 auto;
}

.footer-anniversary {
  display: flex;
  justify-self: end;
  justify-content: flex-end;
}

.footer-anniversary__image {
  width: min(100%, 144px);
  height: auto;
}

.footer-nav {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 20px;
  color: #767676;
  font-size: 1.02rem;
  line-height: 1.2;
}

.footer-nav a {
  color: inherit;
}

.footer-nav__slash {
  color: #8b8b8b;
  font-size: 2rem;
  line-height: 1;
}

.footer-disclaimer {
  color: #717171;
  font-size: 0.98rem;
  line-height: 1.72;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
  color: #7b7b7b;
  font-size: 0.92rem;
  line-height: 1.4;
}

.footer-legal a {
  color: inherit;
}

.footer-legal__button {
  padding: 0;
  color: inherit;
  line-height: inherit;
}

.footer-legal__button:hover,
.footer-legal__button:focus-visible {
  color: #4f4f4f;
}

.footer-legal__sep {
  color: #b0b0b0;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 20, 34, 0.52);
  backdrop-filter: blur(4px);
}

.legal-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(88vh, 980px);
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(16, 24, 40, 0.24);
  overflow: hidden;
}

.legal-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px 20px;
  border-bottom: 1px solid #e7e7e7;
}

.legal-modal__header h2 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.legal-modal__close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #606060;
  font-size: 1.9rem;
  line-height: 1;
}

.legal-modal__close:hover,
.legal-modal__close:focus-visible {
  background: #f2f4f7;
  color: #1a1a1a;
}

.legal-modal__body {
  overflow: auto;
  padding: 26px 28px 30px;
}

.legal-modal__status {
  color: #4f5665;
  font-size: 1rem;
  line-height: 1.65;
}

.legal-modal__status--error {
  color: #8a1f1f;
}

.legal-doc {
  display: grid;
  gap: 14px;
  color: #3f4450;
}

.legal-doc h2,
.legal-doc h3 {
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.legal-doc h2 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.legal-doc h3 {
  margin-top: 10px;
  font-size: clamp(1.08rem, 1.3vw, 1.22rem);
}

.legal-doc p,
.legal-doc li {
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-doc ul {
  margin: 0;
  padding-left: 20px;
}

.legal-doc a {
  color: #1151d6;
}

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

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  width: min(420px, calc(100% - 32px));
}

.cookie-banner__content {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(12, 17, 29, 0.96);
  box-shadow: var(--shadow-lg);
}

.cookie-banner__content p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  line-height: 1.65;
}

.cookie-banner__button {
  width: auto;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-shell {
    width: min(100%, calc(100% - 36px));
    padding-top: 0;
  }

  .hero-topline {
    --hero-brand-top: 30px;
    --hero-brand-lockup-width: 128px;
    --hero-ribbon-width: 238px;
    --hero-ribbon-height: 94px;
    --hero-badge-top: 18px;
    --hero-badge-width: 58px;
    height: 120px;
  }

  .hero-stage {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    min-height: 520px;
    padding: 22px 0 28px;
    gap: 18px;
  }

  .hero-device-wrap {
    min-height: 0;
    justify-content: flex-end;
  }

  .hero-device {
    max-width: min(100%, 760px);
  }

  .hero-copy {
    max-width: 430px;
  }

  .hero-text {
    margin-top: 24px;
  }

  .benefits {
    padding-top: 22px;
  }

  .benefit-grid {
    gap: 22px;
  }

  .product-grid {
    gap: 24px;
  }

  .benefit-card {
    gap: 20px;
    padding: 18px;
  }

  .benefit-body {
    gap: 16px;
    padding-inline: 4px;
  }

  .footer-top {
    grid-template-columns: auto auto;
    justify-content: space-between;
    row-gap: 22px;
  }

  .footer-anniversary {
    order: 3;
    grid-column: 1 / -1;
  }

  .footer-lockup__hp {
    width: 52px;
  }

  .footer-lockup__slash {
    font-size: 2.6rem;
  }

  .footer-lockup__platform {
    width: 96px;
  }
}

@media (max-width: 860px) {
  .benefit-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-topline {
    --hero-brand-top: 28px;
    --hero-brand-lockup-width: 108px;
    --hero-ribbon-width: 188px;
    --hero-ribbon-height: 74px;
    --hero-badge-top: 16px;
    --hero-badge-width: 52px;
    height: 104px;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 38px 28px 28px;
    gap: 16px;
  }

  .hero-device-wrap {
    order: -1;
    justify-content: center;
  }

  .hero-device {
    max-width: min(100%, 590px);
    height: auto;
  }

  .hero-copy {
    order: 2;
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 7vw, 4rem);
  }

  .hero-subtitle {
    max-width: 540px;
  }

  .hero-text {
    margin-top: 24px;
    line-height: 1.34;
  }

  .benefits {
    padding-top: 26px;
  }

  .benefit-grid {
    gap: 18px;
  }

  .benefit-card {
    padding: 18px;
  }

  .benefit-media {
    aspect-ratio: 1.3 / 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-self: center;
  }

  .footer-lockup {
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-bottom: 12px;
  }

  .benefits,
  .products {
    padding-top: 28px;
  }

  .product-card {
    padding: 18px;
  }

  .product-media {
    min-height: 220px;
  }

  .product-content h3 {
    font-size: 1.28rem;
  }

  .product-price {
    font-size: 1.7rem;
  }

  .hero-shell {
    width: min(100%, calc(100% - 20px));
    padding-top: 0;
  }

  .hero-topline {
    --hero-brand-top: 34px;
    --hero-brand-lockup-width: 76px;
    --hero-ribbon-width: 96px;
    --hero-ribbon-height: 76px;
    --hero-badge-top: 18px;
    --hero-badge-width: 56px;
    height: 118px;
  }

  .hero-stage {
    padding: 28px 22px 22px;
    gap: 18px;
  }

  .hero-device-wrap {
    justify-content: center;
  }

  .hero-device {
    max-width: min(100%, 440px);
  }

  .hero-copy {
    max-width: none;
  }

  .hero-subtitle {
    margin-top: 14px;
    max-width: none;
  }

  .hero-text {
    margin-top: 20px;
    line-height: 1.34;
  }

  .buy-stack {
    --buy-button-height: 68px;
    --buy-step: 64px;
  }

  .store-link {
    min-height: 58px;
    justify-content: flex-start;
    gap: 4px;
    padding-inline: 10px;
    flex-wrap: nowrap;
  }

  .store-copy {
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 2px;
    font-size: 0.8rem;
    line-height: 0.96;
    letter-spacing: -0.04em;
    min-width: 0;
    flex: 1 1 auto;
  }

  .store-brand {
    flex: 0 0 96px;
    width: 96px;
    min-width: 96px;
    min-height: 24px;
    padding: 0 0 0 6px;
    margin-left: auto;
  }

  .store-brand img {
    max-width: 88px;
    max-height: 24px;
  }

  .footer-shell {
    gap: 22px;
  }

  .footer-lockup__hp {
    width: 48px;
  }

  .footer-lockup__slash {
    font-size: 2.35rem;
  }

  .footer-lockup__platform {
    width: 88px;
  }

  .footer-anniversary {
    justify-self: center;
    justify-content: center;
  }

  .footer-nav {
    gap: 14px;
    font-size: 1rem;
  }

  .footer-disclaimer {
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero-shell {
    width: min(100%, calc(100% - 14px));
  }

  .hero-topline {
    --hero-brand-top: 30px;
    --hero-brand-lockup-width: 64px;
    --hero-ribbon-width: 80px;
    --hero-ribbon-height: 64px;
    --hero-badge-top: 16px;
    --hero-badge-width: 48px;
    height: 104px;
  }

  .hero-stage {
    padding: 24px 18px 18px;
  }

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

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .product-price {
    font-size: 1.82rem;
  }

  .hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.24;
  }

  .hero-text {
    font-size: 0.95rem;
    line-height: 1.34;
  }

  .product-media img {
    max-height: 184px;
  }

  .btn {
    min-height: 54px;
    padding-inline: 16px;
    font-size: 0.95rem;
  }

  .store-link {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    padding-block: 0;
    padding-inline: 10px;
    min-height: 60px;
  }

  .store-brand {
    width: auto;
    min-width: 106px;
    min-height: 24px;
    padding: 0;
    margin-left: 0;
  }

  .store-copy {
    font-size: 0.74rem;
    gap: 2px;
    line-height: 0.95;
    letter-spacing: -0.05em;
  }

  .store-brand img {
    max-width: 78px;
    max-height: 20px;
  }

  .store-link--rozetka .store-brand img {
    max-width: 76px;
    max-height: 14px;
  }

  .store-link--comfy .store-brand img {
    max-width: 68px;
    max-height: 20px;
  }

  .store-link--brain .store-brand img {
    max-width: 74px;
    max-height: 22px;
  }

  .buy-stack {
    --buy-step: 60px;
    --buy-button-height: 68px;
  }

  .site-footer {
    padding: 40px 0 34px;
  }

  .footer-lockup {
    gap: 10px;
  }

  .footer-lockup__hp {
    width: 42px;
  }

  .footer-lockup__slash {
    font-size: 2rem;
  }

  .footer-lockup__platform {
    width: 74px;
  }

  .footer-anniversary__image {
    width: min(100%, 128px);
    margin-inline: auto;
  }

  .footer-nav {
    gap: 10px;
    font-size: 0.95rem;
  }

  .footer-nav__slash {
    font-size: 1.4rem;
  }

  .footer-legal {
    gap: 8px 12px;
    font-size: 0.88rem;
  }
}
