:root {
  --ink: #06255d;
  --ink-soft: #31466f;
  --pink: #f72d82;
  --pink-dark: #d80f64;
  --yellow: #ffc82e;
  --cyan: #31bfe5;
  --mint: #8fe48b;
  --lavender: #f1defd;
  --paper: #ffffff;
  --shadow: 0 18px 45px rgba(15, 35, 84, 0.14);
  --small-shadow: 0 12px 25px rgba(15, 35, 84, 0.12);
  font-family: "Nunito", "Fredoka", ui-rounded, "Arial Rounded MT Bold", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(49, 191, 229, 0.15), transparent 24%),
    radial-gradient(circle at 92% 2%, rgba(247, 45, 130, 0.13), transparent 22%),
    linear-gradient(180deg, #fff 0%, #f8fbff 44%, #fff 100%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 28px auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(6, 37, 93, 0.08);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(8, 29, 69, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 136px;
  padding: 20px 44px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 37, 93, 0.07);
}

.brand img {
  display: block;
  width: min(300px, 100%);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--pink);
  border-radius: 99px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #f4f7ff;
  border: 1px solid rgba(6, 37, 93, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(6, 37, 93, 0.06);
}

.language-option {
  display: inline-grid;
  min-width: 38px;
  min-height: 34px;
  place-items: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.language-option.active {
  color: #fff;
  background: var(--pink);
  box-shadow: 0 8px 16px rgba(247, 45, 130, 0.24);
}

.icon-link,
.menu-toggle,
.buy-button,
.site-footer a {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(6, 37, 93, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.icon-link:hover,
.buy-button:hover,
.site-footer a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(6, 37, 93, 0.16);
}

.account-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(135deg, #ff4c9b, #ef166f);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(247, 45, 130, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.account-link:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 28px rgba(247, 45, 130, 0.34);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  box-shadow: var(--small-shadow);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
  gap: 22px;
  min-height: 560px;
  padding: 66px 58px 150px;
  overflow: hidden;
}

.section-sky {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.16) 39%, rgba(255, 255, 255, 0) 68%),
    url("./assets/Header_done.png") center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.audio-toggle {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--small-shadow);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.audio-toggle:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 16px 26px rgba(6, 37, 93, 0.16);
}

