:root {
  --page-frame-width: min(1360px, calc(100% - 32px));
  --bg-top: #5c118d;
  --bg-bottom: #e40b8d;
  --panel: #140327;
  --panel-soft: #22073f;
  --panel-border: #ff2fb2;
  --panel-border-soft: rgba(255, 47, 178, 0.45);
  --text-main: #fff7ff;
  --text-soft: #d7c8e9;
  --text-muted: #a392bf;
  --accent: #ff2fb2;
  --accent-strong: #ff5dbe;
  --accent-orange: #ff7a30;
  --accent-blue: #52d4ff;
  --shadow: 0 20px 45px rgba(5, 0, 17, 0.45);
  --warn-height: 0px;
  --header-height: 0px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(255, 109, 198, 0.25), transparent 24%),
    radial-gradient(circle at top right, rgba(82, 212, 255, 0.18), transparent 20%),
    linear-gradient(180deg, var(--bg-top) 0%, #7a0f82 45%, var(--bg-bottom) 100%);
  min-height: 100vh;
  padding-top: calc(54px + var(--warn-height) + var(--header-height));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.35;
}

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

.site-shell {
  position: relative;
  width: var(--page-frame-width);
  margin: 0 auto 32px;
  padding: 0 0 32px;
  animation: shell-in 420ms ease-out;
}

.warn,
header,
.slider,
.intro-copy,
.description div,
.prod-item,
.prod-title,
.sidebar-card,
footer {
  border: 2px solid var(--panel-border-soft);
  box-shadow: var(--shadow);
}

.warn {
  position: fixed;
  top: 20px;
  left: 50%;
  width: var(--page-frame-width);
  margin: 0;
  padding: 14px 18px;
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.55;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(9, 0, 20, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transform: translateX(-50%);
  transform-origin: top center;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 1200;
}

body.warning-hidden .warn {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-18px);
}

header {
  position: fixed;
  top: calc(20px + var(--warn-height) + 14px);
  left: 50%;
  width: var(--page-frame-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 24px;
  margin-top: 0;
  background: rgba(8, 0, 20, 0.92);
  transform: translateX(-50%);
  transition: top 220ms ease;
  z-index: 1190;
}

body.warning-hidden header {
  top: 20px;
}

.logo {
  width: 124px;
  height: 72px;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 73, 183, 0.45));
}

.navBar {
  display: flex;
  align-items: center;
  margin-left: auto;
  color: var(--text-main);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navBar ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.navBar a {
  position: relative;
  display: inline-block;
  padding: 8px 0;
}

.navBar a::after,
.links a::after,
.cont-col a::after,
.foot-cont-three a::after,
.sidebar-links a::after,
.sidebar-card > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.navBar a:hover::after,
.navBar .active::after,
.links a:hover::after,
.cont-col a:hover::after,
.foot-cont-three a:hover::after,
.sidebar-links a:hover::after,
.sidebar-card > a:hover::after {
  transform: scaleX(1);
}

.navBar .active {
  color: var(--accent-strong);
}

.mobile-navbar {
  display: none;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-around;
  width: 42px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hamburger:focus {
  outline: 2px solid var(--accent-blue);
  outline-offset: 6px;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background: var(--text-main);
  border-radius: 999px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(86vw, 340px);
  height: 100vh;
  background: rgba(14, 3, 32, 0.98);
  border-right: 2px solid var(--panel-border);
  box-shadow: 18px 0 40px rgba(0, 0, 0, 0.45);
  transform: translateX(-100%);
  transition: transform 300ms ease;
  z-index: 10000;
  display: flex;
  flex-direction: column;
}

.mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu a {
  font-family: "Arial Black", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.mobile-menu-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.locked {
  overflow: hidden;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  margin-top: 22px;
  align-items: start;
}

main {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.slider {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 3, 31, 0.55), rgba(16, 3, 31, 0.8)),
    radial-gradient(circle at center, rgba(255, 71, 190, 0.18), transparent 55%),
    #120423;
}

.slider::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-orange), transparent);
  pointer-events: none;
}

.slider-item {
  position: relative;
  display: none;
  min-height: 570px;
}

.slider-item.active {
  display: block;
}

.slider-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 2, 29, 0.92) 0%, rgba(14, 2, 29, 0.72) 42%, rgba(14, 2, 29, 0.18) 75%);
  z-index: 1;
}

