/**
 * Homepage layout — Nero Hub–inspired flow (centered hero, stats, features, marquee, FAQ, CTA).
 * Scoped to .page-home; pairs with site-premium.css for nav/loading tokens.
 */

.page-home .home-main {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: clamp(28px, 4vw, 44px);
}

/* —— Nav wordmark + slogan (flat, no box) —— */
.page-home .wordmark-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}

.page-home .wordmark-block .wordmark {
  margin: 0;
}

.page-home .wordmark-slogan {
  margin: 0;
  padding: 0 0 0 2px;
  font-family: var(--font-main);
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.page-home .wordmark-slogan em {
  font-style: normal;
  font-weight: 600;
  color: var(--brand, #00e67a);
}

/* —— Hero (centered + bare UI image) —— */
@keyframes homeUiEnter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homeUiFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.page-home .home-hero {
  text-align: center;
  padding: 12px 0 32px;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  overflow-x: clip;
}

.page-home .home-hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 16px;
  padding: 9px 20px 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 230, 122, 0.4);
  background: rgba(8, 12, 10, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-display);
  overflow: hidden;
}

.page-home .home-hero-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 65%
  );
  pointer-events: none;
}

.page-home .home-hero-badge-pct {
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, var(--brand-bright, #5dffb0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-home .home-hero-badge-div {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 14px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 230, 122, 0.55),
    transparent
  );
  opacity: 0.9;
}

.page-home .home-hero-badge-text {
  position: relative;
  z-index: 1;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.page-home .home-hero-ui-stage {
  display: grid;
  place-items: center;
  width: 100%;
  margin-top: 18px;
  padding: 0;
  overflow: visible;
}

.page-home .home-hero-ui {
  display: block;
  width: min(100%, 880px);
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  object-fit: contain;
  object-position: center center;
  transform-origin: center center;
  will-change: transform;
  filter: drop-shadow(0 32px 56px rgba(0, 0, 0, 0.5));
  animation:
    homeUiEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both,
    homeUiFloat 6s ease-in-out 0.9s infinite;
}


.page-home .home-hero-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  padding-inline: 12px;
  box-sizing: border-box;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4.8vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-align: center;
}

.page-home .home-hero-title-line {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  line-height: 1.15;
}

.page-home .home-hero-cycle-word {
  display: inline;
  white-space: nowrap;
}

