/* —— Bioluma VIP LP — estilo Corelab home —— */
:root {
  --bg: #f4f8fb;
  --bg-soft: #e4eef5;
  --ink: #14233d;
  --ink-muted: #5a6a7e;
  --ink-faint: #8a97a8;
  --surface: #ffffff;
  --line: rgba(20, 35, 61, 0.1);
  --navy: #1a2f55;
  --blue: #2d68c4;
  --sky: #8ec8e8;
  --gold: #b8956c;
  --radius: 1.75rem;
  --radius-pill: 999px;
  --font: "Inter Tight", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

/* —— Buttons (used in VIP CTA) —— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), background 0.25s ease;
}

.btn--light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.btn--light:hover {
  transform: translateY(-2px);
  background: #fff;
}

.btn__icon {
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}

.btn__icon svg {
  width: 0.85rem;
  height: 0.85rem;
}

/* —— Hero (bento) —— */
.hero {
  padding: 1rem 1rem 0;
  background: #fff;
}

.hero__bento {
  position: relative;
  min-height: 62svh;
  height: 62svh;
  max-height: 40rem;
  display: grid;
  align-items: start;
  overflow: hidden;
  border-radius: 0;
  background: #9fd0ec;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: right center;
}

.hero__brand {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: 1.65rem;
  margin: clamp(2rem, 6vh, 3.5rem) auto 0.85rem 1.25rem;
  object-fit: contain;
  object-position: left center;
  animation: rise 1s var(--ease) both;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(34rem, calc(100% - 2.5rem));
  margin: 0 auto 0 1.25rem;
  text-align: left;
  color: var(--navy);
  animation: rise 1s var(--ease) 0.08s both;
}

.hero__content h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 1rem;
  color: var(--navy);
}

.hero__sub {
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(20, 35, 61, 0.78);
  margin: 0 0 1.4rem;
  max-width: 30rem;
}

/* —— Rainbow Button (borda animada + seta) —— */
.rainbow-btn {
  --rb-1: #8ec8e8;
  --rb-2: #2d68c4;
  --rb-3: #1a2f55;
  --rb-4: #5b8def;
  --rb-5: #b7ddf5;

  position: relative;
  display: inline-flex;
  overflow: hidden;
  border-radius: 999px;
  padding: 1.5px;
  text-decoration: none;
  color: var(--navy);
  cursor: pointer;
}

.rainbow-btn__border {
  position: absolute;
  inset: -50%;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    var(--rb-1),
    var(--rb-2),
    var(--rb-3),
    var(--rb-4),
    var(--rb-5),
    var(--rb-2),
    var(--rb-1)
  );
  animation: rainbow-spin 2s linear infinite;
  will-change: transform;
}

.rainbow-btn__glow {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: -8px;
  z-index: -1;
  height: 45%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rb-1), var(--rb-2), var(--rb-4));
  filter: blur(14px);
  opacity: 0.75;
  animation: rainbow-pulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

.rainbow-btn__inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.65rem;
  width: 100%;
  padding: 0.7rem 1.35rem;
  border-radius: inherit;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rainbow-btn__arrow {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.rainbow-btn:hover {
  color: #fff;
}

.rainbow-btn:hover .rainbow-btn__inner {
  background: var(--navy);
}

.rainbow-btn--on-dark .rainbow-btn__inner {
  background: #fff;
}

.rainbow-btn--on-dark:hover .rainbow-btn__inner {
  background: var(--navy);
}

@keyframes rainbow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rainbow-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.92);
  }
  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

.hero__support {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(20, 35, 61, 0.62);
}

