:root {
  --dmy-navy: #061b46;
  --dmy-blue: #006bff;
  --dmy-blue-2: #2b91ff;
  --dmy-sky: #eef7ff;
  --dmy-yellow: #ffd326;
  --dmy-ink: #10213e;
  --dmy-muted: #65738b;
  --dmy-line: #e4ebf3;
  --dmy-page: #ffffff;
}

body.dmy-home {
  overflow-x: hidden;
  background: var(--dmy-page);
  color: var(--dmy-ink);
  word-break: keep-all;
}

.dmy-home a { color: inherit; }
.dmy-home .main-header-bar { border-bottom-color: rgba(6, 55, 129, 0.09); }

.dmy-top-note {
  position: relative;
  z-index: 101;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 7px 18px 9px;
  background:
    radial-gradient(circle at 25% 0%, rgba(26, 113, 255, 0.28), transparent 34%),
    linear-gradient(90deg, #041638 0%, #082f72 50%, #041638 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.18s ease;
}

.dmy-top-note:hover { color: #fff; filter: brightness(1.08); }
.dmy-top-note:focus-visible { outline: 3px solid var(--dmy-yellow); outline-offset: -3px; }

.dmy-top-note::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dmy-yellow) 28%, #fff2a6 50%, var(--dmy-yellow) 72%, transparent);
  content: "";
}
.dmy-top-note__badge {
  border: 1px solid rgba(255, 211, 38, 0.55);
  border-radius: 999px;
  padding: 3px 7px;
  color: var(--dmy-yellow);
  font-size: 0.57rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}
.dmy-top-note i { width: 3px; height: 3px; border-radius: 50%; background: var(--dmy-yellow); }
.dmy-top-note strong { color: var(--dmy-yellow); font-weight: 900; }

.dmy-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.dmy-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: 550px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(68, 157, 255, 0.55), transparent 32%),
    linear-gradient(126deg, #0063eb 0%, #073582 49%, #061332 100%);
  color: #fff;
}

.dmy-hero::after {
  position: absolute;
  bottom: -150px;
  left: 18%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.dmy-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 96px) clamp(28px, 6vw, 86px);
}

.dmy-hero__eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.dmy-hero__eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dmy-yellow);
  box-shadow: 0 0 0 5px rgba(255, 211, 38, 0.14);
}

.dmy-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.075em;
}

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

.dmy-hero__desc {
  max-width: 510px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 560;
  line-height: 1.7;
}

.dmy-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.dmy-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 0.83rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dmy-btn:hover { transform: translateY(-2px); }
.dmy-btn--yellow { background: var(--dmy-yellow); color: #0a2860 !important; box-shadow: 0 12px 30px rgba(255, 211, 38, 0.22); }
.dmy-btn--ghost { border-color: rgba(255, 255, 255, 0.34); background: rgba(255, 255, 255, 0.06); color: #fff !important; }

.dmy-hero__visual { position: relative; min-width: 0; }
.dmy-hero__visual::before {
  position: absolute;
  inset: 7% 8% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 170, 255, 0.42), transparent 68%);
  filter: blur(10px);
  content: "";
}

.dmy-hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.dmy-hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #073582 0%, rgba(7, 53, 130, 0.15) 18%, transparent 42%);
  content: "";
  pointer-events: none;
}

.dmy-hero__badge {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 9%;
  display: grid;
  width: 102px;
  height: 102px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(5, 29, 72, 0.74);
  color: #fff;
  font-size: 0.67rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  backdrop-filter: blur(12px);
}

.dmy-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--dmy-line);
  background: #fff;
}

.dmy-trust-item {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--dmy-line);
  padding: 16px;
}

.dmy-trust-item:last-child { border-right: 0; }
.dmy-trust-item > span { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 13px; background: var(--dmy-sky); color: var(--dmy-blue); }
.dmy-trust-item strong,
.dmy-trust-item small { display: block; }
.dmy-trust-item strong { margin-bottom: 3px; font-size: 0.78rem; font-weight: 900; }
.dmy-trust-item small { color: var(--dmy-muted); font-size: 0.68rem; }

.dmy-section { padding-top: 92px; }
.dmy-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.dmy-section-head__eyebrow { display: block; margin-bottom: 8px; color: var(--dmy-blue); font-size: 0.69rem; font-weight: 950; letter-spacing: 0.12em; }
.dmy-section-head h2 { margin: 0; color: var(--dmy-navy); font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 950; letter-spacing: -0.055em; }
.dmy-section-head p { margin: 9px 0 0; color: var(--dmy-muted); font-size: 0.82rem; line-height: 1.55; }
.dmy-section-head > a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 8px; color: #52637d; font-size: 0.76rem; font-weight: 850; text-decoration: none; }

