/* Do Product Reviews — cool paper, indigo + gold (Syne + Outfit) */
:root {
  --bg: #f4f4fb;
  --bg-2: #eef0fa;
  --surface: #ffffff;
  --text: #0c1222;
  --muted: #5c6477;
  --violet: #312e81;
  --violet-mid: #4f46e5;
  --violet-deep: #4338ca;
  --violet-glow: rgba(79, 70, 229, 0.38);
  --amber: #b45309;
  --amber-2: #d97706;
  --amber-soft: #fef3c7;
  --border: rgba(49, 46, 129, 0.14);
  --tint: rgba(79, 70, 229, 0.08);
  --tint-2: rgba(79, 70, 229, 0.16);
  --radius: 1rem;
  --radius-lg: 1.35rem;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 4.35rem;
  --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-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  z-index: 100001;
}

body.menu-open main,
body.menu-open .site-footer {
  pointer-events: none;
}

a {
  color: var(--violet-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--amber);
}

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

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Keep page content in a lower stacking level than the sticky header + mobile drawer */
main {
  position: relative;
  z-index: 0;
}

/* Ambient orbs */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(168deg, var(--bg) 0%, #e8e6ff 36%, var(--bg-2) 70%, #fff7ed 100%);
}

.bg-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orbDrift 22s ease-in-out infinite;
}

.bg-orbs span:nth-child(1) {
  width: 420px;
  height: 420px;
  background: #c7d2fe;
  top: -120px;
  left: -80px;
  animation-delay: 0s;
}

.bg-orbs span:nth-child(2) {
  width: 380px;
  height: 380px;
  background: #fde68a;
  top: 40%;
  right: -100px;
  animation-delay: -7s;
}

.bg-orbs span:nth-child(3) {
  width: 300px;
  height: 300px;
  background: #ddd6fe;
  bottom: -80px;
  left: 30%;
  animation-delay: -14s;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header — block layout so .nav-mobile (fixed) is not a flex item; avoids z-index bugs under hero transforms */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  min-height: var(--header-h);
  display: block;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: min(1120px, 92vw);
  min-height: var(--header-h);
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.logo-mark-img {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.65rem;
  box-shadow: 0 8px 28px var(--violet-glow);
  display: block;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font-display);
}

.logo-wordmark strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-wordmark small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-desktop a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.7rem;
  border-radius: 0.5rem;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--violet);
  background: var(--tint);
}

.nav-cta {
  margin-left: 0.35rem;
  padding: 0.55rem 1.15rem !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--violet-mid), var(--violet)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 6px 26px var(--violet-glow);
}

.nav-cta:hover {
  color: #fff !important;
  filter: brightness(1.06);
}

.nav-desktop .nav-fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.25rem;
  margin-right: 0.05rem;
  padding: 0.5rem;
  border-radius: 0.55rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
}

.nav-desktop .nav-fb:hover,
.nav-desktop .nav-fb:focus-visible {
  color: #fff;
  background: #1877f2;
  border-color: #1877f2;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

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

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

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

.nav-mobile {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: var(--header-h);
  z-index: 100000;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem max(1.25rem, env(safe-area-inset-left)) calc(1.25rem + env(safe-area-inset-bottom))
    max(1.25rem, env(safe-area-inset-right));
  margin: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), visibility 0.3s, transform 0.3s var(--ease);
}

body.menu-open .nav-mobile {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-mobile a {
  flex-shrink: 0;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  line-height: 1.35;
}

.nav-mobile a:hover,
.nav-mobile a:focus-visible {
  background: var(--tint);
  border-color: rgba(79, 70, 229, 0.35);
  color: var(--violet-deep);
  outline: none;
}

.nav-mobile .nav-cta {
  margin-top: 0.25rem;
  text-align: center;
  background: linear-gradient(135deg, var(--violet-mid), var(--violet-deep));
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 10px 28px var(--violet-glow);
}

.nav-mobile .nav-cta:hover,
.nav-mobile .nav-cta:focus-visible {
  background: linear-gradient(135deg, var(--violet-deep), #3730a3);
  color: #fff !important;
  border-color: transparent;
}

.nav-mobile-fb {
  font-weight: 600 !important;
  color: var(--violet-mid) !important;
  background: rgba(24, 119, 242, 0.08) !important;
  border-color: rgba(24, 119, 242, 0.22) !important;
}

.nav-mobile-fb:hover,
.nav-mobile-fb:focus-visible {
  background: rgba(24, 119, 242, 0.14) !important;
  border-color: #1877f2 !important;
  color: #0c4a9c !important;
}

@media (max-width: 960px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 961px) {
  .nav-mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  padding: clamp(1.25rem, 4vw, 2rem) 0 clamp(3rem, 8vw, 5rem);
  position: relative;
}

.hero--showcase {
  overflow: visible;
}

.hero-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.35rem, 4vw, 2.75rem);
  align-items: center;
  min-height: min(76vh, 620px);
}