@media (min-width: 769px) {
  .hero {
    padding: 1.25rem 1.25rem 0;
  }

  .hero__bento {
    align-items: center;
    padding-bottom: 2.75rem;
  }

  .hero__media img {
    object-position: center center;
  }

  .hero__brand {
    margin-left: max(1.5rem, calc((100% - 72rem) / 2 + 1.5rem));
  }

  .hero__content {
    margin: 0 0 0 max(1.5rem, calc((100% - 72rem) / 2 + 1.5rem));
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0.65rem;
    background: #fff;
  }

  .hero__bento {
    position: relative;
    display: block;
    min-height: 0;
    height: auto;
    aspect-ratio: 1080 / 1512;
    max-height: none;
    padding: 0;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #8ec8e8;
    box-shadow: none;
  }

  .hero__media {
    position: absolute;
    inset: 0;
    order: unset;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    margin: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    line-height: normal;
  }

  .hero__media::after {
    display: none;
  }

  .hero__media picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
  }

  .hero__brand {
    position: absolute;
    top: 0.85rem;
    left: 0;
    right: 0;
    z-index: 3;
    width: auto;
    height: 1.15rem;
    margin: 0 auto;
    object-position: center;
    filter: none;
    transform: none;
    animation: none;
  }

  .hero__content {
    position: absolute;
    left: 0;
    right: 0;
    top: 18%;
    bottom: auto;
    z-index: 2;
    order: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 1.1rem;
    text-align: center;
    background: transparent;
    color: var(--navy);
    box-shadow: none;
    text-shadow: none;
    filter: none;
  }

  .hero__content h1 {
    font-size: clamp(1.35rem, 5.8vw, 1.65rem);
    margin-bottom: 0.45rem;
    max-width: 16rem;
    color: var(--navy);
    line-height: 1.15;
    text-shadow: none;
  }

  .hero__content h1 br {
    display: none;
  }

  .hero__sub {
    font-size: 0.74rem;
    line-height: 1.32;
    margin: 0 0 0.75rem;
    max-width: 17.5rem;
    color: rgba(20, 35, 61, 0.82);
    display: block;
    overflow: visible;
    text-shadow: none;
  }

  .hero__support {
    display: none;
  }

  .rainbow-btn {
    width: auto;
    max-width: calc(100% - 0.5rem);
    filter: none;
  }

  .rainbow-btn__inner {
    min-height: 2.4rem;
    padding: 0.55rem 0.95rem;
    font-size: 0.64rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    line-height: 1.2;
    box-shadow: none;
  }

  .rainbow-btn__arrow {
    width: 0.85rem;
    height: 0.85rem;
  }

  .rainbow-btn__glow {
    display: none !important;
    box-shadow: none;
    filter: none;
  }
}

/* —— Trust bar —— */
.trust-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem 1.25rem;
  background: linear-gradient(180deg, #fff 0%, #f3f8fc 100%);
  border-bottom: 1px solid rgba(45, 104, 196, 0.1);
}

.trust-bar__lead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.trust-bar__logo {
  display: block;
  width: auto;
  height: 1.65rem;
  object-fit: contain;
}

.trust-bar__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-bar__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.trust-bar__items li {
  position: relative;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-align: center;
}

@media (min-width: 900px) {
  .trust-bar {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 2rem;
  }

  .trust-bar__lead {
    justify-content: flex-start;
    flex-shrink: 0;
  }

  .trust-bar__items {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0;
  }

  .trust-bar__items li {
    padding: 0 1.15rem;
    text-align: left;
  }

  .trust-bar__items li:not(:last-child) {
    border-right: 1px solid rgba(45, 104, 196, 0.18);
  }
}

/* —— Products —— */
.products {
  padding: 4.5rem 0 2rem;
  background: var(--bg);
}

.products__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0 auto 2rem;
}

.products__intro {
  max-width: 28rem;
}

.products__intro h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.products__intro p {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.carousel-nav {
  display: flex;
  gap: 0.5rem;
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0.85rem auto 0;
  justify-content: center;
}

@media (min-width: 900px) {
  .carousel-nav {
    display: none;
  }
}

.carousel-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  color: var(--ink-muted);
  background: #fff;
  border: 1px solid rgba(20, 35, 61, 0.08);
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background 0.2s ease;
}

.carousel-nav__btn:hover {
  color: var(--ink);
  background: var(--bg-soft);
}

.carousel-nav__btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.carousel-nav__label {
  display: none;
}

.carousel {
  overflow: hidden;
  padding-left: max(1.25rem, calc((100% - 72rem) / 2 + 1.25rem));
}

.carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-right: 1.25rem;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.product-card {
  position: relative;
  flex: 0 0 min(78vw, 22rem);
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  background: #0f1724;
  isolation: isolate;
}