.page-home .home-hero-cycle-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-home .home-hero-title-accent,
.page-home .home-gradient {
  background: linear-gradient(120deg, #fff 0%, var(--brand-bright, #5dffb0) 45%, var(--brand, #00e67a) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-home .home-hero-title-accent {
  display: block;
  margin-top: 4px;
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.page-home .home-hero-actions .btn {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 600;
}

.page-home .home-hero-actions .btn.primary {
  background: linear-gradient(180deg, var(--brand-bright, #5dffb0) 0%, var(--brand-dim, #00b85f) 100%);
  border-color: rgba(0, 230, 122, 0.45);
  color: #021208;
  box-shadow: 0 12px 36px rgba(0, 230, 122, 0.25);
}

.page-home .home-hero-actions .btn.ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

/* —— Platform stats bar —— */
.page-home .home-stats {
  margin-bottom: 44px;
}

.page-home .home-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 8px 0 4px;
}

.page-home .home-stats-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 14px;
  border: none;
  transition: opacity 0.2s ease;
}

.page-home .home-stats-bar-item:hover {
  opacity: 0.92;
}

.page-home .home-stats-bar-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  color: var(--brand-bright, #5dffb0);
}

.page-home .home-stats-bar-ic svg {
  display: block;
  width: 36px;
  height: 36px;
  stroke: var(--brand, #00e67a);
}

.page-home .home-stats-bar-ic--discord svg {
  width: 34px;
  height: 34px;
  fill: var(--brand, #00e67a);
  stroke: none;
}

.page-home .home-stats-bar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.page-home .home-stats-bar-item--discord:hover {
  opacity: 0.92;
}

.page-home .home-stats-live {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--brand-bright, #5dffb0);
  box-shadow: 0 0 8px rgba(0, 230, 122, 0.8);
  vertical-align: middle;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: no-preference) {
  .page-home .home-stats-live {
    animation: homeStatsLivePulse 2s ease-in-out infinite;
  }
}

@keyframes homeStatsLivePulse {
  0%,
  100% {
    opacity: 1;
    transform: translateY(-1px) scale(1);
  }
  50% {
    opacity: 0.55;
    transform: translateY(-1px) scale(0.85);
  }
}

.page-home .home-stats-panel-foot {
  margin: 0;
  padding: 12px 0 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.page-home .home-stats-panel-foot time {
  color: var(--brand, #00e67a);
  font-weight: 600;
}

.page-home .home-stats-bar-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}

.page-home .home-stats-bar-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--brand-bright, #5dffb0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-home .home-stats-bar-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--brand-bright, #5dffb0);
}

/* —— Section shared —— */
.page-home .home-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}

.page-home .home-section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.page-home .home-section-lead {
  margin: 10px 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
}

.page-home .home-section-lead a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— About —— */
.page-home .home-about {
  margin-bottom: 48px;
  padding: 28px;
  border-radius: var(--r-xl, 28px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.05) 0%, rgba(6, 10, 8, 0.85) 100%);
  box-shadow: var(--shadow-soft);
  overflow: visible;
}

.page-home .home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  align-items: center;
  overflow: visible;
}

.page-home .home-about .home-section-title {
  text-align: left;
}

.page-home .home-quote {
  margin: 16px 0 0;
  padding: 0;
  border: none;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.page-home .home-quote-mark {
  display: block;
  margin-bottom: 8px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--brand);
  opacity: 0.9;
}

.page-home .home-quote-cite {
  margin: 12px 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  font-style: normal;
}

.page-home .home-about-visual {
  border-radius: var(--r-lg, 18px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.page-home .home-about-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-about-mascot {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.page-home .home-about-mascot img {
  display: block;
  width: auto;
  max-width: min(200px, 48vw);
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

@media (min-width: 901px) {
  .page-home .home-about-mascot {
    position: relative;
    z-index: 4;
    justify-content: center;
    align-items: flex-end;
    margin: 0 0 -28px;
    padding: 0 24px 0 0;
  }

  .page-home .home-about-mascot img {
    max-width: min(280px, 36vw);
    max-height: 300px;
    transform: translate(-32px, 20px) scale(1.06);
    transform-origin: 50% 100%;
    filter: drop-shadow(-8px 20px 36px rgba(0, 0, 0, 0.55));
  }
}

/* —— Features —— */
.page-home .home-features {
  margin-bottom: 40px;
}

.page-home .home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.page-home .home-feature-card {
  padding: 22px 20px;
  border-radius: var(--r-lg, 18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.3));
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .home-feature-card:hover {
  border-color: rgba(0, 230, 122, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.page-home .home-feature-ic {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(0, 230, 122, 0.22);
  background: rgba(0, 230, 122, 0.08);
  margin-bottom: 14px;
}

.page-home .home-feature-ic svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand);
  stroke-width: 2.5px;
  vector-effect: non-scaling-stroke;
}

.page-home .home-feature-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.page-home .home-feature-card p {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
}

/* —— Trusted by (full-width infinite marquee) —— */
@keyframes homeTrustedLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(var(--trusted-loop-pct, -50%), 0, 0);
  }
}

.page-home .home-trusted {
  width: 100vw;
  max-width: 100vw;
  margin: 8px calc(50% - 50vw) 48px;
  overflow: visible;
}

.page-home .home-trusted-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  overflow: visible;
}

.page-home .home-trusted-eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand, #00e67a);
}

/* Edge-to-edge marquee strip */
.page-home .home-trusted-marquee {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  padding: 36px 0 12px;
  border: none;
  background: rgba(0, 0, 0, 0.22);
}

.page-home .home-trusted-marquee:hover,
.page-home .home-trusted-marquee:focus-within,
.page-home .home-trusted-marquee.is-paused {
  overflow: visible;
  z-index: 40;
}

.page-home .home-trusted-marquee:hover .home-trusted-track,
.page-home .home-trusted-marquee:focus-within .home-trusted-track,
.page-home .home-trusted-marquee.is-paused .home-trusted-track {
  animation-play-state: paused;
}

.page-home .home-trusted-marquee::before,
.page-home .home-trusted-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 10vw, 120px);
  z-index: 3;
  pointer-events: none;
}

