/* New homepage preview — scoped so header/footer stay untouched */

.container:has(.hp-new) #pagetitle,
.container:has(.hp-new) #navigation {
  display: none !important;
}
section.middle:has(.hp-new) > .container,
.wrapper > .container:has(.hp-new) {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}
#content:has(.hp-new) {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
  float: none !important;
}

.hp-new {
  --hp-pink: #ff70b8;
  --hp-pink-light: #FFF0F8;
  --hp-text: #404040;
  --hp-text-secondary: #666;
  --hp-text-tertiary: #999;
  --hp-bg: #fff;
  --hp-bg-secondary: #F7F7F7;
  --hp-border: rgba(0, 0, 0, 0.1);
  --hp-radius: 16px;
  --hp-radius-lg: 24px;
  font-family: "Manrope", sans-serif;
  color: var(--hp-text);
  background: var(--hp-bg);
}
.hp-new *,
.hp-new *::before,
.hp-new *::after {
  box-sizing: border-box;
}
.hp-new :is(.hp-hero, .hp-nav, .hp-blog, .hp-brands, .hp-voices, .hp-promo, .hp-glossary, .hp-manifesto, .hp-history, .hp-trust) a {
  text-decoration: none;
  color: inherit;
}
.hp-new img {
  display: block;
  max-width: 100%;
}
.hp-new :is(.hp-hero, .hp-nav, .hp-blog, .hp-brands, .hp-voices, .hp-promo, .hp-glossary, .hp-manifesto, .hp-history, .hp-trust) button {
  font-family: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* Aspro sets `* { font-family: Manrope !important }` — keep it for body copy */
.hp-new .hp-hero *,
.hp-new .hp-section-label,
.hp-new .hp-brand-all,
.hp-new .hp-glossary-bubble,
.hp-new .hp-nav-cta,
.hp-new .hp-link-pink,
.hp-new .hp-trust-text,
.hp-new .hp-voice-author {
  font-family: "Unbounded", sans-serif !important;
}

.hp-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.hp-section-label {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(13px, 1.35vw, 16px);
  font-weight: 400;
  color: #404040;
  letter-spacing: -0.02em;
  text-transform: none;
  margin: 0 0 1.25rem;
  line-height: 1.3;
}
.hp-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.25rem;
}
.hp-section-header .hp-section-label {
  margin-bottom: 0;
}
.hp-new a.hp-link-pink,
.hp-new .hp-link-pink {
  font-family: "Unbounded", sans-serif !important;
  font-size: 13px;
  font-weight: 400;
  color: var(--hp-pink) !important;
  transition: opacity 0.2s;
}
.hp-new a.hp-link-pink:hover,
.hp-new .hp-link-pink:hover {
  opacity: 0.7;
  color: var(--hp-pink) !important;
}
.hp-new .hp-nav-cta {
  font-family: "Unbounded", sans-serif !important;
  font-size: 13px;
  font-weight: 400;
  color: var(--hp-pink) !important;
}

/* Hero */
.hp-hero {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 0.5rem;
}
.hp-hero-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3em;
  flex-wrap: wrap;
  text-align: center;
}
.hp-hero-static,
.hp-hero-dynamic {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(15px, 2.5vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hp-hero-static { color: #404040; }
.hp-hero-dynamic {
  color: #ff70b8;
  white-space: nowrap;
}
.hp-hero-cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: #ff70b8;
  margin-left: 3px;
  vertical-align: middle;
  animation: hp-blink 0.7s step-end infinite;
}
@keyframes hp-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Nav */
.hp-nav {
  padding: 1.15rem 1.5rem 1.5rem;
}
.hp-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 700px) {
  .hp-nav-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .hp-nav-grid { grid-template-columns: 1fr; }
}
.hp-nav-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--hp-bg);
  border: 0;
  border-radius: var(--hp-radius);
  overflow: hidden;
  transition: transform 0.2s;
}
.hp-nav-card:hover {
  transform: translateY(-2px);
}
.hp-nav-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hp-nav-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hp-nav-img-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hp-border);
  opacity: 0.4;
}
.hp-nav-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.hp-nav-title {
  font-size: 13px;
  font-weight: 400;
  color: var(--hp-text);
  line-height: 1.3;
  margin-bottom: 6px;
}
.hp-nav-sub {
  font-size: 11px;
  color: var(--hp-text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
  flex: 1 1 auto;
}
.hp-nav-cta {
  font-size: 13px;
  font-weight: 400;
  color: var(--hp-pink);
  margin-top: auto;
}

/* Promo */
.hp-promo {
  display: none;
  padding: 1.75rem 1.5rem;
}
.hp-promo--active { display: block; }
.hp-promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 700px) {
  .hp-promo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .hp-promo-grid { grid-template-columns: 1fr; }
}
.hp-promo-card { display: block; }
.hp-promo-card:hover .hp-promo-card-title { color: var(--hp-pink); }
.hp-promo-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--hp-radius);
  overflow: hidden;
  background: var(--hp-bg-secondary);
  margin-bottom: 12px;
}
.hp-promo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hp-promo-card:hover .hp-promo-card-img img {
  transform: scale(1.03);
}
.hp-promo-card-title {
  font-size: 13px;
  font-weight: 400;
  color: var(--hp-text);
  line-height: 1.3;
  transition: color 0.2s;
}