.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.9s var(--ease);
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
}

@media (min-width: 900px) {
  .product-card {
    flex-basis: min(30vw, 22.5rem);
  }
}

/* —— Statement —— */
.statement {
  padding: 5rem 1.5rem;
  text-align: center;
  background: var(--bg);
}

.statement__text {
  max-width: 40rem;
  margin: 0 auto;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.statement__orb {
  display: inline-block;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 0.35rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  vertical-align: middle;
  box-shadow: 0 0 0 2px #fff, 0 4px 12px rgba(20, 35, 61, 0.12);
  transform: translateY(-0.35rem);
}

/* —— VIP —— */
.vip {
  padding: 1rem 0 5rem;
}

.vip__intro {
  width: min(40rem, calc(100% - 2.5rem));
  margin: 0 auto 2.5rem;
  text-align: center;
}

.vip__intro h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.vip__intro p {
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.vip__grid {
  display: grid;
  gap: 1rem;
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0 auto;
}

@media (min-width: 860px) {
  .vip__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.vip-card {
  position: relative;
  min-height: min(78vw, 34rem);
  border-radius: 1.5rem;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.vip-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.vip-card--features .vip-card__img {
  object-position: center 28%;
}

.vip-card--cta .vip-card__img {
  object-position: center 22%;
}

.vip-card:hover .vip-card__img {
  transform: scale(1.04);
}

.vip-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 45, 0.88) 0%,
    rgba(10, 22, 45, 0.55) 32%,
    rgba(10, 22, 45, 0.18) 58%,
    rgba(10, 22, 45, 0) 78%
  );
}

.vip-card__veil--warm {
  background: linear-gradient(
    to top,
    rgba(12, 22, 40, 0.9) 0%,
    rgba(12, 22, 40, 0.58) 34%,
    rgba(12, 22, 40, 0.2) 60%,
    rgba(12, 22, 40, 0) 80%
  );
}

.vip-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.5rem 1.65rem;
}

.vip-card__content--center {
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 22rem;
}

.vip-card__content h3 {
  font-size: clamp(1.3rem, 2.3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.9rem;
  text-shadow: 0 1px 12px rgba(8, 18, 36, 0.35);
}

.vip-card__eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.vip-card__lead {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 10px rgba(8, 18, 36, 0.3);
}

.vip-list {
  display: grid;
  gap: 0.45rem;
}

.vip-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 10px rgba(8, 18, 36, 0.3);
}

.vip-list li::before {
  content: "";
  flex-shrink: 0;
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E")
      center / 0.58rem no-repeat,
    rgba(45, 104, 196, 0.95);
}

@media (min-width: 860px) {
  .vip-card__content {
    padding: 1.75rem;
  }

  .vip-card__content--center {
    max-width: 21rem;
  }
}

