:root {
  --font-display: 'Urbanist', 'Segoe UI', sans-serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.2vw, 0.875rem);
  --text-sm: clamp(0.9rem, 0.84rem + 0.25vw, 1rem);
  --text-base: clamp(1rem, 0.96rem + 0.24vw, 1.08rem);
  --text-lg: clamp(1.15rem, 1rem + 0.7vw, 1.45rem);
  --text-xl: clamp(1.65rem, 1.2rem + 1.6vw, 2.35rem);
  --text-2xl: clamp(2.75rem, 1.3rem + 4vw, 5.4rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.1rem;
  --radius-xl: 1.6rem;
  --radius-full: 999px;

  --color-bg: #040713;
  --color-surface: rgba(9, 12, 28, 0.9);
  --color-surface-2: rgba(12, 15, 34, 0.96);
  --color-border: rgba(173, 92, 255, 0.2);
  --color-text: #f6f4ff;
  --color-text-muted: #d8d3ed;
  --color-text-faint: #9890b6;

  --color-primary: #bf52ff;
  --color-primary-2: #7a4dff;
  --color-pink: #ff56c5;
  --color-blue: #5f9dff;
  --color-green: #56da84;

  --shadow-card: 0 24px 60px rgba(2, 4, 12, 0.5);
  --shadow-glow: 0 0 0 1px rgba(186, 92, 255, 0.16), 0 0 36px rgba(123, 45, 255, 0.12);
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.8rem;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(circle at 20% 20%, rgba(132, 55, 255, 0.08), transparent 20%),
    radial-gradient(circle at 82% 12%, rgba(211, 82, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #030511 0%, #050814 36%, #040611 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.16;
  mask-image: radial-gradient(circle at center, black 38%, transparent 88%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  z-index: 3000;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: #fff;
  color: #111;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(2rem, 5vw, 4rem);
}

.hero {
  min-height: 100vh;
  padding-top: clamp(7rem, 10vw, 9rem);
  padding-bottom: 3.5rem;
}

.hero__backdrop,
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__backdrop {
  background:
    linear-gradient(90deg, rgba(4, 7, 18, 0.68) 0%, rgba(5, 8, 18, 0.38) 38%, rgba(8, 10, 24, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 10, 24, 0.12), rgba(4, 6, 18, 0.38)),
    url("../images/hero-bg.png") center center / cover no-repeat;
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 44%, rgba(187, 77, 255, 0.16), transparent 26%);
}

.hero__particles {
  background-image: radial-gradient(circle, rgba(208, 125, 255, 0.35) 0 1px, transparent 1.4px);
  background-size: 170px 170px;
  opacity: 0.1;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  min-height: calc(100vh - 8rem);
}

.hero__content {
  max-width: 42rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197, 117, 255, 0.18);
  background: rgba(100, 47, 169, 0.18);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
}

.hero__title {
  margin: 1.25rem 0 0.9rem;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 0.92;
  letter-spacing: -0.02em;
  max-width: 9ch;
}

.hero__title span {
  color: var(--color-primary);
  text-shadow: 0 0 26px rgba(191, 82, 255, 0.3);
}

.hero__subtitle {
  margin: 0 0 1.35rem;
  max-width: 36rem;
  font-size: clamp(1.1rem, 0.98rem + 0.35vw, 1.42rem);
  color: var(--color-text-muted);
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.55rem;
  padding: 0;
  margin: 0 0 1.9rem;
  list-style: none;
}

.hero__features li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: clamp(1rem, 0.92rem + 0.2vw, 1.12rem);
  color: #f2ebff;
}

.hero__features i {
  color: #d060ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 56px;
  padding: 0.95rem 1.7rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 700;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #8b2eff 0%, #d44dff 55%, #8352ff 100%);
  box-shadow: 0 16px 40px rgba(154, 54, 255, 0.32), inset 0 0 0 1px rgba(255,255,255,0.12);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(154, 54, 255, 0.42), 0 0 28px rgba(212, 77, 255, 0.32);
}