.page-home .home-trusted-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg, #050807) 0%, transparent 100%);
}

.page-home .home-trusted-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg, #050807) 0%, transparent 100%);
}

.page-home .home-trusted-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(5rem, 10vw, 7.5rem);
  --trusted-loop-pct: -50%;
  animation: homeTrustedLoop 52s linear infinite;
  will-change: transform;
}

.page-home .home-trusted-set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(5rem, 10vw, 7.5rem);
}

.page-home .home-trusted-partner {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: clamp(120px, 14vw, 200px);
  min-height: clamp(52px, 6vw, 64px);
  padding: 0;
  text-decoration: none;
  outline: none;
  z-index: 1;
}

.page-home .home-trusted-partner:hover,
.page-home .home-trusted-partner:focus-visible,
.page-home .home-trusted-partner.is-tip-active {
  z-index: 20;
}

.page-home .home-trusted-partner-logo,
.page-home .home-trusted-partner img {
  display: block;
  width: auto;
  height: clamp(44px, 5.5vw, 56px);
  max-width: clamp(150px, 18vw, 220px);
  object-fit: contain;
  object-position: center;
  opacity: 0.55;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.page-home .home-trusted-partner-logo--native {
  filter: none;
  -webkit-filter: none;
}

.page-home .home-trusted-partner-logo:not(.home-trusted-partner-logo--native) {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.page-home .home-trusted-partner:hover .home-trusted-partner-logo,
.page-home .home-trusted-partner:focus-visible .home-trusted-partner-logo,
.page-home .home-trusted-partner.is-tip-active .home-trusted-partner-logo {
  opacity: 1;
}

/* Partner tooltips (inline — visible when strip is paused / hovered) */
.page-home .home-trusted-partner .home-trusted-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  z-index: 30;
  width: max-content;
  max-width: min(280px, calc(100vw - 32px));
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(14, 16, 15, 0.98);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
  text-align: left;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.16s ease,
    visibility 0.16s ease,
    transform 0.16s ease;
}

.page-home .home-trusted-partner:hover .home-trusted-tip,
.page-home .home-trusted-partner:focus-visible .home-trusted-tip,
.page-home .home-trusted-partner.is-tip-active .home-trusted-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.page-home .home-trusted-tip-title {
  display: block;
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}

.page-home .home-trusted-tip-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

/* —— FAQ —— */
.page-home .home-faq {
  margin-bottom: 48px;
}

.page-home .home-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .home-faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.page-home .home-faq-item summary {
  padding: 16px 18px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

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

.page-home .home-faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--brand);
}

.page-home .home-faq-item[open] summary::after {
  content: "−";
}

.page-home .home-faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
}

.page-home .home-faq-item p a {
  color: var(--brand);
}

/* —— CTA —— */
.page-home .home-cta {
  width: 100%;
  max-width: none;
  margin: 0 0 48px;
}

.page-home .home-cta-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
  padding: clamp(40px, 5vw, 56px) clamp(24px, 4vw, 48px);
  border-radius: var(--r-xl, 28px);
  border: 1px solid rgba(0, 230, 122, 0.22);
  background:
    radial-gradient(ellipse 90% 120% at 50% 0%, rgba(0, 230, 122, 0.16), transparent 58%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(4, 8, 6, 0.92));
  box-shadow: var(--shadow-soft), 0 0 72px rgba(0, 230, 122, 0.1);
}