@media (max-width: 960px) {
  .hero-showcase__grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
}

.hero-showcase__panel {
  position: relative;
  border-radius: clamp(1.2rem, 2.2vw, 1.65rem);
  padding: clamp(1.85rem, 5vw, 3.1rem);
  background: linear-gradient(168deg, #1e1b4b 0%, #312e81 42%, #0f172a 100%);
  color: #f1f5f9;
  box-shadow:
    0 32px 90px rgba(15, 23, 42, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-showcase__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 0% 0%, rgba(129, 140, 248, 0.28), transparent 58%),
    radial-gradient(ellipse 55% 50% at 100% 100%, rgba(251, 191, 36, 0.2), transparent 52%);
  pointer-events: none;
}

.hero-showcase__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-showcase__inner {
  position: relative;
  z-index: 1;
}

.hero-showcase__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c4b5fd;
  margin: 0 0 1.2rem;
}

.hero-showcase__tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fb923c;
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.28);
  animation: tagPulse 2.8s ease-in-out infinite;
}

.hero-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 5.4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  color: #f8faf9;
}

.hero-showcase__accent {
  background: linear-gradient(102deg, #fde68a, #fbbf24, #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-showcase__lead {
  color: rgba(226, 232, 240, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 40ch;
  margin: 0 0 1.55rem;
}

.hero-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-showcase__fb {
  margin: 0 0 1.35rem;
  font-size: 0.9rem;
}

.hero-showcase__fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(226, 232, 240, 0.65);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-showcase__fb-link:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.hero-showcase__fb-link:hover .hero-showcase__fb-icon {
  color: #1877f2;
}

.hero-showcase__fb-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.hero-showcase__foot {
  list-style: none;
  margin: 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  font-size: 0.84rem;
  color: rgba(226, 232, 240, 0.65);
}

.hero-showcase__foot strong {
  color: #c4b5fd;
  font-weight: 700;
  margin-right: 0.25rem;
}

.hero-showcase__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(54vh, 500px);
}

@media (max-width: 960px) {
  .hero-showcase__visual {
    min-height: unset;
    order: -1;
  }
}

/* Hero collage — 4 images, float + Ken Burns + light sweep */
.hero-collage__bloom {
  position: absolute;
  inset: -12% -8%;
  background:
    radial-gradient(ellipse 55% 50% at 40% 35%, rgba(99, 102, 241, 0.35), transparent 55%),
    radial-gradient(ellipse 45% 45% at 75% 70%, rgba(251, 191, 36, 0.22), transparent 50%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
  animation: bloomPulse 10s ease-in-out infinite alternate;
}

.hero-collage__grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  display: grid;
  grid-template-columns: 1.2fr 0.82fr;
  grid-template-rows: repeat(3, minmax(92px, 1fr));
  gap: 0.7rem;
  min-height: clamp(340px, 52vh, 480px);
  --mx: 0;
  --my: 0;
  transform: translate3d(calc(var(--mx) * 16px), calc(var(--my) * 14px), 0);
  will-change: transform;
}

@media (max-width: 960px) {
  .hero-collage__grid {
    max-width: 100%;
    min-height: 380px;
  }
}

.hero-collage__cell {
  margin: 0;
  animation: heroCellFloat 8s ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}

.hero-collage__cell--main {
  grid-column: 1;
  grid-row: 1 / -1;
  animation-duration: 9s;
}

.hero-collage__cell:not(.hero-collage__cell--main) {
  grid-column: 2;
}

.hero-collage__cell:nth-child(2) {
  grid-row: 1;
}

.hero-collage__cell:nth-child(3) {
  grid-row: 2;
}

.hero-collage__cell:nth-child(4) {
  grid-row: 3;
}

.hero-collage__frame {
  position: relative;
  height: 100%;
  min-height: 0;
  padding: 3px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.75), rgba(251, 191, 36, 0.45), rgba(99, 102, 241, 0.65));
  background-size: 200% 200%;
  animation: frameGradient 14s ease-in-out infinite alternate;
  box-shadow: 0 22px 56px rgba(30, 27, 75, 0.28);
}