.hero__visual {
  min-height: 560px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.visual-stage {
  position: relative;
  width: min(100%, 620px);
  min-height: 520px;
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.6;
}

.visual-glow--one {
  width: 200px;
  height: 200px;
  right: 10%;
  top: 12%;
  background: rgba(177, 77, 255, 0.24);
}

.visual-glow--two {
  width: 240px;
  height: 240px;
  right: 2%;
  bottom: 6%;
  background: rgba(124, 54, 255, 0.18);
}

.book-stack {
  position: absolute;
  right: 5.5rem;
  top: 2rem;
  display: grid;
  gap: 1rem;
}

.book {
  width: clamp(300px, 31vw, 470px);
  min-height: 92px;
  padding: 1.35rem 2rem;
  display: flex;
  align-items: center;
  border-radius: 1.25rem;
  color: #f7f5ff;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.05rem + 0.7vw, 2.05rem);
  letter-spacing: 0.01em;
  box-shadow:
    inset -78px 0 0 rgba(245, 228, 205, 0.88),
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 22px 36px rgba(6, 9, 23, 0.4);
  position: relative;
}

.book::after {
  content: "";
  position: absolute;
  left: 1.15rem;
  right: 5.5rem;
  top: 12px;
  height: 1px;
  background: rgba(255,255,255,0.18);
}

.book--violet { background: linear-gradient(180deg, #8a39ff, #4f1f9a); }
.book--blue { background: linear-gradient(180deg, #3f63ff, #1d2d9d); }
.book--ink { background: linear-gradient(180deg, #1b254b, #0d1229); }
.book--brown { background: linear-gradient(180deg, #72402d, #432218); }

.medicine-bottle {
  position: absolute;
  right: 0;
  top: 6rem;
  width: 170px;
  height: 280px;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(114, 46, 20, 0.92), rgba(52, 19, 8, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 26px 40px rgba(4, 6, 18, 0.5);
}

.medicine-bottle::after {
  content: "";
  position: absolute;
  inset: 1rem auto 1rem 1rem;
  width: 36%;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
}

.medicine-bottle__cap {
  position: absolute;
  top: -1.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 48px;
  border-radius: 1rem;
  background: linear-gradient(180deg, #f1f2ff, #c7cad9);
  box-shadow: inset 0 -8px 12px rgba(110, 116, 143, 0.16);
}

.medicine-bottle__label {
  position: absolute;
  left: 50%;
  top: 7rem;
  transform: translateX(-50%);
  width: 118px;
  min-height: 135px;
  border-radius: 1rem;
  padding: 1rem 0.7rem;
  text-align: center;
  background: linear-gradient(180deg, #f8f6ff, #dcdbf4);
  color: #27153a;
  font-size: 1.1rem;
  line-height: 1.2;
}

.medicine-bottle__label strong {
  display: inline-block;
  margin: 0.45rem 0;
}

.pill-strip {
  position: absolute;
  right: 13.5rem;
  bottom: 4rem;
  width: 130px;
  min-height: 70px;
  padding: 0.8rem;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: linear-gradient(180deg, rgba(188, 198, 225, 0.5), rgba(93, 99, 131, 0.5));
  transform: rotate(-14deg);
  box-shadow: 0 18px 28px rgba(4, 7, 18, 0.34);
}

.pill-strip span,
.pills span {
  display: block;
  border-radius: 999px;
}

.pill-strip span {
  height: 18px;
  background: linear-gradient(90deg, #f2f3ff 50%, #8757ff 50%);
}

.pills {
  position: absolute;
  right: 1rem;
  bottom: 2rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  width: 230px;
}

.pills span {
  width: 36px;
  height: 24px;
  background: linear-gradient(180deg, #fafbff, #d6d9e7);
  box-shadow: inset 0 -3px 6px rgba(100, 106, 132, 0.18);
}

.materials {
  padding-top: 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.panel,
.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(8, 11, 27, 0.88), rgba(10, 13, 30, 0.95));
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.feature-card::before,
.panel::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(187, 77, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.feature-card {
  min-height: 382px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.feature-card__icon {
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 1.6rem;
  font-size: 1.9rem;
  color: #fff;
  background: rgba(11, 14, 35, 0.92);
  box-shadow: 0 0 34px rgba(255,255,255,0.16);
}

.theme-violet .feature-card__icon { box-shadow: 0 0 34px rgba(179, 73, 255, 0.28); }
.theme-pink .feature-card__icon { box-shadow: 0 0 34px rgba(255, 86, 197, 0.24); }
.theme-blue .feature-card__icon { box-shadow: 0 0 34px rgba(95, 157, 255, 0.24); }
.theme-green .feature-card__icon { box-shadow: 0 0 34px rgba(86, 218, 132, 0.24); }

.feature-card h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.45rem + 0.6vw, 2.35rem);
  line-height: 1.02;
}

.theme-violet h2 { color: #d66bff; }
.theme-pink h2 { color: #ff61cb; }
.theme-blue h2 { color: #72a9ff; }
.theme-green h2 { color: #66e291; }

.feature-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 0.95rem + 0.16vw, 1.08rem);
  max-width: 19ch;
}

.card-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid currentColor;
  background: rgba(255,255,255,0.02);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.theme-violet .card-btn { color: #cf6cff; }
.theme-pink .card-btn { color: #ff68cb; }
.theme-blue .card-btn { color: #72a9ff; }
.theme-green .card-btn { color: #66e291; }

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255,255,255,0.08);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding-top: 1.2rem;
}

.about-panel {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 2rem;
}

.about-panel__illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.about-png {
  width: 150px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.28));
}

.about-panel__content {
  min-width: 0;
}

.about-heading {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.3rem + 0.8vw, 2.2rem);
  font-weight: 800;
  color: var(--color-primary);
  text-shadow: 0 0 24px rgba(191, 82, 255, 0.35);
  letter-spacing: 0.02em;
}

.about-copy {
  margin: 0;
  max-width: 56ch;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.08rem);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-panel__illustration {
    width: 100%;
    justify-content: flex-start;
    min-height: 140px;
  }
}

@media (max-width: 680px) {
  .about-panel {
    padding: 1.35rem;
    gap: 1rem;
  }

  .about-panel__illustration {
    width: 100%;
    min-height: 110px;
    justify-content: center;
    align-items: center;
  }

  .about-png {
    width: 120px;
    max-width: 100%;
    margin-inline: auto;
  }

  .about-heading,
  .about-copy {
    text-align: center;
  }

  .about-copy {
    font-size: 0.96rem;
  }
}

.contact .panel {
  padding: 1.6rem 1.6rem 1.4rem;
}

.section-heading {
  margin: 0 0 1.2rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.45rem + 1.2vw, 2.9rem);
  line-height: 1;
  color: var(--color-primary);
  text-shadow: 0 0 24px rgba(191, 82, 255, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 90px;
  padding: 1rem 1.1rem;
  text-decoration: none;
}

.contact-card__icon {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  color: #fff;
  font-size: 1.55rem;
  flex-shrink: 0;
}

.gmail { background: linear-gradient(135deg, #ff7a59, #ffb85f); }
.instagram { background: linear-gradient(135deg, #7659ff, #ff57b1, #ffb85e); }
.telegram { background: linear-gradient(135deg, #4ac4ff, #3071ff); }
.youtube { background: linear-gradient(135deg, #ff2c2c, #ff5d31); }

.contact-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.contact-card p {
  margin: 0.15rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.96rem;
}

.site-footer {
  padding: 0 1rem 2rem;
  text-align: center;
  color: var(--color-text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1220px) {
  .hero__grid {
    grid-template-columns: 1fr 0.95fr;
  }

  .book {
    width: clamp(270px, 28vw, 420px);
    min-height: 82px;
    font-size: clamp(1.25rem, 1rem + 0.5vw, 1.8rem);
  }

  .medicine-bottle {
    width: 150px;
    height: 255px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 6rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.2rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    max-width: 8ch;
  }

  .hero__visual {
    min-height: 340px;
    justify-content: center;
  }

  .visual-stage {
    width: 100%;
    min-height: 320px;
  }

  .book-stack {
    right: 3rem;
    top: 0.8rem;
    gap: 0.7rem;
  }

  .book {
    width: clamp(220px, 70vw, 360px);
    min-height: 66px;
    padding: 1rem 1.15rem;
    box-shadow:
      inset -52px 0 0 rgba(245, 228, 205, 0.88),
      inset 0 1px 0 rgba(255,255,255,0.2),
      0 16px 24px rgba(6, 9, 23, 0.35);
  }

  .book::after {
    right: 3.6rem;
  }

  .medicine-bottle {
    width: 110px;
    height: 190px;
    top: 4.2rem;
    right: 0.4rem;
    border-radius: 1.2rem;
  }

  .medicine-bottle__cap {
    width: 92px;
    height: 32px;
    top: -1rem;
  }

  .medicine-bottle__label {
    top: 4.7rem;
    width: 78px;
    min-height: 88px;
    font-size: 0.86rem;
    border-radius: 0.75rem;
    padding: 0.7rem 0.4rem;
  }

  .pill-strip {
    width: 88px;
    min-height: 48px;
    right: 9rem;
    bottom: 2rem;
    padding: 0.45rem;
  }

  .pill-strip span {
    height: 11px;
  }

  .pills {
    width: 145px;
    gap: 0.35rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .pills span {
    width: 24px;
    height: 16px;
  }

  .about-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-panel__illustration {
    width: 100%;
    justify-content: flex-start;
    min-height: 140px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .section {
    padding-block: 1.4rem;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .hero__title {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
    line-height: 0.92;
    max-width: 7ch;
  }

  .hero__subtitle {
    font-size: 1.02rem;
    max-width: 22rem;
  }

  .hero__features {
    gap: 0.6rem 1rem;
  }

  .hero__features li {
    font-size: 0.98rem;
  }

  .btn--primary {
    min-height: 52px;
    padding: 0.85rem 1.35rem;
  }

  .hero__visual {
    min-height: 260px;
  }

  .visual-stage {
    min-height: 260px;
  }

  .book-stack {
    right: 0.2rem;
    top: 0;
  }

  .book {
    width: clamp(180px, 62vw, 290px);
    min-height: 52px;
    padding: 0.75rem 0.95rem;
    font-size: clamp(0.92rem, 3vw, 1.2rem);
    border-radius: 0.9rem;
    box-shadow:
      inset -34px 0 0 rgba(245, 228, 205, 0.88),
      inset 0 1px 0 rgba(255,255,255,0.2),
      0 12px 18px rgba(6, 9, 23, 0.28);
  }

  .book::after {
    left: 0.8rem;
    right: 2.6rem;
    top: 9px;
  }

  .medicine-bottle {
    width: 78px;
    height: 138px;
    top: 3.2rem;
    right: 0;
  }

  .medicine-bottle__cap {
    width: 68px;
    height: 22px;
    top: -0.7rem;
    border-radius: 0.7rem;
  }

  .medicine-bottle__label {
    width: 56px;
    min-height: 62px;
    top: 3.35rem;
    font-size: 0.62rem;
    padding: 0.45rem 0.2rem;
  }

  .pill-strip {
    display: none;
  }

  .pills {
    width: 100px;
    right: 0;
    bottom: 0;
  }

  .pills span {
    width: 18px;
    height: 11px;
  }

  .cards-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    padding: 1.35rem;
  }

  .feature-card h2 {
    font-size: 2rem;
  }

  .feature-card p {
    max-width: 100%;
    margin-bottom: 1.35rem;
  }

  .about-panel {
    padding: 1.35rem;
    gap: 1rem;
  }

  .about-panel__illustration {
    width: 100%;
    min-height: 110px;
    justify-content: center;
    align-items: center;
  }

  .about-png {
    width: 120px;
    max-width: 100%;
    margin-inline: auto;
  }

  .contact .panel {
    padding: 1.35rem;
  }

  .section-heading {
    font-size: 2.1rem;
  }

  .about-heading,
  .about-copy {
    text-align: center;
  }

  .about-copy {
    font-size: 0.96rem;
  }
}

@media (max-width: 768px) {
  .hero__visual {
    display: none;
  }

  .hero__backdrop {
    background:
      linear-gradient(90deg, rgba(4, 7, 18, 0.82) 0%, rgba(5, 8, 18, 0.56) 42%, rgba(8, 10, 24, 0.28) 100%),
      linear-gradient(180deg, rgba(8, 10, 24, 0.08), rgba(4, 6, 18, 0.34)),
      url("../images/hero-bg.png") 34% center / cover no-repeat;
  }
}

@media (max-width: 480px) {
  .hero__backdrop {
    background:
      linear-gradient(90deg, rgba(4, 7, 18, 0.88) 0%, rgba(5, 8, 18, 0.62) 45%, rgba(8, 10, 24, 0.34) 100%),
      linear-gradient(180deg, rgba(8, 10, 24, 0.08), rgba(4, 6, 18, 0.4)),
      url("../images/hero-bg.png") 28% center / cover no-repeat;
  }
}