/* —— Footer —— */
.site-footer {
  padding: 2.5rem 1.25rem 2rem;
  background:
    linear-gradient(180deg, #f7fbfe 0%, #eef5fb 100%);
  border-top: 1px solid rgba(45, 104, 196, 0.12);
}

.site-footer__inner {
  width: min(72rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__brand-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__brand {
  display: block;
  width: auto;
  height: 2rem;
  object-fit: contain;
}

.site-footer__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(45, 104, 196, 0.1);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__wa {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
}

.site-footer__wa:hover {
  background: #243a66;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(45, 104, 196, 0.12);
}

.site-footer__note {
  font-size: 0.9rem;
  color: var(--ink-muted);
  max-width: 28rem;
}

.site-footer__copy {
  font-size: 0.8rem;
  color: var(--ink-faint);
}

/* —— Mobile polish —— */
@media (max-width: 768px) {
  :root {
    --page-pad: 1.25rem;
  }

  .trust-bar {
    gap: 0.75rem;
    padding: 0.95rem var(--page-pad) 1.05rem;
    text-align: center;
  }

  .trust-bar__lead {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .trust-bar__logo {
    height: 1.25rem;
    margin: 0;
  }

  .trust-bar__label {
    font-size: 0.78rem;
    text-align: center;
  }

  .trust-bar__items {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .trust-bar__items::-webkit-scrollbar {
    display: none;
  }

  .trust-bar__items li {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 0.55rem;
    font-size: 0.68rem;
    line-height: 1.3;
    text-align: center;
  }

  .trust-bar__items li:not(:last-child) {
    border-right: 1px solid rgba(45, 104, 196, 0.18);
  }

  .products {
    padding: 2.5rem 0 1.5rem;
  }

  .products__header {
    width: calc(100% - (var(--page-pad) * 2));
    margin: 0 auto 1.15rem;
    gap: 0.85rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .products__intro {
    max-width: 22rem;
  }

  .products__intro h2 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    margin-bottom: 0.45rem;
  }

  .products__intro p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .carousel-nav {
    width: calc(100% - (var(--page-pad) * 2));
    margin: 0.85rem auto 0;
  }

  .carousel {
    padding-left: var(--page-pad);
  }

  .carousel__track {
    gap: 0.85rem;
    padding-right: var(--page-pad);
    padding-bottom: 0.35rem;
    scroll-padding-left: var(--page-pad);
  }

  .product-card {
    flex: 0 0 min(78vw, 18.5rem);
    border-radius: 1.15rem;
    scroll-snap-align: center;
  }

  .statement {
    padding: 2.75rem var(--page-pad);
  }

  .statement__text {
    font-size: clamp(1.28rem, 5.6vw, 1.5rem);
    line-height: 1.5;
    max-width: 20rem;
  }

  .statement__orb {
    width: 2.2rem;
    height: 2.2rem;
    margin: 0 0.18rem;
    transform: translateY(-0.18rem);
  }

  .vip {
    padding: 0.25rem 0 2.75rem;
  }

  .vip__intro {
    width: calc(100% - (var(--page-pad) * 2));
    margin: 0 auto 1.35rem;
  }

  .vip__intro h2 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    margin-bottom: 0.6rem;
  }

  .vip__intro p {
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .vip__grid {
    width: calc(100% - (var(--page-pad) * 2));
    gap: 0.9rem;
  }

  .vip-card {
    min-height: 27rem;
    border-radius: 1.15rem;
  }

  .vip-card__content {
    padding: 1.2rem 1.15rem 1.3rem;
  }

  .vip-card__content--center {
    max-width: none;
    align-items: stretch;
  }

  .vip-card__content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
  }

  .vip-card__lead {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .vip-list {
    gap: 0.4rem;
  }

  .vip-list li {
    font-size: 0.84rem;
  }

  .vip-card__content--center .rainbow-btn {
    width: 100%;
  }

  .site-footer {
    padding: 2rem var(--page-pad) 1.75rem;
  }

  .site-footer__inner {
    gap: 1.15rem;
  }

  .site-footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.95rem;
  }

  .site-footer__brand-block {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .site-footer__brand {
    height: 1.65rem;
  }

  .site-footer__wa {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding-top: 1rem;
  }

  .site-footer__note {
    font-size: 0.85rem;
    max-width: 20rem;
  }
}

@media (max-width: 480px) {
  :root {
    --page-pad: 1rem;
  }

  .hero {
    padding: 0.5rem;
  }

  .hero__brand {
    top: 0.7rem;
    height: 1.05rem;
    filter: none;
  }

  .hero__content {
    top: 16%;
    padding: 0 0.95rem;
    color: var(--navy);
  }

  .hero__content h1 {
    font-size: 1.28rem;
    max-width: 14.5rem;
    color: var(--navy);
  }

  .hero__sub {
    font-size: 0.7rem;
    line-height: 1.3;
    margin-bottom: 0.65rem;
    max-width: 16.5rem;
    color: rgba(20, 35, 61, 0.82);
  }

  .hero__media img {
    object-position: center center;
  }

  .product-card {
    flex-basis: 82vw;
  }

  .vip-card {
    min-height: 25.5rem;
  }

  .rainbow-btn__inner {
    font-size: 0.6rem;
    padding: 0.5rem 0.8rem;
    min-height: 2.25rem;
  }
}

/* —— Motion —— */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__content,
  .hero__brand {
    animation: none !important;
  }
}