/* Picks — native catalog.section / catalog_block2 (same as blog attached products) */
.hp-picks {
  padding: 1.75rem 1.5rem;
}
.hp-picks .wraps.goods-block {
  padding: 0;
  margin: 0;
}
.hp-new .hp-picks .bottom_nav {
  display: none;
}
.hp-new .hp-picks .top_wrapper {
  width: 100%;
}

/* Brands */
.hp-brands {
  padding: 1.75rem 1.5rem;
}
.hp-brands-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  overflow: hidden;
  max-width: 100%;
}
.hp-brands-logos {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.hp-brand-item {
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--hp-radius);
  width: auto;
  height: 120px;
  min-height: 120px;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  overflow: hidden;
  transition: border-color 0.2s, color 0.2s;
}
.hp-brand-item[hidden] {
  display: none !important;
}
.hp-brand-item:hover {
  background: #fff;
  border-color: #ff70b8;
  transform: none;
  box-shadow: none;
}
.hp-brand-item img {
  max-width: 120px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
  display: block;
  image-rendering: auto;
  -webkit-user-select: none;
}
.hp-brand-name {
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.3;
}
.hp-brand-all {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #404040;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  flex: 0 0 auto;
  width: auto;
  min-width: 148px;
  height: 120px;
  min-height: 120px;
  padding: 0 22px;
  background: #fff;
  border: 1px solid transparent;
  justify-content: center;
}
.hp-brand-all:hover {
  background: #fff;
  border-color: #ff70b8;
  color: #ff70b8 !important;
}
@media (max-width: 700px) {
  .hp-brands-row {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 4px;
  }
  .hp-brands-logos {
    flex: 0 0 auto;
    overflow: visible;
  }
  .hp-brand-item,
  .hp-brand-all {
    flex: 0 0 156px;
    width: 156px;
    min-width: 156px;
    height: 112px;
    min-height: 112px;
  }
  .hp-brand-item img {
    max-width: 118px;
    max-height: 64px;
  }
}

/* Trust */
.hp-trust {
  padding: 1.25rem 1.5rem;
}
.hp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 560px) {
  .hp-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.hp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.hp-trust-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-pink);
}
.hp-trust-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hp-trust-text {
  font-size: 11px;
  font-weight: 400;
  color: #404040;
  line-height: 1.5;
}

