:root {
  --green: #17a84b;
  --green-dark: #0d7f36;
  --red: #ef233c;
  --text: #111827;
  --muted: #6b7280;
  --line: #eef0f3;
  --soft: #f7f9f7;
  --white: #ffffff;
  --shadow: 0 14px 38px rgba(17, 24, 39, 0.12);
  --radius: 18px;
  --dark: #151515;
  --dark-2: #1d1d1d;
  --dark-card: rgba(255, 255, 255, 0.06);
  --dark-line: rgba(255, 255, 255, 0.1);
  --yellow: #ffe45c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #111111;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.page,
.footer {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.page {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 224, 88, 0.12), transparent 28%),
    radial-gradient(circle at 86% 58%, rgba(239, 35, 60, 0.14), transparent 26%),
    var(--dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 45%, rgba(255, 224, 88, 0.16), transparent 35%),
    radial-gradient(circle at 85% 88%, rgba(239, 35, 60, 0.22), transparent 30%),
    linear-gradient(180deg, #1d1d1d 0%, #151515 100%);
  color: var(--white);
}

.hero__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 70px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(21, 21, 21, 0.94);
  overflow: hidden;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  color: var(--white);
  font-size: clamp(13px, 3.7vw, 18px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.hero__brand span {
  flex: 0 0 auto;
  font-size: clamp(18px, 5vw, 22px);
}

.hero__brand mark {
  background: transparent;
  color: #ffe45c;
}

.hero__stock {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  max-width: 43%;
  padding: 9px 9px;
  border-radius: 999px;
  background: #f2484b;
  color: var(--white);
  box-shadow: 0 12px 25px rgba(242, 72, 75, 0.34);
  font-size: clamp(9px, 2.8vw, 13px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.hero__stock span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
}

.hero__header {
  padding: 46px 16px 28px;
  background: transparent;
  text-align: center;
}

.hero__sale-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto 44px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 78, 78, 0.48);
  border-radius: 999px;
  background: rgba(255, 78, 78, 0.08);
  color: #ff4d4d;
  box-shadow: 0 0 22px rgba(255, 78, 78, 0.08);
  font-size: clamp(14px, 4.7vw, 22px);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.hero__media {
  position: relative;
  margin: 0 12px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.34);
}

.hero__discount {
  position: absolute;
  right: 12px;
  bottom: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 46px;
  border-radius: 999px;
  background: #ff4d4d;
  color: var(--white);
  box-shadow: 0 12px 25px rgba(255, 77, 77, 0.32);
  font-size: 22px;
  font-weight: 900;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 28px 12px 30px;
}

.hero__eyebrow {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 168, 75, 0.12);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 100%;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(18px, 5vw, 28px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h1 span:last-child {
  margin-top: 4px;
  color: #ffe45c;
}

.hero__subtitle {
  margin-bottom: 0;
  color: #2f3a33;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 800;
}

.hero__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.hero__features span,
.benefit-card,
.kit-list li,
.steps li {
  border-radius: var(--radius);
  border: 1px solid var(--dark-line);
  background: var(--dark-card);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.hero__features span {
  color: var(--text);
  padding: 12px 14px;
  font-weight: 800;
}

.sale-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(239, 35, 60, 0.35);
  transform: rotate(-8deg);
}

.sale-badge--small {
  position: relative;
  top: auto;
  right: auto;
  min-width: 68px;
  height: 68px;
  margin: -48px auto 8px;
  font-size: 22px;
}

.price-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 16px;
  width: max-content;
  max-width: 100%;
  margin: 0 0 28px 28px;
}

.price-card div,
.order__price {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  padding: 14px;
  box-shadow: var(--shadow);
}

.hero .price-card div {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.price-card span,
.order__price span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero .price-card span {
  font-size: clamp(13px, 3.6vw, 18px);
  line-height: 1.05;
  font-weight: 800;
  white-space: nowrap;
}

.hero .price-card__old {
  text-align: right;
  min-width: 0;
}

.hero .price-card__old span {
  color: #9db4c7;
  font-weight: 500;
}

.hero .price-card__new span {
  color: #ffe45c;
  font-weight: 900;
}

.hero .old-price {
  display: block;
  color: #7d8793;
  font-size: clamp(18px, 5vw, 24px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.hero .new-price {
  display: block;
  color: #ffe45c;
  font-size: clamp(36px, 10.8vw, 50px);
  line-height: 0.9;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.24);
  white-space: nowrap;
}

.hero .btn--primary {
  width: 100%;
  min-height: 72px;
  border-radius: 18px;
  background: #ffdf55;
  color: #101010;
  box-shadow: 0 12px 28px rgba(255, 223, 85, 0.24);
  font-size: clamp(17px, 4.6vw, 22px);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero .btn--primary:hover {
  background: #ffd336;
}

@media (max-width: 360px) {
  .hero__topbar {
    padding-right: 10px;
    padding-left: 10px;
  }

  h1 span {
    white-space: normal;
  }

  .hero__sale-line {
    padding-right: 14px;
    padding-left: 14px;
  }

  .price-card {
    gap: 10px;
  }

}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 800;
}

.new-price {
  color: var(--red);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.btn {
  min-height: 58px;
  border: 0;
  border-radius: var(--radius);
  padding: 16px 22px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--yellow);
  color: #101010;
  box-shadow: 0 12px 28px rgba(255, 228, 92, 0.24);
}

.btn--primary:hover {
  background: #ffd336;
  transform: translateY(-2px);
}

.section,
.product-block,
.order {
  padding: 32px 16px;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 224, 88, 0.08), transparent 30%),
    linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.section:nth-of-type(even),
.order {
  background:
    radial-gradient(circle at 84% 18%, rgba(239, 35, 60, 0.12), transparent 30%),
    linear-gradient(180deg, #171717 0%, #101010 100%);
}

.section__head {
  margin-bottom: 18px;
}

.section__head--accent {
  position: relative;
  padding-left: 24px;
  text-align: left;
}

.section__head--accent::before {
  content: "";
  position: absolute;
  top: 0.12em;
  bottom: 0.12em;
  left: 0;
  width: 6px;
  background: var(--yellow);
}

.section__head--accent h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 8.5vw, 38px);
  line-height: 1.08;
  white-space: normal;
}

.section__label {
  display: inline-flex;
  margin-bottom: 8px;
  max-width: 100%;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 78, 78, 0.38);
  background: rgba(255, 78, 78, 0.08);
  color: #ff5a5a;
  font-size: clamp(16px, 4.6vw, 22px);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(18px, 5vw, 22px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
}

.product-block h2,
.section__head--accent h2,
.steps-section h2 {
  color: var(--yellow);
}

.benefits h2 {
  white-space: nowrap;
  text-align: center;
}

.benefits .section__head {
  text-align: center;
}

h3 {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 20px;
  font-weight: 900;
}

p {
  color: rgba(255, 255, 255, 0.76);
}

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

.benefit-card {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 18px 12px;
  font-size: 16px;
  font-weight: 800;
}

.benefit-card__icon {
  display: block;
  margin-bottom: 14px;
  font-size: 31px;
  line-height: 1;
}

.benefit-card h3 {
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: clamp(15px, 4.2vw, 20px);
  line-height: 1.1;
}

.benefit-card p {
  margin-bottom: 0;
  color: #aec1d3;
  font-size: clamp(12px, 3.25vw, 15px);
  line-height: 1.42;
  font-weight: 500;
}

.product-block img,
.reviews img,
.video-card,
.order__card {
  border-radius: var(--radius);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
}

.product-block img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-block__body {
  padding-top: 18px;
}

.feature-title-list {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.feature-title-list li {
  color: var(--yellow);
  font-size: clamp(18px, 5vw, 22px);
  line-height: 1.1;
  font-weight: 900;
}

.check-list,
.kit-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.kit-list li {
  color: var(--white);
  padding: 16px;
  font-weight: 800;
}

.kit-list__name {
  color: var(--yellow);
}

.kit-list__qty {
  color: var(--white);
}

.video-card {
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.product-description p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.specs {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--dark-card);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.specs div {
  display: grid;
  gap: 4px;
  padding: 15px;
  border-bottom: 1px solid var(--dark-line);
}

.specs div:last-child {
  border-bottom: 0;
}

.specs dt {
  color: rgba(255, 228, 92, 0.86);
  font-weight: 800;
}

.specs dd {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.reviews-carousel {
  position: relative;
}

.reviews-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.reviews-carousel__track {
  display: flex;
  transition: transform 0.35s ease;
  touch-action: pan-y;
}

.reviews-carousel__slide {
  min-width: 100%;
  padding: 0 2px;
}

.reviews-carousel img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
  user-select: none;
  -webkit-user-drag: none;
}

.reviews-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.9);
  color: var(--yellow);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.reviews-carousel__btn--prev {
  left: -2px;
}

.reviews-carousel__btn--next {
  right: -2px;
}

.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.reviews-carousel__dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: width 0.25s ease, background 0.25s ease;
}

.reviews-carousel__dots span.is-active {
  width: 22px;
  background: var(--yellow);
}

.steps {
  display: grid;
  position: relative;
  gap: 24px;
  margin: 0;
  padding: 6px 0 10px;
  list-style: none;
}

.steps::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-50%);
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px minmax(0, 1fr);
  align-items: center;
  min-height: 112px;
  color: var(--white);
  font-weight: 500;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.steps span {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #191919;
  color: var(--yellow);
  box-shadow: 0 0 24px rgba(255, 228, 92, 0.18);
  font-weight: 900;
}

