:root {
  --yellow: #ffd400;
  --gold: #f7b800;
  --pink: #e3007a;
  --blue: #015aaa;
  --navy: #072d64;
  --ink: #161616;
  --muted: #646464;
  --line: #e7e7e7;
  --paper: #ffffff;
  --soft: #f6f7fb;
  --shadow: 0 22px 55px rgba(16, 25, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.page-loading {
  overflow: hidden;
}

.brand-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--blue);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.92), rgba(255, 212, 0, 0.95) 42%, rgba(247, 184, 0, 0.98)),
    var(--yellow);
  transition: opacity 420ms ease, visibility 420ms ease;
}

.brand-loader--closing {
  opacity: 0;
  visibility: hidden;
}

.brand-loader--hidden {
  display: none;
}

.brand-loader__shell {
  width: min(100%, 390px);
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 34px 28px;
  border: 1px solid rgba(1, 90, 170, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 26px 90px rgba(7, 45, 100, 0.18);
  backdrop-filter: blur(16px);
}

.brand-loader__mark {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 18px;
  color: var(--blue);
  background: var(--yellow);
  box-shadow: 0 18px 38px rgba(1, 90, 170, 0.18);
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  animation: loader-mark 1050ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand-loader__mark::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 2px solid rgba(227, 0, 122, 0.28);
  border-radius: 24px;
  animation: loader-ring 1300ms ease-out infinite;
}

.brand-loader__copy {
  display: grid;
  gap: 4px;
  text-align: center;
  text-transform: uppercase;
}

.brand-loader__copy strong {
  font-size: 34px;
  line-height: 0.95;
}

.brand-loader__copy span {
  color: #394352;
  font-size: 13px;
  font-weight: 900;
}

.brand-loader__track {
  width: min(100%, 230px);
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(1, 90, 170, 0.14);
}

.brand-loader__bar {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  transform: scaleX(0.08);
  transform-origin: left;
  transition: transform 260ms ease;
}

@keyframes loader-mark {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.86) rotate(-6deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

@keyframes loader-ring {
  0% {
    opacity: 0.75;
    transform: scale(0.92);
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

body.high-contrast {
  --yellow: #ffffff;
  --pink: #ffffff;
  --blue: #000000;
  --navy: #000000;
  --ink: #000000;
  --muted: #111111;
  --line: #000000;
  --soft: #ffffff;
}

body.font-large {
  font-size: 18px;
}

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

button,
input,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  box-shadow: 0 5px 25px rgba(20, 20, 20, 0.08);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 42px rgba(16, 25, 45, 0.13);
  backdrop-filter: blur(16px);
}

.reveal-ready .reveal-on-scroll {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    filter 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.utility-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px clamp(18px, 5vw, 70px);
  color: #4f4f4f;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.utility-bar button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.collaborator {
  color: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 70px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 230px;
  gap: 12px;
  isolation: isolate;
  transition: transform 180ms ease;
}

.brand-symbol {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 6px;
  color: var(--blue);
  background: var(--yellow);
  font-size: 34px;
  font-weight: 900;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(1, 90, 170, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, border-radius 220ms ease;
}

.brand-symbol::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.78), transparent 65%);
  transform: translateX(-120%) rotate(12deg);
  transition: transform 620ms ease;
}

.brand::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 66px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
}

.brand:hover .brand-symbol,
.brand:focus-visible .brand-symbol {
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(1, 90, 170, 0.2);
  transform: rotate(-3deg) scale(1.04);
}

.brand:hover .brand-symbol::before,
.brand:focus-visible .brand-symbol::before {
  transform: translateX(120%) rotate(12deg);
}

.brand:hover::after,
.brand:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.brand > span:last-child {
  transition: transform 220ms ease;
}

.brand:hover > span:last-child,
.brand:focus-visible > span:last-child {
  transform: translateX(2px);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.02;
}

.brand strong {
  color: var(--blue);
  font-size: 28px;
  text-transform: uppercase;
}

.brand small {
  max-width: 160px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #343434;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--pink);
}