.hero-collage__media {
  position: relative;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.hero-collage__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
  transform: scale(1.12);
  animation: heroKen 26s ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}

.hero-collage__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 62%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: shineSweep 4.5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  mix-blend-mode: soft-light;
}

.hero-showcase__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-showcase__chip {
  position: absolute;
  padding: 0.5rem 0.85rem;
  font-size: 0.76rem;
  font-weight: 600;
  border-radius: 0.55rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: 0 14px 44px rgba(15, 23, 22, 0.14);
  max-width: 11rem;
  line-height: 1.3;
}

.hero-showcase__chip--tl {
  top: 6%;
  left: -2%;
}

.hero-showcase__chip--br {
  bottom: 10%;
  right: -2%;
}

@media (max-width: 960px) {
  .hero-showcase__chip--tl {
    left: 2%;
    top: 4%;
  }

  .hero-showcase__chip--br {
    right: 2%;
    bottom: 6%;
  }
}

@media (max-width: 480px) {
  .hero-showcase__chip {
    font-size: 0.7rem;
    padding: 0.4rem 0.65rem;
    max-width: 9rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.88rem 1.55rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, filter 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet-mid), var(--violet-deep));
  color: #fff;
  box-shadow: 0 10px 36px var(--violet-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #fff;
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.35);
}

.btn-amber:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--violet-mid);
  background: var(--tint);
}

.btn-ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.32);
}

.btn-ghost-light:hover {
  border-color: #c4b5fd;
  background: rgba(129, 140, 248, 0.18);
  color: #fff;
}

section {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.section-head--steps h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 0.55rem;
}

.section-head--steps h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(7rem, 42%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet-mid), var(--amber-2));
  box-shadow: 0 2px 12px rgba(79, 70, 229, 0.25);
}

.section-head--steps p {
  margin-top: 0.85rem;
  font-size: 1.03rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* Cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

@media (max-width: 900px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 8px 32px rgba(26, 11, 46, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 22px 50px rgba(13, 148, 136, 0.14);
}

.card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.card:hover .card-media img {
  transform: scale(1.09) rotate(0.5deg);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  transition: transform 0.75s var(--ease);
}

.card:hover .card-media::after {
  transform: translateX(100%);
}

.card-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin: 0 0 0.5rem;
}

.card-body p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0 0 0.85rem;
}

.link-arrow {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.card:hover .link-arrow::after {
  transform: translateX(5px);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(26, 11, 46, 0.1);
}

.split-img img {
  width: 100%;
  aspect-ratio: 6/5;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.split-img:hover img {
  transform: scale(1.05);
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  margin: 0 0 0.75rem;
}

.split-copy p {
  color: var(--muted);
}

/* Gallery strip */
.gallery-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .gallery-dual {
    grid-template-columns: 1fr;
  }
}

.gallery-dual figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 36px rgba(26, 11, 46, 0.08);
  transition: transform 0.35s var(--ease);
}

.gallery-dual figure:hover {
  transform: scale(1.02);
}

.gallery-dual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.gallery-dual figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--surface);
}