/* Manifesto */
.hp-manifesto {
  padding: 1.25rem 1.5rem;
}
.hp-manifesto-inner {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--hp-radius-lg);
  background:
    radial-gradient(ellipse 80% 90% at 10% 18%, #ff8ec8 0%, transparent 58%),
    radial-gradient(ellipse 75% 80% at 90% 10%, #c792ff 0%, transparent 56%),
    radial-gradient(ellipse 70% 80% at 94% 88%, #ffd84a 0%, transparent 58%),
    radial-gradient(ellipse 75% 75% at 6% 90%, #5ecfff 0%, transparent 56%),
    radial-gradient(ellipse 55% 55% at 48% 48%, #ffb068 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 72% 38%, #7aa8ff 0%, transparent 48%),
    #ffe6f2;
  background-size: 170% 170%, 180% 180%, 170% 170%, 180% 180%, 140% 140%, 150% 150%, auto;
  background-position: 0% 15%, 100% 0%, 100% 100%, 0% 100%, 50% 50%, 70% 40%, 0 0;
  animation: hp-manifesto-drift 18s ease-in-out infinite alternate;
}
@keyframes hp-manifesto-drift {
  0% {
    background-position: 0% 15%, 100% 0%, 100% 100%, 0% 100%, 45% 50%, 72% 38%, 0 0;
  }
  100% {
    background-position: 70% 8%, 20% 70%, 30% 20%, 85% 15%, 55% 40%, 40% 60%, 0 0;
  }
}
.hp-manifesto-inner .hp-section-label {
  color: #404040;
  margin-bottom: 2rem;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500 !important;
}
.hp-manifesto-p,
.hp-manifesto-p-bold {
  font-size: clamp(15px, 1.7vw, 18px);
  color: #404040;
  line-height: 1.65;
  max-width: 980px;
  width: 100%;
  margin: 0 0 0.7rem;
  text-wrap: pretty;
}
.hp-manifesto-p { font-weight: 400; }
.hp-manifesto-p-bold {
  font-weight: 700 !important;
  margin-bottom: 0;
}

/* Voices */
.hp-voices {
  padding: 1.75rem 1.5rem;
  overflow: hidden;
}
.hp-voices .hp-section-label {
  margin-bottom: 1.15rem;
}
.hp-voices-track-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.hp-voices-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: hp-voices-scroll 35s linear infinite;
}
.hp-voices-track:hover {
  animation-play-state: paused;
}
@keyframes hp-voices-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hp-voice-card {
  background: var(--hp-bg-secondary);
  border-radius: var(--hp-radius);
  padding: 1.5rem;
  width: 280px;
  flex-shrink: 0;
}
.hp-voice-quote {
  font-size: 13px;
  font-weight: 400;
  font-style: italic !important;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.hp-voice-quote::before,
.hp-voice-quote::after {
  color: inherit;
}
.hp-voice-quote::before { content: "«"; }
.hp-voice-quote::after { content: "»"; }
.hp-voice-author {
  font-size: 11px;
  font-weight: 400;
  color: #ff70b8;
  letter-spacing: 0;
}

/* History — look frozen, hidden for now */
.hp-history {
  display: none !important;
  padding: 1.75rem 1.5rem;
}
.hp-history-desktop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
.hp-history-mobile { display: none; }
@media (max-width: 640px) {
  .hp-history-desktop { display: none; }
  .hp-history-mobile { display: block; }
}
.hp-history-img-sticky {
  position: relative;
  height: 100%;
  min-height: 0;
  display: flex;
}
.hp-history-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: auto;
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  min-height: 100%;
  background: var(--hp-bg-secondary);
  position: relative;
}
.hp-history-rows {
  display: flex;
  flex-direction: column;
}
.hp-history-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hp-history-img.active { opacity: 1; }
.hp-history-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-history-placeholder-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--hp-border);
  opacity: 0.2;
}
.hp-history-row {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 0.5px solid var(--hp-border);
  padding: 1.25rem 0;
  cursor: pointer;
  transition: padding-left 0.2s;
}
.hp-history-row:first-child {
  border-top: 0.5px solid var(--hp-border);
}
.hp-history-row:hover,
.hp-history-row.active {
  padding-left: 8px;
}
.hp-history-row.active .hp-history-row-title {
  color: var(--hp-pink);
}
.hp-history-row-title {
  font-size: 15px;
  font-weight: 700 !important;
  color: var(--hp-text);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.hp-history-row-text {
  font-size: 11px;
  color: var(--hp-text-secondary);
  line-height: 1.7;
}
.hp-history-mob-text {
  font-size: 12px;
  color: var(--hp-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hp-history-mob-text strong {
  font-weight: 700;
  color: var(--hp-text);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 15px;
}
.hp-history-mob-slides {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
  padding-bottom: 4px;
}
.hp-history-mob-slides::-webkit-scrollbar { display: none; }
.hp-history-mob-slide {
  flex-shrink: 0;
  width: 260px;
  aspect-ratio: 16/9;
  border-radius: var(--hp-radius);
  background: var(--hp-bg-secondary);
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
}
.hp-history-mob-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-history-mob-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-history-mob-slide-placeholder-inner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--hp-border);
  opacity: 0.2;
}
.hp-history-mob-slide-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Blog */
.hp-blog {
  padding: 1.75rem 1.5rem;
}
.hp-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 700px) {
  .hp-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .hp-blog-grid { grid-template-columns: 1fr; }
}
.hp-blog-card { display: block; }
.hp-blog-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--hp-radius);
  overflow: hidden;
  background: var(--hp-bg-secondary);
  margin-bottom: 12px;
}
.hp-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hp-blog-card:hover .hp-blog-img img {
  transform: scale(1.03);
}
.hp-blog-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-blog-img-placeholder-inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hp-border);
  opacity: 0.2;
}
.hp-blog-title {
  font-family: "Manrope", sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  color: #404040;
  line-height: 18px;
  margin: 0 0 10px;
  padding: 0 10px;
  overflow: visible;
  white-space: normal;
  display: block;
  transition: color 0.2s;
}
.hp-blog-card:hover .hp-blog-title {
  color: #ff57ab;
}