.dmy-category-buttons { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
.dmy-category-button {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  border: 0;
  border-radius: 0;
  padding: 3px 4px;
  background: transparent;
  color: #18305a;
  text-align: center;
  text-decoration: none;
  transition: color 0.18s ease;
}
.dmy-category-button__art {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #f1f6fc;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.dmy-category-button__art img { display: block; width: 100%; height: 100%; object-fit: cover; }
.dmy-category-button__fallback { display: grid; width: 100%; height: 100%; place-items: center; font-size: 2rem; }
.dmy-category-button strong { display: block; max-width: 100%; overflow: hidden; font-size: 0.78rem; font-weight: 900; text-overflow: ellipsis; white-space: nowrap; }
.dmy-category-button:hover { color: #0067df; }
.dmy-category-button:hover .dmy-category-button__art { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(15, 91, 186, 0.14); }

.dmy-promo-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; }
.dmy-promo-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 26px;
  padding: 36px;
  text-decoration: none;
}
.dmy-promo-card--blue { background: linear-gradient(130deg, #0574ff, #07357f); color: #fff !important; }
.dmy-promo-card--yellow { background: linear-gradient(135deg, #ffe872, #ffc92f); color: #142852 !important; }
.dmy-promo-card::after { position: absolute; right: -35px; bottom: -65px; width: 220px; height: 220px; border: 34px solid rgba(255,255,255,.13); border-radius: 50%; content: ""; }
.dmy-promo-card__tag { display: inline-flex; margin-bottom: 18px; border-radius: 999px; padding: 6px 9px; background: rgba(255,255,255,.18); font-size: .65rem; font-weight: 900; }
.dmy-promo-card h3 { position: relative; z-index: 1; max-width: 390px; margin: 0; font-size: clamp(1.35rem, 2.5vw, 2rem); font-weight: 950; line-height: 1.18; letter-spacing: -.05em; }
.dmy-promo-card p { position: relative; z-index: 1; max-width: 410px; margin: 14px 0 0; color: inherit; font-size: .78rem; line-height: 1.55; opacity: .76; }
.dmy-promo-card i.dmy-promo-card__icon { position: absolute; right: 42px; bottom: 38px; z-index: 1; font-size: 4.5rem; opacity: .8; transform: rotate(-8deg); }

.dmy-product-tabs { display: flex; gap: 7px; margin-bottom: 22px; overflow-x: auto; scrollbar-width: none; }
.dmy-product-tabs::-webkit-scrollbar { display: none; }
.dmy-product-tab { flex: 0 0 auto; border: 1px solid var(--dmy-line); border-radius: 999px; padding: 9px 14px; background: #fff; color: #64738b; font-size: 0.72rem; font-weight: 850; }
.dmy-product-tab.is-active { border-color: var(--dmy-navy); background: var(--dmy-navy); color: #fff; }

.dmy-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px 16px; }
.dmy-product-card { position: relative; min-width: 0; text-decoration: none; }
.dmy-product-card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 18px; background: #f4f7fb; }
.dmy-product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.dmy-product-card:hover .dmy-product-card__media img { transform: scale(1.035); }
.dmy-product-card__placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: radial-gradient(circle at 50% 38%, #fff 0 14%, transparent 15%), linear-gradient(145deg, var(--placeholder-a, #ddecff), var(--placeholder-b, #f7fbff)); font-size: clamp(3.4rem, 7vw, 5.6rem); }
.dmy-product-card__badge { position: absolute; top: 12px; left: 12px; z-index: 2; border-radius: 999px; padding: 6px 9px; background: var(--dmy-blue); color: #fff; font-size: .62rem; font-weight: 900; }
.dmy-product-card__wish { position: absolute; top: 10px; right: 10px; z-index: 2; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(15,42,89,.1); border-radius: 50%; background: rgba(255,255,255,.9); color: #25436e; }
.dmy-product-card__body { padding: 14px 3px 0; }
.dmy-product-card__brand { color: var(--dmy-blue); font-size: .67rem; font-weight: 900; }
.dmy-product-card__name { display: -webkit-box; min-height: 42px; margin-top: 6px; overflow: hidden; color: #24344f; font-size: .84rem; font-weight: 720; line-height: 1.48; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.dmy-product-card__price { display: flex; align-items: baseline; gap: 7px; margin-top: 9px; color: var(--dmy-navy); font-size: 1rem; font-weight: 950; }
.dmy-product-card__price del { color: #a5afbd; font-size: .69rem; font-weight: 650; }
.dmy-product-card__meta { display: flex; align-items: center; gap: 7px; margin-top: 8px; color: #7b899d; font-size: .63rem; font-weight: 750; }
.dmy-product-card__meta span { border-radius: 5px; padding: 4px 6px; background: #eef5ff; color: #3973bf; }

.dmy-b2b {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border-radius: 30px;
  background: var(--dmy-sky);
}
.dmy-b2b__copy { padding: clamp(40px, 6vw, 72px); background: linear-gradient(145deg, #062a6e, #061a42); color: #fff; }
.dmy-b2b__copy small { color: #6fb5ff; font-size: .7rem; font-weight: 950; letter-spacing: .12em; }
.dmy-b2b__copy h2 { margin: 14px 0 0; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 950; line-height: 1.15; letter-spacing: -.06em; }
.dmy-b2b__copy p { margin: 20px 0 0; color: rgba(255,255,255,.68); font-size: .82rem; line-height: 1.7; }
.dmy-b2b__steps { display: grid; align-content: center; gap: 12px; padding: clamp(28px, 5vw, 60px); }
.dmy-b2b-step { display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: 14px; border: 1px solid #d9e9fb; border-radius: 17px; padding: 17px; background: #fff; }
.dmy-b2b-step > span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; background: var(--dmy-sky); color: var(--dmy-blue); font-size: 1rem; }
.dmy-b2b-step strong,
.dmy-b2b-step small { display: block; }
.dmy-b2b-step strong { color: #183259; font-size: .83rem; font-weight: 900; }
.dmy-b2b-step small { margin-top: 4px; color: #8190a6; font-size: .66rem; line-height: 1.35; }
.dmy-b2b-step > i { color: #b1bfd1; font-size: .68rem; }

.dmy-empty-note { grid-column: 1 / -1; border: 1px dashed #c7d8ed; border-radius: 18px; padding: 28px; background: #f7fbff; color: #6e7f98; font-size: .8rem; text-align: center; }

@media (min-width: 769px) {
  .dmy-home .bottom-nav { display: none; }
  .dmy-home .dmy-global-footer__bottom { padding-bottom: 20px; }
}

@media (max-width: 980px) {
  .dmy-hero { grid-template-columns: 1fr 1fr; min-height: 500px; }
  .dmy-hero__copy { padding: 54px 32px; }
  .dmy-category-buttons { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dmy-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .dmy-top-note { min-height: 32px; gap: 6px; padding: 6px 10px 8px; font-size: .62rem; }
  .dmy-top-note__badge { display: none; }
  .dmy-shell { width: min(100% - 30px, 1180px); }
  .dmy-hero { grid-template-columns: 1fr; min-height: 0; }
  .dmy-hero__copy { min-height: 430px; padding: 54px 22px 38px; }
  .dmy-hero h1 { font-size: clamp(2.6rem, 15vw, 4rem); }
  .dmy-hero__desc { max-width: 92%; }
  .dmy-hero__visual { min-height: 365px; }
  .dmy-hero__visual img { object-fit: cover; }
  .dmy-hero__visual::after { background: linear-gradient(180deg, #061a42 0%, transparent 24%); }
  .dmy-hero__badge { right: 5%; bottom: 7%; width: 82px; height: 82px; font-size: .57rem; }
  .dmy-trust-strip { grid-template-columns: repeat(2, 1fr); }
  .dmy-trust-item { min-height: 82px; justify-content: flex-start; border-bottom: 1px solid var(--dmy-line); }
  .dmy-trust-item:nth-child(2) { border-right: 0; }
  .dmy-section { padding-top: 64px; }
  .dmy-section-head { align-items: center; margin-bottom: 22px; }
  .dmy-section-head p { font-size: .75rem; }
  .dmy-category-buttons { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 8px; }
  .dmy-category-button { gap: 9px; padding: 2px; }
  .dmy-category-button__art { width: 68px; height: 68px; }
  .dmy-category-button strong { font-size: .7rem; }
  .dmy-promo-grid { grid-template-columns: 1fr; }
  .dmy-promo-card { min-height: 190px; border-radius: 22px; padding: 28px; }
  .dmy-promo-card i.dmy-promo-card__icon { right: 25px; bottom: 24px; font-size: 3.6rem; }
  .dmy-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px 10px; }
  .dmy-product-card__media { border-radius: 14px; }
  .dmy-product-card__badge { top: 8px; left: 8px; padding: 5px 7px; font-size: .55rem; }
  .dmy-product-card__wish { top: 7px; right: 7px; width: 31px; height: 31px; }
  .dmy-product-card__name { min-height: 39px; font-size: .76rem; }
  .dmy-product-card__price { font-size: .9rem; }
  .dmy-b2b { grid-template-columns: 1fr; border-radius: 24px; }
  .dmy-b2b__copy { padding: 40px 28px; }
  .dmy-b2b__steps { padding: 18px; }
  .dmy-b2b-step { grid-template-columns: 42px minmax(0, 1fr) auto; gap: 11px; padding: 13px; }
  .dmy-b2b-step > span { width: 42px; height: 42px; border-radius: 13px; }
}

@media (max-width: 420px) {
  .dmy-trust-item { padding: 13px 10px; }
  .dmy-trust-item > span { width: 34px; height: 34px; }
  .dmy-trust-item strong { font-size: .7rem; }
  .dmy-trust-item small { font-size: .59rem; }
  .dmy-category-button__art { width: 62px; height: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  .dmy-home *, .dmy-home *::before, .dmy-home *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