.buy-link {
  padding: 12px 18px;
  border-radius: 6px;
  color: var(--blue);
  background: var(--yellow);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-cta {
  display: none;
}

.hero {
  min-height: calc(100vh - 106px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: stretch;
  background: var(--yellow);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 9vw, 105px) clamp(18px, 5vw, 70px);
}

.slide-count {
  width: max-content;
  margin-bottom: 28px;
  padding: 8px 12px;
  border: 1px solid rgba(1, 90, 170, 0.25);
  border-radius: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.tag,
.section-title p {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy > p:not(.tag) {
  max-width: 610px;
  color: #263548;
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--pink);
}

.button.secondary {
  color: var(--blue);
  border-color: var(--blue);
  background: transparent;
}

.button.full {
  width: 100%;
}

.hero-stage {
  position: relative;
  min-height: 640px;
  background:
    linear-gradient(135deg, rgba(1, 90, 170, 0.86), rgba(227, 0, 122, 0.72)),
    url("https://images.unsplash.com/photo-1471864190281-a93a3070b6de?auto=format&fit=crop&w=1600&q=82") center/cover;
  transform: translate3d(var(--stage-x, 0), var(--stage-y, 0), 0);
  transition: transform 420ms ease-out;
  will-change: transform;
}

.product-card {
  position: absolute;
  display: grid;
  align-content: center;
  width: min(260px, 42vw);
  min-height: 150px;
  padding: 22px;
  border-radius: 8px;
  color: var(--blue);
  background: white;
  box-shadow: var(--shadow);
  transform: translate3d(var(--card-x, 0), var(--card-y, 0), 0);
  transition: transform 420ms ease-out, box-shadow 220ms ease;
  will-change: transform;
}

.product-card span {
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card strong {
  margin-top: 8px;
  font-size: 31px;
  line-height: 0.95;
  text-transform: uppercase;
}

.card-one {
  top: 16%;
  left: 9%;
}

.card-two {
  right: 10%;
  top: 38%;
  background: var(--yellow);
}

.card-three {
  left: 20%;
  bottom: 12%;
}

.shop,
.tips,
.news,
.units,
.about-band,
.portal {
  padding: clamp(58px, 9vw, 104px) clamp(18px, 5vw, 70px);
}

.section-title {
  max-width: 720px;
  margin-bottom: 34px;
}

.shop-note {
  max-width: 920px;
  margin: -12px 0 28px;
  padding: 14px 18px;
  border-left: 5px solid var(--pink);
  color: #394352;
  background: #fff8cc;
  font-weight: 800;
  line-height: 1.5;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 14px;
  align-items: end;
  margin-bottom: 22px;
}

.shop-search {
  display: grid;
  gap: 8px;
  color: #344052;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-search input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: white;
  box-shadow: 0 10px 28px rgba(16, 25, 45, 0.08);
}

.shop-filter {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.shop-filter button {
  min-height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--blue);
  background: white;
  font-weight: 900;
  cursor: pointer;
}

.shop-filter button.active {
  color: white;
  border-color: var(--blue);
  background: var(--blue);
}

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

.shop-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.shop-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.52), transparent 48%);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 220ms ease, transform 620ms ease;
}

.shop-card:hover {
  border-color: rgba(1, 90, 170, 0.22);
  box-shadow: 0 26px 70px rgba(16, 25, 45, 0.16);
  --lift: -3px;
}

.shop-card:hover::after {
  opacity: 1;
  transform: translateX(70%);
}

.shop-card--featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--blue));
  z-index: 1;
}

.shop-card-media {
  position: relative;
  overflow: hidden;
}

.shop-card-media img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  transition: transform 420ms ease;
}

.shop-card:hover .shop-card-media img {
  transform: scale(1.045);
}

.shop-card-body {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 20px;
}

.shop-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.badge {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--blue);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-card p {
  min-height: 68px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.stock-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  color: #136f3a;
  background: #e8f7ee;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(16, 25, 45, 0.12);
}

.featured-pill {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  background: var(--pink);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(16, 25, 45, 0.14);
}

.shop-card-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.price-label {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  color: var(--pink);
  font-size: 26px;
  font-weight: 900;
}

.shop-card-footer .button {
  min-width: 112px;
}

.shop-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: white;
  font-weight: 900;
  text-align: center;
}

.tips {
  background: var(--soft);
}

.tips-warning {
  max-width: 920px;
  margin: -12px 0 28px;
  padding: 14px 18px;
  border-left: 5px solid var(--blue);
  color: #28394d;
  background: white;
  font-weight: 800;
  line-height: 1.5;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tips-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.tips-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--pink);
  font-weight: 900;
}

.tips-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 6vw, 88px);
  color: white;
  background: var(--blue);
}

.about-band .tag {
  color: var(--yellow);
}

.about-band p:not(.tag) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.65;
}

.news {
  background: var(--soft);
}

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