.page-home .home-cta-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.8vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.page-home .home-cta-lead {
  margin: 12px auto 0;
  max-width: 52ch;
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.55;
  color: var(--muted);
}

.page-home .home-cta .home-hero-actions {
  margin-top: 24px;
  justify-content: center;
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .page-home .home-about-grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-about .home-section-title,
  .page-home .home-quote {
    text-align: center;
  }

  .page-home .home-about-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .page-home .home-about-mascot {
    order: -1;
  }

  .page-home .home-about-mascot img {
    max-width: min(168px, 42vw);
    max-height: 168px;
  }

  .page-home .home-feature-grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-feature-card {
    text-align: center;
  }

  .page-home .home-feature-ic {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .page-home .wordmark-slogan {
    display: none;
  }
}

@media (max-width: 900px) {
  .page-home .home-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 8px 0 4px;
  }

  .page-home .home-stats-bar-item {
    padding: 16px 12px;
  }
}

@media (max-width: 520px) {
  .page-home .home-stats-bar {
    grid-template-columns: 1fr;
    padding: 8px 0 4px;
  }

  .page-home .home-stats-bar-item {
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-home .home-stats-bar-link {
    justify-content: center;
  }

  .page-home .home-stats-bar-text {
    align-items: center;
    text-align: center;
  }

  .page-home .home-stats-bar-ic svg {
    width: 32px;
    height: 32px;
  }

  .page-home .home-stats-bar-ic--discord svg {
    width: 30px;
    height: 30px;
  }

  .page-home .home-about {
    padding: 20px 16px;
  }

  .page-home .home-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-home .home-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-trusted-track,
  .page-home .home-hero-ui,
  .page-home .home-hero-badge,
  .page-home .home-hero-ui {
    transform: none;
  }

  .page-home .home-trusted-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .page-home .home-trusted-track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    row-gap: 12px;
    padding-inline: 16px;
  }

  .page-home .home-trusted-set {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(3rem, 8vw, 5rem);
    width: 100%;
  }

  .page-home .home-trusted-track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: 4.5rem;
    transform: none !important;
    animation: none !important;
  }

  .page-home .home-trusted-set[aria-hidden="true"] {
    display: none;
  }
}

/* —— Shop choice panels (intl + Thai) —— */
.page-home .home-shop-panels {
  max-width: 920px;
  margin: 0 auto 40px;
  padding: 0 4px;
}

.page-home .home-shop-panels-lead {
  margin: 0 0 20px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 255, 136, 0.8);
}

.page-home .home-shop-panels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.page-home .home-shop-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.35));
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-home .home-shop-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 136, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.page-home .home-shop-panel--thai:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 16px 48px rgba(0, 180, 255, 0.18);
}

.page-home .home-shop-panel-eyebrow {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.page-home .home-shop-panel--intl .home-shop-panel-eyebrow {
  color: rgba(0, 255, 136, 0.85);
}

.page-home .home-shop-panel--thai {
  font-family: "Noto Sans Thai", var(--font-main), system-ui, sans-serif;
}

.page-home .home-shop-panel--thai .home-shop-panel-eyebrow {
  color: rgba(0, 212, 255, 0.95);
}

.page-home .home-shop-panel-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fafafa;
}

.page-home .home-shop-panel-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.page-home .home-shop-panel-desc strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .home-shop-panel-cta {
  margin-top: auto;
  padding-top: 6px;
  font-size: 0.8125rem;
  font-weight: 800;
  color: rgba(0, 255, 136, 0.95);
}

.page-home .home-shop-panel--thai .home-shop-panel-cta {
  color: #5ce8ff;
}

@media (max-width: 640px) {
  .page-home .home-shop-panels-grid {
    grid-template-columns: 1fr;
  }
}