/* CTA dock — split rail + numbered routes (not a centered glow card) */
.section-cta {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.cta-dock {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  padding: clamp(1.65rem, 4vw, 2.35rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(125deg, rgba(13, 148, 136, 0.07) 0%, transparent 42%),
    linear-gradient(315deg, rgba(251, 146, 60, 0.06) 0%, transparent 38%),
    var(--surface);
  box-shadow: 0 18px 56px rgba(15, 50, 46, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-dock::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 5px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--violet-mid), var(--amber-2));
}

@media (max-width: 720px) {
  .cta-dock {
    grid-template-columns: 1fr;
    padding-left: clamp(1rem, 4vw, 1.5rem);
  }

  .cta-dock::before {
    top: 0;
    bottom: auto;
    left: 1rem;
    right: 1rem;
    width: auto;
    height: 4px;
    border-radius: 0 0 3px 3px;
  }
}

.cta-dock__head {
  position: relative;
  z-index: 1;
  padding-left: 0.35rem;
}

.cta-dock__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet-mid);
  margin: 0 0 0.45rem;
}

.cta-dock__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-weight: 700;
  margin: 0 0 0.55rem;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.cta-dock__sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
  max-width: 34ch;
}

.cta-dock__routes {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cta-dock__route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background: rgba(255, 252, 248, 0.85);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.cta-dock__route:hover {
  border-color: var(--violet-mid);
  transform: translateX(5px);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.12);
}

.cta-dock__route--primary {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.11), rgba(251, 191, 36, 0.08));
  border-color: rgba(13, 148, 136, 0.32);
}

.cta-dock__step {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--violet-mid);
  line-height: 1;
  opacity: 0.88;
}

.cta-dock__body {
  min-width: 0;
}

.cta-dock__route-title {
  display: block;
  font-weight: 700;
  font-size: 1.03rem;
}

.cta-dock__route-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.12rem;
}

.cta-dock__arrow {
  font-size: 1.2rem;
  color: var(--violet-mid);
  transition: transform 0.25s var(--ease);
}

.cta-dock__route:hover .cta-dock__arrow {
  transform: translateX(5px);
}

/* Homepage — stats, steps, testimonials, pills, FAQ preview */
.section-tint {
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .stat-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-bar__item {
  text-align: center;
  padding: 1.1rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 252, 248, 0.85);
  box-shadow: 0 8px 28px rgba(15, 45, 42, 0.05);
}

.stat-bar__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.05rem);
  font-weight: 800;
  color: var(--violet-mid);
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
  font-variant-numeric: tabular-nums;
  min-height: 1.2em;
}

.stat-bar__item span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.steps-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps-rail {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

.steps-rail li {
  counter-increment: step;
  position: relative;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(168deg, #ffffff 0%, #f0f0fc 55%, #faf8ff 100%);
  box-shadow: 0 12px 40px rgba(30, 27, 75, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s ease;
}

.steps-rail li:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 70, 229, 0.28);
  box-shadow: 0 20px 52px rgba(79, 70, 229, 0.12);
}

.steps-rail li::before {
  content: counter(step, decimal-leading-zero);
  position: relative;
  left: auto;
  top: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  height: 3.1rem;
  padding: 0 0.4rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, var(--violet-deep), var(--violet-mid));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow:
    0 10px 28px rgba(79, 70, 229, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.steps-rail h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.28;
}

.steps-rail p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.62;
}

.section-testimonials {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    linear-gradient(180deg, rgba(13, 148, 136, 0.06) 0%, transparent 45%),
    linear-gradient(0deg, rgba(251, 146, 60, 0.05) 0%, transparent 35%);
}

.testimonial-intro {
  max-width: 640px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.testimonial-intro__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet-mid);
  margin: 0 0 0.5rem;
}

.testimonial-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.03em;
}

.testimonial-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.testimonial-mosaic {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.testimonial-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.35rem 1.45rem;
  box-shadow: 0 14px 44px rgba(15, 45, 42, 0.07);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(13, 148, 136, 0.12);
}

.testimonial-card--featured {
  padding: clamp(1.5rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.09) 0%, rgba(255, 252, 248, 1) 50%),
    var(--surface);
  border-color: rgba(13, 148, 136, 0.25);
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(13, 148, 136, 0.35);
  flex-shrink: 0;
}

.testimonial-card--featured .testimonial-card__avatar {
  width: 88px;
  height: 88px;
}

.testimonial-card__top cite {
  font-style: normal;
  font-weight: 800;
  font-size: 1.05rem;
  display: block;
  font-family: var(--font-display);
}