.steps p {
  margin: 0;
  padding: 18px 16px;
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  background: var(--dark-card);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  font-size: clamp(14px, 4vw, 18px);
  line-height: 1.35;
}

.steps li:nth-child(odd) p {
  grid-column: 3;
}

.steps li:nth-child(even) p {
  grid-column: 1;
}

.order {
  padding-bottom: 96px;
}

.order__card {
  position: relative;
  padding: 28px 16px 18px;
  border: 1px solid var(--dark-line);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 224, 88, 0.1), transparent 34%),
    var(--dark-card);
  text-align: center;
}

.timer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px auto;
  padding: 10px;
  border-radius: var(--radius);
  background: #111827;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0;
}

.timer__part {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 42px;
  padding: 0 4px;
  border-radius: 10px;
  background: var(--yellow);
  color: #101010;
  box-shadow: 0 10px 20px rgba(255, 228, 92, 0.16);
}

.timer__part strong {
  font-size: clamp(20px, 5.6vw, 26px);
  line-height: 1;
}

.timer__part small {
  font-size: clamp(11px, 3.1vw, 14px);
  line-height: 1;
  font-weight: 900;
}

.order__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.order .old-price {
  color: #8d96a3;
}

.order .new-price {
  color: var(--yellow);
}

.order-form {
  display: grid;
  gap: 13px;
  text-align: left;
}