.news article {
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.news img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.news article span,
.news article h3 {
  display: block;
  padding-right: 22px;
  padding-left: 22px;
}

.news article span {
  padding-top: 22px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.news article h3 {
  padding-bottom: 24px;
}

.portal {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 520px);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  color: white;
  background: var(--navy);
}

.portal .tag {
  color: var(--yellow);
}

.portal-copy p:not(.tag) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.access-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.access-option {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  cursor: pointer;
}

.access-option.active {
  color: var(--blue);
  background: var(--yellow);
}

.portal-form {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: white;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.unit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.unit-list article {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.unit-list article:first-child {
  border-left: 1px solid var(--line);
}

.unit-list p {
  color: var(--muted);
}

.unit-list a {
  color: var(--blue);
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 70px);
  color: white;
  background: #111111;
}

.footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-weight: 900;
}

@media (max-width: 1020px) {
  .utility-bar {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  .menu-button {
    position: relative;
    z-index: 32;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-color: rgba(1, 90, 170, 0.18);
    background: #f7f9ff;
  }

  .menu-button span {
    transition: transform 180ms ease, opacity 180ms ease;
  }

  body.menu-open .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: relative;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: 14px;
    left: 14px;
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100dvh - 98px);
    overflow: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--soft);
  }

  .nav-links .buy-link {
    justify-content: center;
    color: var(--blue);
    background: var(--yellow);
  }

  .hero,
  .about-band,
  .portal {
    grid-template-columns: 1fr;
  }

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

  .product-grid,
  .tips-grid,
  .news-grid,
  .unit-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .site-header {
    box-shadow: 0 8px 24px rgba(16, 25, 45, 0.1);
  }

  .main-nav {
    gap: 12px;
    min-height: 70px;
    padding: 12px 74px 12px 16px;
  }

  .menu-button {
    position: fixed;
    top: 12px;
    right: 14px;
    width: 46px;
    height: 46px;
    border: 2px solid rgba(1, 90, 170, 0.22);
    box-shadow: 0 8px 18px rgba(1, 90, 170, 0.12);
  }

  .brand {
    min-width: 0;
  }

  .brand-symbol {
    width: 46px;
    height: 46px;
    font-size: 29px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    max-width: 135px;
    font-size: 11px;
  }

  .nav-links {
    top: 70px;
    right: 10px;
    left: 10px;
  }

  .slide-count {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .tag,
  .section-title p {
    font-size: 11px;
  }

  h1 {
    font-size: clamp(34px, 12vw, 48px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(27px, 9vw, 38px);
  }

  h3 {
    font-size: 19px;
  }

  .hero-copy {
    padding: 34px 16px 32px;
  }

  .hero-copy > p:not(.tag) {
    font-size: 16px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-stage {
    display: grid;
    gap: 12px;
    min-height: 0;
    padding: 18px 16px 26px;
    background-position: center;
  }

  .product-grid,
  .tips-grid,
  .news-grid,
  .unit-list,
  .access-panel {
    grid-template-columns: 1fr;
  }

  .product-card {
    position: static;
    width: 100%;
    min-height: auto;
    padding: 18px;
  }

  .product-card strong {
    font-size: 23px;
    line-height: 1;
  }

  .hero-actions,
  .footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .shop,
  .tips,
  .news,
  .units,
  .about-band,
  .portal {
    padding: 46px 16px;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .shop-note,
  .tips-warning {
    margin: -6px 0 18px;
    padding: 12px 14px;
    border-left-width: 4px;
    font-size: 13px;
  }

  .product-grid {
    gap: 14px;
  }

  .shop-toolbar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shop-card {
    border-radius: 10px;
    box-shadow: 0 12px 34px rgba(16, 25, 45, 0.12);
  }

  .shop-card img {
    aspect-ratio: 1.65;
  }

  .shop-card-body {
    gap: 10px;
    padding: 18px;
  }

  .badge {
    font-size: 11px;
  }

  .shop-card p {
    min-height: 0;
    font-size: 14px;
  }

  .shop-card-footer {
    grid-template-columns: 1fr;
  }

  .shop-card-footer .button {
    width: 100%;
  }

  .tips-grid {
    gap: 12px;
  }

  .tips-grid article {
    min-height: 0;
    padding: 18px;
  }

  .tips-grid span {
    margin-bottom: 14px;
  }

  .price {
    font-size: 24px;
  }

  .about-band {
    gap: 12px;
  }

  .about-band p:not(.tag),
  .portal-copy p:not(.tag) {
    font-size: 16px;
  }

  .access-panel {
    gap: 10px;
    padding: 12px;
  }

  .access-option,
  input,
  select {
    min-height: 50px;
  }

  .unit-list article {
    min-height: 0;
    padding: 22px 18px;
    border-left: 1px solid var(--line);
  }

  .unit-list a {
    overflow-wrap: anywhere;
  }

  .footer {
    padding: 28px 16px;
  }

  .footer-links {
    align-items: stretch;
    gap: 10px;
  }

  .footer-links a {
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(7, 45, 100, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(16, 25, 45, 0.22);
    backdrop-filter: blur(12px);
  }

  .mobile-cta-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 900;
  }

  .mobile-cta-link.primary {
    color: white;
    background: #1fa855;
  }

  .mobile-cta-link.secondary {
    color: var(--blue);
    background: var(--yellow);
  }
}

@media (max-width: 380px) {
  .brand strong {
    font-size: 20px;
  }

  .brand small {
    max-width: 118px;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  h1 {
    font-size: 34px;
  }

  .shop-card-body {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready .reveal-on-scroll {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero-stage,
  .product-card,
  .shop-card {
    transform: none;
  }
}