.slider-item img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.title-one,
.bunner-btn,
.dots,
.slider-arrow {
  position: absolute;
  z-index: 2;
}

.title-one {
  top: 64px;
  left: 48px;
  max-width: 52%;
}

.eyebrow,
.section-kicker,
.sidebar-kicker {
  color: var(--accent-blue);
  font-family: "Arial Black", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
}

.title-one h1,
.title-one h2,
.intro-copy h2,
.sidebar-brand h2,
.sidebar-card h3,
.description p,
.prod-title,
.prod-desc h2,
.faq-block p,
.city p {
  font-family: "Arial Black", Impact, sans-serif;
  text-transform: uppercase;
}

.title-one h1,
.title-one h2 {
  margin-top: 10px;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-shadow: 0 0 18px rgba(255, 60, 182, 0.35);
}

.title-one span {
  display: block;
  max-width: 560px;
  margin-top: 16px;
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  line-height: 1.65;
  color: var(--text-soft);
}

.bunner-btn {
  left: 48px;
  bottom: 68px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bunner-btn a,
.products button,
.sidebar-card > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 2px solid var(--accent-strong);
  background: linear-gradient(180deg, var(--accent), #d61689);
  color: var(--text-main);
  font-family: "Arial Black", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.bunner-btn a {
  padding: 0 22px;
}

.bunner-btn a:hover,
.products button:hover,
.sidebar-card > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 47, 178, 0.28);
  background: linear-gradient(180deg, var(--accent-strong), #e21a95);
}

.dots {
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.dot.active {
  background: var(--accent-strong);
}

.slider-arrow {
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 18px;
}

.slider-arrow div {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  font-size: 2rem;
  color: var(--text-main);
  background: rgba(20, 3, 39, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  user-select: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.slider-arrow div:hover {
  transform: scale(1.06);
  border-color: var(--accent-strong);
}

.intro-copy {
  padding: 26px 28px;
  background: rgba(14, 3, 32, 0.92);
}

.intro-copy h2 {
  margin-top: 10px;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  line-height: 1.1;
}

.intro-copy p:last-child {
  margin-top: 16px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.04rem;
  max-width: 900px;
}

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

.description div {
  position: relative;
  min-width: 0;
  padding: 24px 22px;
  background: rgba(17, 4, 35, 0.92);
}

.description div::before,
.prod-title::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.description p {
  margin-bottom: 14px;
  font-size: 1.28rem;
  line-height: 1.1;
}

.description span {
  display: block;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.products {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.prod-title {
  position: relative;
  align-self: flex-start;
  padding: 16px 28px;
  background: rgba(14, 3, 32, 0.95);
  font-size: clamp(1.5rem, 2.7vw, 2.3rem);
  letter-spacing: 0.06em;
}

.prod-title::after {
  left: 24px;
  right: 24px;
}

.prod-item {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(20, 5, 39, 0.96), rgba(30, 8, 55, 0.96));
}

.reverse {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.prod-img {
  position: relative;
  min-height: 320px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.2), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  overflow: hidden;
}

.prod-img::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 20px;
  transition: transform 280ms ease;
}

.prod-item:hover .prod-img img {
  transform: scale(1.03) translateY(-4px);
}

.prod-desc {
  min-width: 0;
}

.prod-desc h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.6rem);
  line-height: 1.06;
}

.prod-desc span {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-blue);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.prod-desc p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.products button {
  min-width: 210px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 0;
}

.products button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 12px 0;
}

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

.faq-block p {
  font-size: 1.12rem;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-card {
  position: relative;
  padding: 22px 18px;
  background: rgba(15, 3, 31, 0.95);
}

.sidebar-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.sidebar-brand {
  min-height: 172px;
}

.sidebar-brand h2,
.sidebar-card h3 {
  margin-top: 10px;
  font-size: 2rem;
  line-height: 0.98;
}

.sidebar-card span {
  display: block;
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.96rem;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.sidebar-links a,
.sidebar-card > a,
.links a,
.cont-col a,
.foot-cont-three a {
  position: relative;
}

.sidebar-card > a {
  margin-top: 14px;
  padding: 0 16px;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
  padding: 26px 28px;
  background: rgba(8, 0, 20, 0.94);
}

.social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-logo {
  padding: 0;
}

.footer-logo img {
  width: 138px;
  height: auto;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-family: "Arial Black", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.footer-cont {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.foot-cont-one {
  display: flex;
  gap: 38px;
}

.cont-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cont-col a {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.cont-col a:first-child {
  color: var(--text-main);
  font-family: "Arial Black", Impact, sans-serif;
  text-transform: uppercase;
}

.foot-cont-two {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 440px;
}

.foot-cont-two div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.foot-cont-two p {
  color: var(--text-soft);
  line-height: 1.65;
}

.foot-cont-two p span {
  color: var(--text-main);
  font-family: "Arial Black", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.foot-cont-two p a {
  color: var(--text-soft);
  transition: color 180ms ease;
}

.foot-cont-two p a:hover {
  color: var(--accent-strong);
}

.contact-line {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: var(--accent-strong);
}

.foot-cont-three {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 16px;
}

.city {
  width: 100%;
}

.city p {
  position: relative;
  display: inline-block;
  padding: 12px 18px 12px 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  cursor: pointer;
  letter-spacing: 0.04em;
}

.city p::after {
  content: "▼";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.82rem;
}

.city p.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.foot-cont-three a {
  display: none;
  color: var(--text-soft);
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(89, 93, 139, 0.28);
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease,
    color 180ms ease;
}

.foot-cont-three.is-open a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.foot-cont-three a:hover {
  color: var(--text-main);
  background: rgba(112, 116, 170, 0.36);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.copyright {
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-muted);
  text-align: center;
  font-size: 0.92rem;
}

.green {
  background-color: #143d47;
}

.purple {
  background-color: #46256a;
}

.yelow {
  background-color: #5a4b17;
}

.flow {
  background-color: #53133d;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.modal-content {
  width: min(100%, 420px);
  padding: 32px 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(18, 4, 35, 0.98), rgba(31, 8, 57, 0.98));
  border: 2px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.modal-content h2 {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.15;
}

.modal-content p {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

button {
  border: none;
  border-radius: 0;
}

#yesBtn,
#noBtn {
  min-width: 120px;
  padding: 12px 18px;
  color: var(--text-main);
  font-family: "Arial Black", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#yesBtn {
  background: linear-gradient(180deg, var(--accent), #d61689);
}

#noBtn {
  background: linear-gradient(180deg, #3c3258, #241737);
}

#yesBtn:hover,
#noBtn:hover {
  transform: translateY(-2px);
}

@keyframes shell-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 920px) {
  .navBar {
    display: none;
  }

  .mobile-navbar {
    display: flex;
    margin-left: auto;
  }

  .title-one {
    top: 36px;
    left: 28px;
    max-width: calc(100% - 56px);
  }

  .bunner-btn {
    left: 28px;
    right: 28px;
    bottom: 54px;
  }

  .description,
  .faq-block,
  .sidebar {
    grid-template-columns: 1fr;
  }

  .prod-item,
  .reverse {
    grid-template-columns: 1fr;
  }

  .prod-img {
    min-height: 280px;
  }

  .footer-cont {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --page-frame-width: min(100% - 16px, 1360px);
  }

  .warn {
    font-size: 0.74rem;
    line-height: 1.4;
    padding: 10px 12px;
  }

  .site-shell {
    margin-top: 0;
  }

  header,
  .intro-copy,
  .prod-item,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .slider-item,
  .slider-item img {
    min-height: 480px;
    height: 480px;
  }

  .slider-item::before {
    background: linear-gradient(180deg, rgba(14, 2, 29, 0.9) 0%, rgba(14, 2, 29, 0.56) 58%, rgba(14, 2, 29, 0.88) 100%);
  }

  .title-one h1,
  .title-one h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .title-one span {
    font-size: 0.98rem;
  }

  .bunner-btn {
    gap: 10px;
  }

  .bunner-btn a,
  .products button,
  .sidebar-card > a {
    width: 100%;
  }

  .slider-arrow {
    padding: 0 10px;
  }

  .slider-arrow div {
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
  }

  .prod-title {
    width: 100%;
  }

  .foot-cont-one {
    flex-direction: column;
    gap: 20px;
  }

  .social {
    flex-direction: column;
    align-items: flex-start;
  }

  .links {
    gap: 14px;
    font-size: 0.82rem;
  }

  .city p {
    font-size: 1rem;
  }

  .copyright {
    font-size: 0.85rem;
  }
}