.order-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-weight: 800;
}

.order-form input {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 16px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.order-form input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 228, 92, 0.12);
}

.order-form input.is-invalid {
  border-color: #ff4d4d;
  box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.12);
}

.order-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.field-error {
  display: none;
  margin-top: 7px;
  color: #ff5a5a;
  font-size: 14px;
  font-weight: 800;
}

.field-error.is-visible {
  display: block;
}

.footer {
  padding: 28px 16px 96px;
  background: #101820;
  color: var(--white);
  text-align: center;
}

.footer p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.footer nav {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.sticky-order {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 20px), 460px);
  margin: 0 auto;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--dark-line);
  background: rgba(18, 18, 18, 0.94);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.sticky-order strong {
  padding-left: 8px;
  color: var(--yellow);
  font-size: 24px;
  font-weight: 900;
}

.sticky-order .btn {
  min-height: 48px;
  padding: 12px 18px;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.lead-popup.is-open {
  display: flex;
}

.lead-popup__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 228, 92, 0.18), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(239, 35, 60, 0.16), transparent 30%),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
}

.lead-popup__content {
  position: relative;
  width: min(100%, 420px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 228, 92, 0.14), transparent 34%),
    rgba(21, 21, 21, 0.92);
  padding: 46px 18px 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  animation: modalIn 0.24s ease both;
}

.lead-popup__content h2 {
  max-width: 360px;
  margin: 0 auto 18px;
  color: var(--yellow);
  font-size: clamp(13px, 3.2vw, 16px);
  line-height: 1.2;
  text-align: center;
  font-weight: 950;
}

.lead-popup__form {
  gap: 12px;
}

.lead-popup__form .btn {
  width: 100%;
}

.lead-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.modal__content {
  position: relative;
  width: min(100%, 420px);
  border-radius: var(--radius);
  background: var(--white);
  padding: 72px 18px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  animation: modalIn 0.24s ease both;
}

.modal__content h2 {
  margin-bottom: 10px;
  color: #101010;
  font-size: 30px;
}

.modal__content p {
  max-width: 320px;
  margin: 0 auto 24px;
  color: #2b2b2b;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.modal__content .btn {
  width: auto;
  min-width: 150px;
  min-height: 64px;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f2f4f7;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 481px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 78, 78, 0.18), transparent 32%),
      #111111;
  }

  .page,
  .footer {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 60px rgba(0, 0, 0, 0.38);
  }
}