/* Glossary */
.hp-glossary {
  padding: 1.25rem 1.5rem 1.75rem;
}
.hp-glossary-inner {
  position: relative;
  border-radius: var(--hp-radius-lg);
  border: 0;
  padding: 0;
  overflow: visible;
}
.hp-glossary-left {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: min(420px, 42%);
}
.hp-glossary-left .hp-section-label {
  margin-bottom: 1rem;
}
.hp-glossary-lead {
  font-size: 14px;
  color: var(--hp-text-secondary);
  line-height: 1.7;
  margin: 0 0 1.25rem;
  max-width: 36em;
}
.hp-glossary-right {
  position: absolute;
  inset: 0;
  min-height: 0;
  height: auto;
  overflow: visible;
  pointer-events: none;
}
.hp-glossary-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: visible;
  pointer-events: none;
}
.hp-glossary-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  font-size: 14px;
  font-weight: 500 !important;
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: pre-line;
  color: #404040 !important;
  background-color: rgba(253, 245, 250, 0.82);
  background-image:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.12) 18%, transparent 42%),
    radial-gradient(circle at 78% 28%, rgba(176, 120, 255, 0.34), transparent 46%),
    radial-gradient(circle at 82% 76%, rgba(255, 220, 70, 0.32), transparent 48%),
    radial-gradient(circle at 22% 78%, rgba(80, 190, 255, 0.34), transparent 46%),
    radial-gradient(circle at 50% 50%, rgba(255, 140, 210, 0.24), rgba(230, 210, 255, 0.2) 58%, rgba(255, 255, 255, 0.28) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.55),
    inset 0 -10px 18px rgba(160, 100, 255, 0.12),
    0 8px 18px rgba(120, 150, 255, 0.16);
  opacity: 0;
  transform: scale(0.15);
  transform-origin: center;
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.2, 1.4, 0.3, 1);
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  box-sizing: border-box;
  overflow: hidden;
  pointer-events: auto;
}
.hp-bubble-violet {
  background-color: rgba(247, 242, 255, 0.82);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.55), 0 8px 18px rgba(150, 90, 255, 0.2);
}
.hp-bubble-yellow {
  background-color: rgba(255, 249, 240, 0.82);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.55), 0 8px 18px rgba(255, 210, 70, 0.22);
}
.hp-bubble-pink {
  background-color: rgba(253, 240, 248, 0.82);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.55), 0 8px 18px rgba(255, 112, 184, 0.22);
}
.hp-bubble-blue {
  background-color: rgba(240, 247, 255, 0.82);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.55), 0 8px 18px rgba(80, 190, 255, 0.22);
}
.hp-glossary-bubble-text {
  position: relative;
  z-index: 2;
  display: block;
  overflow: visible;
  text-align: center;
  max-width: none;
  width: max-content;
  white-space: pre-line;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  font-size: inherit;
  font-weight: inherit;
}
.hp-glossary-bubble.is-in {
  opacity: 1;
  transform: scale(1);
}
.hp-glossary-bubble.is-pop {
  opacity: 0;
  transform: scale(1.4);
  filter: blur(1px);
  transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
}
@media (max-width: 700px) {
  .hp-glossary {
    margin-bottom: -5px;
  }
  .hp-glossary-inner {
    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }
  .hp-glossary-left {
    width: auto;
    max-width: none;
    margin-bottom: 0.75rem;
  }
  .hp-glossary-right {
    position: relative;
    inset: auto;
    width: 100%;
    overflow: visible;
    padding-bottom: 5px;
    pointer-events: auto;
  }
  .hp-glossary-stage {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 184px;
    height: 184px;
    overflow: visible;
    pointer-events: auto;
  }
  .hp-glossary-bubble.is-pop {
    transform: scale(1.15);
  }
  .hp-glossary-bubble {
    background-color: transparent;
    background-image:
      radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.18) 18%, transparent 42%),
      radial-gradient(circle at 78% 28%, rgba(176, 120, 255, 0.42), transparent 46%),
      radial-gradient(circle at 82% 76%, rgba(255, 220, 70, 0.4), transparent 48%),
      radial-gradient(circle at 22% 78%, rgba(80, 190, 255, 0.42), transparent 46%),
      radial-gradient(circle at 50% 50%, rgba(255, 140, 210, 0.32), rgba(230, 210, 255, 0.28) 58%, rgba(255, 255, 255, 0.45) 100%);
  }
  .hp-bubble-violet,
  .hp-bubble-yellow,
  .hp-bubble-pink,
  .hp-bubble-blue {
    background-color: transparent;
  }
}