.audio-toggle[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(135deg, #ff4c9b, #ef166f);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 950;
  color: var(--pink);
  letter-spacing: 0;
}

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

h1 {
  max-width: 470px;
  margin-bottom: 18px;
  font-family: "Fredoka", "Nunito", ui-rounded, "Arial Rounded MT Bold", system-ui, sans-serif;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 span,
.pink-word {
  color: var(--pink);
}

h2 {
  margin-bottom: 10px;
  font-family: "Fredoka", "Nunito", ui-rounded, "Arial Rounded MT Bold", system-ui, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 4px;
  font-family: "Fredoka", "Nunito", ui-rounded, "Arial Rounded MT Bold", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.hero-copy p:not(.eyebrow),
.community-copy p,
.about-grid p {
  max-width: 440px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: end center;
  min-height: 340px;
}

.sun-blob {
  position: absolute;
  inset: 28px 20px auto auto;
  width: 560px;
  max-width: 96%;
  aspect-ratio: 1.35;
  background: linear-gradient(180deg, #ffc9dc, #ffe1bc);
  border-radius: 48% 48% 0 0;
}

.monster-pack {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 290px;
  padding-top: 50px;
}

.monster {
  position: relative;
  flex: 0 0 auto;
  width: var(--monster-w, 160px);
  height: var(--monster-h, 178px);
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.18), transparent 14%),
    repeating-radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 7px),
    var(--fur);
  border-radius: 48% 50% 42% 44%;
  box-shadow: inset 0 -12px rgba(0, 0, 0, 0.06), 0 20px 30px rgba(6, 37, 93, 0.18);
  animation: bob 4.6s ease-in-out infinite;
}

.hero-monster {
  --monster-w: 172px;
  --monster-h: 198px;
  margin: 0 -8px;
}

.hero-main {
  --monster-w: 218px;
  --monster-h: 248px;
  z-index: 4;
}

.monster-pink {
  --fur: linear-gradient(135deg, #ff79a6, #ff3f88);
  z-index: 3;
}

.monster-blue {
  --fur: linear-gradient(135deg, #45d6ff, #1592d3);
  z-index: 2;
}

.monster-purple {
  --fur: linear-gradient(135deg, #c287ff, #914fe2);
  z-index: 1;
  animation-delay: 0.45s;
}

.monster-green {
  --fur: linear-gradient(135deg, #98ee69, #4fcd4c);
}

.monster-yellow {
  --fur: linear-gradient(135deg, #ffd953, #ffad1f);
}

.ear,
.arm,
.foot,
.eye,
.wink,
.mouth,
.tooth {
  position: absolute;
  display: block;
}

.ear {
  top: -12px;
  width: 38px;
  height: 42px;
  background: #ffd14d;
  border-radius: 65% 65% 45% 45%;
  box-shadow: inset 0 -7px rgba(0, 0, 0, 0.08);
}

.ear.left {
  left: 24px;
  transform: rotate(-20deg);
}

.ear.right {
  right: 24px;
  transform: rotate(20deg);
}

.monster-purple .ear,
.monster-green .ear {
  background: #55ddc7;
}

.monster-yellow .ear {
  background: #48c6e5;
}

.eye {
  top: 62px;
  width: 44px;
  height: 52px;
  background: radial-gradient(circle at 62% 34%, #fff 0 9%, transparent 10%), #160f18;
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5px 0 rgba(6, 37, 93, 0.12);
}

.eye.left {
  left: 36px;
}

.eye.right {
  right: 36px;
}

.eye.big {
  top: 58px;
  left: 38px;
  width: 58px;
  height: 68px;
}

.eye.center {
  left: 50%;
  transform: translateX(-50%);
}

.wink {
  top: 78px;
  right: 40px;
  width: 42px;
  height: 18px;
  border-bottom: 8px solid #11152c;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.mouth {
  left: 50%;
  bottom: 48px;
  width: 76px;
  height: 38px;
  background: #201124;
  border-radius: 0 0 50px 50px;
  transform: translateX(-50%);
  overflow: hidden;
}

.mouth::after {
  position: absolute;
  right: 15px;
  bottom: -9px;
  width: 32px;
  height: 18px;
  content: "";
  background: #ff6b9d;
  border-radius: 50%;
}

.mouth.small {
  width: 42px;
  height: 36px;
  border-radius: 50%;
}

.tooth {
  bottom: 66px;
  width: 14px;
  height: 17px;
  background: #fff;
  border-radius: 0 0 7px 7px;
  z-index: 2;
}

.tooth-one {
  left: 49%;
}

.tooth-two {
  left: 59%;
}

.arm {
  bottom: 42px;
  width: 34px;
  height: 58px;
  background: inherit;
  border-radius: 22px;
  box-shadow: inset 0 -8px rgba(0, 0, 0, 0.05);
}

.arm.left {
  left: -15px;
  transform: rotate(13deg);
}

.arm.right {
  right: -15px;
  transform: rotate(-13deg);
}

.foot {
  bottom: -8px;
  width: 50px;
  height: 26px;
  background: inherit;
  border-radius: 50%;
}

.foot.left {
  left: 34px;
}

.foot.right {
  right: 34px;
}

.hero-benefits {
  position: absolute;
  right: 96px;
  bottom: 54px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(630px, calc(100% - 120px));
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-benefits article {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-benefits p {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.18;
}

.benefit-icon {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
}

.benefit-icon.pink {
  background: var(--pink);
}

.benefit-icon.yellow {
  background: var(--yellow);
}

.benefit-icon.cyan {
  background: var(--cyan);
}

.floating-cloud {
  position: absolute;
  width: 98px;
  height: 42px;
  background: #fff;
  border-radius: 999px;
  filter: drop-shadow(0 10px 14px rgba(6, 37, 93, 0.1));
  animation: drift 7s ease-in-out infinite;
}

.floating-cloud::before,
.floating-cloud::after {
  position: absolute;
  bottom: 10px;
  content: "";
  background: #fff;
  border-radius: 50%;
}

.floating-cloud::before {
  left: 18px;
  width: 42px;
  height: 42px;
}

.floating-cloud::after {
  right: 14px;
  width: 54px;
  height: 54px;
}

.cloud-one {
  top: 70px;
  left: 430px;
}

.cloud-two {
  top: 38px;
  right: 128px;
  transform: scale(0.82);
  animation-delay: 1.1s;
}

.star {
  position: absolute;
  z-index: 3;
  color: var(--yellow);
  font-size: 28px;
  text-shadow: 0 3px #f19c00;
  animation: twinkle 2.8s ease-in-out infinite;
}

.star-one {
  top: 80px;
  left: 28px;
}

.star-two {
  top: 44px;
  left: 360px;
  font-size: 18px;
}

.star-three {
  top: 76px;
  right: 312px;
}

.collection-section,
.about-section {
  padding: 40px 58px 54px;
  background: #fff;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(6, 37, 93, 0.06);
  border-radius: 18px;
  box-shadow: var(--small-shadow);
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.product-card:hover {
  transform: translateY(-7px) rotate(-0.5deg);
  box-shadow: 0 22px 34px rgba(6, 37, 93, 0.16);
}

.status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  padding: 7px 11px;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  background: var(--pink);
  border-radius: 999px;
}

.status-badge.soon {
  background: #8f63dd;
}

.product-art {
  display: grid;
  place-items: center;
  background: #fff;
}

.product-art img {
  display: block;
  width: 100%;
  aspect-ratio: 295 / 453;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-art img {
  transform: scale(1.03);
}

.product-info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px 16px;
}

.product-info p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.product-info strong {
  font-size: 16px;
}

.buy-button {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--pink);
  border-radius: 50%;
}

.buy-button.disabled {
  color: #8d98ad;
  background: rgba(255, 255, 255, 0.65);
  cursor: default;
}

.buy-button.disabled:hover {
  transform: none;
  box-shadow: 0 8px 18px rgba(6, 37, 93, 0.08);
}

.community-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: center;
  padding: 40px 58px;
  background:
    radial-gradient(circle at 3% 60%, rgba(143, 228, 139, 0.3), transparent 14%),
    linear-gradient(90deg, #e2f8ff, #fff 42%, #f4e6ff);
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: -8px 0 18px;
  padding: 9px 13px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(247, 45, 130, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(6, 37, 93, 0.08);
}

.social-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.social-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 18px;
  box-shadow: var(--small-shadow);
}

.instagram-preview-card::before {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 7px 10px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 950;
  content: "Soon";
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.mini-scene {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 56%, rgba(255, 255, 255, 0.9) 0 18%, transparent 19%),
    linear-gradient(135deg, var(--scene-a), var(--scene-b));
}

.mini-scene::after {
  position: absolute;
  bottom: 22px;
  left: 50%;
  width: 74px;
  height: 78px;
  content: "";
  background:
    radial-gradient(circle at 35% 38%, #fff 0 9%, transparent 10%),
    radial-gradient(circle at 64% 38%, #fff 0 9%, transparent 10%),
    var(--scene-monster);
  border-radius: 46% 50% 42% 44%;
  transform: translateX(-50%);
  box-shadow: inset 0 -8px rgba(0, 0, 0, 0.06);
}

.pink-scene {
  --scene-a: #ffc7d9;
  --scene-b: #fff1a8;
  --scene-monster: #ff4b8b;
}

.blue-scene {
  --scene-a: #ccefff;
  --scene-b: #ffe3c4;
  --scene-monster: #27b7ef;
}

.purple-scene {
  --scene-a: #ead7ff;
  --scene-b: #ffd3ee;
  --scene-monster: #9a5ee8;
}

.yellow-scene {
  --scene-a: #fff0ab;
  --scene-b: #d8f8ff;
  --scene-monster: #ffc128;
}

.social-card span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  overflow: hidden;
  padding: 8px 34px 8px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(6, 37, 93, 0.34);
  border-radius: 999px;
  backdrop-filter: blur(5px);
}

.social-card svg {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  color: #fff;
  fill: currentColor;
}

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

.about-grid article {
  padding: 24px;
  background: #f9fbff;
  border: 1px solid rgba(6, 37, 93, 0.07);
  border-radius: 18px;
}

.about-grid svg {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--pink);
}

.about-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 58px;
  background: #fff8e8;
}

.site-footer img {
  width: 170px;
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.confetti {
  position: fixed;
  z-index: 60;
  width: 9px;
  height: 14px;
  pointer-events: none;
  border-radius: 3px;
  animation: pop 850ms ease-out forwards;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes drift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 14px 8px;
  }
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.25) rotate(12deg);
  }
}

@keyframes pop {
  from {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
  to {
    opacity: 0;
    transform: translate(var(--x), var(--y)) rotate(260deg);
  }
}

@media (max-width: 1040px) {
  .page-shell {
    width: min(100% - 20px, 920px);
    margin: 10px auto;
    border-radius: 24px;
  }

  .site-header {
    grid-template-columns: 220px auto auto;
    min-height: 106px;
    padding: 18px 24px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .header-actions {
    justify-content: end;
  }

  .icon-link {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 42px 30px 170px;
  }

  .hero-video {
    object-position: 56% center;
  }

  .hero-stage {
    min-height: 310px;
  }

  .hero-benefits {
    right: 30px;
    left: 30px;
    width: auto;
  }

  .audio-toggle {
    right: 18px;
    top: 18px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .community-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 92px;
    padding: 14px 18px;
  }

  .brand img {
    width: 200px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 10px;
  }

  .account-link {
    flex: 1 1 auto;
  }

  .language-switcher {
    flex: 0 0 auto;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 0;
    overflow: visible;
    background: #fff;
  }

  .hero-video {
    position: relative;
    grid-row: 2;
    width: 100%;
    height: clamp(230px, 62vw, 310px);
    object-fit: cover;
    object-position: 63% center;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    grid-row: 1;
    padding: 28px 20px 18px;
    background:
      radial-gradient(circle at 94% 18%, rgba(247, 45, 130, 0.11), transparent 28%),
      linear-gradient(180deg, #fff 0%, #f6fbff 100%);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.35;
  }

  h1 {
    max-width: 330px;
    margin-bottom: 12px;
    font-size: 36px;
    line-height: 0.98;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }

  .hero-benefits {
    position: relative;
    grid-row: 3;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
    padding: 14px 20px 22px;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-benefits article {
    min-height: 58px;
    padding: 10px 12px;
    background: #f8fbff;
    border: 1px solid rgba(6, 37, 93, 0.07);
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(6, 37, 93, 0.06);
  }

  .hero-benefits p {
    font-size: 13px;
  }

  .benefit-icon {
    width: 42px;
    height: 42px;
  }

  .audio-toggle {
    grid-row: 2;
    grid-column: 1;
    align-self: start;
    justify-self: end;
    top: 14px;
    right: 14px;
    min-height: 36px;
    padding: 0 11px;
    font-size: 12px;
  }

  .cloud-one,
  .cloud-two,
  .star-two,
  .star-three {
    display: none;
  }

  .collection-section,
  .community-band,
  .about-section {
    padding: 34px 20px;
  }

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

  .product-grid,
  .social-strip,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 20px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