.testimonial-card__top span {
  font-size: 0.82rem;
  color: var(--muted);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text);
}

.testimonial-card blockquote p {
  margin: 0;
}

.testimonial-card--featured blockquote {
  font-size: 1.08rem;
}

.testimonial-card__product {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet-mid);
}

.testimonial-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section-pills {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
  justify-content: center;
  margin: 1.5rem 0 1rem;
}

.pill-cloud span {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: rgba(255, 252, 248, 0.9);
  color: var(--text);
}

.pill-cloud__note {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip {
  text-align: center;
  padding: 1.15rem 1rem;
  margin: 2rem 0 0;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  background: rgba(13, 148, 136, 0.05);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.section-band {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.section-band--soft {
  background: rgba(13, 148, 136, 0.06);
}

.section-faq-preview {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.faq-preview-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.faq-preview-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 0.5rem;
}

.faq-preview-head p {
  margin: 0;
  color: var(--muted);
}

.faq-preview-actions {
  text-align: center;
  margin-top: 1.35rem;
}

/* Inner page bands (Join / Contact) */
.page-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(2.35rem, 6vw, 4rem) 0;
  background: linear-gradient(168deg, #1e1b4b 0%, #312e81 48%, #0f172a 100%);
  color: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.page-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(129, 140, 248, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 100%, rgba(251, 191, 36, 0.16), transparent 50%);
  pointer-events: none;
}

.page-band__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.page-band__kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #c4b5fd;
  margin: 0 0 0.65rem;
  font-weight: 800;
}

.page-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  margin: 0 0 0.65rem;
  max-width: 20ch;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page-band__lead {
  margin: 0;
  max-width: 54ch;
  color: rgba(226, 232, 240, 0.8);
  font-size: 1.05rem;
  line-height: 1.6;
}

.join-page {
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.join-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 960px) {
  .join-page__grid {
    grid-template-columns: 1fr;
  }
}

.join-page__aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

@media (max-width: 960px) {
  .join-page__aside {
    position: static;
  }
}

.join-page__aside h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.join-benefits {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.join-benefits li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.85rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.join-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-mid), var(--amber-2));
}

.join-aside-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(15, 45, 42, 0.1);
}

.join-aside-visual img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  display: block;
}

.join-note {
  font-size: 0.86rem;
  color: var(--muted);
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(13, 148, 136, 0.05);
  margin-top: 1rem;
}

.form-card--wide {
  max-width: none;
}

.contact-page {
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.contact-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 700px) {
  .contact-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-tile {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 36px rgba(15, 45, 42, 0.06);
}

.contact-tile h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-mid);
  margin: 0 0 0.5rem;
}

.contact-tile p,
.contact-tile a {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-tile a:hover {
  color: var(--violet-mid);
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: stretch;
}

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}

.contact-split__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 55px rgba(15, 45, 42, 0.1);
  min-height: 280px;
}

.contact-split__visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.contact-split .form-card {
  margin: 0;
  max-width: none;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.75rem 0 1.75rem;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet);
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-col a:hover {
  color: var(--violet-mid);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Inner pages */
.page-hero {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 1.5rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  margin: 0 0 0.5rem;
}

.crumbs {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.crumbs a {
  color: var(--muted);
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
}

.prose h2,
.prose h3 {
  font-family: var(--font-display);
  margin-top: 1.75rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.post-hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(26, 11, 46, 0.1);
}

.post-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.post-hero:hover img {
  transform: scale(1.03);
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 11, 46, 0.04);
}

.faq-item summary {
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--violet-mid);
  font-size: 1.2rem;
  transition: transform 0.25s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

/* Forms */
.form-card {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(26, 11, 46, 0.08);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
  background: #f4faf8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--violet-mid);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.22);
  background: #fff;
}

.form-feedback {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--violet-mid);
}

.checkbox-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0.85rem 0;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.2rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ken {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes tagPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.85;
  }
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-35%) rotate(8deg);
  }
  50% {
    transform: translateX(35%) rotate(8deg);
  }
}

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 25px) scale(0.95);
  }
}

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

  .bg-orbs span,
  .hero-showcase__frame-inner img,
  .hero-showcase__tag::before {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