@media (max-width: 700px) {
  section.middle:has(.hp-new),
  body .wrapper:has(.hp-new) .middle,
  section.middle:has(.hp-new) > .container,
  .wrapper > .container:has(.hp-new) {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  .hp-new {
    font-size: 16px;
  }
  .hp-hero {
    padding: 1.2rem 1.15rem 0.75rem;
    min-height: 0;
    align-items: flex-start;
  }
  .hp-hero-line {
    width: 100%;
    min-height: 2.5em;
    align-items: flex-start;
    align-content: flex-start;
  }
  .hp-hero-static,
  .hp-hero-dynamic {
    font-size: 18px;
  }
  .hp-hero-dynamic {
    white-space: normal;
  }
  .hp-section-label {
    font-size: 16px;
  }
  .hp-nav > .hp-inner > .hp-section-label {
    margin-bottom: 1rem;
  }
  .hp-new a.hp-link-pink,
  .hp-new .hp-link-pink,
  .hp-new .hp-nav-cta {
    font-size: 14px;
  }
  .hp-nav-title {
    font-size: 15px;
  }
  .hp-nav-sub {
    font-size: 13px;
  }
  .hp-blog-title {
    font-size: 13px;
    line-height: 16px;
    overflow: visible;
    text-overflow: unset;
    display: block;
    -webkit-line-clamp: unset;
    white-space: normal;
  }
  .hp-promo-card-title {
    font-size: 16px;
    line-height: 22px;
  }
  .hp-glossary-lead {
    font-size: 16px;
  }
  .hp-manifesto-inner {
    min-height: 0;
    padding: 1.5rem 1.15rem 1.4rem;
  }
  .hp-manifesto-inner .hp-section-label {
    margin-bottom: 0.9rem;
    font-size: 18px;
  }
  .hp-manifesto-p,
  .hp-manifesto-p-bold {
    font-size: 15px;
    line-height: 1.55;
  }
  .hp-glossary-bubble {
    font-size: 15px;
  }
  .hp-history-row-title,
  .hp-history-mob-text strong {
    font-size: 16px;
  }
  .hp-history-row-text,
  .hp-history-mob-text {
    font-size: 14px;
  }
  .hp-voice-quote {
    font-size: 15px;
  }
  .hp-voice-author {
    font-size: 12px;
  }
  .hp-trust-text {
    font-size: 13px;
  }
  .hp-brand-all {
    font-size: 14px;
  }
  .hp-blog-card:nth-child(n+5) {
    display: none;
  }
  .hp-nav,
  .hp-blog,
  .hp-picks,
  .hp-promo,
  .hp-brands,
  .hp-history,
  .hp-glossary {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .hp-new > .hp-nav {
    padding-top: 0.7rem;
  }
  .hp-voices {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .hp-manifesto,
  .hp-trust {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-hero-cursor { animation: none; }
  .hp-voices-track { animation: none; }
  .hp-manifesto-inner {
    animation: none;
    transition: none;
  }
  .hp-blog-img img { transition: none; }
  .hp-glossary-bubble {
    opacity: 1;
    transform: none;
    transition: none;
    filter: none;
  }
}
